diff options
author | Hans Dedecker <dedeckeh@gmail.com> | 2017-05-31 16:24:11 +0200 |
---|---|---|
committer | Hans Dedecker <dedeckeh@gmail.com> | 2017-05-31 16:49:59 +0200 |
commit | 21f25bc4a325b3075d6426047640e9cf6176894c (patch) | |
tree | f0f873adf9a413c8910b7143fc836ace76b50b6b /package/network/services | |
parent | 9e1bc27e6d67fa29791eb0fac5e5f0066d12a761 (diff) | |
download | upstream-21f25bc4a325b3075d6426047640e9cf6176894c.tar.gz upstream-21f25bc4a325b3075d6426047640e9cf6176894c.tar.bz2 upstream-21f25bc4a325b3075d6426047640e9cf6176894c.zip |
ppp: propagate master firewall zone to dynamic slave interface
Assign the virtual DHCPv6 interface the firewall zone of the parent interface
so fw3 knows the zone to which the virtual DHCPv6 interface belongs.
This guarantees the firewall settings are applied correctly for the virtual
DHCPv6 interface and allows to query the zone to which the virtual DHCPv6
interface belongs via the fw3 network option.
Signed-off-by: Hans Dedecker <dedeckeh@gmail.com>
Diffstat (limited to 'package/network/services')
-rw-r--r-- | package/network/services/ppp/Makefile | 2 | ||||
-rwxr-xr-x | package/network/services/ppp/files/lib/netifd/ppp6-up | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/package/network/services/ppp/Makefile b/package/network/services/ppp/Makefile index 8b0daf2295..6c615cab0b 100644 --- a/package/network/services/ppp/Makefile +++ b/package/network/services/ppp/Makefile @@ -10,7 +10,7 @@ include $(INCLUDE_DIR)/kernel.mk PKG_NAME:=ppp PKG_VERSION:=2.4.7 -PKG_RELEASE:=11 +PKG_RELEASE:=12 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://download.samba.org/pub/ppp/ diff --git a/package/network/services/ppp/files/lib/netifd/ppp6-up b/package/network/services/ppp/files/lib/netifd/ppp6-up index 8ad03223e5..3852bf63ff 100755 --- a/package/network/services/ppp/files/lib/netifd/ppp6-up +++ b/package/network/services/ppp/files/lib/netifd/ppp6-up @@ -17,10 +17,13 @@ proto_send_update "$PPP_IPPARAM" } if [ -n "$AUTOIPV6" ]; then + ZONE=$(fw3 -q network $PPP_IPPARAM 2>/dev/null) + json_init json_add_string name "${PPP_IPPARAM}_6" json_add_string ifname "@$PPP_IPPARAM" json_add_string proto "dhcpv6" + [ -n "$ZONE" ] && json_add_string zone "$ZONE" [ -n "$EXTENDPREFIX" ] && json_add_string extendprefix 1 [ -n "$IP6TABLE" ] && json_add_string ip6table $IP6TABLE [ -n "$PEERDNS" ] && json_add_boolean peerdns $PEERDNS |