User Tools

Site Tools


ubuntu:vpn:openvpn:l3_tunneling

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
ubuntu:vpn:openvpn:l3_tunneling [2021/07/02 16:32] peterubuntu: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 /etc/sysctl.conf:
 +
 +<file bash /etc/sysctl.conf>
 +net.ipv4.ip_forward = 1
 +</file>
 +
 +<WRAP info>
 +**NOTE:**  This will make sure, that routing is enabled after the next system restart.
 +</WRAP>
 +
 +<WRAP info>
 +**NOTE:**  To temporarily allow routing without a reboot:
  
 <code bash> <code bash>
Line 141: Line 154:
 </code> </code>
  
 +</WRAP>
 +
 +----
 +
 +===== 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
 +</code>
 +
 +<WRAP info>
 +**NOTE:**  This will instruct the system to map every packet from the 10.0.0.0/24 subnet to the IP address of the eth0 interface.
 +</WRAP>
 +
 +
 +To make this permanent save the iptables rule to a file:
 +
 +<code bash>
 +iptables-save > /etc/iptables.up.rules
 +</code>
 +
 +To load the rules on startup use put it into this file:
 +
 +<file bash /etc/network/if-pre-up.d/iptables>
 +iptables-restore < /etc/iptables.up.rules
 +</file>
  
 +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

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki