This topic has been archived. It cannot be replied.
-
工作学习 / 学科技术讨论 / 请教:可以telnet locahost 但没办法telnet 本机的ip我在本机上安装了个程序, 使用了8080 端口
telnet locahost 8080 和 telnet 127.0.0.1 8080 可以
但Telnet 192.168.0.170 8080 不行
192.168.0.170 是我本地机器ip 地址
-bobo123(bobo123);
2010-7-2
{160}
(#6156612@0)
-
原因可能 1.你的程序只listen on localhost. 2. /etc/hosts.allow or iptables blocks it. Try to use lsof -i:8080 to see if your program is listening on *:8080 and check /etc/hosts.allow and iptables -L
-hillman(山大王);
2010-7-2
(#6157012@0)
-
谢谢。
-bobo123(bobo123);
2010-7-2
(#6157397@0)