mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-04-21 12:27:27 +03:00
[package] firewall: do not produce 0.0.0.0/0 if a symbolic masq_src or masq_dest is given but does not resolve to an ip
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28628 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
@@ -247,13 +247,13 @@ fw_load_zone() {
|
||||
for msrc in ${zone_masq_src:-0.0.0.0/0}; do
|
||||
case "$msrc" in
|
||||
*.*) fw_get_negation msrc '-s' "$msrc" ;;
|
||||
*) fw_get_subnet4 msrc '-s' "$msrc" ;;
|
||||
*) fw_get_subnet4 msrc '-s' "$msrc" || break ;;
|
||||
esac
|
||||
|
||||
for mdst in ${zone_masq_dest:-0.0.0.0/0}; do
|
||||
case "$mdst" in
|
||||
*.*) fw_get_negation mdst '-d' "$mdst" ;;
|
||||
*) fw_get_subnet4 mdst '-d' "$mdst" ;;
|
||||
*) fw_get_subnet4 mdst '-d' "$mdst" || break ;;
|
||||
esac
|
||||
|
||||
fw add $mode n ${chain}_nat MASQUERADE $ { $msrc $mdst }
|
||||
|
||||
Reference in New Issue
Block a user