无法 telnet 到服务器连接拒绝

无法 telnet 到服务器连接拒绝

我有两台具有以下规格的服务器:

  1. IP地址:192.168.1.94

  2. IP地址:192.168.1.221

我想telnet从第二个到第一个(到端口 5029),但我收到此错误:

root@debian:~# telnet 192.168.1.94 5029
Trying 192.168.1.94...
telnet: Unable to connect to remote host: Connection refused

我可以从 192.168.1.94 远程登录到它本身。这意味着程序正在监听 5029 端口:

[root@myelastix ~]# telnet localhost 5029
Trying 127.0.0.1...
Connected to myelastix.mohaymen.co (127.0.0.1).
Escape character is '^]'.

我认为可能是防火墙阻止了 192.168.1.94 服务器中的连接,但这些是防火墙规则:

[root@myelastix ~]# iptables -L
Chain INPUT (policy ACCEPT)
target     prot opt source               destination

Chain FORWARD (policy ACCEPT)
target     prot opt source               destination

Chain OUTPUT (policy ACCEPT)
target     prot opt source               destination

另外我也停止了 iptables 但什么也没发生:

[root@myelastix ~]# service iptables stop
Flushing firewall rules:                                   [  OK  ]
Setting chains to policy ACCEPT: filter                    [  OK  ]
Unloading iptables modules:                                [  OK  ]

问题是什么?

答案1

你能做这个吗?

[root@myelastix ~]# telnet 192.168.1.94 5029

如果没有,请确保telnetd配置为侦听外部接口。

netstat -tulpn | grep :5029

相关内容