Guest User

Untitled

a guest
Jan 19th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.66 KB | None | 0 0
  1. # netstat -natp | grep :22
  2. tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 29668/sshd
  3. tcp6 0 0 :::22 :::* LISTEN 29668/sshd
  4.  
  5. ssh -vvv6 <FQDN>
  6. OpenSSH_7.2p2 Ubuntu-4ubuntu1, OpenSSL 1.0.2g-fips 1 Mar 2016
  7. debug1: Reading configuration data ~/.ssh/config
  8. debug1: ~/.ssh/config line 5: Applying options for *
  9. debug1: Reading configuration data /etc/ssh/ssh_config
  10. debug1: /etc/ssh/ssh_config line 19: Applying options for *
  11. debug2: resolving "<FQDN>" port 22
  12. debug2: ssh_connect_direct: needpriv 0
  13. debug1: Connecting to <FQDN> [*************] port 22.
  14. debug1: connect to address ************* port 22: Connection timed out
  15. ssh: connect to host <FQDN> port 22: Connection timed out
  16.  
  17. ssh -vvv6 zzz@[3ffc:1900::dead:bea7:dad]
  18. OpenSSH_7.4p1, LibreSSL 2.5.0
  19. debug1: Reading configuration data /Users/zzz/.ssh/config
  20. debug1: /Users/zzz/.ssh/config line 1: Applying options for *
  21. debug1: Reading configuration data /etc/ssh/ssh_config
  22. debug2: resolving "[3ffc:1900::dead:bea7:dad]" port 22
  23. debug2: ssh_connect_direct: needpriv 0
  24. debug1: Connecting to [3ffc:1900::dead:bea7:dad] [xxxx:xxxx:xxxx::1] port 22.
  25. debug1: connect to address xxxx:xxxx:xxxx::1 port 22: Operation timed out
  26.  
  27. ssh -vvv6 zzz@3ffc:1900::dead:bea7:dad
  28. OpenSSH_7.4p1, LibreSSL 2.5.0
  29. debug1: Reading configuration data /Users/zzz/.ssh/config
  30. debug1: /Users/zzz/.ssh/config line 1: Applying options for *
  31. debug1: Reading configuration data /etc/ssh/ssh_config
  32. debug2: resolving "3ffc:1900::dead:bea7:dad" port 22
  33. debug2: ssh_connect_direct: needpriv 0
  34. debug1: Connecting to 3ffc:1900::dead:bea7:dad [3ffc:1900::dead:bea7:dad] port 22.
Add Comment
Please, Sign In to add comment