openwrt_helloworld/nikki/files/nftables/reserved_ip6.nft
gitea-action fabf3933ff nikki: sync upstream
last commit: 509c66cdd9
2025-02-11 18:56:59 +08:00

24 lines
307 B
Plaintext

#!/usr/sbin/nft -f
table inet nikki {
set reserved_ip6 {
type ipv6_addr
flags interval
elements = {
::/128,
::1/128,
::ffff:0:0/96,
100::/64,
64:ff9b::/96,
2001::/32,
2001:10::/28,
2001:20::/28,
2001:db8::/32,
2002::/16,
fc00::/7,
fe80::/10,
ff00::/8
}
}
}