You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
337 B
16 lines
337 B
#!/usr/bin/nft -f
|
|
|
|
flush ruleset
|
|
|
|
table ip nat {
|
|
chain prerouting {
|
|
type nat hook prerouting priority 0; policy accept;
|
|
}
|
|
|
|
# for all packets to WAN, after routing, replace source address with primary IP of WAN interface
|
|
chain postrouting {
|
|
type nat hook postrouting priority 100; policy accept;
|
|
oifname "ppp0" masquerade
|
|
}
|
|
}
|
|
|
|
|