In comp.os.linux.networking LHradowy <(E-Mail Removed)> wrote:
>
> Did a restarted the server and when I try to ping 192.168.2.11
> I get
> Destination Host Unreachable
On 192.168.2.1 run "ping -b -n 192.168.2.255" command. It will
send ICMP echo requests to the broadcast address, so you should
see smth like this:
# ping -nb 192.168.2.255
WARNING: pinging broadcast address
PING 192.168.2.255 (192.168.2.255) from 192.168.2.1 : 56(84) bytes of data.
64 bytes from 192.168.2.1: icmp_seq=0 ttl=64 time=290 usec
64 bytes from 192.168.2.11: icmp_seq=0 ttl=64 time=618 usec (DUP!)
[...]
On another host, 192.168.2.11, run "tcpdump -n icmp".
# tcpdump -n icmp
tcpdump: listening on eth0
14:44:00.057607 192.168.2.1 > 192.168.2.255: icmp: echo request (DF)
14:44:00.057627 192.168.2.11 > 192.168.2.1: icmp: echo reply
[...]
The '-n' option will prevent both ping and tcpdump from resolving
IP addresses into domain names. If you won't see similar picture,
check cables and hub ports.
--
andrei
|