端口转发在 VirtualBox(Vagrant)中不起作用

端口转发在 VirtualBox(Vagrant)中不起作用

我有 VirtualBox(实际上是 Vagrant)和 CentOs。我在那里进行了端口转发(NAT)。例如,我的盒子里有一些应用程序绑定到端口 8080。端口已转发。所以我可以从主机和客户机连接到此端口。

telnet 127.0.0.1 8080

但我无法从我的主机执行任何操作:

telnet 127.0.0.1 8080
Trying 127.0.0.1...
Connected to 127.0.0.1.
Escape character is '^]'.
HEAD / HTTP/1.0
....sleeeeeep.....

但是它可以从我的 vagrant ssh 会话中运行。

如何修复?

答案1

好的,是防火墙的问题。

service iptables stop
chkconfig iptables off

相关内容