ubuntu:vpn:openvpn:l3_tunneling
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
ubuntu:vpn:openvpn:l3_tunneling [2021/07/02 16:32] – peter | ubuntu:vpn:openvpn:l3_tunneling [2021/07/02 17:18] (current) – [NAT the clients to the IP of the OpenVPN server] peter | ||
---|---|---|---|
Line 136: | Line 136: | ||
===== Enable Routing ===== | ===== Enable Routing ===== | ||
+ | |||
+ | Uncomment this line in / | ||
+ | |||
+ | <file bash / | ||
+ | net.ipv4.ip_forward = 1 | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
<code bash> | <code bash> | ||
Line 141: | Line 154: | ||
</ | </ | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== NAT the clients to the IP of the OpenVPN server ===== | ||
+ | |||
+ | <code bash> | ||
+ | iptables -t nat -A POSTROUTING -s 10.0.0.0/24 -o eth0 -j MASQUERADE | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | </ | ||
+ | |||
+ | |||
+ | To make this permanent save the iptables rule to a file: | ||
+ | |||
+ | <code bash> | ||
+ | iptables-save > / | ||
+ | </ | ||
+ | |||
+ | To load the rules on startup use put it into this file: | ||
+ | |||
+ | <file bash / | ||
+ | iptables-restore < / | ||
+ | </ | ||
+ | This will make sure, that the NAT instruction is loaded after a system reboot. |
ubuntu/vpn/openvpn/l3_tunneling.1625243579.txt.gz · Last modified: 2021/07/02 16:32 by peter