From: Steven Barth Date: Sat, 6 Sep 2008 17:06:53 +0000 (+0000) Subject: Backported network scheme X-Git-Tag: 0.8.0~113 X-Git-Url: http://207.154.207.93/?a=commitdiff_plain;h=71b7fcb7e90593259e09b7e0d3ee27803d957a00;p=project%2Fluci.git Backported network scheme --- diff --git a/libs/uvl/root/lib/uci/schema/default/network b/libs/uvl/root/lib/uci/schema/default/network index afd17fbde..62790cbb5 100644 --- a/libs/uvl/root/lib/uci/schema/default/network +++ b/libs/uvl/root/lib/uci/schema/default/network @@ -114,6 +114,11 @@ config variable config enum option variable 'network.interface.proto' + option value 'none' + option title 'Disabled' + +config enum + option variable 'network.interface.proto' option value 'dhcp' option title 'Retrieve IP address via DHCP' option default true @@ -218,6 +223,40 @@ config enum config section + option name 'route' + option title 'Static route definition' + option package 'network' + +config variable + option name 'interface' + option title 'Interface for the route' + option section 'network.route' + option valueof 'network.interface' + option required true + +config variable + option name 'target' + option title 'Target IPv4 host or net address' + option section 'network.route' + option datatype 'ip4addr' + option required true + +config variable + option name 'netmask' + option title 'Target IPv4 netmask (for subnet routes)' + option section 'network.route' + option datatype 'ip4addr' + +config variable + option name 'gateway' + option title 'IPv4 gateway address' + option section 'network.route' + option datatype 'ip4addr' + option required true + + + +config section option name 'switch' option title 'Section switch' option package 'network'