Skip to content

Commit

Permalink
fix to avoid blocking INPUT/OUTPUT iptables chains
Browse files Browse the repository at this point in the history
  • Loading branch information
jaromil committed Nov 13, 2017
1 parent b3c82c2 commit dcf630d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zlibs/iptables
Expand Up @@ -342,7 +342,7 @@ iptables-start() {

# Keep state of connections from local machine and private subnets
iptables -A OUTPUT -m state --state NEW -o ${interface} -j ACCEPT
# iptables -A FORWARD -m state --state NEW -o ${interface} -j ACCEPT
iptables -A FORWARD -m state --state NEW -o ${interface} -j ACCEPT
iptables -A FORWARD -m state --state ESTABLISHED,RELATED -j ACCEPT
iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT

Expand Down

0 comments on commit dcf630d

Please sign in to comment.