aboutsummaryrefslogtreecommitdiffstats
path: root/package/network/config
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2013-05-31 13:23:23 +0000
committerJo-Philipp Wich <jow@openwrt.org>2013-05-31 13:23:23 +0000
commit13abaf7561bffbf9bd105de8217806c6bcd753f3 (patch)
treec005c8ca6bad62d9cd91bda35503be648d478c83 /package/network/config
parent4a532d16c30ababe6450c34f23d47e2868609234 (diff)
downloadmaster-187ad058-13abaf7561bffbf9bd105de8217806c6bcd753f3.tar.gz
master-187ad058-13abaf7561bffbf9bd105de8217806c6bcd753f3.tar.bz2
master-187ad058-13abaf7561bffbf9bd105de8217806c6bcd753f3.zip
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
Diffstat (limited to 'package/network/config')
-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