前端之家收集整理的这篇文章主要介绍了
linux – telnet非交互式:由外部主机关闭的连接,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如果我做
telnet host_ip port < /dev/null
Trying host_ip...
Connected to host_ip.
Escape character is '^]'.
Connection closed by foreign host.
通过检查wireshark,客户端将tcp rst发送到主机端.谁能解释一下究竟发生了什么? telnet是否需要交互模式?
你确定Telnet服务在linux机器上运行吗?试试这个
telnet localhost 23 (23 port of telnet)
或尝试使用netcat
原文链接:https://www.f2er.com/linux/397440.html