ubuntu:vpn:openvpn:l3_tunneling
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
ubuntu:vpn:openvpn:l3_tunneling [2021/07/02 16:31] – created peter | ubuntu:vpn:openvpn:l3_tunneling [2021/07/02 17:18] (current) – [NAT the clients to the IP of the OpenVPN server] peter | ||
---|---|---|---|
Line 128: | Line 128: | ||
If everything is working correctly, the client can connect to the server. | If everything is working correctly, the client can connect to the server. | ||
+ | |||
+ | Unfortunately, | ||
</ | </ | ||
+ | ---- | ||
+ | |||
+ | ===== Enable Routing ===== | ||
+ | |||
+ | Uncomment this line in / | ||
+ | |||
+ | <file bash / | ||
+ | net.ipv4.ip_forward = 1 | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | |||
+ | <code bash> | ||
+ | echo 1 > / | ||
+ | </ | ||
+ | |||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== 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.1625243500.txt.gz · Last modified: 2021/07/02 16:31 by peter