|
|
|
@ -206,13 +206,12 @@ function network_tables() {
|
|
|
|
|
if [ $version -lt 10 ]; then
|
|
|
|
|
install_log "Use iptables"
|
|
|
|
|
tablerouteA='iptables -t nat -A POSTROUTING -s 10.3.141.0\/24 -o lokitun0 -j MASQUERADE #RASPAP'
|
|
|
|
|
tablerouteB='iptables -t nat -A POSTROUTING -j MASQUERADE #RASPAP'
|
|
|
|
|
tablerouteB='iptables -t nat -A POSTROUTING -j MASQUERADE #RASPAP' else
|
|
|
|
|
tablerouteC='#RASPAP'
|
|
|
|
|
tablerouteD='#RASPAP'
|
|
|
|
|
else
|
|
|
|
|
install_log "Use nftables"
|
|
|
|
|
sudo apt-get -y install nftables
|
|
|
|
|
tablerouteA='nft add table nat #RASPAP'
|
|
|
|
|
tablerouteA='nft -f backup.nft #RASPAP'
|
|
|
|
|
tablerouteB='nft add chain nat postrouting { type nat hook postrouting priority 100 \\; } #RASPAP'
|
|
|
|
|
tablerouteC='nft add rule ip nat postrouting oifname "lokitun0" ip saddr 10.3.141.0\/24 counter masquerade #RASPAP'
|
|
|
|
|
tablerouteD='nft add rule ip nat postrouting counter masquerade #RASPAP'
|
|
|
|
|