-
Beta Was this translation helpful? Give feedback.
Answered by
sanbroz
Jun 20, 2025
Replies: 1 comment 6 replies
-
|
Hi! Please try exposing the service from the Wiredoor dashboard first to make sure the configuration is applied correctly. Then, inside the Wiredoor container, run: ip routeYou should see a route like: 192.168.2.0/24 dev wg0 scope linkThis confirms that traffic to your LAN subnet is correctly routed through the WireGuard tunnel. If the route is missing, the service might not be reachable and you will need to restart wiredoor or recreate your node. |
Beta Was this translation helpful? Give feedback.
6 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment


This solved the issue (on gateway node)
sudo iptables -t nat -A POSTROUTING -o <client_interface> -j MASQUERADEStep-by-Step UFW-Compatible NAT Setup
Edit UFW’s IPv4 pre-routing config:
sudo nano /etc/ufw/before.rulesScroll to the top, and before the *filter section, add the following:
Edit the main UFW config:
sudo nano /etc/default/ufwSet:
DEFAULT_FORWARD_POLICY="ACCEPT"