replace ALLOW_WAN_OUTOUT_EVERYWHERE by ALLOW_WAN_OUTPUT_EVERYWHERE

WARNING: this commit change a firewall.conf variable you need to
change it from existing configurations
This commit is contained in:
Jérôme Schneider 2014-02-12 14:33:13 +01:00
parent a387b1a903
commit 3cf8765d97
2 changed files with 2 additions and 2 deletions

View File

@ -234,7 +234,7 @@ start()
$IPTABLES -A EO-OUTPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
$IPTABLES -A EO-FORWARD -m state --state ESTABLISHED,RELATED -j ACCEPT
if [ $ALLOW_WAN_OUTOUT_EVERYWHERE -ne 0 ]; then
if [ $ALLOW_WAN_OUTPUT_EVERYWHERE -ne 0 ]; then
log_action_msg "Allow WAN outgoing traffic to everywhere"
$IPTABLES -A EO-OUTPUT -o $WAN_INT -m state --state NEW -j ACCEPT
fi

View File

@ -14,7 +14,7 @@ LAN=0 # Allow traffic between the WAN and LAN
LAN_INT='' # LAN interface
## Allow OUTPUT for everything
ALLOW_WAN_OUTOUT_EVERYWHERE=1
ALLOW_WAN_OUTPUT_EVERYWHERE=1
## Allow all traffic for interface(s)
# example ALLOW_INTS='br0 xenbr42'