aboutsummaryrefslogtreecommitdiffstats
path: root/package/network
diff options
context:
space:
mode:
authorLech Perczak <lech.perczak@gmail.com>2023-01-09 22:54:07 +0100
committerHauke Mehrtens <hauke@hauke-m.de>2023-04-29 21:33:04 +0200
commit464d81fe4a831181b2bb2a03b50442a86f3ce0be (patch)
treec83066ff8ea6680f788ed4c4b131649ccc291abf /package/network
parent03692dee736b98ba419d4e21e82819f93b637256 (diff)
downloadupstream-464d81fe4a831181b2bb2a03b50442a86f3ce0be.tar.gz
upstream-464d81fe4a831181b2bb2a03b50442a86f3ce0be.tar.bz2
upstream-464d81fe4a831181b2bb2a03b50442a86f3ce0be.zip
umbim: separate DHCPv6 configuration from DHCP(v4)
Now, that sub-interface setup is split by IP type, and separate checks are performed for DHCP selection, it is possible to control DHCP on v4 an v6 sub-interfaces instantly. Add "dhcpv6" variable, akin to QMI option, to control behaviour of DHCPv6 separately from IPv4 option, which is required for some mobile operators. Signed-off-by: Lech Perczak <lech.perczak@gmail.com>
Diffstat (limited to 'package/network')
-rwxr-xr-xpackage/network/utils/umbim/files/lib/netifd/proto/mbim.sh7
1 files changed, 4 insertions, 3 deletions
diff --git a/package/network/utils/umbim/files/lib/netifd/proto/mbim.sh b/package/network/utils/umbim/files/lib/netifd/proto/mbim.sh
index 9af5b69ac1..d8df783a92 100755
--- a/package/network/utils/umbim/files/lib/netifd/proto/mbim.sh
+++ b/package/network/utils/umbim/files/lib/netifd/proto/mbim.sh
@@ -20,6 +20,7 @@ proto_mbim_init_config() {
proto_config_add_string username
proto_config_add_string password
proto_config_add_boolean dhcp
+ proto_config_add_boolean dhcpv6
proto_config_add_string pdptype
proto_config_add_defaults
}
@@ -29,8 +30,8 @@ _proto_mbim_setup() {
local tid=2
local ret
- local device apn pincode delay allow_roaming allow_partner dhcp pdptype $PROTO_DEFAULT_OPTIONS
- json_get_vars device apn pincode delay auth username password allow_roaming allow_partner dhcp pdptype $PROTO_DEFAULT_OPTIONS
+ local device apn pincode delay allow_roaming allow_partner dhcp dhcpv6 pdptype $PROTO_DEFAULT_OPTIONS
+ json_get_vars device apn pincode delay auth username password allow_roaming allow_partner dhcp dhcpv6 pdptype $PROTO_DEFAULT_OPTIONS
[ -n "$ctl_device" ] && device=$ctl_device
@@ -209,7 +210,7 @@ _proto_mbim_setup() {
}
[ "$iptype" != "ipv4" ] && {
- if [ -z "$dhcp" -o "$dhcp" = 0 ]; then
+ if [ -z "$dhcpv6" -o "$dhcpv6" = 0 ]; then
json_init
json_add_string name "${interface}_6"
json_add_string ifname "@$interface"