mirror of
https://github.com/kiddin9/op-packages.git
synced 2026-07-30 05:11:41 +08:00
8 lines
171 B
Plaintext
Executable File
8 lines
171 B
Plaintext
Executable File
#!/usr/sbin/nft -f
|
|
|
|
table ip ittl {
|
|
chain POSTROUTING {
|
|
type filter hook postrouting priority mangle; policy accept;
|
|
counter packets 0 bytes 0 # TTL set to 64
|
|
}
|
|
} |