olsr: smartfw: fix a syntax error whwile checking for 'nowan'

introduced in 059b26c2 in 2011-nov-14 ("Manuel Munz freifunk@somakoma.de modified init
file of olsrd with improvements for 6and4 operation and also for setup of smartgw")
This commit is contained in:
Bastian Bittorf 2017-02-12 20:22:23 +01:00
parent 0e71dbfba6
commit 22c05861e6
1 changed files with 3 additions and 3 deletions

View File

@ -717,7 +717,7 @@ olsrd_setup_smartgw_rules() {
$IP4T -I forwarding_rule -o tnl_+ -j ACCEPT
$IP4T -t nat -I postrouting_rule -o tnl_+ -j MASQUERADE
# Allow forwarding from tunl0 to (all) wan-interfaces
if [ "$nowan"="0" ]; then
if [ "$nowan" = '0' ]; then
for IFACE in $wanifnames; do
$IP4T -A forwarding_rule -i tunl0 -o $IFACE -j ACCEPT
done
@ -728,7 +728,7 @@ olsrd_setup_smartgw_rules() {
done
elif [ "$smartgatewayuplink" = "ipv6" ]; then
$IP6T -I forwarding_rule -o tnl_+ -j ACCEPT
if [ "$nowan"="0" ]; then
if [ "$nowan" = '0' ]; then
for IFACE in $wanifnames; do
$IP6T -A forwarding_rule -i tunl0 -o $IFACE -j ACCEPT
done
@ -740,7 +740,7 @@ olsrd_setup_smartgw_rules() {
$IP4T -t nat -I postrouting_rule -o tnl_+ -j MASQUERADE
for IPT in $IP4T $IP6T; do
$IPT -I forwarding_rule -o tnl_+ -j ACCEPT
if [ "$nowan"="0" ]; then
if [ "$nowan" = '0' ]; then
for IFACE in $wanifnames; do
$IPT -A forwarding_rule -i tunl0 -o $IFACE -j ACCEPT
done