Add Support for IPV6 and Arbitrary Server Address
Add IPV6 support for Apple Devices Note: Works in GUI not CLI Adds Support for Arbitrary Server Address
This commit is contained in:
parent
cca5999214
commit
2088ae6ede
20 changed files with 276 additions and 56 deletions
21
server_patch.txt
Normal file
21
server_patch.txt
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
# Add this to ~/server/wg0.conf upon regeneration
|
||||
|
||||
PostUp = iptables -A FORWARD -i %i -j ACCEPT
|
||||
|
||||
PostUp = iptables -A FORWARD -o %i -j ACCEPT
|
||||
|
||||
PostUp = iptables -t nat -A POSTROUTING -o eth+ -j MASQUERADE
|
||||
|
||||
PostUp = ip6tables -A FORWARD -i %i -j ACCEPT
|
||||
|
||||
PostUp = ip6tables -A FORWARD -o %i -j ACCEPT
|
||||
|
||||
PostDown = iptables -D FORWARD -i %i -j ACCEPT
|
||||
|
||||
PostDown = iptables -D FORWARD -o %i -j ACCEPT
|
||||
|
||||
PostDown = iptables -t nat -D POSTROUTING -o eth+ -j MASQUERADE
|
||||
|
||||
PostDown = ip6tables -D FORWARD -i %i -j ACCEPT
|
||||
|
||||
PostDown = ip6tables -D FORWARD -o %i -j ACCEPT
|
||||
Loading…
Add table
Add a link
Reference in a new issue