Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| softether_vpn_server_configuration [28 May 2025 / 06:32:52] – kadek | softether_vpn_server_configuration [03 October 2025 / 19:37:21] (current) – [Config: Layer 2 VPN Bridge Mode] kadek | ||
|---|---|---|---|
| Line 20: | Line 20: | ||
| ==== Config: SecureNAT ==== | ==== Config: SecureNAT ==== | ||
| + | Follow these steps if SecureNAT is chosen instead of Virtual Hub: | ||
| * Enable SecureNAT which is paired with DHCP: | * Enable SecureNAT which is paired with DHCP: | ||
| Line 37: | Line 38: | ||
| Save Log: yes | Save Log: yes | ||
| - | Log out from the admin console: | + | |
| exit | exit | ||
| + | ==== Config: Layer 2 VPN Bridge Mode ==== | ||
| + | |||
| + | Follow these steps if Local Bridge Connection is chosen instead of SecureNAT. | ||
| + | |||
| + | * Disable SecureNAT if it's active: | ||
| + | |||
| + | SecureNatDisable | ||
| + | |||
| + | * Create the Bridge, EtherSoft will add **tap_** prefix, and created **tap_vpn** for the tap device: | ||
| + | |||
| + | BridgeCreate YOUR_HUB_NAME /DEVICE:vpn /TAP:yes | ||
| + | |||
| + | * Log out from the admin console: | ||
| + | |||
| + | exit | ||
| + | |||
| + | * Assign IP address to the tap device using DHCP, follow this guide: [[DHCP Server]] | ||
| + | * Enable IP Forwarding: | ||
| + | |||
| + | sudo sysctl -w net.ipv4.ip_forward=1 | ||
| + | |||
| + | * Make it permanent by ensuring this parameter **net.ipv4.ip_forward=1** on file **/ | ||
| + | * On cloud server disable the Reverse Path Filtering (RPF), edit **/ | ||
| + | |||
| + | * add this rule to IPTABLE: | ||
| + | |||
| + | sudo iptables -t nat -A POSTROUTING -s 192.168.40.0/ | ||
| + | sudo iptables -A FORWARD -i tap_vpn -o ens3 -j ACCEPT | ||
| + | sudo iptables -A FORWARD -i ens3 -o tap_vpn -j ACCEPT | ||
| + | |||
| + | * check the IPTABLES rules: | ||
| + | |||
| + | sudo iptables -t nat -L -v -n | ||
| + | |||
| + | * Install this to make the IPTABLES rules persistent: | ||
| + | |||
| + | sudo apt install netfilter-persistent -y | ||
| + | |||
| + | * save the IPTABLES rules: | ||
| + | |||
| + | sudo netfilter-persistent save | ||
| + | |||
| + | ---- | ||
| + | |||
| + | * Remember to enable ICMP on Windows if using Windows as the client for testing the ping! | ||
| + | * Some clouds have reverse path filtering activated, check / | ||
| + | * if the value is 2 (STRICT), set this off (temporary): | ||
| + | |||
| + | sudo sysctl -w net.ipv4.conf.tap_vpn.rp_filter=0 | ||
| + | sudo sysctl -w net.ipv4.conf.all.rp_filter=0 | ||
| + | |||
| + | | ||
| + | |||
| + | net.ipv4.conf.tap_vpn.rp_filter = 0 | ||
| + | net.ipv4.conf.all.rp_filter = 0 | ||
