From 58ca40c218871497e81d4cffacea10bef2c265bf Mon Sep 17 00:00:00 2001 From: Steven Barth Date: Wed, 26 Mar 2014 10:12:49 +0000 Subject: 6rd / ds-lite: make the firewall-zones of nested-protocols configurable git-svn-id: svn://svn.openwrt.org/openwrt/trunk@40020 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/network/config/netifd/files/lib/netifd/dhcp.script | 1 + package/network/config/netifd/files/lib/netifd/proto/dhcp.sh | 6 ++++-- 2 files changed, 5 insertions(+), 2 deletions(-) (limited to 'package/network/config') diff --git a/package/network/config/netifd/files/lib/netifd/dhcp.script b/package/network/config/netifd/files/lib/netifd/dhcp.script index c597840362..948c3cd665 100755 --- a/package/network/config/netifd/files/lib/netifd/dhcp.script +++ b/package/network/config/netifd/files/lib/netifd/dhcp.script @@ -54,6 +54,7 @@ setup_interface () { json_add_int ip6prefixlen "$ip6rdprefixlen" json_add_string tunlink "$INTERFACE" [ -n "$IFACE6RD_DELEGATE" ] && json_add_boolean delegate "$IFACE6RD_DELEGATE" + [ -n "$ZONE6RD" ] && json_add_string zone "$ZONE6RD" json_close_object ubus call network add_dynamic "$(json_dump)" diff --git a/package/network/config/netifd/files/lib/netifd/proto/dhcp.sh b/package/network/config/netifd/files/lib/netifd/proto/dhcp.sh index 80c3562e69..93f4a5e09a 100755 --- a/package/network/config/netifd/files/lib/netifd/proto/dhcp.sh +++ b/package/network/config/netifd/files/lib/netifd/proto/dhcp.sh @@ -15,14 +15,15 @@ proto_dhcp_init_config() { proto_config_add_string iface6rd proto_config_add_string sendopts proto_config_add_boolean delegate + proto_config_add_string zone6rd } proto_dhcp_setup() { local config="$1" local iface="$2" - local ipaddr hostname clientid vendorid broadcast reqopts iface6rd sendopts delegate - json_get_vars ipaddr hostname clientid vendorid broadcast reqopts iface6rd sendopts delegate + local ipaddr hostname clientid vendorid broadcast reqopts iface6rd sendopts delegate zone6rd + json_get_vars ipaddr hostname clientid vendorid broadcast reqopts iface6rd sendopts delegate zone6rd local opt dhcpopts for opt in $reqopts; do @@ -37,6 +38,7 @@ proto_dhcp_setup() { [ -n "$clientid" ] && clientid="-x 0x3d:${clientid//:/}" || clientid="-C" [ -n "$iface6rd" ] && proto_export "IFACE6RD=$iface6rd" [ -n "$iface6rd" ] && append dhcpopts "-O 212" + [ -n "$zone6rd" ] && proto_export "ZONE6RD=$zone6rd" [ "$delegate" = "0" ] && proto_export "IFACE6RD_DELEGATE=0" proto_export "INTERFACE=$config" -- cgit v1.2.3