如何将 telnet 连接到主机的特定端口?

How to connect telnet to particular port of host?

我有 HOST='xx.xxx.xx.xx' 和 PORT = xxxx

我试过了

tn = telnetlib.Telnet(HOST, port=PORT, timeout=5)

我遇到了这个错误

ConnectionRefusedError: [Errno 61] Connection refused

除了默认方法,还有其他方法可以远程登录到端口吗?

ConnectionRefused 意味着服务器拒绝了您的连接,这反过来可能意味着该端口上没有 运行 telnet 服务。您可以对任何端口进行远程登录,只要服务器中该端口上的 运行 中的远程登录服务即可。