From 1403ca10189c47ad1de3915eeb030deddc114685 Mon Sep 17 00:00:00 2001 From: Yusuke Ichiki Date: Fri, 17 Jul 2026 23:58:42 +0900 Subject: man: Fix RFC 1918 network prefix lengths According to RFC 1918, the following IP prefixes are reserved for private internets: 10.0.0.0/8 172.16.0.0/12 192.168.0.0/16 This PR fixes the prefix lengths in references to private networks ("RFC 1918 networks", "the standard private IP address ranges"). The changes are limited to man pages. Signed-off-by: Yusuke Ichiki Pull Request: https://github.com/freebsd/freebsd-src/pull/2328 MFC after: 3 days --- sys/netinet/libalias/libalias.3 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/netinet/libalias') diff --git a/sys/netinet/libalias/libalias.3 b/sys/netinet/libalias/libalias.3 index 1b8ecc14059d..27e03447dd25 100644 --- a/sys/netinet/libalias/libalias.3 +++ b/sys/netinet/libalias/libalias.3 @@ -203,8 +203,8 @@ originate from unregistered address spaces will be ignored. The standard private IP address ranges are: .Pp 10.0.0.0 -> 10.255.255.255 (/8) -172.16.0.0 -> 172.31.255.255 (/16) -192.168.0.0 -> 192.168.255.255 (/24) +172.16.0.0 -> 172.31.255.255 (/12) +192.168.0.0 -> 192.168.255.255 (/16) .Pp This option is useful in the case that the packet aliasing host has both registered and unregistered subnets on different interfaces. -- cgit v1.3