Shared address space for stacking NAT (CGN) is, just like 'regular' private address space, LAN.

This commit is contained in:
Coren[m] 2013-12-05 20:46:50 +01:00
parent e6a1754053
commit c764fc16be
No known key found for this signature in database
GPG Key ID: AFA6943800F5DC6D

View File

@ -176,6 +176,11 @@ int LAN_ip(IP ip)
&& ip4.uint8[2] != 255)
return 0;
/* RFC 6598: 100.64.0.0 to 100.127.255.255 (100.64.0.0/10)
* (shared address space to stack another layer of NAT) */
if ((ip4.uint8[0] == 100) && ((ip4.uint8[1] & 0xC0) == 0x40))
return 0;
} else if (ip.family == AF_INET6) {
/* autogenerated for each interface: FE80::* (up to FEBF::*)