Router – Loop redirect when ping the gateway

pingrouter

I have a router with WAN and LAN setup and act as DHCP server/gateway on my local LAN. The IP address is 192.168.1.1.

Today, I was hit by an internet failure and I checked the ping and get this weird ping result. Why the router continues to look for himself?

From 192.168.1.88: icmp_seq=6 Redirect Host(New nexthop: 192.168.1.1)
From 192.168.1.88: icmp_seq=6 Redirect Host(New nexthop: 192.168.1.1)
...........

Best Answer

ICMP Redirects are sent by a router when there is a more direct route from the client to the destination. This implies that your client is not actually using 192.168.1.1 as its default route, but rather is using 192.168.1.88 -- what does the routing table on the source look like?

Your setup is not very clear from your question though: which machine (and IP) are you pinging from, what IP are you pinging, and what is the network path between the source and the destination (routers, switches, APs, virtual machine hosts, etc.).

Related Topic