I have two systems in my office LAN. One is running Fedora and the other windows 7. I can ping the windows machine from the Fedora machine but I am unable to ping the Fedora machine from windows machine. Whenever I ping the Fedora machine it gives a "Request timed out" I tried disabling the firewall on Fedora machine but it did't help. Please suggest what could be the problem here.
|
show 2 more comments
feedback
|
migrated from stackoverflow.com Oct 8 '11 at 7:30
This question came from our site for professional and enthusiast programmers.
|
Ping replies are simply handled by an interrupt call in the Windows TCP/IP stack, therefore interaction with your server is quite limited. To send out the ping from Windows, though, it needs to know how to route the packet. Is your routing set up correctly? Can you see the network from your Windows box? Have you got the right IP address for your Fedora box? (I edited this to get the Windows/Fedora thing the right way round, but the basic point remains the same - as has also been said, replying to a ping and sending a ping out are not the same) | |||||
feedback
|
cat /proc/sys/net/ipv4/icmp_echo_ignore_all- does it show 1? Then doecho "0" >/proc/sys/net/ipv4/icmp_echo_ignore_alland try ping again. – ott-- Oct 7 '11 at 19:25