Update README to include incoming interface (-i tun0) in client NAT commands

This commit is contained in:
Ricardo Pallas 2024-08-24 20:33:22 +02:00 committed by GitHub
parent 90b93370ce
commit 3f83765c31
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -144,8 +144,8 @@ both IPv4 and IPv6 usage.
#### Using iptables
```
iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE
ip6tables -t nat -A POSTROUTING -o eth0 -j MASQUERADE
iptables -t nat -A POSTROUTING -o eth0 -i tun0 -j MASQUERADE
ip6tables -t nat -A POSTROUTING -o eth0 -i tun0 -j MASQUERADE
```
[Back to TOC](#table-of-contents)