telnet
我在各种 Linux(Linux Mint、Ubuntu 服务器)上使用该命令时出现意外行为。
当尝试连接到不存在的设备时,它会成功。我测试过1.2.3.4
这不是占位符。
远程登录
$ telnet 1.2.3.4 9100
Trying 1.2.3.4...
Connected to 1.2.3.4.
Escape character is '^]'.
^]
telnet> Connection closed.
平
按预期失败,这不是问题!
$ ping 1.2.3.4 -c 5
PING 1.2.3.4 (1.2.3.4) 56(84) bytes of data.
--- 1.2.3.4 ping statistics ---
5 packets transmitted, 0 received, 100% packet loss, time 4076ms
跟踪路由(更新)
$ sudo traceroute -T -p telnet 1.2.3.4
traceroute to 1.2.3.4 (1.2.3.4), 30 hops max, 60 byte packets
1 1.2.3.4 (1.2.3.4) 2.693 ms 3.166 ms 3.178 ms
路线
$ route -n
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
0.0.0.0 192.168.2.240 0.0.0.0 UG 600 0 0 wlp4s0
169.254.0.0 0.0.0.0 255.255.0.0 U 1000 0 0 br-427309471a28
172.17.0.0 0.0.0.0 255.255.0.0 U 0 0 0 docker0
172.18.0.0 0.0.0.0 255.255.0.0 U 0 0 0 br-427309471a28
192.168.2.0 0.0.0.0 255.255.255.0 U 600 0 0 wlp4s0
即使停止时docker
我仍然可以重现:
$ route -n
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
0.0.0.0 192.168.2.240 0.0.0.0 UG 600 0 0 wlp4s0
192.168.2.0 0.0.0.0 255.255.255.0 U 600 0 0 wlp4s0
问题
这是录音。
为什么要telnet
在不存在的设备上进行连接?