Update iptables.sh

This commit is contained in:
MarkusMcNugen
2018-04-26 08:56:00 -04:00
committed by GitHub
parent d27a2d1092
commit 9a11dd2600

View File

@@ -51,7 +51,7 @@ for lan_network_item in "${lan_network_list[@]}"; do
# strip whitespace from start and end of lan_network_item # strip whitespace from start and end of lan_network_item
lan_network_item=$(echo "${lan_network_item}" | sed -e 's~^[ \t]*~~;s~[ \t]*$~~') lan_network_item=$(echo "${lan_network_item}" | sed -e 's~^[ \t]*~~;s~[ \t]*$~~')
ip route add $lan_network_item via "${DEFAULT_GATEWAY2}" dev ${interface} ip route add "${lan_network_item}" via "${DEFAULT_GATEWAY2}" dev ${interface}
fi fi
done done