diff options
author | Ulrich Weber <ulrich.weber@riverbed.com> | 2017-02-10 14:28:09 +0100 |
---|---|---|
committer | Hans Dedecker <hans.dedecker@technicolor.com> | 2017-02-13 18:48:33 +0100 |
commit | d5221d5a419c14456bccba9f6825567839082fb0 (patch) | |
tree | 4a3a07a3f203e8483a76ac8474ab4fc3e110eda4 /package/network/services/ppp/files/lib | |
parent | bb9d2aa8681a9ea975ff86ec03d73ffc16e6534d (diff) | |
download | upstream-d5221d5a419c14456bccba9f6825567839082fb0.tar.gz upstream-d5221d5a419c14456bccba9f6825567839082fb0.tar.bz2 upstream-d5221d5a419c14456bccba9f6825567839082fb0.zip |
ppp: honor ip6table for IPv6 PPP interfaces
as we do for IPv4 PPP interfaces. When we create the
dynamic IPv6 interface we should inherit ip6table from
main interface.
Signed-off-by: Ulrich Weber <ulrich.weber@riverbed.com>
Diffstat (limited to 'package/network/services/ppp/files/lib')
-rw-r--r-- | package/network/services/ppp/files/lib/netifd/ppp6-up | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/network/services/ppp/files/lib/netifd/ppp6-up b/package/network/services/ppp/files/lib/netifd/ppp6-up index 87ca63c751..07b6a43ca5 100644 --- a/package/network/services/ppp/files/lib/netifd/ppp6-up +++ b/package/network/services/ppp/files/lib/netifd/ppp6-up @@ -22,6 +22,7 @@ if [ -n "$AUTOIPV6" ]; then json_add_string ifname "@$PPP_IPPARAM" json_add_string proto "dhcpv6" [ -n "$EXTENDPREFIX" ] && json_add_string extendprefix 1 + [ -n "$IP6TABLE" ] && json_add_string ip6table $IP6TABLE json_close_object ubus call network add_dynamic "$(json_dump)" fi |