sshがつながらなくなった事案(解決)

おかしい。
ふつーつながるのに、今日はつながらない。

$ ssh testuser@192.169.1.101
ssh: connect to host 192.169.1.101 port 22: Operation timed out

arpキャッシュ腐ってない。

$ arp -a
? (192.168.1.1) at ac:e8:7b:21:86:3c on en1 ifscope [ethernet]
? (192.168.1.101) at 8c:89:a5:14:32:b4 on en1 ifscope [ethernet]

経路も問題ない。

$ traceroute 192.168.1.101
traceroute to 192.168.1.101 (192.168.1.101), 64 hops max, 52 byte packets
 1  192.168.1.101 (192.168.1.101)  10.204 ms  8.185 ms  3.233 ms

当然ながら応答もある。

$ ping 192.168.1.101
PING 192.168.1.101 (192.168.1.101): 56 data bytes
64 bytes from 192.168.1.101: icmp_seq=0 ttl=64 time=5.394 ms
64 bytes from 192.168.1.101: icmp_seq=1 ttl=64 time=5.906 ms
^C

22開いてないかと思ったら、ちゃんと開いている。

$ telnet 192.168.1.101 22
Trying 192.168.1.101...
Connected to 192.168.1.101.
Escape character is '^]'.
SSH-2.0-dropbear_0.52
telnet> quit
Connection closed.

しかし...

$ ssh testuser@192.169.1.101
ssh: connect to host 192.169.1.101 port 22: Operation timed out

なぜだ... orz


TLS腐ってるのと接続しなくなった?