1

The host machine is Windows 10 and the guest is Centos 7, bridged connection. From the guest, I can reach the internet just fine. From the host, I can ping the guest but not access apache via http.

For testing purposes I've turned off iptables. I've verified httpd is running. What else do I need to do?

2 Answers 2

1

If you are using Centos 7, then use this command in your guest VM and check from your host browser again.

systemctl stop firewalld
1
  • Thanks, everything I was looking at said to use iptables.
    – Pickle
    Commented Jul 31, 2016 at 17:33
0

Allow port 80 to be access from outside:

# firewall-cmd --permanent  --add-service=http
# firewall-cmd --reload

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .