conecting via ssh fail [closed] - ssl

Closed. This question is not about programming or software development. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 4 days ago.
Improve this question
could not connect to ssh://{IP} - kex error : no match for method kex algos: server [diffie-hellman-group-exchange-sha1,diffie-hellman-group1-sha1], client [curve25519-sha256,curve25519-sha256#libssh.org,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group18-sha512,diffie-hellman-group16-sha512,diffie-hellman-group-exchange-sha256,diffie-hellman-group14-sha256]
hydra -l root -P /usr/share/wordlists/metasploit/unix_passwords.txt ssh://10.10.0.12:22 -t 4 -V
the response from the machine was
[DATA] attacking ssh://10.10.0.12:22/
[ERROR] could not connect to ssh://10.10.0.12:22 - kex error : no match for method kex algos: server [diffie-hellman-group-exchange-sha1,diffie-hellman-group1-sha1], client [curve25519-sha256,curve25519-sha256#libssh.org,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group18-sha512,diffie-hellman-group16-sha512,diffie-hellman-group-exchange-sha256,diffie-hellman-group14-sha256]

Related

How to connect to ubuntu over ssh from mac? [closed]

Closed. This question is not about programming or software development. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 6 days ago.
Improve this question
Currently, have ssh client/server installed on both devices. How would I sign in from my mac terminal to access my ubuntu PC over ssh?
ssh <hostname-or-ip-of-ubuntu-PC>

problem when copying a file over putty ssh to my windows machine [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 4 years ago.
Improve this question
i want to copy file from remote server that i connect with the following paramters
Ip : 192.168.1.1
port : 2202
then i log in with user and password :
user:root
pass:1234
but when i try to use this script it shows that connection is refused
pscp 192.168.1.1:/etc/hosts c:\temp\example-hosts.txt
is that correct or i should put the user and password somewhere to authenticate and be able to copy the files
You need to specify the port as it's not the standard port.
Try
pscp -P 2202 192.168.1.1:/etc/hosts c:\temp\example-hosts.txt

Login ftp with access ssh? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 7 years ago.
Improve this question
How to login to an SSH server using an FTP client (such as Filezilla)? I have the server's IP, my .ppk file and its passphrase? Is this possible?
I tried it with host: XXX.X.XXX.XXX and the login passphrase but I don't have a password.
You can use sftp. Add your key in Filezilla sftp settings like so:
and then connect to XXX.X.XXX.XXX and set port to 22, empty password:

user -> guacamole <- vnc server [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 9 years ago.
Improve this question
how would you set up a server running guacamole to listen for a reverse vnc connection?
I found a better way, not using guacamole, by running a vnc repeater (i used uvnc repeater), which will listen for connection from the vnc servers and viewers, and connect the servers and viewers that use the same id
http://www.wisdomsoftware.gr/en/ultravnc-repeater-en/5-how-to-install-ultravnc-repeater-for-linux-debian-a-centos

Connecting to remote server by ssh using ksh [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 7 years ago.
Improve this question
I am trying to connect to a remote server through ssh.
$ssh "username"#host "command"
which prompts for password which can be done in interactive systems.But I want to automate this by passing the password as argument instead of typing interactively.
I am using ksh shell and I can't use expect is there any ksh specific solution to connect to remote server.
Just set up authentication keys so that you don't need passwords. See man ssh-keygen for full details.