Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Ubuntu 11.10 的 8087 端口上运行 python paste http 服务器
nmap 说 8087/tcp 是开放的
ufw防火墙处于非活动状态
但是,如果我在另一台本地网络机器上拉起它的本地 ip (192.168.1.50:8087),它就无法连接。
我可以在本地网络机器上ping 192.168.1.50 很好。我不能telnet到端口8087,这告诉我有什么东西阻止了它?
在这里待了几个小时 0_o
任何帮助表示赞赏
它绑定到 127.0.0.1:8087 – Vigrond 46 秒前
那是你的问题。您需要重新配置粘贴服务器以绑定到192.168.1.50或0.0.0.0; 127.0.0.1是一个不接受来自外部的连接的环回接口。
192.168.1.50
0.0.0.0
127.0.0.1