According to RFC1812 we have to ignore ICMP redirects when we
are acting as router (ipforwarding enabled). This doesn't fix the problem that host routes from ICMP redirects are never removed from the kernel routing table but removes the problem for machines doing packet forwarding. Reviewed by: sam (mentor)
This commit is contained in:
parent
06d557cc46
commit
87c3bd2755
@ -543,7 +543,11 @@ reflect:
|
||||
(int)(gw >> 24), (int)((gw >> 16) & 0xff),
|
||||
(int)((gw >> 8) & 0xff), (int)(gw & 0xff));
|
||||
}
|
||||
if (drop_redirect)
|
||||
/*
|
||||
* RFC1812 says we must ignore ICMP redirects if we
|
||||
* are acting as router.
|
||||
*/
|
||||
if (drop_redirect || ipforwarding)
|
||||
break;
|
||||
if (code > 3)
|
||||
goto badcode;
|
||||
|
Loading…
x
Reference in New Issue
Block a user