ppp: Split the ppp-up for the IPv6 part
[openwrt/staging/florian.git] / package / network / services / ppp / files / lib / netifd / ppp-up
index 7511042639d22605f9f4377157db039204e9ad8c..18c32f0dee4a88dc4cf7955fd2533a050692a096 100755 (executable)
@@ -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