Skip to main content
added 4 characters in body
Source Link

"Destination host unreachable" is given, when the system does not know how to send the ping request to the remote host in the first place. It means that your system or a router in between does not have a routing table entry/rule that allows it forward the packet to the router responsible for that network.

And it is getting "extremely chatty" because this happens for every packet (i.e. it is not lost, but essentially you are getting a "don't know how to deliver this packet" message back for each).

You could filter them out via grep though

ping 192.168.5.1 | grep -v "host unreachable"

ping 192.168.5.1 | grep -v "host unreachable"

"Destination host unreachable" is given, when the system does not know how to send the ping request to the remote host in the first place. It means that your system or a router in between does not have a routing table entry/rule that allows it forward the packet to the router responsible for that network.

And it is getting "extremely chatty" because this happens for every packet (i.e. it is not lost, but essentially you are getting a "don't know how to deliver this packet" message back for each).

You could filter them out via grep though

ping 192.168.5.1 | grep -v "host unreachable"

"Destination host unreachable" is given, when the system does not know how to send the ping request to the remote host in the first place. It means that your system or a router in between does not have a routing table entry/rule that allows it forward the packet to the router responsible for that network.

And it is getting "extremely chatty" because this happens for every packet (i.e. it is not lost, but essentially you are getting a "don't know how to deliver this packet" message back for each).

You could filter them out via grep though

ping 192.168.5.1 | grep -v "host unreachable"
Source Link

"Destination host unreachable" is given, when the system does not know how to send the ping request to the remote host in the first place. It means that your system or a router in between does not have a routing table entry/rule that allows it forward the packet to the router responsible for that network.

And it is getting "extremely chatty" because this happens for every packet (i.e. it is not lost, but essentially you are getting a "don't know how to deliver this packet" message back for each).

You could filter them out via grep though

ping 192.168.5.1 | grep -v "host unreachable"