I have a cloud server running Debian Wheezy. Webserver is nginx.
If I go to www.mydomain.com in internet explorer I get my webserver just fine. However If I go to a command prompt on a remote machine and ping www.mydomain.com or domain.com I get request timed out.
This happens if I type the name of the domain or the ip.
Why is this? How can I enable ping requests on my linux box?
When i type
sudo iptables -L
The following is returned: -
Chain INPUT (policy ACCEPT)
target prot opt source destination
Chain FORWARD (policy ACCEPT)
target prot opt source destination
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
If I try to tracert to the domain the tracert goes through 8 hops, until it reaches my server IP then the server IP is displayed in tracrt and every other entry after that, reads "Request timed out".
Is there something I need to set in the Debian firewall to enable ping requests if so how do I do that?
Thank you.