openwrt_helloworld/mihomo/files/nftables/reserved_ip.nft
gitea-action 7316cfde5d mihomo: sync upstream
last commit: 30b31d9d65
2024-09-25 05:44:33 +08:00

20 lines
267 B
Plaintext

#!/usr/sbin/nft -f
table inet mihomo {
set reserved_ip {
type ipv4_addr
flags interval
elements = {
0.0.0.0/8,
10.0.0.0/8,
127.0.0.0/8,
100.64.0.0/10,
169.254.0.0/16,
172.16.0.0/12,
192.168.0.0/16,
224.0.0.0/4,
240.0.0.0/4
}
}
}