net/firewwall/__

6 lines
270 B
Plaintext
Raw Permalink Normal View History

2025-03-19 08:09:16 +00:00
# Allow forwarding from incusbr0 to wlo1
sudo iptables -A FORWARD -i incusbr0 -o wlo1 -j ACCEPT
# Allow forwarding from wlo1 to incusbr0 for related and established connections
sudo iptables -A FORWARD -i wlo1 -o incusbr0 -m state --state RELATED,ESTABLISHED -j ACCEPT