diff options
| author | Chen Minqiang | 2024-05-15 14:51:55 +0000 |
|---|---|---|
| committer | Hauke Mehrtens | 2024-09-22 21:43:08 +0000 |
| commit | 8a5db2ff3c370f1ba3809e87767fbc478765abe6 (patch) | |
| tree | 8bd56e9e664c5d986f6cf5ee73ed91f013e5361f | |
| parent | a97b7af33e7fc6c8a4e6920f32d402c5683a36ff (diff) | |
| download | openwrt-8a5db2ff3c370f1ba3809e87767fbc478765abe6.tar.gz | |
comgt: directip: add sourcefilter option support
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>
| -rw-r--r-- | package/network/utils/comgt/files/directip.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/package/network/utils/comgt/files/directip.sh b/package/network/utils/comgt/files/directip.sh index 3452fa5db7..c3b9abcad6 100644 --- a/package/network/utils/comgt/files/directip.sh +++ b/package/network/utils/comgt/files/directip.sh @@ -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)" |