Change iptables to Insert instead of append.

This commit is contained in:
Sky Hearn 2024-03-08 03:24:51 +00:00
parent d695930229
commit 67e8c86a87
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@
# This allows the wireguard server to route your traffic to the internet and hence be like a VPN
# For this to work you have to set the dnsserver IP of your router (or dnsserver of choice) in your clients
postSetup = ''
${pkgs.iptables}/bin/iptables -t nat -A POSTROUTING -s 10.100.0.0/24 -o eno4 -j MASQUERADE
${pkgs.iptables}/bin/iptables -t nat -I POSTROUTING -s 10.100.0.0/24 -o eno4 -j MASQUERADE
'';
# This undoes the above command