summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73>2013-05-31 13:23:23 +0000
committerjow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73>2013-05-31 13:23:23 +0000
commit773909e04a3dfb0c0676f168479d06daed95520a (patch)
treec005c8ca6bad62d9cd91bda35503be648d478c83
parent1a8815f163d967ff5908e0efd5b03d2c9120d7a4 (diff)
firewall3: use list notation for default zone network config to avoid "uci add_list" coercing the value wrongly
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36806 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r--package/network/config/firewall3/files/firewall.config5
1 files changed, 3 insertions, 2 deletions
diff --git a/package/network/config/firewall3/files/firewall.config b/package/network/config/firewall3/files/firewall.config
index 59a45b208d..acfb5e5abd 100644
--- a/package/network/config/firewall3/files/firewall.config
+++ b/package/network/config/firewall3/files/firewall.config
@@ -8,14 +8,15 @@ config defaults
config zone
option name lan
- option network 'lan'
+ list network 'lan'
option input ACCEPT
option output ACCEPT
option forward REJECT
config zone
option name wan
- option network 'wan wan6'
+ list network 'wan'
+ list network 'wan6'
option input REJECT
option output ACCEPT
option forward REJECT