firewall3: use list notation for default zone network config to avoid "uci add_list" coercing the value wrongly
SVN-Revision: 36806
This commit is contained in:
parent
bf582fbb7b
commit
3bb397c997
1 changed files with 3 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue