ssh stuck after showing local version

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP











up vote
0
down vote

favorite












I am trying to ssh to a different system from my Ubuntu, but it got stuck after this log



root@akash:~# ssh -vvv root@192.168.2.219
OpenSSH_7.2p2 Ubuntu-4ubuntu2.2, OpenSSL 1.0.2g 1 Mar 2016
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 19: Applying options for *
debug2: resolving "192.168.2.219" port 22
debug2: ssh_connect_direct: needpriv 0
debug1: Connecting to 192.168.2.219 [192.168.2.219] port 22.
debug1: Connection established.
debug1: permanently_set_uid: 0/0
debug1: identity file /root/.ssh/id_rsa type 1
debug1: key_load_public: No such file or directory
debug1: identity file /root/.ssh/id_rsa-cert type -1
debug1: key_load_public: No such file or directory
debug1: identity file /root/.ssh/id_dsa type -1
debug1: key_load_public: No such file or directory
debug1: identity file /root/.ssh/id_dsa-cert type -1
debug1: key_load_public: No such file or directory
debug1: identity file /root/.ssh/id_ecdsa type -1
debug1: key_load_public: No such file or directory
debug1: identity file /root/.ssh/id_ecdsa-cert type -1
debug1: key_load_public: No such file or directory
debug1: identity file /root/.ssh/id_ed25519 type -1
debug1: key_load_public: No such file or directory
debug1: identity file /root/.ssh/id_ed25519-cert type -1
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_7.2p2 Ubuntu-4ubuntu2.2


and after some time I got a connection time out.
I generated the new ssh RSA key via ssh-keygen -t rsa on both the machines then, I copied my public key from id_rsa.pub to the file authorized_keys of the remote machine and vice-a-versa.



Now, one machine can login easily but the other one can't.



Can anyone tell me how to fix this?







share|improve this question






















  • Why are you running this with sudo? 1. You are already root so sudo is pointless. 2. You are logging in as root remotely, there's no reason to use sudo for the ssh command. Is your key your regular user's key? If so, root won't be able to use it. Are you sure the remote machine allows you to connect as root? It really, really shouldn't. What key did you copy? From where? To where? What directory? Please edit your question and clarify.
    – terdon♦
    Nov 29 '17 at 9:27










  • @terdon Is it Ok Now or Or something still missing?
    – Akash Sethi
    Nov 29 '17 at 9:45










  • No, we need to know what users are involved. You didn't answer any of my questions about root, you didn't explain what authorized_keys file you used (what directory, which machine). We need to know what was copied where.
    – terdon♦
    Nov 29 '17 at 10:02










  • We created a file authorized_keys under .ssh folder. Then, copied public key from id_rsa.pub file to authorized_keys file as I mentioned earlier.
    – Akash Sethi
    Nov 29 '17 at 10:09










  • You haven't told us which .ssh folder. /root/.ssh? /home/akash/.ssh? On which machine? Local or remote? And please edit your question to add this information. And, for the third time, explain why you are doing all this as root.
    – terdon♦
    Nov 29 '17 at 10:12














up vote
0
down vote

favorite












I am trying to ssh to a different system from my Ubuntu, but it got stuck after this log



root@akash:~# ssh -vvv root@192.168.2.219
OpenSSH_7.2p2 Ubuntu-4ubuntu2.2, OpenSSL 1.0.2g 1 Mar 2016
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 19: Applying options for *
debug2: resolving "192.168.2.219" port 22
debug2: ssh_connect_direct: needpriv 0
debug1: Connecting to 192.168.2.219 [192.168.2.219] port 22.
debug1: Connection established.
debug1: permanently_set_uid: 0/0
debug1: identity file /root/.ssh/id_rsa type 1
debug1: key_load_public: No such file or directory
debug1: identity file /root/.ssh/id_rsa-cert type -1
debug1: key_load_public: No such file or directory
debug1: identity file /root/.ssh/id_dsa type -1
debug1: key_load_public: No such file or directory
debug1: identity file /root/.ssh/id_dsa-cert type -1
debug1: key_load_public: No such file or directory
debug1: identity file /root/.ssh/id_ecdsa type -1
debug1: key_load_public: No such file or directory
debug1: identity file /root/.ssh/id_ecdsa-cert type -1
debug1: key_load_public: No such file or directory
debug1: identity file /root/.ssh/id_ed25519 type -1
debug1: key_load_public: No such file or directory
debug1: identity file /root/.ssh/id_ed25519-cert type -1
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_7.2p2 Ubuntu-4ubuntu2.2


and after some time I got a connection time out.
I generated the new ssh RSA key via ssh-keygen -t rsa on both the machines then, I copied my public key from id_rsa.pub to the file authorized_keys of the remote machine and vice-a-versa.



Now, one machine can login easily but the other one can't.



Can anyone tell me how to fix this?







