telnet
다양한 Linux(Linux Mint, Ubuntu Server)에서 이 명령을 사용할 때 예기치 않은 동작이 발생합니다.
존재하지 않는 장치에 연결을 시도하면 성공합니다. 나는 테스트했다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
Traceroute(업데이트됨)
$ 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
존재하지 않는 장치에 연결하는 이유는 무엇입니까 ?