1. The local machine can ping the Virtual Machine 2. The virtual machine can also ping the local machine 3. The virtual machine can access its own web 4. The local machine cannot access its web
It was later discovered that the firewall blocked port 80.
Check whether port 80 of the server is blocked by the firewall. Run the following command:
Telnet {Server ip} 80 to test.
Solution:/sbin/iptables-I INPUT-p tcp -- dport 80-j ACCEPT and save:/etc/rc. d/init. d/iptables save and restart Firewall/etc/init. d/iptables restart
Close the CentOS firewall and disable its services:
View CentOS Firewall Information:
/Etc/init. d/iptables status
Disable the CentOS Firewall Service:
/Etc/init. d/iptables stop
Permanently disable the Firewall:
Chkconfig -- level 35 iptables off
Finally, open the host browser and enter the Virtual Machine location to access the WEB server of the virtual machine!