comgt: add metric, defaultroute and peerdns options for ncm protocol
authorMarcin Jurkowski <marcin1j@gmail.com>
Mon, 17 Oct 2016 00:38:42 +0000 (02:38 +0200)
committerJohn Crispin <john@phrozen.org>
Wed, 26 Oct 2016 10:37:46 +0000 (12:37 +0200)
Adds generic network options for ncm protocol dynamic interfaces
as suggested by Felix in
http://lists.openwrt.org/pipermail/openwrt-devel/2016-February/039794.html.

This depends on netifd patch https://patchwork.ozlabs.org/patch/686820/.

Signed-off-by: Marcin Jurkowski <marcin1j@gmail.com>
package/network/utils/comgt/files/ncm.sh

index 571cfaa28b48af646c008f5c5ec48f5d7cd9f177..1f4d8a4e7760894164c48444886987583494b258 100644 (file)
@@ -19,6 +19,7 @@ proto_ncm_init_config() {
        proto_config_add_string mode
        proto_config_add_string pdptype
        proto_config_add_boolean ipv6
+       proto_config_add_defaults
 }
 
 proto_ncm_setup() {
@@ -26,8 +27,8 @@ proto_ncm_setup() {
 
        local manufacturer initialize setmode connect ifname devname devpath
 
-       local device apn auth username password pincode delay mode pdptype ipv6
-       json_get_vars device apn auth username password pincode delay mode pdptype ipv6
+       local device apn auth username password pincode delay mode pdptype ipv6 $PROTO_DEFAULT_OPTIONS
+       json_get_vars device apn auth username password pincode delay mode pdptype ipv6 $PROTO_DEFAULT_OPTIONS
        
        if [ "$ipv6" = 0 ]; then
                ipv6=""
@@ -141,6 +142,7 @@ proto_ncm_setup() {
        json_add_string name "${interface}_4"
        json_add_string ifname "@$interface"
        json_add_string proto "dhcp"
+       proto_add_dynamic_defaults
        ubus call network add_dynamic "$(json_dump)"
 
        [ -n "$ipv6" ] && {
@@ -149,6 +151,7 @@ proto_ncm_setup() {
                json_add_string ifname "@$interface"
                json_add_string proto "dhcpv6"
                json_add_string extendprefix 1
+               proto_add_dynamic_defaults
                ubus call network add_dynamic "$(json_dump)"
        }
 }