mirror of
git://git.openwrt.org/openwrt/openwrt.git
synced 2025-02-16 11:56:56 +00:00
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>
This commit is contained in:
parent
a97b7af33e
commit
8a5db2ff3c
@ -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)"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user