comgt: directip: add sourcefilter option support
authorChen Minqiang <ptpt52@gmail.com>
Wed, 15 May 2024 14:51:55 +0000 (22:51 +0800)
committerHauke Mehrtens <hauke@hauke-m.de>
Sun, 22 Sep 2024 21:43:08 +0000 (23:43 +0200)
This make source based IPv6 routing option available for directip

Signed-off-by: Chen Minqiang <ptpt52@gmail.com>
Link: https://github.com/openwrt/openwrt/pull/15508
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
package/network/utils/comgt/files/directip.sh

index 3452fa5db702c944ce985a064a545e5316ebbe0e..c3b9abcad62e48f02292fe532e9c2febae3714d0 100644 (file)
@@ -15,6 +15,7 @@ proto_directip_init_config() {
        proto_config_add_string "auth"
        proto_config_add_string "username"
        proto_config_add_string "password"
+       proto_config_add_boolean sourcefilter
        proto_config_add_defaults
 }
 
@@ -22,8 +23,8 @@ proto_directip_setup() {
        local interface="$1"
        local chat devpath devname
 
-       local device apn pincode ifname auth username password $PROTO_DEFAULT_OPTIONS
-       json_get_vars device apn pincode auth username password $PROTO_DEFAULT_OPTIONS
+       local device apn pincode ifname auth username password sourcefilter $PROTO_DEFAULT_OPTIONS
+       json_get_vars device apn pincode auth username password sourcefilter $PROTO_DEFAULT_OPTIONS
 
        [ -n "$ctl_device" ] && device=$ctl_device
 
@@ -89,6 +90,7 @@ proto_directip_setup() {
        json_add_string ifname "@$interface"
        json_add_string proto "dhcpv6"
        json_add_string extendprefix 1
+       [ "$sourcefilter" = "0" ] && json_add_boolean sourcefilter "0"
        proto_add_dynamic_defaults
        ubus call network add_dynamic "$(json_dump)"