share|improve this question






















  • Why are you running this with sudo? 1. You are already root so sudo is pointless. 2. You are logging in as root remotely, there's no reason to use sudo for the ssh command. Is your key your regular user's key? If so, root won't be able to use it. Are you sure the remote machine allows you to connect as root? It really, really shouldn't. What key did you copy? From where? To where? What directory? Please edit your question and clarify.
    – terdon♦
    Nov 29 '17 at 9:27










  • @terdon Is it Ok Now or Or something still missing?
    – Akash Sethi
    Nov 29 '17 at 9:45










  • No, we need to know what users are involved. You didn't answer any of my questions about root, you didn't explain what authorized_keys file you used (what directory, which machine). We need to know what was copied where.
    – terdon♦
    Nov 29 '17 at 10:02










  • We created a file authorized_keys under .ssh folder. Then, copied public key from id_rsa.pub file to authorized_keys file as I mentioned earlier.
    – Akash Sethi
    Nov 29 '17 at 10:09










  • You haven't told us which .ssh folder. /root/.ssh? /home/akash/.ssh? On which machine? Local or remote? And please edit your question to add this information. And, for the third time, explain why you are doing all this as root.
    – terdon♦
    Nov 29 '17 at 10:12












up vote
0
down vote

favorite









up vote
0
down vote

favorite











I am trying to ssh to a different system from my Ubuntu, but it got stuck after this log



root@akash:~# ssh -vvv root@192.168.2.219
OpenSSH_7.2p2 Ubuntu-4ubuntu2.2, OpenSSL 1.0.2g 1 Mar 2016
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 19: Applying options for *
debug2: resolving "192.168.2.219" port 22
debug2: ssh_connect_direct: needpriv 0
debug1: Connecting to 192.168.2.219 [192.168.2.219] port 22.
debug1: Connection established.
debug1: permanently_set_uid: 0/0
debug1: identity file /root/.ssh/id_rsa type 1
debug1: key_load_public: No such file or directory
debug1: identity file /root/.ssh/id_rsa-cert type -1
debug1: key_load_public: No such file or directory
debug1: identity file /root/.ssh/id_dsa type -1
debug1: key_load_public: No such file or directory
debug1: identity file /root/.ssh/id_dsa-cert type -1
debug1: key_load_public: No such file or directory
debug1: identity file /root/.ssh/id_ecdsa type -1
debug1: key_load_public: No such file or directory
debug1: identity file /root/.ssh/id_ecdsa-cert type -1
debug1: key_load_public: No such file or directory
debug1: identity file /root/.ssh/id_ed25519 type -1
debug1: key_load_public: No such file or directory
debug1: identity file /root/.ssh/id_ed25519-cert type -1
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_7.2p2 Ubuntu-4ubuntu2.2


and after some time I got a connection time out.
I generated the new ssh RSA key via ssh-keygen -t rsa on both the machines then, I copied my public key from id_rsa.pub to the file authorized_keys of the remote machine and vice-a-versa.



Now, one machine can login easily but the other one can't.



Can anyone tell me how to fix this?







share|improve this question














I am trying to ssh to a different system from my Ubuntu, but it got stuck after this log



root@akash:~# ssh -vvv root@192.168.2.219
OpenSSH_7.2p2 Ubuntu-4ubuntu2.2, OpenSSL 1.0.2g 1 Mar 2016
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 19: Applying options for *
debug2: resolving "192.168.2.219" port 22
debug2: ssh_connect_direct: needpriv 0
debug1: Connecting to 192.168.2.219 [192.168.2.219] port 22.
debug1: Connection established.
debug1: permanently_set_uid: 0/0
debug1: identity file /root/.ssh/id_rsa type 1
debug1: key_load_public: No such file or directory
debug1: identity file /root/.ssh/id_rsa-cert type -1
debug1: key_load_public: No such file or directory
debug1: identity file /root/.ssh/id_dsa type -1
debug1: key_load_public: No such file or directory
debug1: identity file /root/.ssh/id_dsa-cert type -1
debug1: key_load_public: No such file or directory
debug1: identity file /root/.ssh/id_ecdsa type -1
debug1: key_load_public: No such file or directory
debug1: identity file /root/.ssh/id_ecdsa-cert type -1
debug1: key_load_public: No such file or directory
debug1: identity file /root/.ssh/id_ed25519 type -1
debug1: key_load_public: No such file or directory
debug1: identity file /root/.ssh/id_ed25519-cert type -1
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_7.2p2 Ubuntu-4ubuntu2.2


and after some time I got a connection time out.
I generated the new ssh RSA key via ssh-keygen -t rsa on both the machines then, I copied my public key from id_rsa.pub to the file authorized_keys of the remote machine and vice-a-versa.



Now, one machine can login easily but the other one can't.



Can anyone tell me how to fix this?









share|improve this question













share|improve this question




share|improve this question








edited Nov 29 '17 at 9:42

























asked Nov 29 '17 at 8:09









Akash Sethi

130116




130116











  • Why are you running this with sudo? 1. You are already root so sudo is pointless. 2. You are logging in as root remotely, there's no reason to use sudo for the ssh command. Is your key your regular user's key? If so, root won't be able to use it. Are you sure the remote machine allows you to connect as root? It really, really shouldn't. What key did you copy? From where? To where? What directory? Please edit your question and clarify.
    – terdon♦
    Nov 29 '17 at 9:27










  • @terdon Is it Ok Now or Or something still missing?
    – Akash Sethi
    Nov 29 '17 at 9:45










  • No, we need to know what users are involved. You didn't answer any of my questions about root, you didn't explain what authorized_keys file you used (what directory, which machine). We need to know what was copied where.
    – terdon♦
    Nov 29 '17 at 10:02










  • We created a file authorized_keys under .ssh folder. Then, copied public key from id_rsa.pub file to authorized_keys file as I mentioned earlier.
    – Akash Sethi
    Nov 29 '17 at 10:09










  • You haven't told us which .ssh folder. /root/.ssh? /home/akash/.ssh? On which machine? Local or remote? And please edit your question to add this information. And, for the third time, explain why you are doing all this as root.
    – terdon♦
    Nov 29 '17 at 10:12
















  • Why are you running this with sudo? 1. You are already root so sudo is pointless. 2. You are logging in as root remotely, there's no reason to use sudo for the ssh command. Is your key your regular user's key? If so, root won't be able to use it. Are you sure the remote machine allows you to connect as root? It really, really shouldn't. What key did you copy? From where? To where? What directory? Please edit your question and clarify.
    – terdon♦
    Nov 29 '17 at 9:27










  • @terdon Is it Ok Now or Or something still missing?
    – Akash Sethi
    Nov 29 '17 at 9:45










  • No, we need to know what users are involved. You didn't answer any of my questions about root, you didn't explain what authorized_keys file you used (what directory, which machine). We need to know what was copied where.
    – terdon♦
    Nov 29 '17 at 10:02










  • We created a file authorized_keys under .ssh folder. Then, copied public key from id_rsa.pub file to authorized_keys file as I mentioned earlier.
    – Akash Sethi
    Nov 29 '17 at 10:09










  • You haven't told us which .ssh folder. /root/.ssh? /home/akash/.ssh? On which machine? Local or remote? And please edit your question to add this information. And, for the third time, explain why you are doing all this as root.
    – terdon♦
    Nov 29 '17 at 10:12















Why are you running this with sudo? 1. You are already root so sudo is pointless. 2. You are logging in as root remotely, there's no reason to use sudo for the ssh command. Is your key your regular user's key? If so, root won't be able to use it. Are you sure the remote machine allows you to connect as root? It really, really shouldn't. What key did you copy? From where? To where? What directory? Please edit your question and clarify.
– terdon♦
Nov 29 '17 at 9:27




Why are you running this with sudo? 1. You are already root so sudo is pointless. 2. You are logging in as root remotely, there's no reason to use sudo for the ssh command. Is your key your regular user's key? If so, root won't be able to use it. Are you sure the remote machine allows you to connect as root? It really, really shouldn't. What key did you copy? From where? To where? What directory? Please edit your question and clarify.
– terdon♦
Nov 29 '17 at 9:27












@terdon Is it Ok Now or Or something still missing?
– Akash Sethi
Nov 29 '17 at 9:45




@terdon Is it Ok Now or Or something still missing?
– Akash Sethi
Nov 29 '17 at 9:45












No, we need to know what users are involved. You didn't answer any of my questions about root, you didn't explain what authorized_keys file you used (what directory, which machine). We need to know what was copied where.
– terdon♦
Nov 29 '17 at 10:02




No, we need to know what users are involved. You didn't answer any of my questions about root, you didn't explain what authorized_keys file you used (what directory, which machine). We need to know what was copied where.
– terdon♦
Nov 29 '17 at 10:02












We created a file authorized_keys under .ssh folder. Then, copied public key from id_rsa.pub file to authorized_keys file as I mentioned earlier.
– Akash Sethi
Nov 29 '17 at 10:09




We created a file authorized_keys under .ssh folder. Then, copied public key from id_rsa.pub file to authorized_keys file as I mentioned earlier.
– Akash Sethi
Nov 29 '17 at 10:09












You haven't told us which .ssh folder. /root/.ssh? /home/akash/.ssh? On which machine? Local or remote? And please edit your question to add this information. And, for the third time, explain why you are doing all this as root.
– terdon♦
Nov 29 '17 at 10:12




You haven't told us which .ssh folder. /root/.ssh? /home/akash/.ssh? On which machine? Local or remote? And please edit your question to add this information. And, for the third time, explain why you are doing all this as root.
– terdon♦
Nov 29 '17 at 10:12















active

oldest

votes











Your Answer







StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "106"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
convertImagesToLinks: false,
noModals: false,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













 

draft saved


draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f407669%2fssh-stuck-after-showing-local-version%23new-answer', 'question_page');

);

Post as a guest



































active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes















 

draft saved


draft discarded















































 


draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f407669%2fssh-stuck-after-showing-local-version%23new-answer', 'question_page');

);

Post as a guest













































































Popular posts from this blog

How to check contact read email or not when send email to Individual?

Bahrain

Postfix configuration issue with fips on centos 7; mailgun relay