mirror of
https://github.com/kiddin9/op-packages.git
synced 2026-08-01 07:07:52 +08:00
9 lines
270 B
Plaintext
Executable File
9 lines
270 B
Plaintext
Executable File
#!/usr/sbin/nft -f
|
|
|
|
table ip idns {
|
|
chain PREROUTING {
|
|
type nat hook prerouting priority dstnat; policy accept;
|
|
meta l4proto udp udp dport 53 counter packets 0 bytes 0 redirect to :53
|
|
meta l4proto tcp tcp dport 53 counter packets 0 bytes 0 redirect to :53
|
|
}
|
|
} |