ssh:troubleshooting_ssh
Differences
This shows you the differences between two versions of the page.
ssh:troubleshooting_ssh [2016/12/05 14:44] – created peter | ssh:troubleshooting_ssh [2019/12/04 21:35] (current) – removed peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== SSH - Troubleshooting SSH ====== | ||
- | |||
- | First, check that the SSH daemon is running: | ||
- | |||
- | <code bash> | ||
- | sudo ps -A | grep sshd | ||
- | </ | ||
- | |||
- | This command should produce a line(s) like this: | ||
- | |||
- | < | ||
- | <some number> ? 00:00:00 sshd | ||
- | </ | ||
- | |||
- | If there is no line, your SSH daemon is not running. | ||
- | |||
- | <code bash> | ||
- | sudo netstat --inet -lpn | grep sshd | ||
- | </ | ||
- | |||
- | This command should produce a line that looks like this: | ||
- | |||
- | < | ||
- | tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN <same number>/ | ||
- | </ | ||
- | |||
- | If there is more than one line, then your SSH daemon is listening on more than one port - you might want to go back and delete some Port lines in your sshd_config file. | ||
- | |||
- | If there are no lines, your SSH daemon isn't listening on any ports, so you need to add at least one Port line. If the line specifies something other than " | ||
- | |||
- | Next, try logging in from your own computer: | ||
- | |||
- | <code bash> | ||
- | sudo ssh -v localhost | ||
- | </ | ||
- | |||
- | ...which should show something like: | ||
- | |||
- | < | ||
- | OpenSSH_6.2p2 Ubuntu-6ubuntu0.1, | ||
- | debug1: Reading configuration data / | ||
- | debug1: / | ||
- | debug1: Connecting to localhost [127.0.0.1] port 22. | ||
- | debug1: connect to address 127.0.0.1 port 22: Connection refused | ||
- | ssh: connect to host localhost port 22: Connection refused | ||
- | </ | ||
- | |||
- | Notice that the connection was refused. | ||
- | |||
- | Lets retry logging in using an allowed IP address: | ||
- | |||
- | <code bash> | ||
- | sudo ssh -v 192.168.0.11 | ||
- | </ | ||
- | |||
- | ...which should show something like: | ||
- | |||
- | < | ||
- | OpenSSH_6.2p2 Ubuntu-6ubuntu0.1, | ||
- | debug1: Reading configuration data / | ||
- | debug1: / | ||
- | debug1: Connecting to 192.168.0.11 [192.168.0.11] port 22. | ||
- | debug1: Connection established. | ||
- | debug1: permanently_set_uid: | ||
- | debug1: SELinux support disabled | ||
- | debug1: identity file / | ||
- | debug1: identity file / | ||
- | debug1: identity file / | ||
- | debug1: identity file / | ||
- | debug1: identity file / | ||
- | debug1: identity file / | ||
- | debug1: Enabling compatibility mode for protocol 2.0 | ||
- | debug1: Local version string SSH-2.0-OpenSSH_6.2p2 Ubuntu-6ubuntu0.1 | ||
- | debug1: Remote protocol version 2.0, remote software version OpenSSH_6.2p2 Ubuntu-6ubuntu0.1 | ||
- | debug1: match: OpenSSH_6.2p2 Ubuntu-6ubuntu0.1 pat OpenSSH* | ||
- | debug1: SSH2_MSG_KEXINIT sent | ||
- | debug1: SSH2_MSG_KEXINIT received | ||
- | debug1: kex: server-> | ||
- | debug1: kex: client-> | ||
- | debug1: sending SSH2_MSG_KEX_ECDH_INIT | ||
- | debug1: expecting SSH2_MSG_KEX_ECDH_REPLY | ||
- | debug1: Server host key: ECDSA b7: | ||
- | The authenticity of host ' | ||
- | ECDSA key fingerprint is b7: | ||
- | Are you sure you want to continue connecting (yes/no)? | ||
- | </ | ||
- | |||
- | This will print a lot of debugging information, | ||
- | |||
- | Enter **yes**. | ||
- | |||
- | ...which should show some additional lines: | ||
- | |||
- | < | ||
- | Are you sure you want to continue connecting (yes/no)? yes | ||
- | Warning: Permanently added ' | ||
- | debug1: ssh_ecdsa_verify: | ||
- | debug1: SSH2_MSG_NEWKEYS sent | ||
- | debug1: expecting SSH2_MSG_NEWKEYS | ||
- | debug1: SSH2_MSG_NEWKEYS received | ||
- | debug1: Roaming not allowed by server | ||
- | debug1: SSH2_MSG_SERVICE_REQUEST sent | ||
- | Write failed: Broken pipe | ||
- | </ | ||
- | |||
- | The **Write failed: Broken pipe** message is caused by a timeout issue. | ||
- | |||
- | **NOTE**: | ||
- | |||
- | Simply rerun by issuing the following command again. | ||
- | |||
- | <code bash> | ||
- | sudo ssh -v 192.168.0.11 | ||
- | </ | ||
- | |||
- | ...which should show something like: | ||
- | |||
- | < | ||
- | debug1: Server host key: ECDSA b7: | ||
- | debug1: Host ' | ||
- | debug1: Found key in / | ||
- | debug1: ssh_ecdsa_verify: | ||
- | debug1: SSH2_MSG_NEWKEYS sent | ||
- | debug1: expecting SSH2_MSG_NEWKEYS | ||
- | debug1: SSH2_MSG_NEWKEYS received | ||
- | debug1: Roaming not allowed by server | ||
- | debug1: SSH2_MSG_SERVICE_REQUEST sent | ||
- | debug1: SSH2_MSG_SERVICE_ACCEPT received | ||
- | debug1: Authentications that can continue: publickey, | ||
- | debug1: Next authentication method: publickey | ||
- | debug1: Trying private key: / | ||
- | debug1: Trying private key: / | ||
- | debug1: Trying private key: / | ||
- | debug1: Next authentication method: password | ||
- | root@192.168.1.11' | ||
- | </ | ||
- | |||
- | Remember that the password will only be accepted if the corresponding user is allowed access in by SSH. | ||
- | |||
- | In this case this would not work, as root was not an allowed user. | ||
- | |||
- | Try logging in from a valid user's account. For instance to login using john as the username use: | ||
- | |||
- | <code bash> | ||
- | sudo ssh -v 192.168.0.11 -l john | ||
- | </ | ||
- | |||
- | ...which should show something like: | ||
- | |||
- | < | ||
- | ... | ||
- | john@192.168.1.11' | ||
- | debug1: Authentication succeeded (password). | ||
- | Authenticated to 192.168.1.11 ([192.168.1.11]: | ||
- | debug1: channel 0: new [client-session] | ||
- | debug1: Requesting no-more-sessions@openssh.com | ||
- | debug1: Entering interactive session. | ||
- | debug1: Sending environment. | ||
- | debug1: Sending env LC_PAPER = en_GB.UTF-8 | ||
- | debug1: Sending env LC_ADDRESS = en_GB.UTF-8 | ||
- | debug1: Sending env LC_MONETARY = en_GB.UTF-8 | ||
- | debug1: Sending env LC_NUMERIC = en_GB.UTF-8 | ||
- | debug1: Sending env LC_TELEPHONE = en_GB.UTF-8 | ||
- | debug1: Sending env LC_IDENTIFICATION = en_GB.UTF-8 | ||
- | debug1: Sending env LANG = en_GB.UTF-8 | ||
- | debug1: Sending env LC_MEASUREMENT = en_GB.UTF-8 | ||
- | debug1: Sending env LC_TIME = en_GB.UTF-8 | ||
- | debug1: Sending env LC_NAME = en_GB.UTF-8 | ||
- | Welcome to Ubuntu 13.10 (GNU/Linux 3.11.0-18-generic x86_64) | ||
- | |||
- | * Documentation: | ||
- | |||
- | System information as of Mon Mar 24 21:38:35 GMT 2014 | ||
- | |||
- | System load: 0.08 Processes: | ||
- | Usage of /home: 0.4% of 452MB Users logged in: 0 | ||
- | Memory usage: | ||
- | Swap usage: | ||
- | |||
- | Graph this data and manage this system at: | ||
- | https:// | ||
- | |||
- | Last login: Mon Mar 24 21:38:41 2014 from 192.168.1.184 | ||
- | </ | ||
- | |||
- | |||
- | If nothing happens, you might need to tell your computer' | ||
- | Once logged in, to leave the SSH command-line, | ||
- | |||
- | <code bash> | ||
- | exit | ||
- | </ | ||
ssh/troubleshooting_ssh.1480949085.txt.gz · Last modified: 2020/07/15 09:30 (external edit)