Tell me more ×
Super User is a question and answer site for computer enthusiasts and power users. It's 100% free, no registration required.

I have 2 computers in my network ones ip address is 192.168.2.31(PC-A) and the others is 192.168.2.33(PC-B). When I'm trying to ping from PC-B to PC-A it says:

Pinging 192.168.2.33 with 32 bytes of data:

Reply from 192.168.2.31: Destination host unreachable.

Reply from 192.168.2.31: Destination host unreachable.

Reply from 192.168.2.31: Destination host unreachable.

Reply from 192.168.2.31: Destination host unreachable.

Ping statistics for 192.168.2.33:

Packets: Sent = 4, Received = 4, Lost = 0 (0% loss)

And when i'm trying the otherwise it tells me same message with ip address switched..They are both can connect to the Internet

share|improve this question
What's the subnet mask & default gateway on each machine? – SLaks Dec 17 '12 at 17:25
They both have same subnet mask(255.255.255.0) and default gateway(192.168.2.1). – Roberto Sadfasdf Dec 17 '12 at 17:35
1  
Please ping the router from both machines and confirm that it is successful. Can you ping the other way (from A to B) – Dave Rook Dec 18 '12 at 11:51
You can check ARP table if the other host is in the network. arp -a will show you MAC addresses and associated IP addresses from the same subnet alongside your router IP and MAC. – mnmnc Dec 18 '12 at 12:08
I would also check if all three devices have the same subnet mask setup because id the subnet mask is setup for one of them to 255.255.255.224 it will be the reason why host cannot communicate. – mnmnc Dec 18 '12 at 12:15

migrated from stackoverflow.com Dec 18 '12 at 11:50

1 Answer

You need to enable the firewall to allow that on your operating system. Depending on your setting the ping is blocked on the PC firewall. See this for instructions how to fix it.

share|improve this answer
1  
Hell no! Destination unreachable does not equal to Request time out. ICMP is not blocked by the destination host as it never hits it. Look at the IP address that sent 'Destination unreachable' status. It is not the destination IP -> this is not firewall issue. It could be on the originating host but i really doubt that, and it would involve outbound rules not inbound as you are suggesting. – mnmnc Dec 18 '12 at 12:12

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.