diff options
author | Steven Barth <steven@midlink.org> | 2014-02-05 14:56:37 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2014-02-05 14:56:37 +0000 |
commit | 5e1d10bde4595f0fc07a2070fa46c2d116799c31 (patch) | |
tree | f299752d879c9fe7a17caf6517c7bee3e6ac093c /package/network/ipv6/odhcp6c/files | |
parent | 2d505910f1bd25d76254827da64301a1388a4430 (diff) | |
download | master-187ad058-5e1d10bde4595f0fc07a2070fa46c2d116799c31.tar.gz master-187ad058-5e1d10bde4595f0fc07a2070fa46c2d116799c31.tar.bz2 master-187ad058-5e1d10bde4595f0fc07a2070fa46c2d116799c31.zip |
odhcp6c: Add support for userclass and vendorclass
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@39478 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/network/ipv6/odhcp6c/files')
-rwxr-xr-x | package/network/ipv6/odhcp6c/files/dhcpv6.sh | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/package/network/ipv6/odhcp6c/files/dhcpv6.sh b/package/network/ipv6/odhcp6c/files/dhcpv6.sh index cffb3ec22a..387fa300cc 100755 --- a/package/network/ipv6/odhcp6c/files/dhcpv6.sh +++ b/package/network/ipv6/odhcp6c/files/dhcpv6.sh @@ -16,14 +16,16 @@ proto_dhcpv6_init_config() { proto_config_add_string "iface_dslite" proto_config_add_string "ifaceid" proto_config_add_string "sourcerouting" + proto_config_add_string "userclass" + proto_config_add_string "vendorclass" } proto_dhcpv6_setup() { local config="$1" local iface="$2" - local reqaddress reqprefix clientid reqopts noslaaconly forceprefix norelease ip6prefix iface_dslite ifaceid sourcerouting - json_get_vars reqaddress reqprefix clientid reqopts noslaaconly forceprefix norelease ip6prefix iface_dslite ifaceid sourcerouting + local reqaddress reqprefix clientid reqopts noslaaconly forceprefix norelease ip6prefix iface_dslite ifaceid sourcerouting userclass vendorclass + json_get_vars reqaddress reqprefix clientid reqopts noslaaconly forceprefix norelease ip6prefix iface_dslite ifaceid sourcerouting userclass vendorclass # Configure @@ -43,6 +45,10 @@ proto_dhcpv6_setup() { [ -n "$ifaceid" ] && append opts "-i$ifaceid" + [ -n "$vendorclass" ] && append opts "-V$vendorclass" + + [ -n "$userclass" ] && append opts "-u$userclass" + for opt in $reqopts; do append opts "-r$opt" done |