updates internal network traffic rules to allow access from the 192.168.86.0/24 subnet

This commit is contained in:
Menno van Leeuwen 2024-11-16 02:54:30 +01:00
parent a068565066
commit 014badfa99
Signed by: vleeuwenmenno
SSH Key Fingerprint: SHA256:OJFmjANpakwD3F2Rsws4GLtbdz1TJ5tkQF0RZmF0TRE

View File

@ -74,7 +74,7 @@
# Allow internal network traffic # Allow internal network traffic
iptables -A INPUT -i docker0 -j ACCEPT iptables -A INPUT -i docker0 -j ACCEPT
iptables -A INPUT -i tailscale0 -j ACCEPT iptables -A INPUT -i tailscale0 -j ACCEPT
iptables -A INPUT -s 192.168.0.0/16 -j ACCEPT iptables -A INPUT -s 192.168.86.0/24 -j ACCEPT
# Allow Docker inter-network communication # Allow Docker inter-network communication
iptables -A FORWARD -i br-* -o br-* -j ACCEPT iptables -A FORWARD -i br-* -o br-* -j ACCEPT