aboutsummaryrefslogtreecommitdiffstats
path: root/package/network/services/ppp/files/lib/netifd/ppp-up
diff options
context:
space:
mode:
authorPierre Lebleu <pierre.lebleu@technicolor.com>2016-10-27 13:38:29 +0200
committerFelix Fietkau <nbd@nbd.name>2016-12-04 11:41:53 +0100
commit898857f77af3815a7fb64eb35be1898c52b2e32d (patch)
treebba60b76310fad0c78fb29930d86c70d35cb890b /package/network/services/ppp/files/lib/netifd/ppp-up
parent1a63b819658d893f4454bbe75811a1f91cbfc07e (diff)
downloadupstream-898857f77af3815a7fb64eb35be1898c52b2e32d.tar.gz
upstream-898857f77af3815a7fb64eb35be1898c52b2e32d.tar.bz2
upstream-898857f77af3815a7fb64eb35be1898c52b2e32d.zip
ppp: Split the ppp-up for the IPv6 part
Signed-off-by: Pierre Lebleu <pme.lebleu@gmail.com>
Diffstat (limited to 'package/network/services/ppp/files/lib/netifd/ppp-up')
-rwxr-xr-xpackage/network/services/ppp/files/lib/netifd/ppp-up11
1 files changed, 0 insertions, 11 deletions
diff --git a/package/network/services/ppp/files/lib/netifd/ppp-up b/package/network/services/ppp/files/lib/netifd/ppp-up
index 7511042639..18c32f0dee 100755
--- a/package/network/services/ppp/files/lib/netifd/ppp-up
+++ b/package/network/services/ppp/files/lib/netifd/ppp-up
@@ -7,7 +7,6 @@ proto_set_keep 1
[ -n "$PPP_IPPARAM" ] && {
[ -n "$IPLOCAL" ] && proto_add_ipv4_address "$IPLOCAL" 32 "" "${IPREMOTE:-2.2.2.2}"
[ -n "$IPREMOTE" ] && proto_add_ipv4_route 0.0.0.0 0 "$IPREMOTE"
- [ -n "$LLLOCAL" ] && proto_add_ipv6_address "$LLLOCAL" 128
[ -n "$DNS1" ] && proto_add_dns_server "$DNS1"
[ -n "$DNS2" -a "$DNS1" != "$DNS2" ] && proto_add_dns_server "$DNS2"
}
@@ -19,13 +18,3 @@ proto_send_update "$PPP_IPPARAM"
[ -x "$SCRIPT" ] && "$SCRIPT" "$@"
done
}
-
-if [ -n "$AUTOIPV6" ]; then
- json_init
- json_add_string name "${PPP_IPPARAM}_6"
- json_add_string ifname "@$PPP_IPPARAM"
- json_add_string proto "dhcpv6"
- [ -n "$EXTENDPREFIX" ] && json_add_string extendprefix 1
- json_close_object
- ubus call network add_dynamic "$(json_dump)"
-fi