You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If the default `FORWARD` policy is `DENY`, you need to enable ongoing forwarded traffic from the local network to the nebula network as well:
73
+
```bash
74
+
sudo iptables -A FORWARD -i enp3s0 -o nebula1 -j ACCEPT
75
+
sudo iptables -A FORWARD -i nebula1 -o enp3s0 -m state --state ESTABLISHED,RELATED -j ACCEPT
76
+
# Not needed, if run the following command, all traffic comes from any IP in the local network will be visible in nebula network as traffic from IP of the nebula1 interface
77
+
sudo iptables -t nat -A POSTROUTING -o nebula1 -j MASQUERADE
78
+
```
79
+
70
80
### Generate Nebula certificate
71
81
When generating Nebula certificate for local server, you need include `-subnets` argument with your local network CIDR, for example:
0 commit comments