summaryrefslogtreecommitdiff
path: root/package
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2014-02-21 00:17:04 +0000
committerJo-Philipp Wich <jow@openwrt.org>2014-02-21 00:17:04 +0000
commit354efde275c8e9b710504a013b2ebe8af74fa1ca (patch)
tree032d8e84063753871110d94eacc37058084ea5d4 /package
parent21f4cf1a73c7d3b5cd9d47f11c1070c3caa1474b (diff)
downloadmtk-20170518-354efde275c8e9b710504a013b2ebe8af74fa1ca.zip
mtk-20170518-354efde275c8e9b710504a013b2ebe8af74fa1ca.tar.gz
mtk-20170518-354efde275c8e9b710504a013b2ebe8af74fa1ca.tar.bz2
netifd: fix validation constraints
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org> SVN-Revision: 39648
Diffstat (limited to 'package')
-rwxr-xr-xpackage/network/config/netifd/files/etc/init.d/network30
1 files changed, 15 insertions, 15 deletions
diff --git a/package/network/config/netifd/files/etc/init.d/network b/package/network/config/netifd/files/etc/init.d/network
index 848336f..db07c1e 100755
--- a/package/network/config/netifd/files/etc/init.d/network
+++ b/package/network/config/netifd/files/etc/init.d/network
@@ -57,12 +57,12 @@ validate_route_section()
{
uci_validate_section network route "${1}" \
'interface:string' \
- 'target:ip4addr' \
- 'netmask:ip4prefix' \
+ 'target:cidr4' \
+ 'netmask:netmask4' \
'gateway:ip4addr' \
'metric:uinteger' \
'mtu:uinteger' \
- 'table:range(0,65535)'
+ 'table:or(range(0,65535),string)'
return $?
}
@@ -71,11 +71,11 @@ validate_route6_section()
{
uci_validate_section network route6 "${1}" \
'interface:string' \
- 'target:ip6addr' \
+ 'target:cidr6' \
'gateway:ip6addr' \
'metric:uinteger' \
'mtu:uinteger' \
- 'table:range(0,65535)'
+ 'table:or(range(0,65535),string)'
return $?
}
@@ -85,12 +85,12 @@ validate_rule_section()
uci_validate_section network rule "${1}" \
'in:string' \
'out:string' \
- 'src:ip4prefix' \
- 'dest:ip4prefix' \
- 'tos:rage(0.31)' \
- 'string:mark' \
+ 'src:cidr4' \
+ 'dest:cidr4' \
+ 'tos:range(0,31)' \
+ 'mark:string' \
'invert:bool' \
- 'lookup:range(0,65535)' \
+ 'lookup:or(range(0,65535),string)' \
'goto:range(0,65535)' \
'action:or("prohibit", "unreachable", "blackhole", "throw")'
@@ -102,12 +102,12 @@ validate_rule6_section()
uci_validate_section network rule6 "${1}" \
'in:string' \
'out:string' \
- 'src:ip4prefix' \
- 'dest:ip4prefix' \
- 'tos:rage(0.31)' \
- 'string:mark' \
+ 'src:cidr6' \
+ 'dest:cidr6' \
+ 'tos:range(0,31)' \
+ 'mark:string' \
'invert:bool' \
- 'lookup:range(0,65535)' \
+ 'lookup:or(range(0,65535),string)' \
'goto:range(0,65535)' \
'action:or("prohibit", "unreachable", "blackhole", "throw")'