summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBeniamino Galvani <bgalvani@redhat.com>2019-11-28 17:57:06 +0100
committerBeniamino Galvani <bgalvani@redhat.com>2019-11-28 17:57:06 +0100
commitd439798c41ff89ba6ccc209477147036dc7c137d (patch)
treed831883a5b2ab692973c572439f28958ad42dced
parenta0632c529b2158a851444732f5437e8465a8794f (diff)
parentaa8d5a3e9e06258d328bde029b5fdbdf762270a2 (diff)
downloadNetworkManager-d439798c41ff89ba6ccc209477147036dc7c137d.tar.gz
merge: branch 'bg/dhcp-fqdn-flags'
https://gitlab.freedesktop.org/NetworkManager/NetworkManager/merge_requests/198 https://bugzilla.redhat.com/show_bug.cgi?id=1649368
-rw-r--r--clients/common/nm-meta-setting-desc.c16
-rw-r--r--clients/common/settings-docs.h.in2
-rw-r--r--clients/tests/test-client.check-on-disk/test_003.expected636
-rw-r--r--clients/tests/test-client.check-on-disk/test_004.expected900
-rw-r--r--libnm-core/nm-core-internal.h20
-rw-r--r--libnm-core/nm-setting-ip-config.c83
-rw-r--r--libnm-core/nm-setting-ip-config.h81
-rw-r--r--libnm-core/nm-setting-ip4-config.c19
-rw-r--r--libnm-core/nm-setting-ip6-config.c7
-rw-r--r--libnm-core/nm-utils.c53
-rw-r--r--libnm-core/tests/test-general.c1
-rw-r--r--libnm/libnm.ver2
-rw-r--r--man/NetworkManager.conf.xml8
-rw-r--r--shared/nm-libnm-core-intern/nm-common-macros.h1
-rw-r--r--src/devices/nm-device.c50
-rw-r--r--src/dhcp/nm-dhcp-client.c20
-rw-r--r--src/dhcp/nm-dhcp-client.h3
-rw-r--r--src/dhcp/nm-dhcp-dhclient-utils.c57
-rw-r--r--src/dhcp/nm-dhcp-dhclient-utils.h1
-rw-r--r--src/dhcp/nm-dhcp-dhclient.c6
-rw-r--r--src/dhcp/nm-dhcp-manager.c6
-rw-r--r--src/dhcp/nm-dhcp-manager.h2
-rw-r--r--src/dhcp/nm-dhcp-nettools.c65
-rw-r--r--src/dhcp/tests/test-dhcp-dhclient.c41
-rw-r--r--src/nm-iface-helper.c2
-rw-r--r--src/settings/plugins/ifcfg-rh/nms-ifcfg-rh-reader.c34
-rw-r--r--src/settings/plugins/ifcfg-rh/nms-ifcfg-rh-writer.c14
-rw-r--r--src/settings/plugins/ifcfg-rh/tests/network-scripts/ifcfg-test-wired-dhcp9
-rw-r--r--src/settings/plugins/ifcfg-rh/tests/test-ifcfg-rh.c22
29 files changed, 1446 insertions, 715 deletions
diff --git a/clients/common/nm-meta-setting-desc.c b/clients/common/nm-meta-setting-desc.c
index e2ad6a7cd1..8e05c9bc5d 100644
--- a/clients/common/nm-meta-setting-desc.c
+++ b/clients/common/nm-meta-setting-desc.c
@@ -5666,6 +5666,14 @@ static const NMMetaPropertyInfo *const property_infos_IP4_CONFIG[] = {
PROPERTY_INFO_WITH_DESC (NM_SETTING_IP4_CONFIG_DHCP_FQDN,
.property_type = &_pt_gobject_string,
),
+ PROPERTY_INFO (NM_SETTING_IP_CONFIG_DHCP_HOSTNAME_FLAGS, DESCRIBE_DOC_NM_SETTING_IP4_CONFIG_DHCP_HOSTNAME_FLAGS,
+ .property_type = &_pt_gobject_enum,
+ .property_typ_data = DEFINE_PROPERTY_TYP_DATA (
+ PROPERTY_TYP_DATA_SUBTYPE (gobject_enum,
+ .get_gtype = nm_dhcp_hostname_flags_get_type,
+ ),
+ )
+ ),
PROPERTY_INFO (NM_SETTING_IP_CONFIG_NEVER_DEFAULT, DESCRIBE_DOC_NM_SETTING_IP4_CONFIG_NEVER_DEFAULT,
.property_type = &_pt_gobject_bool,
),
@@ -5896,6 +5904,14 @@ static const NMMetaPropertyInfo *const property_infos_IP6_CONFIG[] = {
PROPERTY_INFO (NM_SETTING_IP_CONFIG_DHCP_HOSTNAME, DESCRIBE_DOC_NM_SETTING_IP6_CONFIG_DHCP_HOSTNAME,
.property_type = &_pt_gobject_string,
),
+ PROPERTY_INFO (NM_SETTING_IP_CONFIG_DHCP_HOSTNAME_FLAGS, DESCRIBE_DOC_NM_SETTING_IP6_CONFIG_DHCP_HOSTNAME_FLAGS,
+ .property_type = &_pt_gobject_enum,
+ .property_typ_data = DEFINE_PROPERTY_TYP_DATA (
+ PROPERTY_TYP_DATA_SUBTYPE (gobject_enum,
+ .get_gtype = nm_dhcp_hostname_flags_get_type,
+ ),
+ )
+ ),
PROPERTY_INFO_WITH_DESC (NM_SETTING_IP6_CONFIG_TOKEN,
.property_type = &_pt_gobject_string,
),
diff --git a/clients/common/settings-docs.h.in b/clients/common/settings-docs.h.in
index 774adcbb17..f696ca826c 100644
--- a/clients/common/settings-docs.h.in
+++ b/clients/common/settings-docs.h.in
@@ -207,6 +207,7 @@
#define DESCRIBE_DOC_NM_SETTING_IP4_CONFIG_DHCP_CLIENT_ID N_("A string sent to the DHCP server to identify the local machine which the DHCP server may use to customize the DHCP lease and options. When the property is a hex string ('aa:bb:cc') it is interpreted as a binary client ID, in which case the first byte is assumed to be the 'type' field as per RFC 2132 section 9.14 and the remaining bytes may be an hardware address (e.g. '01:xx:xx:xx:xx:xx:xx' where 1 is the Ethernet ARP type and the rest is a MAC address). If the property is not a hex string it is considered as a non-hardware-address client ID and the 'type' field is set to 0. The special values \"mac\" and \"perm-mac\" are supported, which use the current or permanent MAC address of the device to generate a client identifier with type ethernet (01). Currently, these options only work for ethernet type of links. The special value \"duid\" generates a RFC4361-compliant client identifier based on a hash of the interface name as IAID and /etc/machine-id. The special value \"stable\" is supported to generate a type 0 client identifier based on the stable-id (see connection.stable-id) and a per-host key. If you set the stable-id, you may want to include the \"${DEVICE}\" or \"${MAC}\" specifier to get a per-device key. If unset, a globally configured default is used. If still unset, the default depends on the DHCP plugin.")
#define DESCRIBE_DOC_NM_SETTING_IP4_CONFIG_DHCP_FQDN N_("If the \"dhcp-send-hostname\" property is TRUE, then the specified FQDN will be sent to the DHCP server when acquiring a lease. This property and \"dhcp-hostname\" are mutually exclusive and cannot be set at the same time.")
#define DESCRIBE_DOC_NM_SETTING_IP4_CONFIG_DHCP_HOSTNAME N_("If the \"dhcp-send-hostname\" property is TRUE, then the specified name will be sent to the DHCP server when acquiring a lease. This property and \"dhcp-fqdn\" are mutually exclusive and cannot be set at the same time.")
+#define DESCRIBE_DOC_NM_SETTING_IP4_CONFIG_DHCP_HOSTNAME_FLAGS N_("Flags for the DHCP hostname and FQDN. Currently this property only includes flags to control the FQDN flags set in the DHCP FQDN option. Supported FQDN flags are NM_DHCP_HOSTNAME_FLAG_FQDN_SERV_UPDATE (0x1), NM_DHCP_HOSTNAME_FLAG_FQDN_ENCODED (0x2) and NM_DHCP_HOSTNAME_FLAG_FQDN_NO_UPDATE (0x4). When no FQDN flag is set and NM_DHCP_HOSTNAME_FLAG_FQDN_CLEAR_FLAGS (0x8) is set, the DHCP FQDN option will contain no flag. Otherwise, if no FQDN flag is set and NM_DHCP_HOSTNAME_FLAG_FQDN_CLEAR_FLAGS (0x8) is not set, the standard FQDN flags are set in the request: NM_DHCP_HOSTNAME_FLAG_FQDN_SERV_UPDATE (0x1), NM_DHCP_HOSTNAME_FLAG_FQDN_ENCODED (0x2) for IPv4 and NM_DHCP_HOSTNAME_FLAG_FQDN_SERV_UPDATE (0x1) for IPv6. When this property is set to the default value NM_DHCP_HOSTNAME_FLAG_NONE (0x0), a global default is looked up in NetworkManager configuration. If that value is unset or also NM_DHCP_HOSTNAME_FLAG_NONE (0x0), then the standard FQDN flags described above are sent in the DHCP requests.")
#define DESCRIBE_DOC_NM_SETTING_IP4_CONFIG_DHCP_IAID N_("A string containing the \"Identity Association Identifier\" (IAID) used by the DHCP client. The property is a 32-bit decimal value or a special value among \"mac\", \"perm-mac\", \"ifname\" and \"stable\". When set to \"mac\" (or \"perm-mac\"), the last 4 bytes of the current (or permanent) MAC address are used as IAID. When set to \"ifname\", the IAID is computed by hashing the interface name. The special value \"stable\" can be used to generate an IAID based on the stable-id (see connection.stable-id), a per-host key and the interface name. When the property is unset, the value from global configuration is used; if no global default is set then the IAID is assumed to be \"ifname\". Note that at the moment this property is ignored for IPv6 by dhclient, which always derives the IAID from the MAC address.")
#define DESCRIBE_DOC_NM_SETTING_IP4_CONFIG_DHCP_SEND_HOSTNAME N_("If TRUE, a hostname is sent to the DHCP server when acquiring a lease. Some DHCP servers use this hostname to update DNS databases, essentially providing a static hostname for the computer. If the \"dhcp-hostname\" property is NULL and this property is TRUE, the current persistent hostname of the computer is sent.")
#define DESCRIBE_DOC_NM_SETTING_IP4_CONFIG_DHCP_TIMEOUT N_("A timeout for a DHCP transaction in seconds.")
@@ -228,6 +229,7 @@
#define DESCRIBE_DOC_NM_SETTING_IP6_CONFIG_DAD_TIMEOUT N_("Timeout in milliseconds used to check for the presence of duplicate IP addresses on the network. If an address conflict is detected, the activation will fail. A zero value means that no duplicate address detection is performed, -1 means the default value (either configuration ipvx.dad-timeout override or zero). A value greater than zero is a timeout in milliseconds. The property is currently implemented only for IPv4.")
#define DESCRIBE_DOC_NM_SETTING_IP6_CONFIG_DHCP_DUID N_("A string containing the DHCPv6 Unique Identifier (DUID) used by the dhcp client to identify itself to DHCPv6 servers (RFC 3315). The DUID is carried in the Client Identifier option. If the property is a hex string ('aa:bb:cc') it is interpreted as a binary DUID and filled as an opaque value in the Client Identifier option. The special value \"lease\" will retrieve the DUID previously used from the lease file belonging to the connection. If no DUID is found and \"dhclient\" is the configured dhcp client, the DUID is searched in the system-wide dhclient lease file. If still no DUID is found, or another dhcp client is used, a global and permanent DUID-UUID (RFC 6355) will be generated based on the machine-id. The special values \"llt\" and \"ll\" will generate a DUID of type LLT or LL (see RFC 3315) based on the current MAC address of the device. In order to try providing a stable DUID-LLT, the time field will contain a constant timestamp that is used globally (for all profiles) and persisted to disk. The special values \"stable-llt\", \"stable-ll\" and \"stable-uuid\" will generate a DUID of the corresponding type, derived from the connection's stable-id and a per-host unique key. You may want to include the \"${DEVICE}\" or \"${MAC}\" specifier in the stable-id, in case this profile gets activated on multiple devices. So, the link-layer address of \"stable-ll\" and \"stable-llt\" will be a generated address derived from the stable id. The DUID-LLT time value in the \"stable-llt\" option will be picked among a static timespan of three years (the upper bound of the interval is the same constant timestamp used in \"llt\"). When the property is unset, the global value provided for \"ipv6.dhcp-duid\" is used. If no global value is provided, the default \"lease\" value is assumed.")
#define DESCRIBE_DOC_NM_SETTING_IP6_CONFIG_DHCP_HOSTNAME N_("If the \"dhcp-send-hostname\" property is TRUE, then the specified name will be sent to the DHCP server when acquiring a lease. This property and \"dhcp-fqdn\" are mutually exclusive and cannot be set at the same time.")
+#define DESCRIBE_DOC_NM_SETTING_IP6_CONFIG_DHCP_HOSTNAME_FLAGS N_("Flags for the DHCP hostname and FQDN. Currently this property only includes flags to control the FQDN flags set in the DHCP FQDN option. Supported FQDN flags are NM_DHCP_HOSTNAME_FLAG_FQDN_SERV_UPDATE (0x1), NM_DHCP_HOSTNAME_FLAG_FQDN_ENCODED (0x2) and NM_DHCP_HOSTNAME_FLAG_FQDN_NO_UPDATE (0x4). When no FQDN flag is set and NM_DHCP_HOSTNAME_FLAG_FQDN_CLEAR_FLAGS (0x8) is set, the DHCP FQDN option will contain no flag. Otherwise, if no FQDN flag is set and NM_DHCP_HOSTNAME_FLAG_FQDN_CLEAR_FLAGS (0x8) is not set, the standard FQDN flags are set in the request: NM_DHCP_HOSTNAME_FLAG_FQDN_SERV_UPDATE (0x1), NM_DHCP_HOSTNAME_FLAG_FQDN_ENCODED (0x2) for IPv4 and NM_DHCP_HOSTNAME_FLAG_FQDN_SERV_UPDATE (0x1) for IPv6. When this property is set to the default value NM_DHCP_HOSTNAME_FLAG_NONE (0x0), a global default is looked up in NetworkManager configuration. If that value is unset or also NM_DHCP_HOSTNAME_FLAG_NONE (0x0), then the standard FQDN flags described above are sent in the DHCP requests.")
#define DESCRIBE_DOC_NM_SETTING_IP6_CONFIG_DHCP_IAID N_("A string containing the \"Identity Association Identifier\" (IAID) used by the DHCP client. The property is a 32-bit decimal value or a special value among \"mac\", \"perm-mac\", \"ifname\" and \"stable\". When set to \"mac\" (or \"perm-mac\"), the last 4 bytes of the current (or permanent) MAC address are used as IAID. When set to \"ifname\", the IAID is computed by hashing the interface name. The special value \"stable\" can be used to generate an IAID based on the stable-id (see connection.stable-id), a per-host key and the interface name. When the property is unset, the value from global configuration is used; if no global default is set then the IAID is assumed to be \"ifname\". Note that at the moment this property is ignored for IPv6 by dhclient, which always derives the IAID from the MAC address.")
#define DESCRIBE_DOC_NM_SETTING_IP6_CONFIG_DHCP_SEND_HOSTNAME N_("If TRUE, a hostname is sent to the DHCP server when acquiring a lease. Some DHCP servers use this hostname to update DNS databases, essentially providing a static hostname for the computer. If the \"dhcp-hostname\" property is NULL and this property is TRUE, the current persistent hostname of the computer is sent.")
#define DESCRIBE_DOC_NM_SETTING_IP6_CONFIG_DHCP_TIMEOUT N_("A timeout for a DHCP transaction in seconds.")
diff --git a/clients/tests/test-client.check-on-disk/test_003.expected b/clients/tests/test-client.check-on-disk/test_003.expected
index 134fbb1bd9..fd0a86139b 100644
--- a/clients/tests/test-client.check-on-disk/test_003.expected
+++ b/clients/tests/test-client.check-on-disk/test_003.expected
@@ -150,12 +150,12 @@ id
path
uuid
<<<
-size: 4241
+size: 4343
location: clients/tests/test-client.py:test_003()/12
cmd: $NMCLI con s con-gsm1
lang: C
returncode: 0
-stdout: 4111 bytes
+stdout: 4213 bytes
>>>
connection.id: con-gsm1
connection.uuid: UUID-con-gsm1-REPLACED-REPLACED-REPL
@@ -200,6 +200,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: yes
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: no
ipv4.may-fail: yes
ipv4.dad-timeout: -1 (default)
@@ -224,6 +225,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: yes
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
serial.baud: 5
serial.bits: 8
@@ -250,12 +252,12 @@ proxy.pac-url: --
proxy.pac-script: --
<<<
-size: 4271
+size: 4373
location: clients/tests/test-client.py:test_003()/13
cmd: $NMCLI con s con-gsm1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 4131 bytes
+stdout: 4233 bytes
>>>
connection.id: con-gsm1
connection.uuid: UUID-con-gsm1-REPLACED-REPLACED-REPL
@@ -300,6 +302,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: tak
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: nie
ipv4.may-fail: tak
ipv4.dad-timeout: -1 (default)
@@ -324,6 +327,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: tak
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
serial.baud: 5
serial.bits: 8
@@ -482,12 +486,12 @@ UUID NAME
UUID-ethernet-REPLACED-REPLACED-REPL ethernet
<<<
-size: 4016
+size: 4118
location: clients/tests/test-client.py:test_003()/25
cmd: $NMCLI -f ALL con s ethernet
lang: C
returncode: 0
-stdout: 3879 bytes
+stdout: 3981 bytes
>>>
connection.id: ethernet
connection.uuid: UUID-ethernet-REPLACED-REPLACED-REPL
@@ -546,6 +550,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: yes
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: no
ipv4.may-fail: yes
ipv4.dad-timeout: -1 (default)
@@ -570,6 +575,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: yes
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
proxy.method: none
proxy.browser-only: no
@@ -577,12 +583,12 @@ proxy.pac-url: --
proxy.pac-script: --
<<<
-size: 4044
+size: 4146
location: clients/tests/test-client.py:test_003()/26
cmd: $NMCLI -f ALL con s ethernet
lang: pl_PL.UTF-8
returncode: 0
-stdout: 3897 bytes
+stdout: 3999 bytes
>>>
connection.id: ethernet
connection.uuid: UUID-ethernet-REPLACED-REPLACED-REPL
@@ -641,6 +647,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: tak
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: nie
ipv4.may-fail: tak
ipv4.dad-timeout: -1 (default)
@@ -665,6 +672,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: tak
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
proxy.method: none
proxy.browser-only: nie
@@ -692,12 +700,12 @@ stdout: 51 bytes
GENERAL.STATE: aktywowano
<<<
-size: 4716
+size: 4818
location: clients/tests/test-client.py:test_003()/29
cmd: $NMCLI con s ethernet
lang: C
returncode: 0
-stdout: 4586 bytes
+stdout: 4688 bytes
>>>
connection.id: ethernet
connection.uuid: UUID-ethernet-REPLACED-REPLACED-REPL
@@ -756,6 +764,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: yes
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: no
ipv4.may-fail: yes
ipv4.dad-timeout: -1 (default)
@@ -780,6 +789,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: yes
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
proxy.method: none
proxy.browser-only: no
@@ -800,12 +810,12 @@ GENERAL.ZONE: --
GENERAL.MASTER-PATH: --
<<<
-size: 4748
+size: 4850
location: clients/tests/test-client.py:test_003()/30
cmd: $NMCLI con s ethernet
lang: pl_PL.UTF-8
returncode: 0
-stdout: 4608 bytes
+stdout: 4710 bytes
>>>
connection.id: ethernet
connection.uuid: UUID-ethernet-REPLACED-REPLACED-REPL
@@ -864,6 +874,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: tak
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: nie
ipv4.may-fail: tak
ipv4.dad-timeout: -1 (default)
@@ -888,6 +899,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: tak
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
proxy.method: none
proxy.browser-only: nie
@@ -1374,12 +1386,12 @@ UUID NAME
UUID-ethernet-REPLACED-REPLACED-REPL ethernet
<<<
-size: 4016
+size: 4118
location: clients/tests/test-client.py:test_003()/50
cmd: $NMCLI -f ALL con s ethernet
lang: C
returncode: 0
-stdout: 3879 bytes
+stdout: 3981 bytes
>>>
connection.id: ethernet
connection.uuid: UUID-ethernet-REPLACED-REPLACED-REPL
@@ -1438,6 +1450,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: yes
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: no
ipv4.may-fail: yes
ipv4.dad-timeout: -1 (default)
@@ -1462,6 +1475,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: yes
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
proxy.method: none
proxy.browser-only: no
@@ -1469,12 +1483,12 @@ proxy.pac-url: --
proxy.pac-script: --
<<<
-size: 4044
+size: 4146
location: clients/tests/test-client.py:test_003()/51
cmd: $NMCLI -f ALL con s ethernet
lang: pl_PL.UTF-8
returncode: 0
-stdout: 3897 bytes
+stdout: 3999 bytes
>>>
connection.id: ethernet
connection.uuid: UUID-ethernet-REPLACED-REPLACED-REPL
@@ -1533,6 +1547,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: tak
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: nie
ipv4.may-fail: tak
ipv4.dad-timeout: -1 (default)
@@ -1557,6 +1572,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: tak
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
proxy.method: none
proxy.browser-only: nie
@@ -1588,12 +1604,12 @@ GENERAL.STATE: aktywowano
GENERAL.STATE: aktywowano
<<<
-size: 5424
+size: 5526
location: clients/tests/test-client.py:test_003()/54
cmd: $NMCLI con s ethernet
lang: C
returncode: 0
-stdout: 5294 bytes
+stdout: 5396 bytes
>>>
connection.id: ethernet
connection.uuid: UUID-ethernet-REPLACED-REPLACED-REPL
@@ -1652,6 +1668,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: yes
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: no
ipv4.may-fail: yes
ipv4.dad-timeout: -1 (default)
@@ -1676,6 +1693,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: yes
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
proxy.method: none
proxy.browser-only: no
@@ -1710,12 +1728,12 @@ GENERAL.ZONE: --
GENERAL.MASTER-PATH: --
<<<
-size: 5460
+size: 5562
location: clients/tests/test-client.py:test_003()/55
cmd: $NMCLI con s ethernet
lang: pl_PL.UTF-8
returncode: 0
-stdout: 5320 bytes
+stdout: 5422 bytes
>>>
connection.id: ethernet
connection.uuid: UUID-ethernet-REPLACED-REPLACED-REPL
@@ -1774,6 +1792,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: tak
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: nie
ipv4.may-fail: tak
ipv4.dad-timeout: -1 (default)
@@ -1798,6 +1817,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: tak
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
proxy.method: none
proxy.browser-only: nie
@@ -2216,12 +2236,12 @@ UUID-con-gsm1-REPLACED-REPLACED-REPL gsm
UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet
<<<
-size: 5427
+size: 5529
location: clients/tests/test-client.py:test_003()/68
cmd: $NMCLI con s ethernet
lang: C
returncode: 0
-stdout: 5297 bytes
+stdout: 5399 bytes
>>>
connection.id: ethernet
connection.uuid: UUID-ethernet-REPLACED-REPLACED-REPL
@@ -2280,6 +2300,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: yes
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: no
ipv4.may-fail: yes
ipv4.dad-timeout: -1 (default)
@@ -2304,6 +2325,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: yes
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
proxy.method: none
proxy.browser-only: no
@@ -2338,12 +2360,12 @@ GENERAL.ZONE: --
GENERAL.MASTER-PATH: --
<<<
-size: 5464
+size: 5566
location: clients/tests/test-client.py:test_003()/69
cmd: $NMCLI con s ethernet
lang: pl_PL.UTF-8
returncode: 0
-stdout: 5324 bytes
+stdout: 5426 bytes
>>>
connection.id: ethernet
connection.uuid: UUID-ethernet-REPLACED-REPLACED-REPL
@@ -2402,6 +2424,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: tak
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: nie
ipv4.may-fail: tak
ipv4.dad-timeout: -1 (default)
@@ -2426,6 +2449,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: tak
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
proxy.method: none
proxy.browser-only: nie
@@ -2460,12 +2484,12 @@ GENERAL.ZONE: --
GENERAL.MASTER-PATH: --
<<<
-size: 4759
+size: 4861
location: clients/tests/test-client.py:test_003()/70
cmd: $NMCLI c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: C
returncode: 0
-stdout: 4589 bytes
+stdout: 4691 bytes
>>>
connection.id: ethernet
connection.uuid: UUID-ethernet-REPLACED-REPLACED-REPL
@@ -2524,6 +2548,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: yes
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: no
ipv4.may-fail: yes
ipv4.dad-timeout: -1 (default)
@@ -2548,6 +2573,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: yes
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
proxy.method: none
proxy.browser-only: no
@@ -2568,12 +2594,12 @@ GENERAL.ZONE: --
GENERAL.MASTER-PATH: --
<<<
-size: 4792
+size: 4894
location: clients/tests/test-client.py:test_003()/71
cmd: $NMCLI c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 4612 bytes
+stdout: 4714 bytes
>>>
connection.id: ethernet
connection.uuid: UUID-ethernet-REPLACED-REPLACED-REPL
@@ -2632,6 +2658,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: tak
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: nie
ipv4.may-fail: tak
ipv4.dad-timeout: -1 (default)
@@ -2656,6 +2683,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: tak
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
proxy.method: none
proxy.browser-only: nie
@@ -2872,12 +2900,12 @@ UUID-con-gsm1-REPLACED-REPLACED-REPL gsm
UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet
<<<
-size: 5439
+size: 5541
location: clients/tests/test-client.py:test_003()/78
cmd: $NMCLI --color yes con s ethernet
lang: C
returncode: 0
-stdout: 5297 bytes
+stdout: 5399 bytes
>>>
connection.id: ethernet
connection.uuid: UUID-ethernet-REPLACED-REPLACED-REPL
@@ -2936,6 +2964,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: yes
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: no
ipv4.may-fail: yes
ipv4.dad-timeout: -1 (default)
@@ -2960,6 +2989,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: yes
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
proxy.method: none
proxy.browser-only: no
@@ -2994,12 +3024,12 @@ GENERAL.ZONE: --
GENERAL.MASTER-PATH: --
<<<
-size: 5476
+size: 5578
location: clients/tests/test-client.py:test_003()/79
cmd: $NMCLI --color yes con s ethernet
lang: pl_PL.UTF-8
returncode: 0
-stdout: 5324 bytes
+stdout: 5426 bytes
>>>
connection.id: ethernet
connection.uuid: UUID-ethernet-REPLACED-REPLACED-REPL
@@ -3058,6 +3088,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: tak
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: nie
ipv4.may-fail: tak
ipv4.dad-timeout: -1 (default)
@@ -3082,6 +3113,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: tak
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
proxy.method: none
proxy.browser-only: nie
@@ -3116,12 +3148,12 @@ GENERAL.ZONE: --
GENERAL.MASTER-PATH: --
<<<
-size: 4771
+size: 4873
location: clients/tests/test-client.py:test_003()/80
cmd: $NMCLI --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: C
returncode: 0
-stdout: 4589 bytes
+stdout: 4691 bytes
>>>
connection.id: ethernet
connection.uuid: UUID-ethernet-REPLACED-REPLACED-REPL
@@ -3180,6 +3212,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: yes
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: no
ipv4.may-fail: yes
ipv4.dad-timeout: -1 (default)
@@ -3204,6 +3237,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: yes
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
proxy.method: none
proxy.browser-only: no
@@ -3224,12 +3258,12 @@ GENERAL.ZONE: --
GENERAL.MASTER-PATH: --
<<<
-size: 4804
+size: 4906
location: clients/tests/test-client.py:test_003()/81
cmd: $NMCLI --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 4612 bytes
+stdout: 4714 bytes
>>>
connection.id: ethernet
connection.uuid: UUID-ethernet-REPLACED-REPLACED-REPL
@@ -3288,6 +3322,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: tak
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: nie
ipv4.may-fail: tak
ipv4.dad-timeout: -1 (default)
@@ -3312,6 +3347,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: tak
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
proxy.method: none
proxy.browser-only: nie
@@ -3544,12 +3580,12 @@ UUID-con-gsm1-REPLACED-REPLACED-REPL gsm
UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet
<<<
-size: 6681
+size: 6783
location: clients/tests/test-client.py:test_003()/88
cmd: $NMCLI --pretty con s ethernet
lang: C
returncode: 0
-stdout: 6542 bytes
+stdout: 6644 bytes
>>>
===============================================================================
Connection profile details (ethernet)
@@ -3613,6 +3649,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: yes
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: no
ipv4.may-fail: yes
ipv4.dad-timeout: -1 (default)
@@ -3638,6 +3675,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: yes
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
-------------------------------------------------------------------------------
proxy.method: none
@@ -3682,12 +3720,12 @@ GENERAL.MASTER-PATH: --
-------------------------------------------------------------------------------
<<<
-size: 6737
+size: 6839
location: clients/tests/test-client.py:test_003()/89
cmd: $NMCLI --pretty con s ethernet
lang: pl_PL.UTF-8
returncode: 0
-stdout: 6588 bytes
+stdout: 6690 bytes
>>>
===============================================================================
Szczegóły profilu połączenia (ethernet)
@@ -3751,6 +3789,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: tak
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: nie
ipv4.may-fail: tak
ipv4.dad-timeout: -1 (default)
@@ -3776,6 +3815,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: tak
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
-------------------------------------------------------------------------------
proxy.method: none
@@ -3820,12 +3860,12 @@ GENERAL.MASTER-PATH: --
-------------------------------------------------------------------------------
<<<
-size: 5700
+size: 5802
location: clients/tests/test-client.py:test_003()/90
cmd: $NMCLI --pretty c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: C
returncode: 0
-stdout: 5521 bytes
+stdout: 5623 bytes
>>>
===============================================================================
Connection profile details (ethernet)
@@ -3889,6 +3929,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: yes
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: no
ipv4.may-fail: yes
ipv4.dad-timeout: -1 (default)
@@ -3914,6 +3955,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: yes
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
-------------------------------------------------------------------------------
proxy.method: none
@@ -3940,12 +3982,12 @@ GENERAL.MASTER-PATH: --
-------------------------------------------------------------------------------
<<<
-size: 5745
+size: 5847
location: clients/tests/test-client.py:test_003()/91
cmd: $NMCLI --pretty c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 5556 bytes
+stdout: 5658 bytes
>>>
===============================================================================
Szczegóły profilu połączenia (ethernet)
@@ -4009,6 +4051,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: tak
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: nie
ipv4.may-fail: tak
ipv4.dad-timeout: -1 (default)
@@ -4034,6 +4077,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: tak
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
-------------------------------------------------------------------------------
proxy.method: none
@@ -4296,12 +4340,12 @@ UUID-con-gsm1-REPLACED-REPLACED-REPL gsm
UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet
<<<
-size: 6693
+size: 6795
location: clients/tests/test-client.py:test_003()/98
cmd: $NMCLI --pretty --color yes con s ethernet
lang: C
returncode: 0
-stdout: 6542 bytes
+stdout: 6644 bytes
>>>
===============================================================================
Connection profile details (ethernet)
@@ -4365,6 +4409,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: yes
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: no
ipv4.may-fail: yes
ipv4.dad-timeout: -1 (default)
@@ -4390,6 +4435,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: yes
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
-------------------------------------------------------------------------------
proxy.method: none
@@ -4434,12 +4480,12 @@ GENERAL.MASTER-PATH: --
-------------------------------------------------------------------------------
<<<
-size: 6749
+size: 6851
location: clients/tests/test-client.py:test_003()/99
cmd: $NMCLI --pretty --color yes con s ethernet
lang: pl_PL.UTF-8
returncode: 0
-stdout: 6588 bytes
+stdout: 6690 bytes
>>>
===============================================================================
Szczegóły profilu połączenia (ethernet)
@@ -4503,6 +4549,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: tak
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: nie
ipv4.may-fail: tak
ipv4.dad-timeout: -1 (default)
@@ -4528,6 +4575,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: tak
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
-------------------------------------------------------------------------------
proxy.method: none
@@ -4572,12 +4620,12 @@ GENERAL.MASTER-PATH: --
-------------------------------------------------------------------------------
<<<
-size: 5713
+size: 5815
location: clients/tests/test-client.py:test_003()/100
cmd: $NMCLI --pretty --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: C
returncode: 0
-stdout: 5521 bytes
+stdout: 5623 bytes
>>>
===============================================================================
Connection profile details (ethernet)
@@ -4641,6 +4689,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: yes
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: no
ipv4.may-fail: yes
ipv4.dad-timeout: -1 (default)
@@ -4666,6 +4715,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: yes
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
-------------------------------------------------------------------------------
proxy.method: none
@@ -4692,12 +4742,12 @@ GENERAL.MASTER-PATH: --
-------------------------------------------------------------------------------
<<<
-size: 5758
+size: 5860
location: clients/tests/test-client.py:test_003()/101
cmd: $NMCLI --pretty --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 5556 bytes
+stdout: 5658 bytes
>>>
===============================================================================
Szczegóły profilu połączenia (ethernet)
@@ -4761,6 +4811,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: tak
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: nie
ipv4.may-fail: tak
ipv4.dad-timeout: -1 (default)
@@ -4786,6 +4837,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: tak
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
-------------------------------------------------------------------------------
proxy.method: none
@@ -5028,12 +5080,12 @@ UUID-con-gsm1-REPLACED-REPLACED-REPL:gsm
UUID-con-xx1-REPLACED-REPLACED-REPLA:802-3-ethernet
<<<
-size: 2905
+size: 2963
location: clients/tests/test-client.py:test_003()/108
cmd: $NMCLI --terse con s ethernet
lang: C
returncode: 0
-stdout: 2766 bytes
+stdout: 2824 bytes
>>>
connection.id:ethernet
connection.uuid:UUID-ethernet-REPLACED-REPLACED-REPL
@@ -5092,6 +5144,7 @@ ipv4.dhcp-timeout:0
ipv4.dhcp-send-hostname:yes
ipv4.dhcp-hostname:
ipv4.dhcp-fqdn:
+ipv4.dhcp-hostname-flags:0x0
ipv4.never-default:no
ipv4.may-fail:yes
ipv4.dad-timeout:-1
@@ -5116,6 +5169,7 @@ ipv6.dhcp-duid:
ipv6.dhcp-iaid:
ipv6.dhcp-send-hostname:yes
ipv6.dhcp-hostname:
+ipv6.dhcp-hostname-flags:0x0
ipv6.token:
proxy.method:none
proxy.browser-only:no
@@ -5150,12 +5204,12 @@ GENERAL.ZONE:
GENERAL.MASTER-PATH:
<<<
-size: 2915
+size: 2973
location: clients/tests/test-client.py:test_003()/109
cmd: $NMCLI --terse con s ethernet
lang: pl_PL.UTF-8
returncode: 0
-stdout: 2766 bytes
+stdout: 2824 bytes
>>>
connection.id:ethernet
connection.uuid:UUID-ethernet-REPLACED-REPLACED-REPL
@@ -5214,6 +5268,7 @@ ipv4.dhcp-timeout:0
ipv4.dhcp-send-hostname:yes
ipv4.dhcp-hostname:
ipv4.dhcp-fqdn:
+ipv4.dhcp-hostname-flags:0x0
ipv4.never-default:no
ipv4.may-fail:yes
ipv4.dad-timeout:-1
@@ -5238,6 +5293,7 @@ ipv6.dhcp-duid:
ipv6.dhcp-iaid:
ipv6.dhcp-send-hostname:yes
ipv6.dhcp-hostname:
+ipv6.dhcp-hostname-flags:0x0
ipv6.token:
proxy.method:none
proxy.browser-only:no
@@ -5272,12 +5328,12 @@ GENERAL.ZONE:
GENERAL.MASTER-PATH:
<<<
-size: 2559
+size: 2617
location: clients/tests/test-client.py:test_003()/110
cmd: $NMCLI --terse c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: C
returncode: 0
-stdout: 2380 bytes
+stdout: 2438 bytes
>>>
connection.id:ethernet
connection.uuid:UUID-ethernet-REPLACED-REPLACED-REPL
@@ -5336,6 +5392,7 @@ ipv4.dhcp-timeout:0
ipv4.dhcp-send-hostname:yes
ipv4.dhcp-hostname:
ipv4.dhcp-fqdn:
+ipv4.dhcp-hostname-flags:0x0
ipv4.never-default:no
ipv4.may-fail:yes
ipv4.dad-timeout:-1
@@ -5360,6 +5417,7 @@ ipv6.dhcp-duid:
ipv6.dhcp-iaid:
ipv6.dhcp-send-hostname:yes
ipv6.dhcp-hostname:
+ipv6.dhcp-hostname-flags:0x0
ipv6.token:
proxy.method:none
proxy.browser-only:no
@@ -5380,12 +5438,12 @@ GENERAL.ZONE:
GENERAL.MASTER-PATH:
<<<
-size: 2569
+size: 2627
location: clients/tests/test-client.py:test_003()/111
cmd: $NMCLI --terse c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 2380 bytes
+stdout: 2438 bytes
>>>
connection.id:ethernet
connection.uuid:UUID-ethernet-REPLACED-REPLACED-REPL
@@ -5444,6 +5502,7 @@ ipv4.dhcp-timeout:0
ipv4.dhcp-send-hostname:yes
ipv4.dhcp-hostname:
ipv4.dhcp-fqdn:
+ipv4.dhcp-hostname-flags:0x0
ipv4.never-default:no
ipv4.may-fail:yes
ipv4.dad-timeout:-1
@@ -5468,6 +5527,7 @@ ipv6.dhcp-duid:
ipv6.dhcp-iaid:
ipv6.dhcp-send-hostname:yes
ipv6.dhcp-hostname:
+ipv6.dhcp-hostname-flags:0x0
ipv6.token:
proxy.method:none
proxy.browser-only:no
@@ -5680,12 +5740,12 @@ UUID-con-gsm1-REPLACED-REPLACED-REPL:gsm
UUID-con-xx1-REPLACED-REPLACED-REPLA:802-3-ethernet
<<<
-size: 2917
+size: 2975
location: clients/tests/test-client.py:test_003()/118
cmd: $NMCLI --terse --color yes con s ethernet
lang: C
returncode: 0
-stdout: 2766 bytes
+stdout: 2824 bytes
>>>
connection.id:ethernet
connection.uuid:UUID-ethernet-REPLACED-REPLACED-REPL
@@ -5744,6 +5804,7 @@ ipv4.dhcp-timeout:0
ipv4.dhcp-send-hostname:yes
ipv4.dhcp-hostname:
ipv4.dhcp-fqdn:
+ipv4.dhcp-hostname-flags:0x0
ipv4.never-default:no
ipv4.may-fail:yes
ipv4.dad-timeout:-1
@@ -5768,6 +5829,7 @@ ipv6.dhcp-duid:
ipv6.dhcp-iaid:
ipv6.dhcp-send-hostname:yes
ipv6.dhcp-hostname:
+ipv6.dhcp-hostname-flags:0x0
ipv6.token:
proxy.method:none
proxy.browser-only:no
@@ -5802,12 +5864,12 @@ GENERAL.ZONE:
GENERAL.MASTER-PATH:
<<<
-size: 2927
+size: 2985
location: clients/tests/test-client.py:test_003()/119
cmd: $NMCLI --terse --color yes con s ethernet
lang: pl_PL.UTF-8
returncode: 0
-stdout: 2766 bytes
+stdout: 2824 bytes
>>>
connection.id:ethernet
connection.uuid:UUID-ethernet-REPLACED-REPLACED-REPL
@@ -5866,6 +5928,7 @@ ipv4.dhcp-timeout:0
ipv4.dhcp-send-hostname:yes
ipv4.dhcp-hostname:
ipv4.dhcp-fqdn:
+ipv4.dhcp-hostname-flags:0x0
ipv4.never-default:no
ipv4.may-fail:yes
ipv4.dad-timeout:-1
@@ -5890,6 +5953,7 @@ ipv6.dhcp-duid:
ipv6.dhcp-iaid:
ipv6.dhcp-send-hostname:yes
ipv6.dhcp-hostname:
+ipv6.dhcp-hostname-flags:0x0
ipv6.token:
proxy.method:none
proxy.browser-only:no
@@ -5924,12 +5988,12 @@ GENERAL.ZONE:
GENERAL.MASTER-PATH:
<<<
-size: 2571
+size: 2629
location: clients/tests/test-client.py:test_003()/120
cmd: $NMCLI --terse --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: C
returncode: 0
-stdout: 2380 bytes
+stdout: 2438 bytes
>>>
connection.id:ethernet
connection.uuid:UUID-ethernet-REPLACED-REPLACED-REPL
@@ -5988,6 +6052,7 @@ ipv4.dhcp-timeout:0
ipv4.dhcp-send-hostname:yes
ipv4.dhcp-hostname:
ipv4.dhcp-fqdn:
+ipv4.dhcp-hostname-flags:0x0
ipv4.never-default:no
ipv4.may-fail:yes
ipv4.dad-timeout:-1
@@ -6012,6 +6077,7 @@ ipv6.dhcp-duid:
ipv6.dhcp-iaid:
ipv6.dhcp-send-hostname:yes
ipv6.dhcp-hostname:
+ipv6.dhcp-hostname-flags:0x0
ipv6.token:
proxy.method:none
proxy.browser-only:no
@@ -6032,12 +6098,12 @@ GENERAL.ZONE:
GENERAL.MASTER-PATH:
<<<
-size: 2581
+size: 2639
location: clients/tests/test-client.py:test_003()/121
cmd: $NMCLI --terse --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 2380 bytes
+stdout: 2438 bytes
>>>
connection.id:ethernet
connection.uuid:UUID-ethernet-REPLACED-REPLACED-REPL
@@ -6096,6 +6162,7 @@ ipv4.dhcp-timeout:0
ipv4.dhcp-send-hostname:yes
ipv4.dhcp-hostname:
ipv4.dhcp-fqdn:
+ipv4.dhcp-hostname-flags:0x0
ipv4.never-default:no
ipv4.may-fail:yes
ipv4.dad-timeout:-1
@@ -6120,6 +6187,7 @@ ipv6.dhcp-duid:
ipv6.dhcp-iaid:
ipv6.dhcp-send-hostname:yes
ipv6.dhcp-hostname:
+ipv6.dhcp-hostname-flags:0x0
ipv6.token:
proxy.method:none
proxy.browser-only:no
@@ -6336,12 +6404,12 @@ UUID-con-gsm1-REPLACED-REPLACED-REPL gsm
UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet
<<<
-size: 3598
+size: 3682
location: clients/tests/test-client.py:test_003()/128
cmd: $NMCLI --mode tabular con s ethernet
lang: C
returncode: 0
-stdout: 3452 bytes
+stdout: 3536 bytes
>>>
name id uuid stable-id type interface-name autoconnect autoconnect-priority autoconnect-retries multi-connect auth-retries timestamp read-only permissions zone master slave-type autoconnect-slaves secondaries gateway-ping-timeout metered lldp mdns llmnr wait-device-timeout
connection ethernet UUID-ethernet-REPLACED-REPLACED-REPL -- 802-3-ethernet -- yes 0 -1 (default) 0 (default) -1 0 no -- -- -- -- -1 (default) -- 0 unknown default -1 (default) -1 (default) -1
@@ -6349,11 +6417,11 @@ connection ethernet UUID-ethernet-REPLACED-REPLACED-REPL -- 802-3-eth
name port speed duplex auto-negotiate mac-address cloned-mac-address generate-mac-address-mask mac-address-blacklist mtu s390-subchannels s390-nettype s390-options wake-on-lan wake-on-lan-password
802-3-ethernet -- 0 -- no -- -- -- -- auto -- -- -- default --
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn never-default may-fail dad-timeout
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- no yes -1 (default)
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn dhcp-hostname-flags never-default may-fail dad-timeout
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- 0x0 (none) no yes -1 (default)
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname token
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (unknown) stable-privacy -- -- yes -- --
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname dhcp-hostname-flags token
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (unknown) stable-privacy -- -- yes -- 0x0 (none) --
name method browser-only pac-url pac-script
proxy none no -- --
@@ -6367,12 +6435,12 @@ GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 -- deac
<<<
-size: 3632
+size: 3716
location: clients/tests/test-client.py:test_003()/129
cmd: $NMCLI --mode tabular con s ethernet
lang: pl_PL.UTF-8
returncode: 0
-stdout: 3476 bytes
+stdout: 3560 bytes
>>>
name id uuid stable-id type interface-name autoconnect autoconnect-priority autoconnect-retries multi-connect auth-retries timestamp read-only permissions zone master slave-type autoconnect-slaves secondaries gateway-ping-timeout metered lldp mdns llmnr wait-device-timeout
connection ethernet UUID-ethernet-REPLACED-REPLACED-REPL -- 802-3-ethernet -- tak 0 -1 (default) 0 (default) -1 0 nie -- -- -- -- -1 (default) -- 0 nieznane default -1 (default) -1 (default) -1
@@ -6380,11 +6448,11 @@ connection ethernet UUID-ethernet-REPLACED-REPLACED-REPL -- 802-3-eth
name port speed duplex auto-negotiate mac-address cloned-mac-address generate-mac-address-mask mac-address-blacklist mtu s390-subchannels s390-nettype s390-options wake-on-lan wake-on-lan-password
802-3-ethernet -- 0 -- nie -- -- -- -- automatyczne -- -- -- default --
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn never-default may-fail dad-timeout
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- nie tak -1 (default)
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn dhcp-hostname-flags never-default may-fail dad-timeout
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- 0x0 (none) nie tak -1 (default)
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname token
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (unknown) stable-privacy -- -- tak -- --
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname dhcp-hostname-flags token
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (unknown) stable-privacy -- -- tak -- 0x0 (none) --
name method browser-only pac-url pac-script
proxy none nie -- --
@@ -6398,12 +6466,12 @@ GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 -- deza
<<<
-size: 3136
+size: 3220
location: clients/tests/test-client.py:test_003()/130
cmd: $NMCLI --mode tabular c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: C
returncode: 0
-stdout: 2950 bytes
+stdout: 3034 bytes
>>>
name id uuid stable-id type interface-name autoconnect autoconnect-priority autoconnect-retries multi-connect auth-retries timestamp read-only permissions zone master slave-type autoconnect-slaves secondaries gateway-ping-timeout metered lldp mdns llmnr wait-device-timeout
connection ethernet UUID-ethernet-REPLACED-REPLACED-REPL -- 802-3-ethernet -- yes 0 -1 (default) 0 (default) -1 0 no -- -- -- -- -1 (default) -- 0 unknown default -1 (default) -1 (default) -1
@@ -6411,11 +6479,11 @@ connection ethernet UUID-ethernet-REPLACED-REPLACED-REPL -- 802-3-eth
name port speed duplex auto-negotiate mac-address cloned-mac-address generate-mac-address-mask mac-address-blacklist mtu s390-subchannels s390-nettype s390-options wake-on-lan wake-on-lan-password
802-3-ethernet -- 0 -- no -- -- -- -- auto -- -- -- default --
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn never-default may-fail dad-timeout
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- no yes -1 (default)
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn dhcp-hostname-flags never-default may-fail dad-timeout
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- 0x0 (none) no yes -1 (default)
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname token
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (unknown) stable-privacy -- -- yes -- --
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname dhcp-hostname-flags token
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (unknown) stable-privacy -- -- yes -- 0x0 (none) --
name method browser-only pac-url pac-script
proxy none no -- --
@@ -6425,12 +6493,12 @@ GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 -- deac
<<<
-size: 3168
+size: 3252
location: clients/tests/test-client.py:test_003()/131
cmd: $NMCLI --mode tabular c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 2972 bytes
+stdout: 3056 bytes
>>>
name id uuid stable-id type interface-name autoconnect autoconnect-priority autoconnect-retries multi-connect auth-retries timestamp read-only permissions zone master slave-type autoconnect-slaves secondaries gateway-ping-timeout metered lldp mdns llmnr wait-device-timeout
connection ethernet UUID-ethernet-REPLACED-REPLACED-REPL -- 802-3-ethernet -- tak 0 -1 (default) 0 (default) -1 0 nie -- -- -- -- -1 (default) -- 0 nieznane default -1 (default) -1 (default) -1
@@ -6438,11 +6506,11 @@ connection ethernet UUID-ethernet-REPLACED-REPLACED-REPL -- 802-3-eth
name port speed duplex auto-negotiate mac-address cloned-mac-address generate-mac-address-mask mac-address-blacklist mtu s390-subchannels s390-nettype s390-options wake-on-lan wake-on-lan-password
802-3-ethernet -- 0 -- nie -- -- -- -- automatyczne -- -- -- default --
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn never-default may-fail dad-timeout
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- nie tak -1 (default)
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn dhcp-hostname-flags never-default may-fail dad-timeout
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- 0x0 (none) nie tak -1 (default)
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname token
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (unknown) stable-privacy -- -- tak -- --
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname dhcp-hostname-flags token
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (unknown) stable-privacy -- -- tak -- 0x0 (none) --
name method browser-only pac-url pac-script
proxy none nie -- --
@@ -6580,12 +6648,12 @@ UUID-con-gsm1-REPLACED-REPLACED-REPL gsm
UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet
<<<
-size: 3610
+size: 3694
location: clients/tests/test-client.py:test_003()/138
cmd: $NMCLI --mode tabular --color yes con s ethernet
lang: C
returncode: 0
-stdout: 3452 bytes
+stdout: 3536 bytes
>>>
name id uuid stable-id type interface-name autoconnect autoconnect-priority autoconnect-retries multi-connect auth-retries timestamp read-only permissions zone master slave-type autoconnect-slaves secondaries gateway-ping-timeout metered lldp mdns llmnr wait-device-timeout
connection ethernet UUID-ethernet-REPLACED-REPLACED-REPL -- 802-3-ethernet -- yes 0 -1 (default) 0 (default) -1 0 no -- -- -- -- -1 (default) -- 0 unknown default -1 (default) -1 (default) -1
@@ -6593,11 +6661,11 @@ connection ethernet UUID-ethernet-REPLACED-REPLACED-REPL -- 802-3-eth
name port speed duplex auto-negotiate mac-address cloned-mac-address generate-mac-address-mask mac-address-blacklist mtu s390-subchannels s390-nettype s390-options wake-on-lan wake-on-lan-password
802-3-ethernet -- 0 -- no -- -- -- -- auto -- -- -- default --
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn never-default may-fail dad-timeout
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- no yes -1 (default)
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn dhcp-hostname-flags never-default may-fail dad-timeout
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- 0x0 (none) no yes -1 (default)
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname token
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (unknown) stable-privacy -- -- yes -- --
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname dhcp-hostname-flags token
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (unknown) stable-privacy -- -- yes -- 0x0 (none) --
name method browser-only pac-url pac-script
proxy none no -- --
@@ -6611,12 +6679,12 @@ GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 -- deac
<<<
-size: 3644
+size: 3728
location: clients/tests/test-client.py:test_003()/139
cmd: $NMCLI --mode tabular --color yes con s ethernet
lang: pl_PL.UTF-8
returncode: 0
-stdout: 3476 bytes
+stdout: 3560 bytes
>>>
name id uuid stable-id type interface-name autoconnect autoconnect-priority autoconnect-retries multi-connect auth-retries timestamp read-only permissions zone master slave-type autoconnect-slaves secondaries gateway-ping-timeout metered lldp mdns llmnr wait-device-timeout
connection ethernet UUID-ethernet-REPLACED-REPLACED-REPL -- 802-3-ethernet -- tak 0 -1 (default) 0 (default) -1 0 nie -- -- -- -- -1 (default) -- 0 nieznane default -1 (default) -1 (default) -1
@@ -6624,11 +6692,11 @@ connection ethernet UUID-ethernet-REPLACED-REPLACED-REPL -- 802-3-eth
name port speed duplex auto-negotiate mac-address cloned-mac-address generate-mac-address-mask mac-address-blacklist mtu s390-subchannels s390-nettype s390-options wake-on-lan wake-on-lan-password
802-3-ethernet -- 0 -- nie -- -- -- -- automatyczne -- -- -- default --
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn never-default may-fail dad-timeout
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- nie tak -1 (default)
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn dhcp-hostname-flags never-default may-fail dad-timeout
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- 0x0 (none) nie tak -1 (default)
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname token
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (unknown) stable-privacy -- -- tak -- --
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname dhcp-hostname-flags token
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (unknown) stable-privacy -- -- tak -- 0x0 (none) --
name method browser-only pac-url pac-script
proxy none nie -- --
@@ -6642,12 +6710,12 @@ GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 -- deza
<<<
-size: 3148
+size: 3232
location: clients/tests/test-client.py:test_003()/140
cmd: $NMCLI --mode tabular --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: C
returncode: 0
-stdout: 2950 bytes
+stdout: 3034 bytes
>>>
name id uuid stable-id type interface-name autoconnect autoconnect-priority autoconnect-retries multi-connect auth-retries timestamp read-only permissions zone master slave-type autoconnect-slaves secondaries gateway-ping-timeout metered lldp mdns llmnr wait-device-timeout
connection ethernet UUID-ethernet-REPLACED-REPLACED-REPL -- 802-3-ethernet -- yes 0 -1 (default) 0 (default) -1 0 no -- -- -- -- -1 (default) -- 0 unknown default -1 (default) -1 (default) -1
@@ -6655,11 +6723,11 @@ connection ethernet UUID-ethernet-REPLACED-REPLACED-REPL -- 802-3-eth
name port speed duplex auto-negotiate mac-address cloned-mac-address generate-mac-address-mask mac-address-blacklist mtu s390-subchannels s390-nettype s390-options wake-on-lan wake-on-lan-password
802-3-ethernet -- 0 -- no -- -- -- -- auto -- -- -- default --
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn never-default may-fail dad-timeout
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- no yes -1 (default)
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn dhcp-hostname-flags never-default may-fail dad-timeout
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- 0x0 (none) no yes -1 (default)
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname token
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (unknown) stable-privacy -- -- yes -- --
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname dhcp-hostname-flags token
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (unknown) stable-privacy -- -- yes -- 0x0 (none) --
name method browser-only pac-url pac-script
proxy none no -- --
@@ -6669,12 +6737,12 @@ GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 -- deac
<<<
-size: 3180
+size: 3264
location: clients/tests/test-client.py:test_003()/141
cmd: $NMCLI --mode tabular --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 2972 bytes
+stdout: 3056 bytes
>>>
name id uuid stable-id type interface-name autoconnect autoconnect-priority autoconnect-retries multi-connect auth-retries timestamp read-only permissions zone master slave-type autoconnect-slaves secondaries gateway-ping-timeout metered lldp mdns llmnr wait-device-timeout
connection ethernet UUID-ethernet-REPLACED-REPLACED-REPL -- 802-3-ethernet -- tak 0 -1 (default) 0 (default) -1 0 nie -- -- -- -- -1 (default) -- 0 nieznane default -1 (default) -1 (default) -1
@@ -6682,11 +6750,11 @@ connection ethernet UUID-ethernet-REPLACED-REPLACED-REPL -- 802-3-eth
name port speed duplex auto-negotiate mac-address cloned-mac-address generate-mac-address-mask mac-address-blacklist mtu s390-subchannels s390-nettype s390-options wake-on-lan wake-on-lan-password
802-3-ethernet -- 0 -- nie -- -- -- -- automatyczne -- -- -- default --
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn never-default may-fail dad-timeout
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- nie tak -1 (default)
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn dhcp-hostname-flags never-default may-fail dad-timeout
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- 0x0 (none) nie tak -1 (default)
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname token
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (unknown) stable-privacy -- -- tak -- --
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname dhcp-hostname-flags token
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (unknown) stable-privacy -- -- tak -- 0x0 (none) --
name method browser-only pac-url pac-script
proxy none nie -- --
@@ -6840,12 +6908,12 @@ UUID-con-gsm1-REPLACED-REPLACED-REPL gsm
UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet
<<<
-size: 5882
+size: 6008
location: clients/tests/test-client.py:test_003()/148
cmd: $NMCLI --mode tabular --pretty con s ethernet
lang: C
returncode: 0
-stdout: 5727 bytes
+stdout: 5853 bytes
>>>
=========================================
Connection profile details (ethernet)
@@ -6858,13 +6926,13 @@ name port speed duplex auto-negotiate mac-address cloned-mac-add
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
802-3-ethernet -- 0 -- no -- -- -- -- auto -- -- -- default --
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn never-default may-fail dad-timeout
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- no yes -1 (default)
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn dhcp-hostname-flags never-default may-fail dad-timeout
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- 0x0 (none) no yes -1 (default)
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname token
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (unknown) stable-privacy -- -- yes -- --
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname dhcp-hostname-flags token
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (unknown) stable-privacy -- -- yes -- 0x0 (none) --
name method browser-only pac-url pac-script
--------------------------------------------------
@@ -6887,12 +6955,12 @@ GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 -- deac
<<<
-size: 5976
+size: 6102
location: clients/tests/test-client.py:test_003()/149
cmd: $NMCLI --mode tabular --pretty con s ethernet
lang: pl_PL.UTF-8
returncode: 0
-stdout: 5811 bytes
+stdout: 5937 bytes
>>>
===========================================
Szczegóły profilu połączenia (ethernet)
@@ -6905,13 +6973,13 @@ name port speed duplex auto-negotiate mac-address cloned-mac-add
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
802-3-ethernet -- 0 -- nie -- -- -- -- automatyczne -- -- -- default --
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn never-default may-fail dad-timeout
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- nie tak -1 (default)
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn dhcp-hostname-flags never-default may-fail dad-timeout
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- 0x0 (none) nie tak -1 (default)
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname token
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (unknown) stable-privacy -- -- tak -- --
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname dhcp-hostname-flags token
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (unknown) stable-privacy -- -- tak -- 0x0 (none) --
name method browser-only pac-url pac-script
--------------------------------------------------
@@ -6934,12 +7002,12 @@ GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 -- deza
<<<
-size: 4958
+size: 5084
location: clients/tests/test-client.py:test_003()/150
cmd: $NMCLI --mode tabular --pretty c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: C
returncode: 0
-stdout: 4763 bytes
+stdout: 4889 bytes
>>>
=========================================
Connection profile details (ethernet)
@@ -6952,13 +7020,13 @@ name port speed duplex auto-negotiate mac-address cloned-mac-add
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
802-3-ethernet -- 0 -- no -- -- -- -- auto -- -- -- default --
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn never-default may-fail dad-timeout
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- no yes -1 (default)
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn dhcp-hostname-flags never-default may-fail dad-timeout
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- 0x0 (none) no yes -1 (default)
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname token
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (unknown) stable-privacy -- -- yes -- --
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname dhcp-hostname-flags token
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (unknown) stable-privacy -- -- yes -- 0x0 (none) --
name method browser-only pac-url pac-script
--------------------------------------------------
@@ -6973,12 +7041,12 @@ GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 -- deac
<<<
-size: 5030
+size: 5156
location: clients/tests/test-client.py:test_003()/151
cmd: $NMCLI --mode tabular --pretty c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 4825 bytes
+stdout: 4951 bytes
>>>
===========================================
Szczegóły profilu połączenia (ethernet)
@@ -6991,13 +7059,13 @@ name port speed duplex auto-negotiate mac-address cloned-mac-add
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
802-3-ethernet -- 0 -- nie -- -- -- -- automatyczne -- -- -- default --
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn never-default may-fail dad-timeout
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- nie tak -1 (default)
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn dhcp-hostname-flags never-default may-fail dad-timeout
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- 0x0 (none) nie tak -1 (default)
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname token
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (unknown) stable-privacy -- -- tak -- --
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname dhcp-hostname-flags token
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (unknown) stable-privacy -- -- tak -- 0x0 (none) --
name method browser-only pac-url pac-script
--------------------------------------------------
@@ -7180,12 +7248,12 @@ UUID-con-gsm1-REPLACED-REPLACED-REPL gsm
UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet
<<<
-size: 5894
+size: 6020
location: clients/tests/test-client.py:test_003()/158
cmd: $NMCLI --mode tabular --pretty --color yes con s ethernet
lang: C
returncode: 0
-stdout: 5727 bytes
+stdout: 5853 bytes
>>>
=========================================
Connection profile details (ethernet)
@@ -7198,13 +7266,13 @@ name port speed duplex auto-negotiate mac-address cloned-mac-add
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
802-3-ethernet -- 0 -- no -- -- -- -- auto -- -- -- default --
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn never-default may-fail dad-timeout
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- no yes -1 (default)
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn dhcp-hostname-flags never-default may-fail dad-timeout
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- 0x0 (none) no yes -1 (default)
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname token
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (unknown) stable-privacy -- -- yes -- --
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname dhcp-hostname-flags token
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (unknown) stable-privacy -- -- yes -- 0x0 (none) --
name method browser-only pac-url pac-script
--------------------------------------------------
@@ -7227,12 +7295,12 @@ GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 -- deac
<<<
-size: 5988
+size: 6114
location: clients/tests/test-client.py:test_003()/159
cmd: $NMCLI --mode tabular --pretty --color yes con s ethernet
lang: pl_PL.UTF-8
returncode: 0
-stdout: 5811 bytes
+stdout: 5937 bytes
>>>
===========================================
Szczegóły profilu połączenia (ethernet)
@@ -7245,13 +7313,13 @@ name port speed duplex auto-negotiate mac-address cloned-mac-add
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
802-3-ethernet -- 0 -- nie -- -- -- -- automatyczne -- -- -- default --
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn never-default may-fail dad-timeout
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- nie tak -1 (default)
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn dhcp-hostname-flags never-default may-fail dad-timeout
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- 0x0 (none) nie tak -1 (default)
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname token
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (unknown) stable-privacy -- -- tak -- --
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname dhcp-hostname-flags token
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (unknown) stable-privacy -- -- tak -- 0x0 (none) --
name method browser-only pac-url pac-script
--------------------------------------------------
@@ -7274,12 +7342,12 @@ GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 -- deza
<<<
-size: 4970
+size: 5096
location: clients/tests/test-client.py:test_003()/160
cmd: $NMCLI --mode tabular --pretty --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: C
returncode: 0
-stdout: 4763 bytes
+stdout: 4889 bytes
>>>
=========================================
Connection profile details (ethernet)
@@ -7292,13 +7360,13 @@ name port speed duplex auto-negotiate mac-address cloned-mac-add
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
802-3-ethernet -- 0 -- no -- -- -- -- auto -- -- -- default --
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn never-default may-fail dad-timeout
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- no yes -1 (default)
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn dhcp-hostname-flags never-default may-fail dad-timeout
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- 0x0 (none) no yes -1 (default)
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname token
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (unknown) stable-privacy -- -- yes -- --
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname dhcp-hostname-flags token
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (unknown) stable-privacy -- -- yes -- 0x0 (none) --
name method browser-only pac-url pac-script
--------------------------------------------------
@@ -7313,12 +7381,12 @@ GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 -- deac
<<<
-size: 5042
+size: 5168
location: clients/tests/test-client.py:test_003()/161
cmd: $NMCLI --mode tabular --pretty --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 4825 bytes
+stdout: 4951 bytes
>>>
===========================================
Szczegóły profilu połączenia (ethernet)
@@ -7331,13 +7399,13 @@ name port speed duplex auto-negotiate mac-address cloned-mac-add
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
802-3-ethernet -- 0 -- nie -- -- -- -- automatyczne -- -- -- default --
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn never-default may-fail dad-timeout
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- nie tak -1 (default)
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn dhcp-hostname-flags never-default may-fail dad-timeout
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- 0x0 (none) nie tak -1 (default)
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname token
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (unknown) stable-privacy -- -- tak -- --
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname dhcp-hostname-flags token
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (unknown) stable-privacy -- -- tak -- 0x0 (none) --
name method browser-only pac-url pac-script
--------------------------------------------------
@@ -7500,66 +7568,66 @@ UUID-con-gsm1-REPLACED-REPLACED-REPL:gsm
UUID-con-xx1-REPLACED-REPLACED-REPLA:802-3-ethernet
<<<
-size: 831
+size: 839
location: clients/tests/test-client.py:test_003()/168
cmd: $NMCLI --mode tabular --terse con s ethernet
lang: C
returncode: 0
-stdout: 678 bytes
+stdout: 686 bytes
>>>
connection:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL::802-3-ethernet::yes:0:-1:0:-1:0:no:::::-1::0:unknown:default:-1:-1:-1
802-3-ethernet::0::no:::::auto::::default:
-ipv4:auto::::0::::-1:0::no:no:::0:yes:::no:yes:-1
-ipv6:auto::::0::::-1:0::no:no:no:yes:-1:stable-privacy:::yes::
+ipv4:auto::::0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1
+ipv6:auto::::0::::-1:0::no:no:no:yes:-1:stable-privacy:::yes::0x0:
proxy:none:no::
GENERAL:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:eth1::activated:no:no::no:/org/freedesktop/NetworkManager/ActiveConnection/2:/org/freedesktop/NetworkManager/Settings/Connection/4::
GENERAL:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:eth0::deactivating:no:no::no:/org/freedesktop/NetworkManager/ActiveConnection/1:/org/freedesktop/NetworkManager/Settings/Connection/4::
<<<
-size: 841
+size: 849
location: clients/tests/test-client.py:test_003()/169
cmd: $NMCLI --mode tabular --terse con s ethernet
lang: pl_PL.UTF-8
returncode: 0
-stdout: 678 bytes
+stdout: 686 bytes
>>>
connection:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL::802-3-ethernet::yes:0:-1:0:-1:0:no:::::-1::0:unknown:default:-1:-1:-1
802-3-ethernet::0::no:::::auto::::default:
-ipv4:auto::::0::::-1:0::no:no:::0:yes:::no:yes:-1
-ipv6:auto::::0::::-1:0::no:no:no:yes:-1:stable-privacy:::yes::
+ipv4:auto::::0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1
+ipv6:auto::::0::::-1:0::no:no:no:yes:-1:stable-privacy:::yes::0x0:
proxy:none:no::
GENERAL:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:eth1::activated:no:no::no:/org/freedesktop/NetworkManager/ActiveConnection/2:/org/freedesktop/NetworkManager/Settings/Connection/4::
GENERAL:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:eth0::deactivating:no:no::no:/org/freedesktop/NetworkManager/ActiveConnection/1:/org/freedesktop/NetworkManager/Settings/Connection/4::
<<<
-size: 683
+size: 691
location: clients/tests/test-client.py:test_003()/170
cmd: $NMCLI --mode tabular --terse c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: C
returncode: 0
-stdout: 490 bytes
+stdout: 498 bytes
>>>
connection:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL::802-3-ethernet::yes:0:-1:0:-1:0:no:::::-1::0:unknown:default:-1:-1:-1
802-3-ethernet::0::no:::::auto::::default:
-ipv4:auto::::0::::-1:0::no:no:::0:yes:::no:yes:-1
-ipv6:auto::::0::::-1:0::no:no:no:yes:-1:stable-privacy:::yes::
+ipv4:auto::::0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1
+ipv6:auto::::0::::-1:0::no:no:no:yes:-1:stable-privacy:::yes::0x0:
proxy:none:no::
GENERAL:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:eth0::deactivating:no:no::no:/org/freedesktop/NetworkManager/ActiveConnection/1:/org/freedesktop/NetworkManager/Settings/Connection/4::
<<<
-size: 693
+size: 701
location: clients/tests/test-client.py:test_003()/171
cmd: $NMCLI --mode tabular --terse c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 490 bytes
+stdout: 498 bytes
>>>
connection:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL::802-3-ethernet::yes:0:-1:0:-1:0:no:::::-1::0:unknown:default:-1:-1:-1
802-3-ethernet::0::no:::::auto::::default:
-ipv4:auto::::0::::-1:0::no:no:::0:yes:::no:yes:-1
-ipv6:auto::::0::::-1:0::no:no:no:yes:-1:stable-privacy:::yes::
+ipv4:auto::::0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1
+ipv6:auto::::0::::-1:0::no:no:no:yes:-1:stable-privacy:::yes::0x0:
proxy:none:no::
GENERAL:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:eth0::deactivating:no:no::no:/org/freedesktop/NetworkManager/ActiveConnection/1:/org/freedesktop/NetworkManager/Settings/Connection/4::
@@ -7654,66 +7722,66 @@ UUID-con-gsm1-REPLACED-REPLACED-REPL:gsm
UUID-con-xx1-REPLACED-REPLACED-REPLA:802-3-ethernet
<<<
-size: 843
+size: 851
location: clients/tests/test-client.py:test_003()/178
cmd: $NMCLI --mode tabular --terse --color yes con s ethernet
lang: C
returncode: 0
-stdout: 678 bytes
+stdout: 686 bytes
>>>
connection:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL::802-3-ethernet::yes:0:-1:0:-1:0:no:::::-1::0:unknown:default:-1:-1:-1
802-3-ethernet::0::no:::::auto::::default:
-ipv4:auto::::0::::-1:0::no:no:::0:yes:::no:yes:-1
-ipv6:auto::::0::::-1:0::no:no:no:yes:-1:stable-privacy:::yes::
+ipv4:auto::::0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1
+ipv6:auto::::0::::-1:0::no:no:no:yes:-1:stable-privacy:::yes::0x0:
proxy:none:no::
GENERAL:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:eth1::activated:no:no::no:/org/freedesktop/NetworkManager/ActiveConnection/2:/org/freedesktop/NetworkManager/Settings/Connection/4::
GENERAL:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:eth0::deactivating:no:no::no:/org/freedesktop/NetworkManager/ActiveConnection/1:/org/freedesktop/NetworkManager/Settings/Connection/4::
<<<
-size: 853
+size: 861
location: clients/tests/test-client.py:test_003()/179
cmd: $NMCLI --mode tabular --terse --color yes con s ethernet
lang: pl_PL.UTF-8
returncode: 0
-stdout: 678 bytes
+stdout: 686 bytes
>>>
connection:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL::802-3-ethernet::yes:0:-1:0:-1:0:no:::::-1::0:unknown:default:-1:-1:-1
802-3-ethernet::0::no:::::auto::::default:
-ipv4:auto::::0::::-1:0::no:no:::0:yes:::no:yes:-1
-ipv6:auto::::0::::-1:0::no:no:no:yes:-1:stable-privacy:::yes::
+ipv4:auto::::0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1
+ipv6:auto::::0::::-1:0::no:no:no:yes:-1:stable-privacy:::yes::0x0:
proxy:none:no::
GENERAL:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:eth1::activated:no:no::no:/org/freedesktop/NetworkManager/ActiveConnection/2:/org/freedesktop/NetworkManager/Settings/Connection/4::
GENERAL:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:eth0::deactivating:no:no::no:/org/freedesktop/NetworkManager/ActiveConnection/1:/org/freedesktop/NetworkManager/Settings/Connection/4::
<<<
-size: 695
+size: 703
location: clients/tests/test-client.py:test_003()/180
cmd: $NMCLI --mode tabular --terse --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: C
returncode: 0
-stdout: 490 bytes
+stdout: 498 bytes
>>>
connection:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL::802-3-ethernet::yes:0:-1:0:-1:0:no:::::-1::0:unknown:default:-1:-1:-1
802-3-ethernet::0::no:::::auto::::default:
-ipv4:auto::::0::::-1:0::no:no:::0:yes:::no:yes:-1
-ipv6:auto::::0::::-1:0::no:no:no:yes:-1:stable-privacy:::yes::
+ipv4:auto::::0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1
+ipv6:auto::::0::::-1:0::no:no:no:yes:-1:stable-privacy:::yes::0x0:
proxy:none:no::
GENERAL:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:eth0::deactivating:no:no::no:/org/freedesktop/NetworkManager/ActiveConnection/1:/org/freedesktop/NetworkManager/Settings/Connection/4::
<<<
-size: 705
+size: 713
location: clients/tests/test-client.py:test_003()/181
cmd: $NMCLI --mode tabular --terse --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 490 bytes
+stdout: 498 bytes
>>>
connection:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL::802-3-ethernet::yes:0:-1:0:-1:0:no:::::-1::0:unknown:default:-1:-1:-1
802-3-ethernet::0::no:::::auto::::default:
-ipv4:auto::::0::::-1:0::no:no:::0:yes:::no:yes:-1
-ipv6:auto::::0::::-1:0::no:no:no:yes:-1:stable-privacy:::yes::
+ipv4:auto::::0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1
+ipv6:auto::::0::::-1:0::no:no:no:yes:-1:stable-privacy:::yes::0x0:
proxy:none:no::
GENERAL:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:eth0::deactivating:no:no::no:/org/freedesktop/NetworkManager/ActiveConnection/1:/org/freedesktop/NetworkManager/Settings/Connection/4::
@@ -7956,12 +8024,12 @@ UUID: UUID-con-xx1-REPLACED-REPLACED-REPLA
TYPE: ethernet
<<<
-size: 5445
+size: 5547
location: clients/tests/test-client.py:test_003()/188
cmd: $NMCLI --mode multiline con s ethernet
lang: C
returncode: 0
-stdout: 5297 bytes
+stdout: 5399 bytes
>>>
connection.id: ethernet
connection.uuid: UUID-ethernet-REPLACED-REPLACED-REPL
@@ -8020,6 +8088,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: yes
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: no
ipv4.may-fail: yes
ipv4.dad-timeout: -1 (default)
@@ -8044,6 +8113,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: yes
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
proxy.method: none
proxy.browser-only: no
@@ -8078,12 +8148,12 @@ GENERAL.ZONE: --
GENERAL.MASTER-PATH: --
<<<
-size: 5482
+size: 5584
location: clients/tests/test-client.py:test_003()/189
cmd: $NMCLI --mode multiline con s ethernet
lang: pl_PL.UTF-8
returncode: 0
-stdout: 5324 bytes
+stdout: 5426 bytes
>>>
connection.id: ethernet
connection.uuid: UUID-ethernet-REPLACED-REPLACED-REPL
@@ -8142,6 +8212,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: tak
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: nie
ipv4.may-fail: tak
ipv4.dad-timeout: -1 (default)
@@ -8166,6 +8237,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: tak
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
proxy.method: none
proxy.browser-only: nie
@@ -8200,12 +8272,12 @@ GENERAL.ZONE: --
GENERAL.MASTER-PATH: --
<<<
-size: 4777
+size: 4879
location: clients/tests/test-client.py:test_003()/190
cmd: $NMCLI --mode multiline c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: C
returncode: 0
-stdout: 4589 bytes
+stdout: 4691 bytes
>>>
connection.id: ethernet
connection.uuid: UUID-ethernet-REPLACED-REPLACED-REPL
@@ -8264,6 +8336,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: yes
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: no
ipv4.may-fail: yes
ipv4.dad-timeout: -1 (default)
@@ -8288,6 +8361,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: yes
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
proxy.method: none
proxy.browser-only: no
@@ -8308,12 +8382,12 @@ GENERAL.ZONE: --
GENERAL.MASTER-PATH: --
<<<
-size: 4810
+size: 4912
location: clients/tests/test-client.py:test_003()/191
cmd: $NMCLI --mode multiline c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 4612 bytes
+stdout: 4714 bytes
>>>
connection.id: ethernet
connection.uuid: UUID-ethernet-REPLACED-REPLACED-REPL
@@ -8372,6 +8446,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: tak
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: nie
ipv4.may-fail: tak
ipv4.dad-timeout: -1 (default)
@@ -8396,6 +8471,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: tak
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
proxy.method: none
proxy.browser-only: nie
@@ -8756,12 +8832,12 @@ UUID: UUID-con-xx1-REPLACED-REPLACED-REPLA
TYPE: ethernet
<<<
-size: 5457
+size: 5559
location: clients/tests/test-client.py:test_003()/198
cmd: $NMCLI --mode multiline --color yes con s ethernet
lang: C
returncode: 0
-stdout: 5297 bytes
+stdout: 5399 bytes
>>>
connection.id: ethernet
connection.uuid: UUID-ethernet-REPLACED-REPLACED-REPL
@@ -8820,6 +8896,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: yes
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: no
ipv4.may-fail: yes
ipv4.dad-timeout: -1 (default)
@@ -8844,6 +8921,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: yes
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
proxy.method: none
proxy.browser-only: no
@@ -8878,12 +8956,12 @@ GENERAL.ZONE: --
GENERAL.MASTER-PATH: --
<<<
-size: 5494
+size: 5596
location: clients/tests/test-client.py:test_003()/199
cmd: $NMCLI --mode multiline --color yes con s ethernet
lang: pl_PL.UTF-8
returncode: 0
-stdout: 5324 bytes
+stdout: 5426 bytes
>>>
connection.id: ethernet
connection.uuid: UUID-ethernet-REPLACED-REPLACED-REPL
@@ -8942,6 +9020,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: tak
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: nie
ipv4.may-fail: tak
ipv4.dad-timeout: -1 (default)
@@ -8966,6 +9045,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: tak
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
proxy.method: none
proxy.browser-only: nie
@@ -9000,12 +9080,12 @@ GENERAL.ZONE: --
GENERAL.MASTER-PATH: --
<<<
-size: 4789
+size: 4891
location: clients/tests/test-client.py:test_003()/200
cmd: $NMCLI --mode multiline --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: C
returncode: 0
-stdout: 4589 bytes
+stdout: 4691 bytes
>>>
connection.id: ethernet
connection.uuid: UUID-ethernet-REPLACED-REPLACED-REPL
@@ -9064,6 +9144,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: yes
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: no
ipv4.may-fail: yes
ipv4.dad-timeout: -1 (default)
@@ -9088,6 +9169,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: yes
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
proxy.method: none
proxy.browser-only: no
@@ -9108,12 +9190,12 @@ GENERAL.ZONE: --
GENERAL.MASTER-PATH: --
<<<
-size: 4822
+size: 4924
location: clients/tests/test-client.py:test_003()/201
cmd: $NMCLI --mode multiline --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 4612 bytes
+stdout: 4714 bytes
>>>
connection.id: ethernet
connection.uuid: UUID-ethernet-REPLACED-REPLACED-REPL
@@ -9172,6 +9254,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: tak
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: nie
ipv4.may-fail: tak
ipv4.dad-timeout: -1 (default)
@@ -9196,6 +9279,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: tak
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
proxy.method: none
proxy.browser-only: nie
@@ -9586,12 +9670,12 @@ TYPE: ethernet
-------------------------------------------------------------------------------
<<<
-size: 6699
+size: 6801
location: clients/tests/test-client.py:test_003()/208
cmd: $NMCLI --mode multiline --pretty con s ethernet
lang: C
returncode: 0
-stdout: 6542 bytes
+stdout: 6644 bytes
>>>
===============================================================================
Connection profile details (ethernet)
@@ -9655,6 +9739,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: yes
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: no
ipv4.may-fail: yes
ipv4.dad-timeout: -1 (default)
@@ -9680,6 +9765,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: yes
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
-------------------------------------------------------------------------------
proxy.method: none
@@ -9724,12 +9810,12 @@ GENERAL.MASTER-PATH: --
-------------------------------------------------------------------------------
<<<
-size: 6755
+size: 6857
location: clients/tests/test-client.py:test_003()/209
cmd: $NMCLI --mode multiline --pretty con s ethernet
lang: pl_PL.UTF-8
returncode: 0
-stdout: 6588 bytes
+stdout: 6690 bytes
>>>
===============================================================================
Szczegóły profilu połączenia (ethernet)
@@ -9793,6 +9879,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: tak
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: nie
ipv4.may-fail: tak
ipv4.dad-timeout: -1 (default)
@@ -9818,6 +9905,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: tak
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
-------------------------------------------------------------------------------
proxy.method: none
@@ -9862,12 +9950,12 @@ GENERAL.MASTER-PATH: --
-------------------------------------------------------------------------------
<<<
-size: 5718
+size: 5820
location: clients/tests/test-client.py:test_003()/210
cmd: $NMCLI --mode multiline --pretty c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: C
returncode: 0
-stdout: 5521 bytes
+stdout: 5623 bytes
>>>
===============================================================================
Connection profile details (ethernet)
@@ -9931,6 +10019,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: yes
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: no
ipv4.may-fail: yes
ipv4.dad-timeout: -1 (default)
@@ -9956,6 +10045,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: yes
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
-------------------------------------------------------------------------------
proxy.method: none
@@ -9982,12 +10072,12 @@ GENERAL.MASTER-PATH: --
-------------------------------------------------------------------------------
<<<
-size: 5763
+size: 5865
location: clients/tests/test-client.py:test_003()/211
cmd: $NMCLI --mode multiline --pretty c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 5556 bytes
+stdout: 5658 bytes
>>>
===============================================================================
Szczegóły profilu połączenia (ethernet)
@@ -10051,6 +10141,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: tak
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: nie
ipv4.may-fail: tak
ipv4.dad-timeout: -1 (default)
@@ -10076,6 +10167,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: tak
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
-------------------------------------------------------------------------------
proxy.method: none
@@ -10496,12 +10588,12 @@ TYPE: ethernet
-------------------------------------------------------------------------------
<<<
-size: 6711
+size: 6813
location: clients/tests/test-client.py:test_003()/218
cmd: $NMCLI --mode multiline --pretty --color yes con s ethernet
lang: C
returncode: 0
-stdout: 6542 bytes
+stdout: 6644 bytes
>>>
===============================================================================
Connection profile details (ethernet)
@@ -10565,6 +10657,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: yes
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: no
ipv4.may-fail: yes
ipv4.dad-timeout: -1 (default)
@@ -10590,6 +10683,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: yes
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
-------------------------------------------------------------------------------
proxy.method: none
@@ -10634,12 +10728,12 @@ GENERAL.MASTER-PATH: --
-------------------------------------------------------------------------------
<<<
-size: 6767
+size: 6869
location: clients/tests/test-client.py:test_003()/219
cmd: $NMCLI --mode multiline --pretty --color yes con s ethernet
lang: pl_PL.UTF-8
returncode: 0
-stdout: 6588 bytes
+stdout: 6690 bytes
>>>
===============================================================================
Szczegóły profilu połączenia (ethernet)
@@ -10703,6 +10797,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: tak
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: nie
ipv4.may-fail: tak
ipv4.dad-timeout: -1 (default)
@@ -10728,6 +10823,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: tak
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
-------------------------------------------------------------------------------
proxy.method: none
@@ -10772,12 +10868,12 @@ GENERAL.MASTER-PATH: --
-------------------------------------------------------------------------------
<<<
-size: 5730
+size: 5832
location: clients/tests/test-client.py:test_003()/220
cmd: $NMCLI --mode multiline --pretty --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: C
returncode: 0
-stdout: 5521 bytes
+stdout: 5623 bytes
>>>
===============================================================================
Connection profile details (ethernet)
@@ -10841,6 +10937,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: yes
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: no
ipv4.may-fail: yes
ipv4.dad-timeout: -1 (default)
@@ -10866,6 +10963,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: yes
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
-------------------------------------------------------------------------------
proxy.method: none
@@ -10892,12 +10990,12 @@ GENERAL.MASTER-PATH: --
-------------------------------------------------------------------------------
<<<
-size: 5775
+size: 5877
location: clients/tests/test-client.py:test_003()/221
cmd: $NMCLI --mode multiline --pretty --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 5556 bytes
+stdout: 5658 bytes
>>>
===============================================================================
Szczegóły profilu połączenia (ethernet)
@@ -10961,6 +11059,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: tak
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: nie
ipv4.may-fail: tak
ipv4.dad-timeout: -1 (default)
@@ -10986,6 +11085,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: tak
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
-------------------------------------------------------------------------------
proxy.method: none
@@ -11376,12 +11476,12 @@ UUID:UUID-con-xx1-REPLACED-REPLACED-REPLA
TYPE:802-3-ethernet
<<<
-size: 2922
+size: 2980
location: clients/tests/test-client.py:test_003()/228
cmd: $NMCLI --mode multiline --terse con s ethernet
lang: C
returncode: 0
-stdout: 2766 bytes
+stdout: 2824 bytes
>>>
connection.id:ethernet
connection.uuid:UUID-ethernet-REPLACED-REPLACED-REPL
@@ -11440,6 +11540,7 @@ ipv4.dhcp-timeout:0
ipv4.dhcp-send-hostname:yes
ipv4.dhcp-hostname:
ipv4.dhcp-fqdn:
+ipv4.dhcp-hostname-flags:0x0
ipv4.never-default:no
ipv4.may-fail:yes
ipv4.dad-timeout:-1
@@ -11464,6 +11565,7 @@ ipv6.dhcp-duid:
ipv6.dhcp-iaid:
ipv6.dhcp-send-hostname:yes
ipv6.dhcp-hostname:
+ipv6.dhcp-hostname-flags:0x0
ipv6.token:
proxy.method:none
proxy.browser-only:no
@@ -11498,12 +11600,12 @@ GENERAL.ZONE:
GENERAL.MASTER-PATH:
<<<
-size: 2932
+size: 2990
location: clients/tests/test-client.py:test_003()/229
cmd: $NMCLI --mode multiline --terse con s ethernet
lang: pl_PL.UTF-8
returncode: 0
-stdout: 2766 bytes
+stdout: 2824 bytes
>>>
connection.id:ethernet
connection.uuid:UUID-ethernet-REPLACED-REPLACED-REPL
@@ -11562,6 +11664,7 @@ ipv4.dhcp-timeout:0
ipv4.dhcp-send-hostname:yes
ipv4.dhcp-hostname:
ipv4.dhcp-fqdn:
+ipv4.dhcp-hostname-flags:0x0
ipv4.never-default:no
ipv4.may-fail:yes
ipv4.dad-timeout:-1
@@ -11586,6 +11689,7 @@ ipv6.dhcp-duid:
ipv6.dhcp-iaid:
ipv6.dhcp-send-hostname:yes
ipv6.dhcp-hostname:
+ipv6.dhcp-hostname-flags:0x0
ipv6.token:
proxy.method:none
proxy.browser-only:no
@@ -11620,12 +11724,12 @@ GENERAL.ZONE:
GENERAL.MASTER-PATH:
<<<
-size: 2576
+size: 2634
location: clients/tests/test-client.py:test_003()/230
cmd: $NMCLI --mode multiline --terse c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: C
returncode: 0
-stdout: 2380 bytes
+stdout: 2438 bytes
>>>
connection.id:ethernet
connection.uuid:UUID-ethernet-REPLACED-REPLACED-REPL
@@ -11684,6 +11788,7 @@ ipv4.dhcp-timeout:0
ipv4.dhcp-send-hostname:yes
ipv4.dhcp-hostname:
ipv4.dhcp-fqdn:
+ipv4.dhcp-hostname-flags:0x0
ipv4.never-default:no
ipv4.may-fail:yes
ipv4.dad-timeout:-1
@@ -11708,6 +11813,7 @@ ipv6.dhcp-duid:
ipv6.dhcp-iaid:
ipv6.dhcp-send-hostname:yes
ipv6.dhcp-hostname:
+ipv6.dhcp-hostname-flags:0x0
ipv6.token:
proxy.method:none
proxy.browser-only:no
@@ -11728,12 +11834,12 @@ GENERAL.ZONE:
GENERAL.MASTER-PATH:
<<<
-size: 2586
+size: 2644
location: clients/tests/test-client.py:test_003()/231
cmd: $NMCLI --mode multiline --terse c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 2380 bytes
+stdout: 2438 bytes
>>>
connection.id:ethernet
connection.uuid:UUID-ethernet-REPLACED-REPLACED-REPL
@@ -11792,6 +11898,7 @@ ipv4.dhcp-timeout:0
ipv4.dhcp-send-hostname:yes
ipv4.dhcp-hostname:
ipv4.dhcp-fqdn:
+ipv4.dhcp-hostname-flags:0x0
ipv4.never-default:no
ipv4.may-fail:yes
ipv4.dad-timeout:-1
@@ -11816,6 +11923,7 @@ ipv6.dhcp-duid:
ipv6.dhcp-iaid:
ipv6.dhcp-send-hostname:yes
ipv6.dhcp-hostname:
+ipv6.dhcp-hostname-flags:0x0
ipv6.token:
proxy.method:none
proxy.browser-only:no
@@ -12176,12 +12284,12 @@ UUID:UUID-con-xx1-REPLACED-REPLACED-REPLA
TYPE:802-3-ethernet
<<<
-size: 2934
+size: 2992
location: clients/tests/test-client.py:test_003()/238
cmd: $NMCLI --mode multiline --terse --color yes con s ethernet
lang: C
returncode: 0
-stdout: 2766 bytes
+stdout: 2824 bytes
>>>
connection.id:ethernet
connection.uuid:UUID-ethernet-REPLACED-REPLACED-REPL
@@ -12240,6 +12348,7 @@ ipv4.dhcp-timeout:0
ipv4.dhcp-send-hostname:yes
ipv4.dhcp-hostname:
ipv4.dhcp-fqdn:
+ipv4.dhcp-hostname-flags:0x0
ipv4.never-default:no
ipv4.may-fail:yes
ipv4.dad-timeout:-1
@@ -12264,6 +12373,7 @@ ipv6.dhcp-duid:
ipv6.dhcp-iaid:
ipv6.dhcp-send-hostname:yes
ipv6.dhcp-hostname:
+ipv6.dhcp-hostname-flags:0x0
ipv6.token:
proxy.method:none
proxy.browser-only:no
@@ -12298,12 +12408,12 @@ GENERAL.ZONE:
GENERAL.MASTER-PATH:
<<<
-size: 2944
+size: 3002
location: clients/tests/test-client.py:test_003()/239
cmd: $NMCLI --mode multiline --terse --color yes con s ethernet
lang: pl_PL.UTF-8
returncode: 0
-stdout: 2766 bytes
+stdout: 2824 bytes
>>>
connection.id:ethernet
connection.uuid:UUID-ethernet-REPLACED-REPLACED-REPL
@@ -12362,6 +12472,7 @@ ipv4.dhcp-timeout:0
ipv4.dhcp-send-hostname:yes
ipv4.dhcp-hostname:
ipv4.dhcp-fqdn:
+ipv4.dhcp-hostname-flags:0x0
ipv4.never-default:no
ipv4.may-fail:yes
ipv4.dad-timeout:-1
@@ -12386,6 +12497,7 @@ ipv6.dhcp-duid:
ipv6.dhcp-iaid:
ipv6.dhcp-send-hostname:yes
ipv6.dhcp-hostname:
+ipv6.dhcp-hostname-flags:0x0
ipv6.token:
proxy.method:none
proxy.browser-only:no
@@ -12420,12 +12532,12 @@ GENERAL.ZONE:
GENERAL.MASTER-PATH:
<<<
-size: 2588
+size: 2646
location: clients/tests/test-client.py:test_003()/240
cmd: $NMCLI --mode multiline --terse --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: C
returncode: 0
-stdout: 2380 bytes
+stdout: 2438 bytes
>>>
connection.id:ethernet
connection.uuid:UUID-ethernet-REPLACED-REPLACED-REPL
@@ -12484,6 +12596,7 @@ ipv4.dhcp-timeout:0
ipv4.dhcp-send-hostname:yes
ipv4.dhcp-hostname:
ipv4.dhcp-fqdn:
+ipv4.dhcp-hostname-flags:0x0
ipv4.never-default:no
ipv4.may-fail:yes
ipv4.dad-timeout:-1
@@ -12508,6 +12621,7 @@ ipv6.dhcp-duid:
ipv6.dhcp-iaid:
ipv6.dhcp-send-hostname:yes
ipv6.dhcp-hostname:
+ipv6.dhcp-hostname-flags:0x0
ipv6.token:
proxy.method:none
proxy.browser-only:no
@@ -12528,12 +12642,12 @@ GENERAL.ZONE:
GENERAL.MASTER-PATH:
<<<
-size: 2598
+size: 2656
location: clients/tests/test-client.py:test_003()/241
cmd: $NMCLI --mode multiline --terse --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 2380 bytes
+stdout: 2438 bytes
>>>
connection.id:ethernet
connection.uuid:UUID-ethernet-REPLACED-REPLACED-REPL
@@ -12592,6 +12706,7 @@ ipv4.dhcp-timeout:0
ipv4.dhcp-send-hostname:yes
ipv4.dhcp-hostname:
ipv4.dhcp-fqdn:
+ipv4.dhcp-hostname-flags:0x0
ipv4.never-default:no
ipv4.may-fail:yes
ipv4.dad-timeout:-1
@@ -12616,6 +12731,7 @@ ipv6.dhcp-duid:
ipv6.dhcp-iaid:
ipv6.dhcp-send-hostname:yes
ipv6.dhcp-hostname:
+ipv6.dhcp-hostname-flags:0x0
ipv6.token:
proxy.method:none
proxy.browser-only:no
diff --git a/clients/tests/test-client.check-on-disk/test_004.expected b/clients/tests/test-client.check-on-disk/test_004.expected
index 48c6317308..1ab9797d3e 100644
--- a/clients/tests/test-client.check-on-disk/test_004.expected
+++ b/clients/tests/test-client.check-on-disk/test_004.expected
@@ -58,12 +58,12 @@ location: clients/tests/test-client.py:test_004()/7
cmd: $NMCLI connection mod con-xx1 ipv4.addresses 192.168.77.5/24 ipv4.routes '2.3.4.5/32 192.168.77.1' ipv6.addresses 1:2:3:4::6/64 ipv6.routes 1:2:3:4:5:6::5/128
lang: C
returncode: 0
-size: 4258
+size: 4360
location: clients/tests/test-client.py:test_004()/8
cmd: $NMCLI con s con-xx1
lang: C
returncode: 0
-stdout: 4130 bytes
+stdout: 4232 bytes
>>>
connection.id: con-xx1
connection.uuid: UUID-con-xx1-REPLACED-REPLACED-REPLA
@@ -125,6 +125,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: yes
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: no
ipv4.may-fail: yes
ipv4.dad-timeout: -1 (default)
@@ -149,6 +150,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: yes
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
proxy.method: none
proxy.browser-only: no
@@ -156,12 +158,12 @@ proxy.pac-url: --
proxy.pac-script: --
<<<
-size: 4286
+size: 4388
location: clients/tests/test-client.py:test_004()/9
cmd: $NMCLI con s con-xx1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 4148 bytes
+stdout: 4250 bytes
>>>
connection.id: con-xx1
connection.uuid: UUID-con-xx1-REPLACED-REPLACED-REPLA
@@ -223,6 +225,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: tak
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: nie
ipv4.may-fail: tak
ipv4.dad-timeout: -1 (default)
@@ -247,6 +250,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: tak
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
proxy.method: none
proxy.browser-only: nie
@@ -290,12 +294,12 @@ con-vpn-1 UUID-con-vpn-1-REPLACED-REPLACED-REP vpn --
con-xx1 UUID-con-xx1-REPLACED-REPLACED-REPLA wifi --
<<<
-size: 3725
+size: 3827
location: clients/tests/test-client.py:test_004()/13
cmd: $NMCLI con s con-vpn-1
lang: C
returncode: 0
-stdout: 3594 bytes
+stdout: 3696 bytes
>>>
connection.id: con-vpn-1
connection.uuid: UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -340,6 +344,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: yes
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: no
ipv4.may-fail: yes
ipv4.dad-timeout: -1 (default)
@@ -364,6 +369,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: yes
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
@@ -377,12 +383,12 @@ proxy.pac-url: --
proxy.pac-script: --
<<<
-size: 3745
+size: 3847
location: clients/tests/test-client.py:test_004()/14
cmd: $NMCLI con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 3604 bytes
+stdout: 3706 bytes
>>>
connection.id: con-vpn-1
connection.uuid: UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -427,6 +433,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: tak
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: nie
ipv4.may-fail: tak
ipv4.dad-timeout: -1 (default)
@@ -451,6 +458,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: tak
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
@@ -536,12 +544,12 @@ con-xx1 UUID-con-xx1-REPLACED-REPLACED-REPLA wifi wlan0
con-1 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet --
<<<
-size: 4850
+size: 4952
location: clients/tests/test-client.py:test_004()/21
cmd: $NMCLI con s con-vpn-1
lang: C
returncode: 0
-stdout: 4719 bytes
+stdout: 4821 bytes
>>>
connection.id: con-vpn-1
connection.uuid: UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -586,6 +594,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: yes
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: no
ipv4.may-fail: yes
ipv4.dad-timeout: -1 (default)
@@ -610,6 +619,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: yes
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
@@ -644,12 +654,12 @@ VPN.CFG[2]: key2 = val2
VPN.CFG[3]: key3 = val3
<<<
-size: 4876
+size: 4978
location: clients/tests/test-client.py:test_004()/22
cmd: $NMCLI con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 4735 bytes
+stdout: 4837 bytes
>>>
connection.id: con-vpn-1
connection.uuid: UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -694,6 +704,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: tak
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: nie
ipv4.may-fail: tak
ipv4.dad-timeout: -1 (default)
@@ -718,6 +729,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: tak
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
@@ -752,12 +764,12 @@ VPN.CFG[2]: key2 = val2
VPN.CFG[3]: key3 = val3
<<<
-size: 4856
+size: 4958
location: clients/tests/test-client.py:test_004()/23
cmd: $NMCLI con s con-vpn-1
lang: C
returncode: 0
-stdout: 4725 bytes
+stdout: 4827 bytes
>>>
connection.id: con-vpn-1
connection.uuid: UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -802,6 +814,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: yes
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: no
ipv4.may-fail: yes
ipv4.dad-timeout: -1 (default)
@@ -826,6 +839,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: yes
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
@@ -860,12 +874,12 @@ VPN.CFG[2]: key2 = val2
VPN.CFG[3]: key3 = val3
<<<
-size: 4886
+size: 4988
location: clients/tests/test-client.py:test_004()/24
cmd: $NMCLI con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 4745 bytes
+stdout: 4847 bytes
>>>
connection.id: con-vpn-1
connection.uuid: UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -910,6 +924,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: tak
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: nie
ipv4.may-fail: tak
ipv4.dad-timeout: -1 (default)
@@ -934,6 +949,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: tak
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
@@ -968,12 +984,12 @@ VPN.CFG[2]: key2 = val2
VPN.CFG[3]: key3 = val3
<<<
-size: 4856
+size: 4958
location: clients/tests/test-client.py:test_004()/25
cmd: $NMCLI con s con-vpn-1
lang: C
returncode: 0
-stdout: 4725 bytes
+stdout: 4827 bytes
>>>
connection.id: con-vpn-1
connection.uuid: UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -1018,6 +1034,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: yes
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: no
ipv4.may-fail: yes
ipv4.dad-timeout: -1 (default)
@@ -1042,6 +1059,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: yes
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
@@ -1076,12 +1094,12 @@ VPN.CFG[2]: key2 = val2
VPN.CFG[3]: key3 = val3
<<<
-size: 4886
+size: 4988
location: clients/tests/test-client.py:test_004()/26
cmd: $NMCLI con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 4745 bytes
+stdout: 4847 bytes
>>>
connection.id: con-vpn-1
connection.uuid: UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -1126,6 +1144,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: tak
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: nie
ipv4.may-fail: tak
ipv4.dad-timeout: -1 (default)
@@ -1150,6 +1169,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: tak
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
@@ -1184,12 +1204,12 @@ VPN.CFG[2]: key2 = val2
VPN.CFG[3]: key3 = val3
<<<
-size: 3732
+size: 3834
location: clients/tests/test-client.py:test_004()/27
cmd: $NMCLI -f ALL con s con-vpn-1
lang: C
returncode: 0
-stdout: 3594 bytes
+stdout: 3696 bytes
>>>
connection.id: con-vpn-1
connection.uuid: UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -1234,6 +1254,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: yes
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: no
ipv4.may-fail: yes
ipv4.dad-timeout: -1 (default)
@@ -1258,6 +1279,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: yes
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
@@ -1271,12 +1293,12 @@ proxy.pac-url: --
proxy.pac-script: --
<<<
-size: 3752
+size: 3854
location: clients/tests/test-client.py:test_004()/28
cmd: $NMCLI -f ALL con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 3604 bytes
+stdout: 3706 bytes
>>>
connection.id: con-vpn-1
connection.uuid: UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -1321,6 +1343,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: tak
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: nie
ipv4.may-fail: tak
ipv4.dad-timeout: -1 (default)
@@ -1345,6 +1368,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: tak
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
@@ -3850,12 +3874,12 @@ NEIGHBOR[2].SYSTEM-DESCRIPTION: Test system #3
NEIGHBOR[2].SYSTEM-CAPABILITIES: 40 (wlan-access-point,telephone)
<<<
-size: 4868
+size: 4970
location: clients/tests/test-client.py:test_004()/71
cmd: $NMCLI --color yes con s con-vpn-1
lang: C
returncode: 0
-stdout: 4725 bytes
+stdout: 4827 bytes
>>>
connection.id: con-vpn-1
connection.uuid: UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -3900,6 +3924,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: yes
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: no
ipv4.may-fail: yes
ipv4.dad-timeout: -1 (default)
@@ -3924,6 +3949,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: yes
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
@@ -3958,12 +3984,12 @@ VPN.CFG[2]: key2 = val2
VPN.CFG[3]: key3 = val3
<<<
-size: 4898
+size: 5000
location: clients/tests/test-client.py:test_004()/72
cmd: $NMCLI --color yes con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 4745 bytes
+stdout: 4847 bytes
>>>
connection.id: con-vpn-1
connection.uuid: UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -4008,6 +4034,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: tak
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: nie
ipv4.may-fail: tak
ipv4.dad-timeout: -1 (default)
@@ -4032,6 +4059,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: tak
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
@@ -4066,12 +4094,12 @@ VPN.CFG[2]: key2 = val2
VPN.CFG[3]: key3 = val3
<<<
-size: 4868
+size: 4970
location: clients/tests/test-client.py:test_004()/73
cmd: $NMCLI --color yes con s con-vpn-1
lang: C
returncode: 0
-stdout: 4725 bytes
+stdout: 4827 bytes
>>>
connection.id: con-vpn-1
connection.uuid: UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -4116,6 +4144,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: yes
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: no
ipv4.may-fail: yes
ipv4.dad-timeout: -1 (default)
@@ -4140,6 +4169,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: yes
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
@@ -4174,12 +4204,12 @@ VPN.CFG[2]: key2 = val2
VPN.CFG[3]: key3 = val3
<<<
-size: 4898
+size: 5000
location: clients/tests/test-client.py:test_004()/74
cmd: $NMCLI --color yes con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 4745 bytes
+stdout: 4847 bytes
>>>
connection.id: con-vpn-1
connection.uuid: UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -4224,6 +4254,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: tak
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: nie
ipv4.may-fail: tak
ipv4.dad-timeout: -1 (default)
@@ -4248,6 +4279,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: tak
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
@@ -4282,12 +4314,12 @@ VPN.CFG[2]: key2 = val2
VPN.CFG[3]: key3 = val3
<<<
-size: 3744
+size: 3846
location: clients/tests/test-client.py:test_004()/75
cmd: $NMCLI --color yes -f ALL con s con-vpn-1
lang: C
returncode: 0
-stdout: 3594 bytes
+stdout: 3696 bytes
>>>
connection.id: con-vpn-1
connection.uuid: UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -4332,6 +4364,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: yes
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: no
ipv4.may-fail: yes
ipv4.dad-timeout: -1 (default)
@@ -4356,6 +4389,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: yes
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
@@ -4369,12 +4403,12 @@ proxy.pac-url: --
proxy.pac-script: --
<<<
-size: 3764
+size: 3866
location: clients/tests/test-client.py:test_004()/76
cmd: $NMCLI --color yes -f ALL con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 3604 bytes
+stdout: 3706 bytes
>>>
connection.id: con-vpn-1
connection.uuid: UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -4419,6 +4453,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: tak
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: nie
ipv4.may-fail: tak
ipv4.dad-timeout: -1 (default)
@@ -4443,6 +4478,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: tak
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
@@ -6948,12 +6984,12 @@ NEIGHBOR[2].SYSTEM-DESCRIPTION: Test system #3
NEIGHBOR[2].SYSTEM-CAPABILITIES: 40 (wlan-access-point,telephone)
<<<
-size: 5878
+size: 5980
location: clients/tests/test-client.py:test_004()/119
cmd: $NMCLI --pretty con s con-vpn-1
lang: C
returncode: 0
-stdout: 5737 bytes
+stdout: 5839 bytes
>>>
===============================================================================
Connection profile details (con-vpn-1)
@@ -7002,6 +7038,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: yes
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: no
ipv4.may-fail: yes
ipv4.dad-timeout: -1 (default)
@@ -7027,6 +7064,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: yes
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
-------------------------------------------------------------------------------
vpn.service-type: org.freedesktop.NetworkManager.openvpn
@@ -7069,12 +7107,12 @@ VPN.CFG[3]: key3 = val3
-------------------------------------------------------------------------------
<<<
-size: 5920
+size: 6022
location: clients/tests/test-client.py:test_004()/120
cmd: $NMCLI --pretty con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 5769 bytes
+stdout: 5871 bytes
>>>
===============================================================================
Szczegóły profilu połączenia (con-vpn-1)
@@ -7123,6 +7161,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: tak
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: nie
ipv4.may-fail: tak
ipv4.dad-timeout: -1 (default)
@@ -7148,6 +7187,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: tak
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
-------------------------------------------------------------------------------
vpn.service-type: org.freedesktop.NetworkManager.openvpn
@@ -7190,12 +7230,12 @@ VPN.CFG[3]: key3 = val3
-------------------------------------------------------------------------------
<<<
-size: 5878
+size: 5980
location: clients/tests/test-client.py:test_004()/121
cmd: $NMCLI --pretty con s con-vpn-1
lang: C
returncode: 0
-stdout: 5737 bytes
+stdout: 5839 bytes
>>>
===============================================================================
Connection profile details (con-vpn-1)
@@ -7244,6 +7284,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: yes
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: no
ipv4.may-fail: yes
ipv4.dad-timeout: -1 (default)
@@ -7269,6 +7310,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: yes
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
-------------------------------------------------------------------------------
vpn.service-type: org.freedesktop.NetworkManager.openvpn
@@ -7311,12 +7353,12 @@ VPN.CFG[3]: key3 = val3
-------------------------------------------------------------------------------
<<<
-size: 5920
+size: 6022
location: clients/tests/test-client.py:test_004()/122
cmd: $NMCLI --pretty con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 5769 bytes
+stdout: 5871 bytes
>>>
===============================================================================
Szczegóły profilu połączenia (con-vpn-1)
@@ -7365,6 +7407,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: tak
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: nie
ipv4.may-fail: tak
ipv4.dad-timeout: -1 (default)
@@ -7390,6 +7433,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: tak
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
-------------------------------------------------------------------------------
vpn.service-type: org.freedesktop.NetworkManager.openvpn
@@ -7432,12 +7476,12 @@ VPN.CFG[3]: key3 = val3
-------------------------------------------------------------------------------
<<<
-size: 4361
+size: 4463
location: clients/tests/test-client.py:test_004()/123
cmd: $NMCLI --pretty -f ALL con s con-vpn-1
lang: C
returncode: 0
-stdout: 4213 bytes
+stdout: 4315 bytes
>>>
===============================================================================
Connection profile details (con-vpn-1)
@@ -7486,6 +7530,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: yes
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: no
ipv4.may-fail: yes
ipv4.dad-timeout: -1 (default)
@@ -7511,6 +7556,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: yes
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
-------------------------------------------------------------------------------
vpn.service-type: org.freedesktop.NetworkManager.openvpn
@@ -7527,12 +7573,12 @@ proxy.pac-script: --
-------------------------------------------------------------------------------
<<<
-size: 4386
+size: 4488
location: clients/tests/test-client.py:test_004()/124
cmd: $NMCLI --pretty -f ALL con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 4228 bytes
+stdout: 4330 bytes
>>>
===============================================================================
Szczegóły profilu połączenia (con-vpn-1)
@@ -7581,6 +7627,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: tak
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: nie
ipv4.may-fail: tak
ipv4.dad-timeout: -1 (default)
@@ -7606,6 +7653,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: tak
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
-------------------------------------------------------------------------------
vpn.service-type: org.freedesktop.NetworkManager.openvpn
@@ -10674,12 +10722,12 @@ NEIGHBOR[2].SYSTEM-CAPABILITIES: 40 (wlan-access-point,telephone)
-------------------------------------------------------------------------------
<<<
-size: 5890
+size: 5992
location: clients/tests/test-client.py:test_004()/167
cmd: $NMCLI --pretty --color yes con s con-vpn-1
lang: C
returncode: 0
-stdout: 5737 bytes
+stdout: 5839 bytes
>>>
===============================================================================
Connection profile details (con-vpn-1)
@@ -10728,6 +10776,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: yes
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: no
ipv4.may-fail: yes
ipv4.dad-timeout: -1 (default)
@@ -10753,6 +10802,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: yes
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
-------------------------------------------------------------------------------
vpn.service-type: org.freedesktop.NetworkManager.openvpn
@@ -10795,12 +10845,12 @@ VPN.CFG[3]: key3 = val3
-------------------------------------------------------------------------------
<<<
-size: 5932
+size: 6034
location: clients/tests/test-client.py:test_004()/168
cmd: $NMCLI --pretty --color yes con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 5769 bytes
+stdout: 5871 bytes
>>>
===============================================================================
Szczegóły profilu połączenia (con-vpn-1)
@@ -10849,6 +10899,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: tak
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: nie
ipv4.may-fail: tak
ipv4.dad-timeout: -1 (default)
@@ -10874,6 +10925,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: tak
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
-------------------------------------------------------------------------------
vpn.service-type: org.freedesktop.NetworkManager.openvpn
@@ -10916,12 +10968,12 @@ VPN.CFG[3]: key3 = val3
-------------------------------------------------------------------------------
<<<
-size: 5890
+size: 5992
location: clients/tests/test-client.py:test_004()/169
cmd: $NMCLI --pretty --color yes con s con-vpn-1
lang: C
returncode: 0
-stdout: 5737 bytes
+stdout: 5839 bytes
>>>
===============================================================================
Connection profile details (con-vpn-1)
@@ -10970,6 +11022,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: yes
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: no
ipv4.may-fail: yes
ipv4.dad-timeout: -1 (default)
@@ -10995,6 +11048,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: yes
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
-------------------------------------------------------------------------------
vpn.service-type: org.freedesktop.NetworkManager.openvpn
@@ -11037,12 +11091,12 @@ VPN.CFG[3]: key3 = val3
-------------------------------------------------------------------------------
<<<
-size: 5932
+size: 6034
location: clients/tests/test-client.py:test_004()/170
cmd: $NMCLI --pretty --color yes con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 5769 bytes
+stdout: 5871 bytes
>>>
===============================================================================
Szczegóły profilu połączenia (con-vpn-1)
@@ -11091,6 +11145,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: tak
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: nie
ipv4.may-fail: tak
ipv4.dad-timeout: -1 (default)
@@ -11116,6 +11171,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: tak
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
-------------------------------------------------------------------------------
vpn.service-type: org.freedesktop.NetworkManager.openvpn
@@ -11158,12 +11214,12 @@ VPN.CFG[3]: key3 = val3
-------------------------------------------------------------------------------
<<<
-size: 4373
+size: 4475
location: clients/tests/test-client.py:test_004()/171
cmd: $NMCLI --pretty --color yes -f ALL con s con-vpn-1
lang: C
returncode: 0
-stdout: 4213 bytes
+stdout: 4315 bytes
>>>
===============================================================================
Connection profile details (con-vpn-1)
@@ -11212,6 +11268,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: yes
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: no
ipv4.may-fail: yes
ipv4.dad-timeout: -1 (default)
@@ -11237,6 +11294,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: yes
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
-------------------------------------------------------------------------------
vpn.service-type: org.freedesktop.NetworkManager.openvpn
@@ -11253,12 +11311,12 @@ proxy.pac-script: --
-------------------------------------------------------------------------------
<<<
-size: 4398
+size: 4500
location: clients/tests/test-client.py:test_004()/172
cmd: $NMCLI --pretty --color yes -f ALL con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 4228 bytes
+stdout: 4330 bytes
>>>
===============================================================================
Szczegóły profilu połączenia (con-vpn-1)
@@ -11307,6 +11365,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: tak
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: nie
ipv4.may-fail: tak
ipv4.dad-timeout: -1 (default)
@@ -11332,6 +11391,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: tak
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
-------------------------------------------------------------------------------
vpn.service-type: org.freedesktop.NetworkManager.openvpn
@@ -14400,12 +14460,12 @@ NEIGHBOR[2].SYSTEM-CAPABILITIES: 40 (wlan-access-point,telephone)
-------------------------------------------------------------------------------
<<<
-size: 2440
+size: 2498
location: clients/tests/test-client.py:test_004()/215
cmd: $NMCLI --terse con s con-vpn-1
lang: C
returncode: 0
-stdout: 2300 bytes
+stdout: 2358 bytes
>>>
connection.id:con-vpn-1
connection.uuid:UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -14450,6 +14510,7 @@ ipv4.dhcp-timeout:0
ipv4.dhcp-send-hostname:yes
ipv4.dhcp-hostname:
ipv4.dhcp-fqdn:
+ipv4.dhcp-hostname-flags:0x0
ipv4.never-default:no
ipv4.may-fail:yes
ipv4.dad-timeout:-1
@@ -14474,6 +14535,7 @@ ipv6.dhcp-duid:
ipv6.dhcp-iaid:
ipv6.dhcp-send-hostname:yes
ipv6.dhcp-hostname:
+ipv6.dhcp-hostname-flags:0x0
ipv6.token:
vpn.service-type:org.freedesktop.NetworkManager.openvpn
vpn.user-name:
@@ -14508,12 +14570,12 @@ VPN.CFG[2]:key2 = val2
VPN.CFG[3]:key3 = val3
<<<
-size: 2450
+size: 2508
location: clients/tests/test-client.py:test_004()/216
cmd: $NMCLI --terse con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 2300 bytes
+stdout: 2358 bytes
>>>
connection.id:con-vpn-1
connection.uuid:UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -14558,6 +14620,7 @@ ipv4.dhcp-timeout:0
ipv4.dhcp-send-hostname:yes
ipv4.dhcp-hostname:
ipv4.dhcp-fqdn:
+ipv4.dhcp-hostname-flags:0x0
ipv4.never-default:no
ipv4.may-fail:yes
ipv4.dad-timeout:-1
@@ -14582,6 +14645,7 @@ ipv6.dhcp-duid:
ipv6.dhcp-iaid:
ipv6.dhcp-send-hostname:yes
ipv6.dhcp-hostname:
+ipv6.dhcp-hostname-flags:0x0
ipv6.token:
vpn.service-type:org.freedesktop.NetworkManager.openvpn
vpn.user-name:
@@ -14616,12 +14680,12 @@ VPN.CFG[2]:key2 = val2
VPN.CFG[3]:key3 = val3
<<<
-size: 2440
+size: 2498
location: clients/tests/test-client.py:test_004()/217
cmd: $NMCLI --terse con s con-vpn-1
lang: C
returncode: 0
-stdout: 2300 bytes
+stdout: 2358 bytes
>>>
connection.id:con-vpn-1
connection.uuid:UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -14666,6 +14730,7 @@ ipv4.dhcp-timeout:0
ipv4.dhcp-send-hostname:yes
ipv4.dhcp-hostname:
ipv4.dhcp-fqdn:
+ipv4.dhcp-hostname-flags:0x0
ipv4.never-default:no
ipv4.may-fail:yes
ipv4.dad-timeout:-1
@@ -14690,6 +14755,7 @@ ipv6.dhcp-duid:
ipv6.dhcp-iaid:
ipv6.dhcp-send-hostname:yes
ipv6.dhcp-hostname:
+ipv6.dhcp-hostname-flags:0x0
ipv6.token:
vpn.service-type:org.freedesktop.NetworkManager.openvpn
vpn.user-name:
@@ -14724,12 +14790,12 @@ VPN.CFG[2]:key2 = val2
VPN.CFG[3]:key3 = val3
<<<
-size: 2450
+size: 2508
location: clients/tests/test-client.py:test_004()/218
cmd: $NMCLI --terse con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 2300 bytes
+stdout: 2358 bytes
>>>
connection.id:con-vpn-1
connection.uuid:UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -14774,6 +14840,7 @@ ipv4.dhcp-timeout:0
ipv4.dhcp-send-hostname:yes
ipv4.dhcp-hostname:
ipv4.dhcp-fqdn:
+ipv4.dhcp-hostname-flags:0x0
ipv4.never-default:no
ipv4.may-fail:yes
ipv4.dad-timeout:-1
@@ -14798,6 +14865,7 @@ ipv6.dhcp-duid:
ipv6.dhcp-iaid:
ipv6.dhcp-send-hostname:yes
ipv6.dhcp-hostname:
+ipv6.dhcp-hostname-flags:0x0
ipv6.token:
vpn.service-type:org.freedesktop.NetworkManager.openvpn
vpn.user-name:
@@ -14832,12 +14900,12 @@ VPN.CFG[2]:key2 = val2
VPN.CFG[3]:key3 = val3
<<<
-size: 1870
+size: 1928
location: clients/tests/test-client.py:test_004()/219
cmd: $NMCLI --terse -f ALL con s con-vpn-1
lang: C
returncode: 0
-stdout: 1723 bytes
+stdout: 1781 bytes
>>>
connection.id:con-vpn-1
connection.uuid:UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -14882,6 +14950,7 @@ ipv4.dhcp-timeout:0
ipv4.dhcp-send-hostname:yes
ipv4.dhcp-hostname:
ipv4.dhcp-fqdn:
+ipv4.dhcp-hostname-flags:0x0
ipv4.never-default:no
ipv4.may-fail:yes
ipv4.dad-timeout:-1
@@ -14906,6 +14975,7 @@ ipv6.dhcp-duid:
ipv6.dhcp-iaid:
ipv6.dhcp-send-hostname:yes
ipv6.dhcp-hostname:
+ipv6.dhcp-hostname-flags:0x0
ipv6.token:
vpn.service-type:org.freedesktop.NetworkManager.openvpn
vpn.user-name:
@@ -14919,12 +14989,12 @@ proxy.pac-url:
proxy.pac-script:
<<<
-size: 1880
+size: 1938
location: clients/tests/test-client.py:test_004()/220
cmd: $NMCLI --terse -f ALL con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 1723 bytes
+stdout: 1781 bytes
>>>
connection.id:con-vpn-1
connection.uuid:UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -14969,6 +15039,7 @@ ipv4.dhcp-timeout:0
ipv4.dhcp-send-hostname:yes
ipv4.dhcp-hostname:
ipv4.dhcp-fqdn:
+ipv4.dhcp-hostname-flags:0x0
ipv4.never-default:no
ipv4.may-fail:yes
ipv4.dad-timeout:-1
@@ -14993,6 +15064,7 @@ ipv6.dhcp-duid:
ipv6.dhcp-iaid:
ipv6.dhcp-send-hostname:yes
ipv6.dhcp-hostname:
+ipv6.dhcp-hostname-flags:0x0
ipv6.token:
vpn.service-type:org.freedesktop.NetworkManager.openvpn
vpn.user-name:
@@ -17468,12 +17540,12 @@ NEIGHBOR[2].SYSTEM-DESCRIPTION:Test system #3
NEIGHBOR[2].SYSTEM-CAPABILITIES:40 (wlan-access-point,telephone)
<<<
-size: 2452
+size: 2510
location: clients/tests/test-client.py:test_004()/263
cmd: $NMCLI --terse --color yes con s con-vpn-1
lang: C
returncode: 0
-stdout: 2300 bytes
+stdout: 2358 bytes
>>>
connection.id:con-vpn-1
connection.uuid:UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -17518,6 +17590,7 @@ ipv4.dhcp-timeout:0
ipv4.dhcp-send-hostname:yes
ipv4.dhcp-hostname:
ipv4.dhcp-fqdn:
+ipv4.dhcp-hostname-flags:0x0
ipv4.never-default:no
ipv4.may-fail:yes
ipv4.dad-timeout:-1
@@ -17542,6 +17615,7 @@ ipv6.dhcp-duid:
ipv6.dhcp-iaid:
ipv6.dhcp-send-hostname:yes
ipv6.dhcp-hostname:
+ipv6.dhcp-hostname-flags:0x0
ipv6.token:
vpn.service-type:org.freedesktop.NetworkManager.openvpn
vpn.user-name:
@@ -17576,12 +17650,12 @@ VPN.CFG[2]:key2 = val2
VPN.CFG[3]:key3 = val3
<<<
-size: 2462
+size: 2520
location: clients/tests/test-client.py:test_004()/264
cmd: $NMCLI --terse --color yes con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 2300 bytes
+stdout: 2358 bytes
>>>
connection.id:con-vpn-1
connection.uuid:UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -17626,6 +17700,7 @@ ipv4.dhcp-timeout:0
ipv4.dhcp-send-hostname:yes
ipv4.dhcp-hostname:
ipv4.dhcp-fqdn:
+ipv4.dhcp-hostname-flags:0x0
ipv4.never-default:no
ipv4.may-fail:yes
ipv4.dad-timeout:-1
@@ -17650,6 +17725,7 @@ ipv6.dhcp-duid:
ipv6.dhcp-iaid:
ipv6.dhcp-send-hostname:yes
ipv6.dhcp-hostname:
+ipv6.dhcp-hostname-flags:0x0
ipv6.token:
vpn.service-type:org.freedesktop.NetworkManager.openvpn
vpn.user-name:
@@ -17684,12 +17760,12 @@ VPN.CFG[2]:key2 = val2
VPN.CFG[3]:key3 = val3
<<<
-size: 2452
+size: 2510
location: clients/tests/test-client.py:test_004()/265
cmd: $NMCLI --terse --color yes con s con-vpn-1
lang: C
returncode: 0
-stdout: 2300 bytes
+stdout: 2358 bytes
>>>
connection.id:con-vpn-1
connection.uuid:UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -17734,6 +17810,7 @@ ipv4.dhcp-timeout:0
ipv4.dhcp-send-hostname:yes
ipv4.dhcp-hostname:
ipv4.dhcp-fqdn:
+ipv4.dhcp-hostname-flags:0x0
ipv4.never-default:no
ipv4.may-fail:yes
ipv4.dad-timeout:-1
@@ -17758,6 +17835,7 @@ ipv6.dhcp-duid:
ipv6.dhcp-iaid:
ipv6.dhcp-send-hostname:yes
ipv6.dhcp-hostname:
+ipv6.dhcp-hostname-flags:0x0
ipv6.token:
vpn.service-type:org.freedesktop.NetworkManager.openvpn
vpn.user-name:
@@ -17792,12 +17870,12 @@ VPN.CFG[2]:key2 = val2
VPN.CFG[3]:key3 = val3
<<<
-size: 2462
+size: 2520
location: clients/tests/test-client.py:test_004()/266
cmd: $NMCLI --terse --color yes con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 2300 bytes
+stdout: 2358 bytes
>>>
connection.id:con-vpn-1
connection.uuid:UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -17842,6 +17920,7 @@ ipv4.dhcp-timeout:0
ipv4.dhcp-send-hostname:yes
ipv4.dhcp-hostname:
ipv4.dhcp-fqdn:
+ipv4.dhcp-hostname-flags:0x0
ipv4.never-default:no
ipv4.may-fail:yes
ipv4.dad-timeout:-1
@@ -17866,6 +17945,7 @@ ipv6.dhcp-duid:
ipv6.dhcp-iaid:
ipv6.dhcp-send-hostname:yes
ipv6.dhcp-hostname:
+ipv6.dhcp-hostname-flags:0x0
ipv6.token:
vpn.service-type:org.freedesktop.NetworkManager.openvpn
vpn.user-name:
@@ -17900,12 +17980,12 @@ VPN.CFG[2]:key2 = val2
VPN.CFG[3]:key3 = val3
<<<
-size: 1882
+size: 1940
location: clients/tests/test-client.py:test_004()/267
cmd: $NMCLI --terse --color yes -f ALL con s con-vpn-1
lang: C
returncode: 0
-stdout: 1723 bytes
+stdout: 1781 bytes
>>>
connection.id:con-vpn-1
connection.uuid:UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -17950,6 +18030,7 @@ ipv4.dhcp-timeout:0
ipv4.dhcp-send-hostname:yes
ipv4.dhcp-hostname:
ipv4.dhcp-fqdn:
+ipv4.dhcp-hostname-flags:0x0
ipv4.never-default:no
ipv4.may-fail:yes
ipv4.dad-timeout:-1
@@ -17974,6 +18055,7 @@ ipv6.dhcp-duid:
ipv6.dhcp-iaid:
ipv6.dhcp-send-hostname:yes
ipv6.dhcp-hostname:
+ipv6.dhcp-hostname-flags:0x0
ipv6.token:
vpn.service-type:org.freedesktop.NetworkManager.openvpn
vpn.user-name:
@@ -17987,12 +18069,12 @@ proxy.pac-url:
proxy.pac-script:
<<<
-size: 1892
+size: 1950
location: clients/tests/test-client.py:test_004()/268
cmd: $NMCLI --terse --color yes -f ALL con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 1723 bytes
+stdout: 1781 bytes
>>>
connection.id:con-vpn-1
connection.uuid:UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -18037,6 +18119,7 @@ ipv4.dhcp-timeout:0
ipv4.dhcp-send-hostname:yes
ipv4.dhcp-hostname:
ipv4.dhcp-fqdn:
+ipv4.dhcp-hostname-flags:0x0
ipv4.never-default:no
ipv4.may-fail:yes
ipv4.dad-timeout:-1
@@ -18061,6 +18144,7 @@ ipv6.dhcp-duid:
ipv6.dhcp-iaid:
ipv6.dhcp-send-hostname:yes
ipv6.dhcp-hostname:
+ipv6.dhcp-hostname-flags:0x0
ipv6.token:
vpn.service-type:org.freedesktop.NetworkManager.openvpn
vpn.user-name:
@@ -20536,21 +20620,21 @@ NEIGHBOR[2].SYSTEM-DESCRIPTION:Test system #3
NEIGHBOR[2].SYSTEM-CAPABILITIES:40 (wlan-access-point,telephone)
<<<
-size: 3139
+size: 3223
location: clients/tests/test-client.py:test_004()/311
cmd: $NMCLI --mode tabular con s con-vpn-1
lang: C
returncode: 0
-stdout: 2992 bytes
+stdout: 3076 bytes
>>>
name id uuid stable-id type interface-name autoconnect autoconnect-priority autoconnect-retries multi-connect auth-retries timestamp read-only permissions zone master slave-type autoconnect-slaves secondaries gateway-ping-timeout metered lldp mdns llmnr wait-device-timeout
connection con-vpn-1 UUID-con-vpn-1-REPLACED-REPLACED-REP -- vpn -- yes 0 -1 (default) 0 (default) -1 0 no -- -- -- -- -1 (default) -- 0 unknown default -1 (default) -1 (default) -1
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn never-default may-fail dad-timeout
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- no yes -1 (default)
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn dhcp-hostname-flags never-default may-fail dad-timeout
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- 0x0 (none) no yes -1 (default)
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname token
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (unknown) stable-privacy -- -- yes -- --
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname dhcp-hostname-flags token
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (unknown) stable-privacy -- -- yes -- 0x0 (none) --
name service-type user-name data secrets persistent timeout
vpn org.freedesktop.NetworkManager.openvpn -- key1 = val1, key2 = val2, key3 = val3 <hidden> no 0
@@ -20565,21 +20649,21 @@ NAME TYPE USERNAME GATEWAY BANNER VPN-STATE
VPN openvpn -- -- *** VPN connection con-vpn-1 *** 5 - VPN connected key1 = val1 | key2 = val2 | key3 = val3
<<<
-size: 3162
+size: 3246
location: clients/tests/test-client.py:test_004()/312
cmd: $NMCLI --mode tabular con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 3005 bytes
+stdout: 3089 bytes
>>>
name id uuid stable-id type interface-name autoconnect autoconnect-priority autoconnect-retries multi-connect auth-retries timestamp read-only permissions zone master slave-type autoconnect-slaves secondaries gateway-ping-timeout metered lldp mdns llmnr wait-device-timeout
connection con-vpn-1 UUID-con-vpn-1-REPLACED-REPLACED-REP -- vpn -- tak 0 -1 (default) 0 (default) -1 0 nie -- -- -- -- -1 (default) -- 0 nieznane default -1 (default) -1 (default) -1
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn never-default may-fail dad-timeout
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- nie tak -1 (default)
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn dhcp-hostname-flags never-default may-fail dad-timeout
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- 0x0 (none) nie tak -1 (default)
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname token
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (unknown) stable-privacy -- -- tak -- --
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname dhcp-hostname-flags token
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (unknown) stable-privacy -- -- tak -- 0x0 (none) --
name service-type user-name data secrets persistent timeout
vpn org.freedesktop.NetworkManager.openvpn -- key1 = val1, key2 = val2, key3 = val3 <hidden> nie 0
@@ -20594,21 +20678,21 @@ NAME TYPE USERNAME GATEWAY BANNER VPN-STATE
VPN openvpn -- -- *** VPN connection con-vpn-1 *** 5 — Połączono z VPN key1 = val1 | key2 = val2 | key3 = val3
<<<
-size: 3139
+size: 3223
location: clients/tests/test-client.py:test_004()/313
cmd: $NMCLI --mode tabular con s con-vpn-1
lang: C
returncode: 0
-stdout: 2992 bytes
+stdout: 3076 bytes
>>>
name id uuid stable-id type interface-name autoconnect autoconnect-priority autoconnect-retries multi-connect auth-retries timestamp read-only permissions zone master slave-type autoconnect-slaves secondaries gateway-ping-timeout metered lldp mdns llmnr wait-device-timeout
connection con-vpn-1 UUID-con-vpn-1-REPLACED-REPLACED-REP -- vpn -- yes 0 -1 (default) 0 (default) -1 0 no -- -- -- -- -1 (default) -- 0 unknown default -1 (default) -1 (default) -1
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn never-default may-fail dad-timeout
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- no yes -1 (default)
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn dhcp-hostname-flags never-default may-fail dad-timeout
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- 0x0 (none) no yes -1 (default)
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname token
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (unknown) stable-privacy -- -- yes -- --
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname dhcp-hostname-flags token
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (unknown) stable-privacy -- -- yes -- 0x0 (none) --
name service-type user-name data secrets persistent timeout
vpn org.freedesktop.NetworkManager.openvpn -- key1 = val1, key2 = val2, key3 = val3 <hidden> no 0
@@ -20623,21 +20707,21 @@ NAME TYPE USERNAME GATEWAY BANNER VPN-STATE
VPN openvpn -- -- *** VPN connection con-vpn-1 *** 5 - VPN connected key1 = val1 | key2 = val2 | key3 = val3
<<<
-size: 3162
+size: 3246
location: clients/tests/test-client.py:test_004()/314
cmd: $NMCLI --mode tabular con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 3005 bytes
+stdout: 3089 bytes
>>>
name id uuid stable-id type interface-name autoconnect autoconnect-priority autoconnect-retries multi-connect auth-retries timestamp read-only permissions zone master slave-type autoconnect-slaves secondaries gateway-ping-timeout metered lldp mdns llmnr wait-device-timeout
connection con-vpn-1 UUID-con-vpn-1-REPLACED-REPLACED-REP -- vpn -- tak 0 -1 (default) 0 (default) -1 0 nie -- -- -- -- -1 (default) -- 0 nieznane default -1 (default) -1 (default) -1
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn never-default may-fail dad-timeout
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- nie tak -1 (default)
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn dhcp-hostname-flags never-default may-fail dad-timeout
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- 0x0 (none) nie tak -1 (default)
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname token
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (unknown) stable-privacy -- -- tak -- --
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname dhcp-hostname-flags token
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (unknown) stable-privacy -- -- tak -- 0x0 (none) --
name service-type user-name data secrets persistent timeout
vpn org.freedesktop.NetworkManager.openvpn -- key1 = val1, key2 = val2, key3 = val3 <hidden> nie 0
@@ -20652,21 +20736,21 @@ NAME TYPE USERNAME GATEWAY BANNER VPN-STATE
VPN openvpn -- -- *** VPN connection con-vpn-1 *** 5 — Połączono z VPN key1 = val1 | key2 = val2 | key3 = val3
<<<
-size: 2387
+size: 2471
location: clients/tests/test-client.py:test_004()/315
cmd: $NMCLI --mode tabular -f ALL con s con-vpn-1
lang: C
returncode: 0
-stdout: 2233 bytes
+stdout: 2317 bytes
>>>
name id uuid stable-id type interface-name autoconnect autoconnect-priority autoconnect-retries multi-connect auth-retries timestamp read-only permissions zone master slave-type autoconnect-slaves secondaries gateway-ping-timeout metered lldp mdns llmnr wait-device-timeout
connection con-vpn-1 UUID-con-vpn-1-REPLACED-REPLACED-REP -- vpn -- yes 0 -1 (default) 0 (default) -1 0 no -- -- -- -- -1 (default) -- 0 unknown default -1 (default) -1 (default) -1
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn never-default may-fail dad-timeout
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- no yes -1 (default)
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn dhcp-hostname-flags never-default may-fail dad-timeout
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- 0x0 (none) no yes -1 (default)
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname token
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (unknown) stable-privacy -- -- yes -- --
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname dhcp-hostname-flags token
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (unknown) stable-privacy -- -- yes -- 0x0 (none) --
name service-type user-name data secrets persistent timeout
vpn org.freedesktop.NetworkManager.openvpn -- key1 = val1, key2 = val2, key3 = val3 <hidden> no 0
@@ -20676,21 +20760,21 @@ proxy none no -- --
<<<
-size: 2399
+size: 2483
location: clients/tests/test-client.py:test_004()/316
cmd: $NMCLI --mode tabular -f ALL con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 2235 bytes
+stdout: 2319 bytes
>>>
name id uuid stable-id type interface-name autoconnect autoconnect-priority autoconnect-retries multi-connect auth-retries timestamp read-only permissions zone master slave-type autoconnect-slaves secondaries gateway-ping-timeout metered lldp mdns llmnr wait-device-timeout
connection con-vpn-1 UUID-con-vpn-1-REPLACED-REPLACED-REP -- vpn -- tak 0 -1 (default) 0 (default) -1 0 nie -- -- -- -- -1 (default) -- 0 nieznane default -1 (default) -1 (default) -1
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn never-default may-fail dad-timeout
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- nie tak -1 (default)
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn dhcp-hostname-flags never-default may-fail dad-timeout
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- 0x0 (none) nie tak -1 (default)
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname token
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (unknown) stable-privacy -- -- tak -- --
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname dhcp-hostname-flags token
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (unknown) stable-privacy -- -- tak -- 0x0 (none) --
name service-type user-name data secrets persistent timeout
vpn org.freedesktop.NetworkManager.openvpn -- key1 = val1, key2 = val2, key3 = val3 <hidden> nie 0
@@ -22092,21 +22176,21 @@ eth0 chassis1 44:44:44:44:44:44 GigabitEthernet #2 test2.example.
eth0 00:11:22:33:44:22 port1 GigabitEthernet #3 test3.example.com Test system #3 40 (wlan-access-point,telephone)
<<<
-size: 3151
+size: 3235
location: clients/tests/test-client.py:test_004()/359
cmd: $NMCLI --mode tabular --color yes con s con-vpn-1
lang: C
returncode: 0
-stdout: 2992 bytes
+stdout: 3076 bytes
>>>
name id uuid stable-id type interface-name autoconnect autoconnect-priority autoconnect-retries multi-connect auth-retries timestamp read-only permissions zone master slave-type autoconnect-slaves secondaries gateway-ping-timeout metered lldp mdns llmnr wait-device-timeout
connection con-vpn-1 UUID-con-vpn-1-REPLACED-REPLACED-REP -- vpn -- yes 0 -1 (default) 0 (default) -1 0 no -- -- -- -- -1 (default) -- 0 unknown default -1 (default) -1 (default) -1
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn never-default may-fail dad-timeout
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- no yes -1 (default)
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn dhcp-hostname-flags never-default may-fail dad-timeout
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- 0x0 (none) no yes -1 (default)
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname token
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (unknown) stable-privacy -- -- yes -- --
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname dhcp-hostname-flags token
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (unknown) stable-privacy -- -- yes -- 0x0 (none) --
name service-type user-name data secrets persistent timeout
vpn org.freedesktop.NetworkManager.openvpn -- key1 = val1, key2 = val2, key3 = val3 <hidden> no 0
@@ -22121,21 +22205,21 @@ NAME TYPE USERNAME GATEWAY BANNER VPN-STATE
VPN openvpn -- -- *** VPN connection con-vpn-1 *** 5 - VPN connected key1 = val1 | key2 = val2 | key3 = val3
<<<
-size: 3174
+size: 3258
location: clients/tests/test-client.py:test_004()/360
cmd: $NMCLI --mode tabular --color yes con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 3005 bytes
+stdout: 3089 bytes
>>>
name id uuid stable-id type interface-name autoconnect autoconnect-priority autoconnect-retries multi-connect auth-retries timestamp read-only permissions zone master slave-type autoconnect-slaves secondaries gateway-ping-timeout metered lldp mdns llmnr wait-device-timeout
connection con-vpn-1 UUID-con-vpn-1-REPLACED-REPLACED-REP -- vpn -- tak 0 -1 (default) 0 (default) -1 0 nie -- -- -- -- -1 (default) -- 0 nieznane default -1 (default) -1 (default) -1
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn never-default may-fail dad-timeout
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- nie tak -1 (default)
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn dhcp-hostname-flags never-default may-fail dad-timeout
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- 0x0 (none) nie tak -1 (default)
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname token
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (unknown) stable-privacy -- -- tak -- --
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname dhcp-hostname-flags token
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (unknown) stable-privacy -- -- tak -- 0x0 (none) --
name service-type user-name data secrets persistent timeout
vpn org.freedesktop.NetworkManager.openvpn -- key1 = val1, key2 = val2, key3 = val3 <hidden> nie 0
@@ -22150,21 +22234,21 @@ NAME TYPE USERNAME GATEWAY BANNER VPN-STATE
VPN openvpn -- -- *** VPN connection con-vpn-1 *** 5 — Połączono z VPN key1 = val1 | key2 = val2 | key3 = val3
<<<
-size: 3151
+size: 3235
location: clients/tests/test-client.py:test_004()/361
cmd: $NMCLI --mode tabular --color yes con s con-vpn-1
lang: C
returncode: 0
-stdout: 2992 bytes
+stdout: 3076 bytes
>>>
name id uuid stable-id type interface-name autoconnect autoconnect-priority autoconnect-retries multi-connect auth-retries timestamp read-only permissions zone master slave-type autoconnect-slaves secondaries gateway-ping-timeout metered lldp mdns llmnr wait-device-timeout
connection con-vpn-1 UUID-con-vpn-1-REPLACED-REPLACED-REP -- vpn -- yes 0 -1 (default) 0 (default) -1 0 no -- -- -- -- -1 (default) -- 0 unknown default -1 (default) -1 (default) -1
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn never-default may-fail dad-timeout
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- no yes -1 (default)
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn dhcp-hostname-flags never-default may-fail dad-timeout
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- 0x0 (none) no yes -1 (default)
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname token
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (unknown) stable-privacy -- -- yes -- --
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname dhcp-hostname-flags token
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (unknown) stable-privacy -- -- yes -- 0x0 (none) --
name service-type user-name data secrets persistent timeout
vpn org.freedesktop.NetworkManager.openvpn -- key1 = val1, key2 = val2, key3 = val3 <hidden> no 0
@@ -22179,21 +22263,21 @@ NAME TYPE USERNAME GATEWAY BANNER VPN-STATE
VPN openvpn -- -- *** VPN connection con-vpn-1 *** 5 - VPN connected key1 = val1 | key2 = val2 | key3 = val3
<<<
-size: 3174
+size: 3258
location: clients/tests/test-client.py:test_004()/362
cmd: $NMCLI --mode tabular --color yes con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 3005 bytes
+stdout: 3089 bytes
>>>
name id uuid stable-id type interface-name autoconnect autoconnect-priority autoconnect-retries multi-connect auth-retries timestamp read-only permissions zone master slave-type autoconnect-slaves secondaries gateway-ping-timeout metered lldp mdns llmnr wait-device-timeout
connection con-vpn-1 UUID-con-vpn-1-REPLACED-REPLACED-REP -- vpn -- tak 0 -1 (default) 0 (default) -1 0 nie -- -- -- -- -1 (default) -- 0 nieznane default -1 (default) -1 (default) -1
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn never-default may-fail dad-timeout
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- nie tak -1 (default)
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn dhcp-hostname-flags never-default may-fail dad-timeout
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- 0x0 (none) nie tak -1 (default)
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname token
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (unknown) stable-privacy -- -- tak -- --
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname dhcp-hostname-flags token
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (unknown) stable-privacy -- -- tak -- 0x0 (none) --
name service-type user-name data secrets persistent timeout
vpn org.freedesktop.NetworkManager.openvpn -- key1 = val1, key2 = val2, key3 = val3 <hidden> nie 0
@@ -22208,21 +22292,21 @@ NAME TYPE USERNAME GATEWAY BANNER VPN-STATE
VPN openvpn -- -- *** VPN connection con-vpn-1 *** 5 — Połączono z VPN key1 = val1 | key2 = val2 | key3 = val3
<<<
-size: 2399
+size: 2483
location: clients/tests/test-client.py:test_004()/363
cmd: $NMCLI --mode tabular --color yes -f ALL con s con-vpn-1
lang: C
returncode: 0
-stdout: 2233 bytes
+stdout: 2317 bytes
>>>
name id uuid stable-id type interface-name autoconnect autoconnect-priority autoconnect-retries multi-connect auth-retries timestamp read-only permissions zone master slave-type autoconnect-slaves secondaries gateway-ping-timeout metered lldp mdns llmnr wait-device-timeout
connection con-vpn-1 UUID-con-vpn-1-REPLACED-REPLACED-REP -- vpn -- yes 0 -1 (default) 0 (default) -1 0 no -- -- -- -- -1 (default) -- 0 unknown default -1 (default) -1 (default) -1
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn never-default may-fail dad-timeout
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- no yes -1 (default)
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn dhcp-hostname-flags never-default may-fail dad-timeout
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- 0x0 (none) no yes -1 (default)
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname token
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (unknown) stable-privacy -- -- yes -- --
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname dhcp-hostname-flags token
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (unknown) stable-privacy -- -- yes -- 0x0 (none) --
name service-type user-name data secrets persistent timeout
vpn org.freedesktop.NetworkManager.openvpn -- key1 = val1, key2 = val2, key3 = val3 <hidden> no 0
@@ -22232,21 +22316,21 @@ proxy none no -- --
<<<
-size: 2411
+size: 2495
location: clients/tests/test-client.py:test_004()/364
cmd: $NMCLI --mode tabular --color yes -f ALL con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 2235 bytes
+stdout: 2319 bytes
>>>
name id uuid stable-id type interface-name autoconnect autoconnect-priority autoconnect-retries multi-connect auth-retries timestamp read-only permissions zone master slave-type autoconnect-slaves secondaries gateway-ping-timeout metered lldp mdns llmnr wait-device-timeout
connection con-vpn-1 UUID-con-vpn-1-REPLACED-REPLACED-REP -- vpn -- tak 0 -1 (default) 0 (default) -1 0 nie -- -- -- -- -1 (default) -- 0 nieznane default -1 (default) -1 (default) -1
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn never-default may-fail dad-timeout
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- nie tak -1 (default)
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn dhcp-hostname-flags never-default may-fail dad-timeout
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- 0x0 (none) nie tak -1 (default)
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname token
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (unknown) stable-privacy -- -- tak -- --
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname dhcp-hostname-flags token
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (unknown) stable-privacy -- -- tak -- 0x0 (none) --
name service-type user-name data secrets persistent timeout
vpn org.freedesktop.NetworkManager.openvpn -- key1 = val1, key2 = val2, key3 = val3 <hidden> nie 0
@@ -23648,12 +23732,12 @@ eth0 chassis1 44:44:44:44:44:44 GigabitEthernet #2 test2.example.
eth0 00:11:22:33:44:22 port1 GigabitEthernet #3 test3.example.com Test system #3 40 (wlan-access-point,telephone)
<<<
-size: 4986
+size: 5112
location: clients/tests/test-client.py:test_004()/407
cmd: $NMCLI --mode tabular --pretty con s con-vpn-1
lang: C
returncode: 0
-stdout: 4830 bytes
+stdout: 4956 bytes
>>>
==========================================
Connection profile details (con-vpn-1)
@@ -23662,13 +23746,13 @@ name id uuid stable-id type in
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
connection con-vpn-1 UUID-con-vpn-1-REPLACED-REPLACED-REP -- vpn -- yes 0 -1 (default) 0 (default) -1 0 no -- -- -- -- -1 (default) -- 0 unknown default -1 (default) -1 (default) -1
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn never-default may-fail dad-timeout
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- no yes -1 (default)
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn dhcp-hostname-flags never-default may-fail dad-timeout
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- 0x0 (none) no yes -1 (default)
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname token
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (unknown) stable-privacy -- -- yes -- --
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname dhcp-hostname-flags token
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (unknown) stable-privacy -- -- yes -- 0x0 (none) --
name service-type user-name data secrets persistent timeout
-------------------------------------------------------------------------------------------------------------------------------
@@ -23690,12 +23774,12 @@ NAME TYPE USERNAME GATEWAY BANNER VPN-STATE
VPN openvpn -- -- *** VPN connection con-vpn-1 *** 5 - VPN connected key1 = val1 | key2 = val2 | key3 = val3
<<<
-size: 5042
+size: 5168
location: clients/tests/test-client.py:test_004()/408
cmd: $NMCLI --mode tabular --pretty con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 4876 bytes
+stdout: 5002 bytes
>>>
============================================
Szczegóły profilu połączenia (con-vpn-1)
@@ -23704,13 +23788,13 @@ name id uuid stable-id type in
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
connection con-vpn-1 UUID-con-vpn-1-REPLACED-REPLACED-REP -- vpn -- tak 0 -1 (default) 0 (default) -1 0 nie -- -- -- -- -1 (default) -- 0 nieznane default -1 (default) -1 (default) -1
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn never-default may-fail dad-timeout
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- nie tak -1 (default)
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn dhcp-hostname-flags never-default may-fail dad-timeout
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- 0x0 (none) nie tak -1 (default)
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname token
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (unknown) stable-privacy -- -- tak -- --
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname dhcp-hostname-flags token
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (unknown) stable-privacy -- -- tak -- 0x0 (none) --
name service-type user-name data secrets persistent timeout
-------------------------------------------------------------------------------------------------------------------------------
@@ -23732,12 +23816,12 @@ NAME TYPE USERNAME GATEWAY BANNER VPN-STATE
VPN openvpn -- -- *** VPN connection con-vpn-1 *** 5 — Połączono z VPN key1 = val1 | key2 = val2 | key3 = val3
<<<
-size: 4986
+size: 5112
location: clients/tests/test-client.py:test_004()/409
cmd: $NMCLI --mode tabular --pretty con s con-vpn-1
lang: C
returncode: 0
-stdout: 4830 bytes
+stdout: 4956 bytes
>>>
==========================================
Connection profile details (con-vpn-1)
@@ -23746,13 +23830,13 @@ name id uuid stable-id type in
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
connection con-vpn-1 UUID-con-vpn-1-REPLACED-REPLACED-REP -- vpn -- yes 0 -1 (default) 0 (default) -1 0 no -- -- -- -- -1 (default) -- 0 unknown default -1 (default) -1 (default) -1
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn never-default may-fail dad-timeout
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- no yes -1 (default)
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn dhcp-hostname-flags never-default may-fail dad-timeout
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- 0x0 (none) no yes -1 (default)
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname token
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (unknown) stable-privacy -- -- yes -- --
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname dhcp-hostname-flags token
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (unknown) stable-privacy -- -- yes -- 0x0 (none) --
name service-type user-name data secrets persistent timeout
-------------------------------------------------------------------------------------------------------------------------------
@@ -23774,12 +23858,12 @@ NAME TYPE USERNAME GATEWAY BANNER VPN-STATE
VPN openvpn -- -- *** VPN connection con-vpn-1 *** 5 - VPN connected key1 = val1 | key2 = val2 | key3 = val3
<<<
-size: 5042
+size: 5168
location: clients/tests/test-client.py:test_004()/410
cmd: $NMCLI --mode tabular --pretty con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 4876 bytes
+stdout: 5002 bytes
>>>
============================================
Szczegóły profilu połączenia (con-vpn-1)
@@ -23788,13 +23872,13 @@ name id uuid stable-id type in
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
connection con-vpn-1 UUID-con-vpn-1-REPLACED-REPLACED-REP -- vpn -- tak 0 -1 (default) 0 (default) -1 0 nie -- -- -- -- -1 (default) -- 0 nieznane default -1 (default) -1 (default) -1
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn never-default may-fail dad-timeout
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- nie tak -1 (default)
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn dhcp-hostname-flags never-default may-fail dad-timeout
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- 0x0 (none) nie tak -1 (default)
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname token
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (unknown) stable-privacy -- -- tak -- --
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname dhcp-hostname-flags token
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (unknown) stable-privacy -- -- tak -- 0x0 (none) --
name service-type user-name data secrets persistent timeout
-------------------------------------------------------------------------------------------------------------------------------
@@ -23816,12 +23900,12 @@ NAME TYPE USERNAME GATEWAY BANNER VPN-STATE
VPN openvpn -- -- *** VPN connection con-vpn-1 *** 5 — Połączono z VPN key1 = val1 | key2 = val2 | key3 = val3
<<<
-size: 3642
+size: 3768
location: clients/tests/test-client.py:test_004()/411
cmd: $NMCLI --mode tabular --pretty -f ALL con s con-vpn-1
lang: C
returncode: 0
-stdout: 3479 bytes
+stdout: 3605 bytes
>>>
==========================================
Connection profile details (con-vpn-1)
@@ -23830,13 +23914,13 @@ name id uuid stable-id type in
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
connection con-vpn-1 UUID-con-vpn-1-REPLACED-REPLACED-REP -- vpn -- yes 0 -1 (default) 0 (default) -1 0 no -- -- -- -- -1 (default) -- 0 unknown default -1 (default) -1 (default) -1
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn never-default may-fail dad-timeout
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- no yes -1 (default)
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn dhcp-hostname-flags never-default may-fail dad-timeout
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- 0x0 (none) no yes -1 (default)
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname token
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (unknown) stable-privacy -- -- yes -- --
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname dhcp-hostname-flags token
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (unknown) stable-privacy -- -- yes -- 0x0 (none) --
name service-type user-name data secrets persistent timeout
-------------------------------------------------------------------------------------------------------------------------------
@@ -23848,12 +23932,12 @@ proxy none no -- --
<<<
-size: 3665
+size: 3791
location: clients/tests/test-client.py:test_004()/412
cmd: $NMCLI --mode tabular --pretty -f ALL con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 3492 bytes
+stdout: 3618 bytes
>>>
============================================
Szczegóły profilu połączenia (con-vpn-1)
@@ -23862,13 +23946,13 @@ name id uuid stable-id type in
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
connection con-vpn-1 UUID-con-vpn-1-REPLACED-REPLACED-REP -- vpn -- tak 0 -1 (default) 0 (default) -1 0 nie -- -- -- -- -1 (default) -- 0 nieznane default -1 (default) -1 (default) -1
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn never-default may-fail dad-timeout
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- nie tak -1 (default)
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn dhcp-hostname-flags never-default may-fail dad-timeout
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- 0x0 (none) nie tak -1 (default)
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname token
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (unknown) stable-privacy -- -- tak -- --
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname dhcp-hostname-flags token
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (unknown) stable-privacy -- -- tak -- 0x0 (none) --
name service-type user-name data secrets persistent timeout
-------------------------------------------------------------------------------------------------------------------------------
@@ -25814,12 +25898,12 @@ eth0 chassis1 44:44:44:44:44:44 GigabitEthernet #2 test2.example.
eth0 00:11:22:33:44:22 port1 GigabitEthernet #3 test3.example.com Test system #3 40 (wlan-access-point,telephone)
<<<
-size: 4998
+size: 5124
location: clients/tests/test-client.py:test_004()/455
cmd: $NMCLI --mode tabular --pretty --color yes con s con-vpn-1
lang: C
returncode: 0
-stdout: 4830 bytes
+stdout: 4956 bytes
>>>
==========================================
Connection profile details (con-vpn-1)
@@ -25828,13 +25912,13 @@ name id uuid stable-id type in
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
connection con-vpn-1 UUID-con-vpn-1-REPLACED-REPLACED-REP -- vpn -- yes 0 -1 (default) 0 (default) -1 0 no -- -- -- -- -1 (default) -- 0 unknown default -1 (default) -1 (default) -1
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn never-default may-fail dad-timeout
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- no yes -1 (default)
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn dhcp-hostname-flags never-default may-fail dad-timeout
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- 0x0 (none) no yes -1 (default)
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname token
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (unknown) stable-privacy -- -- yes -- --
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname dhcp-hostname-flags token
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (unknown) stable-privacy -- -- yes -- 0x0 (none) --
name service-type user-name data secrets persistent timeout
-------------------------------------------------------------------------------------------------------------------------------
@@ -25856,12 +25940,12 @@ NAME TYPE USERNAME GATEWAY BANNER VPN-STATE
VPN openvpn -- -- *** VPN connection con-vpn-1 *** 5 - VPN connected key1 = val1 | key2 = val2 | key3 = val3
<<<
-size: 5054
+size: 5180
location: clients/tests/test-client.py:test_004()/456
cmd: $NMCLI --mode tabular --pretty --color yes con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 4876 bytes
+stdout: 5002 bytes
>>>
============================================
Szczegóły profilu połączenia (con-vpn-1)
@@ -25870,13 +25954,13 @@ name id uuid stable-id type in
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
connection con-vpn-1 UUID-con-vpn-1-REPLACED-REPLACED-REP -- vpn -- tak 0 -1 (default) 0 (default) -1 0 nie -- -- -- -- -1 (default) -- 0 nieznane default -1 (default) -1 (default) -1
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn never-default may-fail dad-timeout
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- nie tak -1 (default)
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn dhcp-hostname-flags never-default may-fail dad-timeout
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- 0x0 (none) nie tak -1 (default)
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname token
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (unknown) stable-privacy -- -- tak -- --
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname dhcp-hostname-flags token
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (unknown) stable-privacy -- -- tak -- 0x0 (none) --
name service-type user-name data secrets persistent timeout
-------------------------------------------------------------------------------------------------------------------------------
@@ -25898,12 +25982,12 @@ NAME TYPE USERNAME GATEWAY BANNER VPN-STATE
VPN openvpn -- -- *** VPN connection con-vpn-1 *** 5 — Połączono z VPN key1 = val1 | key2 = val2 | key3 = val3
<<<
-size: 4998
+size: 5124
location: clients/tests/test-client.py:test_004()/457
cmd: $NMCLI --mode tabular --pretty --color yes con s con-vpn-1
lang: C
returncode: 0
-stdout: 4830 bytes
+stdout: 4956 bytes
>>>
==========================================
Connection profile details (con-vpn-1)
@@ -25912,13 +25996,13 @@ name id uuid stable-id type in
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
connection con-vpn-1 UUID-con-vpn-1-REPLACED-REPLACED-REP -- vpn -- yes 0 -1 (default) 0 (default) -1 0 no -- -- -- -- -1 (default) -- 0 unknown default -1 (default) -1 (default) -1
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn never-default may-fail dad-timeout
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- no yes -1 (default)
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn dhcp-hostname-flags never-default may-fail dad-timeout
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- 0x0 (none) no yes -1 (default)
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname token
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (unknown) stable-privacy -- -- yes -- --
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname dhcp-hostname-flags token
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (unknown) stable-privacy -- -- yes -- 0x0 (none) --
name service-type user-name data secrets persistent timeout
-------------------------------------------------------------------------------------------------------------------------------
@@ -25940,12 +26024,12 @@ NAME TYPE USERNAME GATEWAY BANNER VPN-STATE
VPN openvpn -- -- *** VPN connection con-vpn-1 *** 5 - VPN connected key1 = val1 | key2 = val2 | key3 = val3
<<<
-size: 5054
+size: 5180
location: clients/tests/test-client.py:test_004()/458
cmd: $NMCLI --mode tabular --pretty --color yes con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 4876 bytes
+stdout: 5002 bytes
>>>
============================================
Szczegóły profilu połączenia (con-vpn-1)
@@ -25954,13 +26038,13 @@ name id uuid stable-id type in
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
connection con-vpn-1 UUID-con-vpn-1-REPLACED-REPLACED-REP -- vpn -- tak 0 -1 (default) 0 (default) -1 0 nie -- -- -- -- -1 (default) -- 0 nieznane default -1 (default) -1 (default) -1
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn never-default may-fail dad-timeout
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- nie tak -1 (default)
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn dhcp-hostname-flags never-default may-fail dad-timeout
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- 0x0 (none) nie tak -1 (default)
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname token
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (unknown) stable-privacy -- -- tak -- --
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname dhcp-hostname-flags token
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (unknown) stable-privacy -- -- tak -- 0x0 (none) --
name service-type user-name data secrets persistent timeout
-------------------------------------------------------------------------------------------------------------------------------
@@ -25982,12 +26066,12 @@ NAME TYPE USERNAME GATEWAY BANNER VPN-STATE
VPN openvpn -- -- *** VPN connection con-vpn-1 *** 5 — Połączono z VPN key1 = val1 | key2 = val2 | key3 = val3
<<<
-size: 3654
+size: 3780
location: clients/tests/test-client.py:test_004()/459
cmd: $NMCLI --mode tabular --pretty --color yes -f ALL con s con-vpn-1
lang: C
returncode: 0
-stdout: 3479 bytes
+stdout: 3605 bytes
>>>
==========================================
Connection profile details (con-vpn-1)
@@ -25996,13 +26080,13 @@ name id uuid stable-id type in
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
connection con-vpn-1 UUID-con-vpn-1-REPLACED-REPLACED-REP -- vpn -- yes 0 -1 (default) 0 (default) -1 0 no -- -- -- -- -1 (default) -- 0 unknown default -1 (default) -1 (default) -1
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn never-default may-fail dad-timeout
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- no yes -1 (default)
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn dhcp-hostname-flags never-default may-fail dad-timeout
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- 0x0 (none) no yes -1 (default)
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname token
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (unknown) stable-privacy -- -- yes -- --
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname dhcp-hostname-flags token
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (unknown) stable-privacy -- -- yes -- 0x0 (none) --
name service-type user-name data secrets persistent timeout
-------------------------------------------------------------------------------------------------------------------------------
@@ -26014,12 +26098,12 @@ proxy none no -- --
<<<
-size: 3677
+size: 3803
location: clients/tests/test-client.py:test_004()/460
cmd: $NMCLI --mode tabular --pretty --color yes -f ALL con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 3492 bytes
+stdout: 3618 bytes
>>>
============================================
Szczegóły profilu połączenia (con-vpn-1)
@@ -26028,13 +26112,13 @@ name id uuid stable-id type in
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
connection con-vpn-1 UUID-con-vpn-1-REPLACED-REPLACED-REP -- vpn -- tak 0 -1 (default) 0 (default) -1 0 nie -- -- -- -- -1 (default) -- 0 nieznane default -1 (default) -1 (default) -1
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn never-default may-fail dad-timeout
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- nie tak -1 (default)
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns dhcp-client-id dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-fqdn dhcp-hostname-flags never-default may-fail dad-timeout
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- 0x0 (none) nie tak -1 (default)
-name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname token
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (unknown) stable-privacy -- -- tak -- --
+name method dns dns-search dns-options dns-priority addresses gateway routes route-metric route-table routing-rules ignore-auto-routes ignore-auto-dns never-default may-fail ip6-privacy addr-gen-mode dhcp-duid dhcp-iaid dhcp-send-hostname dhcp-hostname dhcp-hostname-flags token
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (unknown) stable-privacy -- -- tak -- 0x0 (none) --
name service-type user-name data secrets persistent timeout
-------------------------------------------------------------------------------------------------------------------------------
@@ -27980,94 +28064,94 @@ eth0 chassis1 44:44:44:44:44:44 GigabitEthernet #2 test2.example.
eth0 00:11:22:33:44:22 port1 GigabitEthernet #3 test3.example.com Test system #3 40 (wlan-access-point,telephone)
<<<
-size: 792
+size: 800
location: clients/tests/test-client.py:test_004()/503
cmd: $NMCLI --mode tabular --terse con s con-vpn-1
lang: C
returncode: 0
-stdout: 638 bytes
+stdout: 646 bytes
>>>
connection:con-vpn-1:UUID-con-vpn-1-REPLACED-REPLACED-REP::vpn::yes:0:-1:0:-1:0:no:::::-1::0:unknown:default:-1:-1:-1
-ipv4:auto::::0::::-1:0::no:no:::0:yes:::no:yes:-1
-ipv6:auto::::0::::-1:0::no:no:no:yes:-1:stable-privacy:::yes::
+ipv4:auto::::0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1
+ipv6:auto::::0::::-1:0::no:no:no:yes:-1:stable-privacy:::yes::0x0:
vpn:org.freedesktop.NetworkManager.openvpn::key1 = val1, key2 = val2, key3 = val3:<hidden>:no:0
proxy:none:no::
GENERAL:con-vpn-1:UUID-con-vpn-1-REPLACED-REPLACED-REP:wlan0::activated:no:no::yes:/org/freedesktop/NetworkManager/ActiveConnection/2:/org/freedesktop/NetworkManager/Settings/Connection/3::
VPN:openvpn:::*** VPN connection con-vpn-1 ***:5 - VPN connected:key1 = val1 | key2 = val2 | key3 = val3
<<<
-size: 802
+size: 810
location: clients/tests/test-client.py:test_004()/504
cmd: $NMCLI --mode tabular --terse con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 638 bytes
+stdout: 646 bytes
>>>
connection:con-vpn-1:UUID-con-vpn-1-REPLACED-REPLACED-REP::vpn::yes:0:-1:0:-1:0:no:::::-1::0:unknown:default:-1:-1:-1
-ipv4:auto::::0::::-1:0::no:no:::0:yes:::no:yes:-1
-ipv6:auto::::0::::-1:0::no:no:no:yes:-1:stable-privacy:::yes::
+ipv4:auto::::0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1
+ipv6:auto::::0::::-1:0::no:no:no:yes:-1:stable-privacy:::yes::0x0:
vpn:org.freedesktop.NetworkManager.openvpn::key1 = val1, key2 = val2, key3 = val3:<hidden>:no:0
proxy:none:no::
GENERAL:con-vpn-1:UUID-con-vpn-1-REPLACED-REPLACED-REP:wlan0::activated:no:no::yes:/org/freedesktop/NetworkManager/ActiveConnection/2:/org/freedesktop/NetworkManager/Settings/Connection/3::
VPN:openvpn:::*** VPN connection con-vpn-1 ***:5 - VPN connected:key1 = val1 | key2 = val2 | key3 = val3
<<<
-size: 792
+size: 800
location: clients/tests/test-client.py:test_004()/505
cmd: $NMCLI --mode tabular --terse con s con-vpn-1
lang: C
returncode: 0
-stdout: 638 bytes
+stdout: 646 bytes
>>>
connection:con-vpn-1:UUID-con-vpn-1-REPLACED-REPLACED-REP::vpn::yes:0:-1:0:-1:0:no:::::-1::0:unknown:default:-1:-1:-1
-ipv4:auto::::0::::-1:0::no:no:::0:yes:::no:yes:-1
-ipv6:auto::::0::::-1:0::no:no:no:yes:-1:stable-privacy:::yes::
+ipv4:auto::::0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1
+ipv6:auto::::0::::-1:0::no:no:no:yes:-1:stable-privacy:::yes::0x0:
vpn:org.freedesktop.NetworkManager.openvpn::key1 = val1, key2 = val2, key3 = val3:<hidden>:no:0
proxy:none:no::
GENERAL:con-vpn-1:UUID-con-vpn-1-REPLACED-REPLACED-REP:wlan0::activated:no:no::yes:/org/freedesktop/NetworkManager/ActiveConnection/2:/org/freedesktop/NetworkManager/Settings/Connection/3::
VPN:openvpn:::*** VPN connection con-vpn-1 ***:5 - VPN connected:key1 = val1 | key2 = val2 | key3 = val3
<<<
-size: 802
+size: 810
location: clients/tests/test-client.py:test_004()/506
cmd: $NMCLI --mode tabular --terse con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 638 bytes
+stdout: 646 bytes
>>>
connection:con-vpn-1:UUID-con-vpn-1-REPLACED-REPLACED-REP::vpn::yes:0:-1:0:-1:0:no:::::-1::0:unknown:default:-1:-1:-1
-ipv4:auto::::0::::-1:0::no:no:::0:yes:::no:yes:-1
-ipv6:auto::::0::::-1:0::no:no:no:yes:-1:stable-privacy:::yes::
+ipv4:auto::::0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1
+ipv6:auto::::0::::-1:0::no:no:no:yes:-1:stable-privacy:::yes::0x0:
vpn:org.freedesktop.NetworkManager.openvpn::key1 = val1, key2 = val2, key3 = val3:<hidden>:no:0
proxy:none:no::
GENERAL:con-vpn-1:UUID-con-vpn-1-REPLACED-REPLACED-REP:wlan0::activated:no:no::yes:/org/freedesktop/NetworkManager/ActiveConnection/2:/org/freedesktop/NetworkManager/Settings/Connection/3::
VPN:openvpn:::*** VPN connection con-vpn-1 ***:5 - VPN connected:key1 = val1 | key2 = val2 | key3 = val3
<<<
-size: 504
+size: 512
location: clients/tests/test-client.py:test_004()/507
cmd: $NMCLI --mode tabular --terse -f ALL con s con-vpn-1
lang: C
returncode: 0
-stdout: 343 bytes
+stdout: 351 bytes
>>>
connection:con-vpn-1:UUID-con-vpn-1-REPLACED-REPLACED-REP::vpn::yes:0:-1:0:-1:0:no:::::-1::0:unknown:default:-1:-1:-1
-ipv4:auto::::0::::-1:0::no:no:::0:yes:::no:yes:-1
-ipv6:auto::::0::::-1:0::no:no:no:yes:-1:stable-privacy:::yes::
+ipv4:auto::::0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1
+ipv6:auto::::0::::-1:0::no:no:no:yes:-1:stable-privacy:::yes::0x0:
vpn:org.freedesktop.NetworkManager.openvpn::key1 = val1, key2 = val2, key3 = val3:<hidden>:no:0
proxy:none:no::
<<<
-size: 514
+size: 522
location: clients/tests/test-client.py:test_004()/508
cmd: $NMCLI --mode tabular --terse -f ALL con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 343 bytes
+stdout: 351 bytes
>>>
connection:con-vpn-1:UUID-con-vpn-1-REPLACED-REPLACED-REP::vpn::yes:0:-1:0:-1:0:no:::::-1::0:unknown:default:-1:-1:-1
-ipv4:auto::::0::::-1:0::no:no:::0:yes:::no:yes:-1
-ipv6:auto::::0::::-1:0::no:no:no:yes:-1:stable-privacy:::yes::
+ipv4:auto::::0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1
+ipv6:auto::::0::::-1:0::no:no:no:yes:-1:stable-privacy:::yes::0x0:
vpn:org.freedesktop.NetworkManager.openvpn::key1 = val1, key2 = val2, key3 = val3:<hidden>:no:0
proxy:none:no::
@@ -28870,94 +28954,94 @@ eth0:chassis1:44\:44\:44\:44\:44\:44:GigabitEthernet #2:test2.example.com:Test s
eth0:00\:11\:22\:33\:44\:22:port1:GigabitEthernet #3:test3.example.com:Test system #3:40 (wlan-access-point,telephone)
<<<
-size: 804
+size: 812
location: clients/tests/test-client.py:test_004()/551
cmd: $NMCLI --mode tabular --terse --color yes con s con-vpn-1
lang: C
returncode: 0
-stdout: 638 bytes
+stdout: 646 bytes
>>>
connection:con-vpn-1:UUID-con-vpn-1-REPLACED-REPLACED-REP::vpn::yes:0:-1:0:-1:0:no:::::-1::0:unknown:default:-1:-1:-1
-ipv4:auto::::0::::-1:0::no:no:::0:yes:::no:yes:-1
-ipv6:auto::::0::::-1:0::no:no:no:yes:-1:stable-privacy:::yes::
+ipv4:auto::::0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1
+ipv6:auto::::0::::-1:0::no:no:no:yes:-1:stable-privacy:::yes::0x0:
vpn:org.freedesktop.NetworkManager.openvpn::key1 = val1, key2 = val2, key3 = val3:<hidden>:no:0
proxy:none:no::
GENERAL:con-vpn-1:UUID-con-vpn-1-REPLACED-REPLACED-REP:wlan0::activated:no:no::yes:/org/freedesktop/NetworkManager/ActiveConnection/2:/org/freedesktop/NetworkManager/Settings/Connection/3::
VPN:openvpn:::*** VPN connection con-vpn-1 ***:5 - VPN connected:key1 = val1 | key2 = val2 | key3 = val3
<<<
-size: 814
+size: 822
location: clients/tests/test-client.py:test_004()/552
cmd: $NMCLI --mode tabular --terse --color yes con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 638 bytes
+stdout: 646 bytes
>>>
connection:con-vpn-1:UUID-con-vpn-1-REPLACED-REPLACED-REP::vpn::yes:0:-1:0:-1:0:no:::::-1::0:unknown:default:-1:-1:-1
-ipv4:auto::::0::::-1:0::no:no:::0:yes:::no:yes:-1
-ipv6:auto::::0::::-1:0::no:no:no:yes:-1:stable-privacy:::yes::
+ipv4:auto::::0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1
+ipv6:auto::::0::::-1:0::no:no:no:yes:-1:stable-privacy:::yes::0x0:
vpn:org.freedesktop.NetworkManager.openvpn::key1 = val1, key2 = val2, key3 = val3:<hidden>:no:0
proxy:none:no::
GENERAL:con-vpn-1:UUID-con-vpn-1-REPLACED-REPLACED-REP:wlan0::activated:no:no::yes:/org/freedesktop/NetworkManager/ActiveConnection/2:/org/freedesktop/NetworkManager/Settings/Connection/3::
VPN:openvpn:::*** VPN connection con-vpn-1 ***:5 - VPN connected:key1 = val1 | key2 = val2 | key3 = val3
<<<
-size: 804
+size: 812
location: clients/tests/test-client.py:test_004()/553
cmd: $NMCLI --mode tabular --terse --color yes con s con-vpn-1
lang: C
returncode: 0
-stdout: 638 bytes
+stdout: 646 bytes
>>>
connection:con-vpn-1:UUID-con-vpn-1-REPLACED-REPLACED-REP::vpn::yes:0:-1:0:-1:0:no:::::-1::0:unknown:default:-1:-1:-1
-ipv4:auto::::0::::-1:0::no:no:::0:yes:::no:yes:-1
-ipv6:auto::::0::::-1:0::no:no:no:yes:-1:stable-privacy:::yes::
+ipv4:auto::::0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1
+ipv6:auto::::0::::-1:0::no:no:no:yes:-1:stable-privacy:::yes::0x0:
vpn:org.freedesktop.NetworkManager.openvpn::key1 = val1, key2 = val2, key3 = val3:<hidden>:no:0
proxy:none:no::
GENERAL:con-vpn-1:UUID-con-vpn-1-REPLACED-REPLACED-REP:wlan0::activated:no:no::yes:/org/freedesktop/NetworkManager/ActiveConnection/2:/org/freedesktop/NetworkManager/Settings/Connection/3::
VPN:openvpn:::*** VPN connection con-vpn-1 ***:5 - VPN connected:key1 = val1 | key2 = val2 | key3 = val3
<<<
-size: 814
+size: 822
location: clients/tests/test-client.py:test_004()/554
cmd: $NMCLI --mode tabular --terse --color yes con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 638 bytes
+stdout: 646 bytes
>>>
connection:con-vpn-1:UUID-con-vpn-1-REPLACED-REPLACED-REP::vpn::yes:0:-1:0:-1:0:no:::::-1::0:unknown:default:-1:-1:-1
-ipv4:auto::::0::::-1:0::no:no:::0:yes:::no:yes:-1
-ipv6:auto::::0::::-1:0::no:no:no:yes:-1:stable-privacy:::yes::
+ipv4:auto::::0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1
+ipv6:auto::::0::::-1:0::no:no:no:yes:-1:stable-privacy:::yes::0x0:
vpn:org.freedesktop.NetworkManager.openvpn::key1 = val1, key2 = val2, key3 = val3:<hidden>:no:0
proxy:none:no::
GENERAL:con-vpn-1:UUID-con-vpn-1-REPLACED-REPLACED-REP:wlan0::activated:no:no::yes:/org/freedesktop/NetworkManager/ActiveConnection/2:/org/freedesktop/NetworkManager/Settings/Connection/3::
VPN:openvpn:::*** VPN connection con-vpn-1 ***:5 - VPN connected:key1 = val1 | key2 = val2 | key3 = val3
<<<
-size: 516
+size: 524
location: clients/tests/test-client.py:test_004()/555
cmd: $NMCLI --mode tabular --terse --color yes -f ALL con s con-vpn-1
lang: C
returncode: 0
-stdout: 343 bytes
+stdout: 351 bytes
>>>
connection:con-vpn-1:UUID-con-vpn-1-REPLACED-REPLACED-REP::vpn::yes:0:-1:0:-1:0:no:::::-1::0:unknown:default:-1:-1:-1
-ipv4:auto::::0::::-1:0::no:no:::0:yes:::no:yes:-1
-ipv6:auto::::0::::-1:0::no:no:no:yes:-1:stable-privacy:::yes::
+ipv4:auto::::0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1
+ipv6:auto::::0::::-1:0::no:no:no:yes:-1:stable-privacy:::yes::0x0:
vpn:org.freedesktop.NetworkManager.openvpn::key1 = val1, key2 = val2, key3 = val3:<hidden>:no:0
proxy:none:no::
<<<
-size: 526
+size: 534
location: clients/tests/test-client.py:test_004()/556
cmd: $NMCLI --mode tabular --terse --color yes -f ALL con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 343 bytes
+stdout: 351 bytes
>>>
connection:con-vpn-1:UUID-con-vpn-1-REPLACED-REPLACED-REP::vpn::yes:0:-1:0:-1:0:no:::::-1::0:unknown:default:-1:-1:-1
-ipv4:auto::::0::::-1:0::no:no:::0:yes:::no:yes:-1
-ipv6:auto::::0::::-1:0::no:no:no:yes:-1:stable-privacy:::yes::
+ipv4:auto::::0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1
+ipv6:auto::::0::::-1:0::no:no:no:yes:-1:stable-privacy:::yes::0x0:
vpn:org.freedesktop.NetworkManager.openvpn::key1 = val1, key2 = val2, key3 = val3:<hidden>:no:0
proxy:none:no::
@@ -29760,12 +29844,12 @@ eth0:chassis1:44\:44\:44\:44\:44\:44:GigabitEthernet #2:test2.example.com:Test s
eth0:00\:11\:22\:33\:44\:22:port1:GigabitEthernet #3:test3.example.com:Test system #3:40 (wlan-access-point,telephone)
<<<
-size: 4874
+size: 4976
location: clients/tests/test-client.py:test_004()/599
cmd: $NMCLI --mode multiline con s con-vpn-1
lang: C
returncode: 0
-stdout: 4725 bytes
+stdout: 4827 bytes
>>>
connection.id: con-vpn-1
connection.uuid: UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -29810,6 +29894,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: yes
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: no
ipv4.may-fail: yes
ipv4.dad-timeout: -1 (default)
@@ -29834,6 +29919,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: yes
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
@@ -29868,12 +29954,12 @@ VPN.CFG[2]: key2 = val2
VPN.CFG[3]: key3 = val3
<<<
-size: 4904
+size: 5006
location: clients/tests/test-client.py:test_004()/600
cmd: $NMCLI --mode multiline con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 4745 bytes
+stdout: 4847 bytes
>>>
connection.id: con-vpn-1
connection.uuid: UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -29918,6 +30004,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: tak
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: nie
ipv4.may-fail: tak
ipv4.dad-timeout: -1 (default)
@@ -29942,6 +30029,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: tak
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
@@ -29976,12 +30064,12 @@ VPN.CFG[2]: key2 = val2
VPN.CFG[3]: key3 = val3
<<<
-size: 4874
+size: 4976
location: clients/tests/test-client.py:test_004()/601
cmd: $NMCLI --mode multiline con s con-vpn-1
lang: C
returncode: 0
-stdout: 4725 bytes
+stdout: 4827 bytes
>>>
connection.id: con-vpn-1
connection.uuid: UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -30026,6 +30114,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: yes
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: no
ipv4.may-fail: yes
ipv4.dad-timeout: -1 (default)
@@ -30050,6 +30139,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: yes
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
@@ -30084,12 +30174,12 @@ VPN.CFG[2]: key2 = val2
VPN.CFG[3]: key3 = val3
<<<
-size: 4904
+size: 5006
location: clients/tests/test-client.py:test_004()/602
cmd: $NMCLI --mode multiline con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 4745 bytes
+stdout: 4847 bytes
>>>
connection.id: con-vpn-1
connection.uuid: UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -30134,6 +30224,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: tak
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: nie
ipv4.may-fail: tak
ipv4.dad-timeout: -1 (default)
@@ -30158,6 +30249,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: tak
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
@@ -30192,12 +30284,12 @@ VPN.CFG[2]: key2 = val2
VPN.CFG[3]: key3 = val3
<<<
-size: 3750
+size: 3852
location: clients/tests/test-client.py:test_004()/603
cmd: $NMCLI --mode multiline -f ALL con s con-vpn-1
lang: C
returncode: 0
-stdout: 3594 bytes
+stdout: 3696 bytes
>>>
connection.id: con-vpn-1
connection.uuid: UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -30242,6 +30334,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: yes
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: no
ipv4.may-fail: yes
ipv4.dad-timeout: -1 (default)
@@ -30266,6 +30359,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: yes
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
@@ -30279,12 +30373,12 @@ proxy.pac-url: --
proxy.pac-script: --
<<<
-size: 3770
+size: 3872
location: clients/tests/test-client.py:test_004()/604
cmd: $NMCLI --mode multiline -f ALL con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 3604 bytes
+stdout: 3706 bytes
>>>
connection.id: con-vpn-1
connection.uuid: UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -30329,6 +30423,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: tak
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: nie
ipv4.may-fail: tak
ipv4.dad-timeout: -1 (default)
@@ -30353,6 +30448,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: tak
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
@@ -33358,12 +33454,12 @@ NEIGHBOR[2].SYSTEM-DESCRIPTION: Test system #3
NEIGHBOR[2].SYSTEM-CAPABILITIES: 40 (wlan-access-point,telephone)
<<<
-size: 4886
+size: 4988
location: clients/tests/test-client.py:test_004()/647
cmd: $NMCLI --mode multiline --color yes con s con-vpn-1
lang: C
returncode: 0
-stdout: 4725 bytes
+stdout: 4827 bytes
>>>
connection.id: con-vpn-1
connection.uuid: UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -33408,6 +33504,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: yes
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: no
ipv4.may-fail: yes
ipv4.dad-timeout: -1 (default)
@@ -33432,6 +33529,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: yes
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
@@ -33466,12 +33564,12 @@ VPN.CFG[2]: key2 = val2
VPN.CFG[3]: key3 = val3
<<<
-size: 4916
+size: 5018
location: clients/tests/test-client.py:test_004()/648
cmd: $NMCLI --mode multiline --color yes con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 4745 bytes
+stdout: 4847 bytes
>>>
connection.id: con-vpn-1
connection.uuid: UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -33516,6 +33614,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: tak
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: nie
ipv4.may-fail: tak
ipv4.dad-timeout: -1 (default)
@@ -33540,6 +33639,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: tak
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
@@ -33574,12 +33674,12 @@ VPN.CFG[2]: key2 = val2
VPN.CFG[3]: key3 = val3
<<<
-size: 4886
+size: 4988
location: clients/tests/test-client.py:test_004()/649
cmd: $NMCLI --mode multiline --color yes con s con-vpn-1
lang: C
returncode: 0
-stdout: 4725 bytes
+stdout: 4827 bytes
>>>
connection.id: con-vpn-1
connection.uuid: UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -33624,6 +33724,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: yes
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: no
ipv4.may-fail: yes
ipv4.dad-timeout: -1 (default)
@@ -33648,6 +33749,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: yes
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
@@ -33682,12 +33784,12 @@ VPN.CFG[2]: key2 = val2
VPN.CFG[3]: key3 = val3
<<<
-size: 4916
+size: 5018
location: clients/tests/test-client.py:test_004()/650
cmd: $NMCLI --mode multiline --color yes con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 4745 bytes
+stdout: 4847 bytes
>>>
connection.id: con-vpn-1
connection.uuid: UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -33732,6 +33834,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: tak
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: nie
ipv4.may-fail: tak
ipv4.dad-timeout: -1 (default)
@@ -33756,6 +33859,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: tak
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
@@ -33790,12 +33894,12 @@ VPN.CFG[2]: key2 = val2
VPN.CFG[3]: key3 = val3
<<<
-size: 3762
+size: 3864
location: clients/tests/test-client.py:test_004()/651
cmd: $NMCLI --mode multiline --color yes -f ALL con s con-vpn-1
lang: C
returncode: 0
-stdout: 3594 bytes
+stdout: 3696 bytes
>>>
connection.id: con-vpn-1
connection.uuid: UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -33840,6 +33944,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: yes
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: no
ipv4.may-fail: yes
ipv4.dad-timeout: -1 (default)
@@ -33864,6 +33969,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: yes
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
@@ -33877,12 +33983,12 @@ proxy.pac-url: --
proxy.pac-script: --
<<<
-size: 3782
+size: 3884
location: clients/tests/test-client.py:test_004()/652
cmd: $NMCLI --mode multiline --color yes -f ALL con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 3604 bytes
+stdout: 3706 bytes
>>>
connection.id: con-vpn-1
connection.uuid: UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -33927,6 +34033,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: tak
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: nie
ipv4.may-fail: tak
ipv4.dad-timeout: -1 (default)
@@ -33951,6 +34058,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: tak
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
@@ -36956,12 +37064,12 @@ NEIGHBOR[2].SYSTEM-DESCRIPTION: Test system #3
NEIGHBOR[2].SYSTEM-CAPABILITIES: 40 (wlan-access-point,telephone)
<<<
-size: 5895
+size: 5997
location: clients/tests/test-client.py:test_004()/695
cmd: $NMCLI --mode multiline --pretty con s con-vpn-1
lang: C
returncode: 0
-stdout: 5737 bytes
+stdout: 5839 bytes
>>>
===============================================================================
Connection profile details (con-vpn-1)
@@ -37010,6 +37118,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: yes
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: no
ipv4.may-fail: yes
ipv4.dad-timeout: -1 (default)
@@ -37035,6 +37144,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: yes
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
-------------------------------------------------------------------------------
vpn.service-type: org.freedesktop.NetworkManager.openvpn
@@ -37077,12 +37187,12 @@ VPN.CFG[3]: key3 = val3
-------------------------------------------------------------------------------
<<<
-size: 5937
+size: 6039
location: clients/tests/test-client.py:test_004()/696
cmd: $NMCLI --mode multiline --pretty con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 5769 bytes
+stdout: 5871 bytes
>>>
===============================================================================
Szczegóły profilu połączenia (con-vpn-1)
@@ -37131,6 +37241,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: tak
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: nie
ipv4.may-fail: tak
ipv4.dad-timeout: -1 (default)
@@ -37156,6 +37267,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: tak
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
-------------------------------------------------------------------------------
vpn.service-type: org.freedesktop.NetworkManager.openvpn
@@ -37198,12 +37310,12 @@ VPN.CFG[3]: key3 = val3
-------------------------------------------------------------------------------
<<<
-size: 5895
+size: 5997
location: clients/tests/test-client.py:test_004()/697
cmd: $NMCLI --mode multiline --pretty con s con-vpn-1
lang: C
returncode: 0
-stdout: 5737 bytes
+stdout: 5839 bytes
>>>
===============================================================================
Connection profile details (con-vpn-1)
@@ -37252,6 +37364,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: yes
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: no
ipv4.may-fail: yes
ipv4.dad-timeout: -1 (default)
@@ -37277,6 +37390,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: yes
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
-------------------------------------------------------------------------------
vpn.service-type: org.freedesktop.NetworkManager.openvpn
@@ -37319,12 +37433,12 @@ VPN.CFG[3]: key3 = val3
-------------------------------------------------------------------------------
<<<
-size: 5937
+size: 6039
location: clients/tests/test-client.py:test_004()/698
cmd: $NMCLI --mode multiline --pretty con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 5769 bytes
+stdout: 5871 bytes
>>>
===============================================================================
Szczegóły profilu połączenia (con-vpn-1)
@@ -37373,6 +37487,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: tak
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: nie
ipv4.may-fail: tak
ipv4.dad-timeout: -1 (default)
@@ -37398,6 +37513,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: tak
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
-------------------------------------------------------------------------------
vpn.service-type: org.freedesktop.NetworkManager.openvpn
@@ -37440,12 +37556,12 @@ VPN.CFG[3]: key3 = val3
-------------------------------------------------------------------------------
<<<
-size: 4378
+size: 4480
location: clients/tests/test-client.py:test_004()/699
cmd: $NMCLI --mode multiline --pretty -f ALL con s con-vpn-1
lang: C
returncode: 0
-stdout: 4213 bytes
+stdout: 4315 bytes
>>>
===============================================================================
Connection profile details (con-vpn-1)
@@ -37494,6 +37610,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: yes
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: no
ipv4.may-fail: yes
ipv4.dad-timeout: -1 (default)
@@ -37519,6 +37636,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: yes
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
-------------------------------------------------------------------------------
vpn.service-type: org.freedesktop.NetworkManager.openvpn
@@ -37535,12 +37653,12 @@ proxy.pac-script: --
-------------------------------------------------------------------------------
<<<
-size: 4403
+size: 4505
location: clients/tests/test-client.py:test_004()/700
cmd: $NMCLI --mode multiline --pretty -f ALL con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 4228 bytes
+stdout: 4330 bytes
>>>
===============================================================================
Szczegóły profilu połączenia (con-vpn-1)
@@ -37589,6 +37707,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: tak
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: nie
ipv4.may-fail: tak
ipv4.dad-timeout: -1 (default)
@@ -37614,6 +37733,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: tak
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
-------------------------------------------------------------------------------
vpn.service-type: org.freedesktop.NetworkManager.openvpn
@@ -41212,12 +41332,12 @@ NEIGHBOR[2].SYSTEM-CAPABILITIES: 40 (wlan-access-point,telephone)
-------------------------------------------------------------------------------
<<<
-size: 5907
+size: 6009
location: clients/tests/test-client.py:test_004()/743
cmd: $NMCLI --mode multiline --pretty --color yes con s con-vpn-1
lang: C
returncode: 0
-stdout: 5737 bytes
+stdout: 5839 bytes
>>>
===============================================================================
Connection profile details (con-vpn-1)
@@ -41266,6 +41386,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: yes
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: no
ipv4.may-fail: yes
ipv4.dad-timeout: -1 (default)
@@ -41291,6 +41412,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: yes
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
-------------------------------------------------------------------------------
vpn.service-type: org.freedesktop.NetworkManager.openvpn
@@ -41333,12 +41455,12 @@ VPN.CFG[3]: key3 = val3
-------------------------------------------------------------------------------
<<<
-size: 5949
+size: 6051
location: clients/tests/test-client.py:test_004()/744
cmd: $NMCLI --mode multiline --pretty --color yes con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 5769 bytes
+stdout: 5871 bytes
>>>
===============================================================================
Szczegóły profilu połączenia (con-vpn-1)
@@ -41387,6 +41509,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: tak
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: nie
ipv4.may-fail: tak
ipv4.dad-timeout: -1 (default)
@@ -41412,6 +41535,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: tak
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
-------------------------------------------------------------------------------
vpn.service-type: org.freedesktop.NetworkManager.openvpn
@@ -41454,12 +41578,12 @@ VPN.CFG[3]: key3 = val3
-------------------------------------------------------------------------------
<<<
-size: 5907
+size: 6009
location: clients/tests/test-client.py:test_004()/745
cmd: $NMCLI --mode multiline --pretty --color yes con s con-vpn-1
lang: C
returncode: 0
-stdout: 5737 bytes
+stdout: 5839 bytes
>>>
===============================================================================
Connection profile details (con-vpn-1)
@@ -41508,6 +41632,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: yes
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: no
ipv4.may-fail: yes
ipv4.dad-timeout: -1 (default)
@@ -41533,6 +41658,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: yes
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
-------------------------------------------------------------------------------
vpn.service-type: org.freedesktop.NetworkManager.openvpn
@@ -41575,12 +41701,12 @@ VPN.CFG[3]: key3 = val3
-------------------------------------------------------------------------------
<<<
-size: 5949
+size: 6051
location: clients/tests/test-client.py:test_004()/746
cmd: $NMCLI --mode multiline --pretty --color yes con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 5769 bytes
+stdout: 5871 bytes
>>>
===============================================================================
Szczegóły profilu połączenia (con-vpn-1)
@@ -41629,6 +41755,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: tak
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: nie
ipv4.may-fail: tak
ipv4.dad-timeout: -1 (default)
@@ -41654,6 +41781,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: tak
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
-------------------------------------------------------------------------------
vpn.service-type: org.freedesktop.NetworkManager.openvpn
@@ -41696,12 +41824,12 @@ VPN.CFG[3]: key3 = val3
-------------------------------------------------------------------------------
<<<
-size: 4390
+size: 4492
location: clients/tests/test-client.py:test_004()/747
cmd: $NMCLI --mode multiline --pretty --color yes -f ALL con s con-vpn-1
lang: C
returncode: 0
-stdout: 4213 bytes
+stdout: 4315 bytes
>>>
===============================================================================
Connection profile details (con-vpn-1)
@@ -41750,6 +41878,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: yes
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: no
ipv4.may-fail: yes
ipv4.dad-timeout: -1 (default)
@@ -41775,6 +41904,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: yes
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
-------------------------------------------------------------------------------
vpn.service-type: org.freedesktop.NetworkManager.openvpn
@@ -41791,12 +41921,12 @@ proxy.pac-script: --
-------------------------------------------------------------------------------
<<<
-size: 4415
+size: 4517
location: clients/tests/test-client.py:test_004()/748
cmd: $NMCLI --mode multiline --pretty --color yes -f ALL con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 4228 bytes
+stdout: 4330 bytes
>>>
===============================================================================
Szczegóły profilu połączenia (con-vpn-1)
@@ -41845,6 +41975,7 @@ ipv4.dhcp-timeout: 0 (default)
ipv4.dhcp-send-hostname: tak
ipv4.dhcp-hostname: --
ipv4.dhcp-fqdn: --
+ipv4.dhcp-hostname-flags: 0x0 (none)
ipv4.never-default: nie
ipv4.may-fail: tak
ipv4.dad-timeout: -1 (default)
@@ -41870,6 +42001,7 @@ ipv6.dhcp-duid: --
ipv6.dhcp-iaid: --
ipv6.dhcp-send-hostname: tak
ipv6.dhcp-hostname: --
+ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.token: --
-------------------------------------------------------------------------------
vpn.service-type: org.freedesktop.NetworkManager.openvpn
@@ -45468,12 +45600,12 @@ NEIGHBOR[2].SYSTEM-CAPABILITIES: 40 (wlan-access-point,telephone)
-------------------------------------------------------------------------------
<<<
-size: 2457
+size: 2515
location: clients/tests/test-client.py:test_004()/791
cmd: $NMCLI --mode multiline --terse con s con-vpn-1
lang: C
returncode: 0
-stdout: 2300 bytes
+stdout: 2358 bytes
>>>
connection.id:con-vpn-1
connection.uuid:UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -45518,6 +45650,7 @@ ipv4.dhcp-timeout:0
ipv4.dhcp-send-hostname:yes
ipv4.dhcp-hostname:
ipv4.dhcp-fqdn:
+ipv4.dhcp-hostname-flags:0x0
ipv4.never-default:no
ipv4.may-fail:yes
ipv4.dad-timeout:-1
@@ -45542,6 +45675,7 @@ ipv6.dhcp-duid:
ipv6.dhcp-iaid:
ipv6.dhcp-send-hostname:yes
ipv6.dhcp-hostname:
+ipv6.dhcp-hostname-flags:0x0
ipv6.token:
vpn.service-type:org.freedesktop.NetworkManager.openvpn
vpn.user-name:
@@ -45576,12 +45710,12 @@ VPN.CFG[2]:key2 = val2
VPN.CFG[3]:key3 = val3
<<<
-size: 2467
+size: 2525
location: clients/tests/test-client.py:test_004()/792
cmd: $NMCLI --mode multiline --terse con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 2300 bytes
+stdout: 2358 bytes
>>>
connection.id:con-vpn-1
connection.uuid:UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -45626,6 +45760,7 @@ ipv4.dhcp-timeout:0
ipv4.dhcp-send-hostname:yes
ipv4.dhcp-hostname:
ipv4.dhcp-fqdn:
+ipv4.dhcp-hostname-flags:0x0
ipv4.never-default:no
ipv4.may-fail:yes
ipv4.dad-timeout:-1
@@ -45650,6 +45785,7 @@ ipv6.dhcp-duid:
ipv6.dhcp-iaid:
ipv6.dhcp-send-hostname:yes
ipv6.dhcp-hostname:
+ipv6.dhcp-hostname-flags:0x0
ipv6.token:
vpn.service-type:org.freedesktop.NetworkManager.openvpn
vpn.user-name:
@@ -45684,12 +45820,12 @@ VPN.CFG[2]:key2 = val2
VPN.CFG[3]:key3 = val3
<<<
-size: 2457
+size: 2515
location: clients/tests/test-client.py:test_004()/793
cmd: $NMCLI --mode multiline --terse con s con-vpn-1
lang: C
returncode: 0
-stdout: 2300 bytes
+stdout: 2358 bytes
>>>
connection.id:con-vpn-1
connection.uuid:UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -45734,6 +45870,7 @@ ipv4.dhcp-timeout:0
ipv4.dhcp-send-hostname:yes
ipv4.dhcp-hostname:
ipv4.dhcp-fqdn:
+ipv4.dhcp-hostname-flags:0x0
ipv4.never-default:no
ipv4.may-fail:yes
ipv4.dad-timeout:-1
@@ -45758,6 +45895,7 @@ ipv6.dhcp-duid:
ipv6.dhcp-iaid:
ipv6.dhcp-send-hostname:yes
ipv6.dhcp-hostname:
+ipv6.dhcp-hostname-flags:0x0
ipv6.token:
vpn.service-type:org.freedesktop.NetworkManager.openvpn
vpn.user-name:
@@ -45792,12 +45930,12 @@ VPN.CFG[2]:key2 = val2
VPN.CFG[3]:key3 = val3
<<<
-size: 2467
+size: 2525
location: clients/tests/test-client.py:test_004()/794
cmd: $NMCLI --mode multiline --terse con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 2300 bytes
+stdout: 2358 bytes
>>>
connection.id:con-vpn-1
connection.uuid:UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -45842,6 +45980,7 @@ ipv4.dhcp-timeout:0
ipv4.dhcp-send-hostname:yes
ipv4.dhcp-hostname:
ipv4.dhcp-fqdn:
+ipv4.dhcp-hostname-flags:0x0
ipv4.never-default:no
ipv4.may-fail:yes
ipv4.dad-timeout:-1
@@ -45866,6 +46005,7 @@ ipv6.dhcp-duid:
ipv6.dhcp-iaid:
ipv6.dhcp-send-hostname:yes
ipv6.dhcp-hostname:
+ipv6.dhcp-hostname-flags:0x0
ipv6.token:
vpn.service-type:org.freedesktop.NetworkManager.openvpn
vpn.user-name:
@@ -45900,12 +46040,12 @@ VPN.CFG[2]:key2 = val2
VPN.CFG[3]:key3 = val3
<<<
-size: 1887
+size: 1945
location: clients/tests/test-client.py:test_004()/795
cmd: $NMCLI --mode multiline --terse -f ALL con s con-vpn-1
lang: C
returncode: 0
-stdout: 1723 bytes
+stdout: 1781 bytes
>>>
connection.id:con-vpn-1
connection.uuid:UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -45950,6 +46090,7 @@ ipv4.dhcp-timeout:0
ipv4.dhcp-send-hostname:yes
ipv4.dhcp-hostname:
ipv4.dhcp-fqdn:
+ipv4.dhcp-hostname-flags:0x0
ipv4.never-default:no
ipv4.may-fail:yes
ipv4.dad-timeout:-1
@@ -45974,6 +46115,7 @@ ipv6.dhcp-duid:
ipv6.dhcp-iaid:
ipv6.dhcp-send-hostname:yes
ipv6.dhcp-hostname:
+ipv6.dhcp-hostname-flags:0x0
ipv6.token:
vpn.service-type:org.freedesktop.NetworkManager.openvpn
vpn.user-name:
@@ -45987,12 +46129,12 @@ proxy.pac-url:
proxy.pac-script:
<<<
-size: 1897
+size: 1955
location: clients/tests/test-client.py:test_004()/796
cmd: $NMCLI --mode multiline --terse -f ALL con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 1723 bytes
+stdout: 1781 bytes
>>>
connection.id:con-vpn-1
connection.uuid:UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -46037,6 +46179,7 @@ ipv4.dhcp-timeout:0
ipv4.dhcp-send-hostname:yes
ipv4.dhcp-hostname:
ipv4.dhcp-fqdn:
+ipv4.dhcp-hostname-flags:0x0
ipv4.never-default:no
ipv4.may-fail:yes
ipv4.dad-timeout:-1
@@ -46061,6 +46204,7 @@ ipv6.dhcp-duid:
ipv6.dhcp-iaid:
ipv6.dhcp-send-hostname:yes
ipv6.dhcp-hostname:
+ipv6.dhcp-hostname-flags:0x0
ipv6.token:
vpn.service-type:org.freedesktop.NetworkManager.openvpn
vpn.user-name:
@@ -49066,12 +49210,12 @@ NEIGHBOR[2].SYSTEM-DESCRIPTION:Test system #3
NEIGHBOR[2].SYSTEM-CAPABILITIES:40 (wlan-access-point,telephone)
<<<
-size: 2469
+size: 2527
location: clients/tests/test-client.py:test_004()/839
cmd: $NMCLI --mode multiline --terse --color yes con s con-vpn-1
lang: C
returncode: 0
-stdout: 2300 bytes
+stdout: 2358 bytes
>>>
connection.id:con-vpn-1
connection.uuid:UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -49116,6 +49260,7 @@ ipv4.dhcp-timeout:0
ipv4.dhcp-send-hostname:yes
ipv4.dhcp-hostname:
ipv4.dhcp-fqdn:
+ipv4.dhcp-hostname-flags:0x0
ipv4.never-default:no
ipv4.may-fail:yes
ipv4.dad-timeout:-1
@@ -49140,6 +49285,7 @@ ipv6.dhcp-duid:
ipv6.dhcp-iaid:
ipv6.dhcp-send-hostname:yes
ipv6.dhcp-hostname:
+ipv6.dhcp-hostname-flags:0x0
ipv6.token:
vpn.service-type:org.freedesktop.NetworkManager.openvpn
vpn.user-name:
@@ -49174,12 +49320,12 @@ VPN.CFG[2]:key2 = val2
VPN.CFG[3]:key3 = val3
<<<
-size: 2479
+size: 2537
location: clients/tests/test-client.py:test_004()/840
cmd: $NMCLI --mode multiline --terse --color yes con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 2300 bytes
+stdout: 2358 bytes
>>>
connection.id:con-vpn-1
connection.uuid:UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -49224,6 +49370,7 @@ ipv4.dhcp-timeout:0
ipv4.dhcp-send-hostname:yes
ipv4.dhcp-hostname:
ipv4.dhcp-fqdn:
+ipv4.dhcp-hostname-flags:0x0
ipv4.never-default:no
ipv4.may-fail:yes
ipv4.dad-timeout:-1
@@ -49248,6 +49395,7 @@ ipv6.dhcp-duid:
ipv6.dhcp-iaid:
ipv6.dhcp-send-hostname:yes
ipv6.dhcp-hostname:
+ipv6.dhcp-hostname-flags:0x0
ipv6.token:
vpn.service-type:org.freedesktop.NetworkManager.openvpn
vpn.user-name:
@@ -49282,12 +49430,12 @@ VPN.CFG[2]:key2 = val2
VPN.CFG[3]:key3 = val3
<<<
-size: 2469
+size: 2527
location: clients/tests/test-client.py:test_004()/841
cmd: $NMCLI --mode multiline --terse --color yes con s con-vpn-1
lang: C
returncode: 0
-stdout: 2300 bytes
+stdout: 2358 bytes
>>>
connection.id:con-vpn-1
connection.uuid:UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -49332,6 +49480,7 @@ ipv4.dhcp-timeout:0
ipv4.dhcp-send-hostname:yes
ipv4.dhcp-hostname:
ipv4.dhcp-fqdn:
+ipv4.dhcp-hostname-flags:0x0
ipv4.never-default:no
ipv4.may-fail:yes
ipv4.dad-timeout:-1
@@ -49356,6 +49505,7 @@ ipv6.dhcp-duid:
ipv6.dhcp-iaid:
ipv6.dhcp-send-hostname:yes
ipv6.dhcp-hostname:
+ipv6.dhcp-hostname-flags:0x0
ipv6.token:
vpn.service-type:org.freedesktop.NetworkManager.openvpn
vpn.user-name:
@@ -49390,12 +49540,12 @@ VPN.CFG[2]:key2 = val2
VPN.CFG[3]:key3 = val3
<<<
-size: 2479
+size: 2537
location: clients/tests/test-client.py:test_004()/842
cmd: $NMCLI --mode multiline --terse --color yes con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 2300 bytes
+stdout: 2358 bytes
>>>
connection.id:con-vpn-1
connection.uuid:UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -49440,6 +49590,7 @@ ipv4.dhcp-timeout:0
ipv4.dhcp-send-hostname:yes
ipv4.dhcp-hostname:
ipv4.dhcp-fqdn:
+ipv4.dhcp-hostname-flags:0x0
ipv4.never-default:no
ipv4.may-fail:yes
ipv4.dad-timeout:-1
@@ -49464,6 +49615,7 @@ ipv6.dhcp-duid:
ipv6.dhcp-iaid:
ipv6.dhcp-send-hostname:yes
ipv6.dhcp-hostname:
+ipv6.dhcp-hostname-flags:0x0
ipv6.token:
vpn.service-type:org.freedesktop.NetworkManager.openvpn
vpn.user-name:
@@ -49498,12 +49650,12 @@ VPN.CFG[2]:key2 = val2
VPN.CFG[3]:key3 = val3
<<<
-size: 1899
+size: 1957
location: clients/tests/test-client.py:test_004()/843
cmd: $NMCLI --mode multiline --terse --color yes -f ALL con s con-vpn-1
lang: C
returncode: 0
-stdout: 1723 bytes
+stdout: 1781 bytes
>>>
connection.id:con-vpn-1
connection.uuid:UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -49548,6 +49700,7 @@ ipv4.dhcp-timeout:0
ipv4.dhcp-send-hostname:yes
ipv4.dhcp-hostname:
ipv4.dhcp-fqdn:
+ipv4.dhcp-hostname-flags:0x0
ipv4.never-default:no
ipv4.may-fail:yes
ipv4.dad-timeout:-1
@@ -49572,6 +49725,7 @@ ipv6.dhcp-duid:
ipv6.dhcp-iaid:
ipv6.dhcp-send-hostname:yes
ipv6.dhcp-hostname:
+ipv6.dhcp-hostname-flags:0x0
ipv6.token:
vpn.service-type:org.freedesktop.NetworkManager.openvpn
vpn.user-name:
@@ -49585,12 +49739,12 @@ proxy.pac-url:
proxy.pac-script:
<<<
-size: 1909
+size: 1967
location: clients/tests/test-client.py:test_004()/844
cmd: $NMCLI --mode multiline --terse --color yes -f ALL con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 1723 bytes
+stdout: 1781 bytes
>>>
connection.id:con-vpn-1
connection.uuid:UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -49635,6 +49789,7 @@ ipv4.dhcp-timeout:0
ipv4.dhcp-send-hostname:yes
ipv4.dhcp-hostname:
ipv4.dhcp-fqdn:
+ipv4.dhcp-hostname-flags:0x0
ipv4.never-default:no
ipv4.may-fail:yes
ipv4.dad-timeout:-1
@@ -49659,6 +49814,7 @@ ipv6.dhcp-duid:
ipv6.dhcp-iaid:
ipv6.dhcp-send-hostname:yes
ipv6.dhcp-hostname:
+ipv6.dhcp-hostname-flags:0x0
ipv6.token:
vpn.service-type:org.freedesktop.NetworkManager.openvpn
vpn.user-name:
diff --git a/libnm-core/nm-core-internal.h b/libnm-core/nm-core-internal.h
index 06456e6577..b7222df20a 100644
--- a/libnm-core/nm-core-internal.h
+++ b/libnm-core/nm-core-internal.h
@@ -135,6 +135,21 @@ const char *nm_bluetooth_capability_to_string (NMBluetoothCapabilities capabilit
/*****************************************************************************/
+#define NM_DHCP_HOSTNAME_FLAGS_FQDN_MASK \
+ ( NM_DHCP_HOSTNAME_FLAG_FQDN_ENCODED \
+ | NM_DHCP_HOSTNAME_FLAG_FQDN_SERV_UPDATE \
+ | NM_DHCP_HOSTNAME_FLAG_FQDN_NO_UPDATE \
+ | NM_DHCP_HOSTNAME_FLAG_FQDN_CLEAR_FLAGS)
+
+#define NM_DHCP_HOSTNAME_FLAGS_FQDN_DEFAULT_IP4 \
+ ( NM_DHCP_HOSTNAME_FLAG_FQDN_ENCODED \
+ | NM_DHCP_HOSTNAME_FLAG_FQDN_SERV_UPDATE)
+
+#define NM_DHCP_HOSTNAME_FLAGS_FQDN_DEFAULT_IP6 \
+ NM_DHCP_HOSTNAME_FLAG_FQDN_SERV_UPDATE
+
+/*****************************************************************************/
+
typedef enum { /*< skip >*/
NM_SETTING_PARSE_FLAGS_NONE = 0,
NM_SETTING_PARSE_FLAGS_STRICT = 1LL << 0,
@@ -874,6 +889,10 @@ const char *nm_utils_wifi_freq_to_band (guint32 freq);
gboolean _nm_utils_iaid_verify (const char *str, gint64 *out_value);
+gboolean _nm_utils_validate_dhcp_hostname_flags (NMDhcpHostnameFlags flags,
+ int addr_family,
+ GError **error);
+
/*****************************************************************************/
gboolean _nmtst_variant_attribute_spec_assert_sorted (const NMVariantAttributeSpec *const*array,
@@ -882,5 +901,4 @@ gboolean _nmtst_variant_attribute_spec_assert_sorted (const NMVariantAttributeSp
const NMVariantAttributeSpec *_nm_variant_attribute_spec_find_binary_search (const NMVariantAttributeSpec *const*array,
gsize len,
const char *name);
-
#endif
diff --git a/libnm-core/nm-setting-ip-config.c b/libnm-core/nm-setting-ip-config.c
index cd833e09fc..b9bab79a89 100644
--- a/libnm-core/nm-setting-ip-config.c
+++ b/libnm-core/nm-setting-ip-config.c
@@ -3575,6 +3575,7 @@ NM_GOBJECT_PROPERTIES_DEFINE (NMSettingIPConfig,
PROP_IGNORE_AUTO_ROUTES,
PROP_IGNORE_AUTO_DNS,
PROP_DHCP_HOSTNAME,
+ PROP_DHCP_HOSTNAME_FLAGS,
PROP_DHCP_SEND_HOSTNAME,
PROP_NEVER_DEFAULT,
PROP_MAY_FAIL,
@@ -3604,6 +3605,7 @@ typedef struct {
int dad_timeout;
int dhcp_timeout;
char *dhcp_iaid;
+ guint dhcp_hostname_flags;
} NMSettingIPConfigPrivate;
G_DEFINE_ABSTRACT_TYPE (NMSettingIPConfig, nm_setting_ip_config, NM_TYPE_SETTING)
@@ -4839,6 +4841,25 @@ nm_setting_ip_config_get_dad_timeout (NMSettingIPConfig *setting)
}
/**
+ * nm_setting_ip_config_get_dhcp_hostname_flags:
+ * @setting: the #NMSettingIPConfig
+ *
+ * Returns the value contained in the #NMSettingIPConfig:dhcp-hostname-flags
+ * property.
+ *
+ * Returns: flags for the DHCP hostname and FQDN
+ *
+ * Since: 1.22
+ */
+NMDhcpHostnameFlags
+nm_setting_ip_config_get_dhcp_hostname_flags (NMSettingIPConfig *setting)
+{
+ g_return_val_if_fail (NM_IS_SETTING_IP_CONFIG (setting), NM_DHCP_HOSTNAME_FLAG_NONE);
+
+ return NM_SETTING_IP_CONFIG_GET_PRIVATE (setting)->dhcp_hostname_flags;
+}
+
+/**
* nm_setting_ip_config_get_dhcp_timeout:
* @setting: the #NMSettingIPConfig
*
@@ -5050,6 +5071,30 @@ verify (NMSetting *setting, NMConnection *connection, GError **error)
return FALSE;
}
+ /* Validate DHCP hostname flags */
+ if ( priv->dhcp_hostname_flags != NM_DHCP_HOSTNAME_FLAG_NONE
+ && !priv->dhcp_send_hostname) {
+ g_set_error (error,
+ NM_CONNECTION_ERROR,
+ NM_CONNECTION_ERROR_INVALID_PROPERTY,
+ _("the property cannot be set when '%s' is disabled"),
+ NM_SETTING_IP_CONFIG_DHCP_SEND_HOSTNAME);
+ g_prefix_error (error, "%s.%s: ",
+ nm_setting_get_name (setting),
+ NM_SETTING_IP_CONFIG_DHCP_HOSTNAME_FLAGS);
+ return FALSE;
+ }
+
+ if (!_nm_utils_validate_dhcp_hostname_flags (priv->dhcp_hostname_flags,
+ NM_SETTING_IP_CONFIG_GET_FAMILY (setting),
+ error)) {
+ g_prefix_error (error, "%s.%s: ",
+ nm_setting_get_name (setting),
+ NM_SETTING_IP_CONFIG_DHCP_HOSTNAME_FLAGS);
+ return FALSE;
+ }
+
+ /* Normalizable errors */
if (priv->gateway && priv->never_default) {
g_set_error (error,
NM_CONNECTION_ERROR,
@@ -5319,6 +5364,9 @@ get_property (GObject *object, guint prop_id,
case PROP_DHCP_IAID:
g_value_set_string (value, nm_setting_ip_config_get_dhcp_iaid (setting));
break;
+ case PROP_DHCP_HOSTNAME_FLAGS:
+ g_value_set_uint (value, nm_setting_ip_config_get_dhcp_hostname_flags (setting));
+ break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
break;
@@ -5422,6 +5470,9 @@ set_property (GObject *object, guint prop_id,
case PROP_DHCP_IAID:
priv->dhcp_iaid = g_value_dup_string (value);
break;
+ case PROP_DHCP_HOSTNAME_FLAGS:
+ priv->dhcp_hostname_flags = g_value_get_uint (value);
+ break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
break;
@@ -5838,5 +5889,37 @@ nm_setting_ip_config_class_init (NMSettingIPConfigClass *klass)
G_PARAM_READWRITE |
G_PARAM_STATIC_STRINGS);
+ /**
+ * NMSettingIPConfig:dhcp-hostname-flags:
+ *
+ * Flags for the DHCP hostname and FQDN.
+ *
+ * Currently this property only includes flags to control the FQDN flags
+ * set in the DHCP FQDN option. Supported FQDN flags are
+ * %NM_DHCP_HOSTNAME_FLAG_FQDN_SERV_UPDATE,
+ * %NM_DHCP_HOSTNAME_FLAG_FQDN_ENCODED and
+ * %NM_DHCP_HOSTNAME_FLAG_FQDN_NO_UPDATE. When no FQDN flag is set and
+ * %NM_DHCP_HOSTNAME_FLAG_FQDN_CLEAR_FLAGS is set, the DHCP FQDN option will
+ * contain no flag. Otherwise, if no FQDN flag is set and
+ * %NM_DHCP_HOSTNAME_FLAG_FQDN_CLEAR_FLAGS is not set, the standard FQDN flags
+ * are set in the request:
+ * %NM_DHCP_HOSTNAME_FLAG_FQDN_SERV_UPDATE,
+ * %NM_DHCP_HOSTNAME_FLAG_FQDN_ENCODED for IPv4 and
+ * %NM_DHCP_HOSTNAME_FLAG_FQDN_SERV_UPDATE for IPv6.
+ *
+ * When this property is set to the default value %NM_DHCP_HOSTNAME_FLAG_NONE,
+ * a global default is looked up in NetworkManager configuration. If that value
+ * is unset or also %NM_DHCP_HOSTNAME_FLAG_NONE, then the standard FQDN flags
+ * described above are sent in the DHCP requests.
+ *
+ * Since: 1.22
+ */
+ obj_properties[PROP_DHCP_HOSTNAME_FLAGS] =
+ g_param_spec_uint (NM_SETTING_IP_CONFIG_DHCP_HOSTNAME_FLAGS, "", "",
+ 0, G_MAXUINT32,
+ NM_DHCP_HOSTNAME_FLAG_NONE,
+ G_PARAM_READWRITE |
+ G_PARAM_STATIC_STRINGS);
+
g_object_class_install_properties (object_class, _PROPERTY_ENUMS_LAST, obj_properties);
}
diff --git a/libnm-core/nm-setting-ip-config.h b/libnm-core/nm-setting-ip-config.h
index 07581976db..a485179669 100644
--- a/libnm-core/nm-setting-ip-config.h
+++ b/libnm-core/nm-setting-ip-config.h
@@ -307,25 +307,26 @@ char *nm_ip_routing_rule_to_string (const NMIPRoutingRule *self,
#define NM_SETTING_IP_CONFIG_DAD_TIMEOUT_MAX 30000
-#define NM_SETTING_IP_CONFIG_METHOD "method"
-#define NM_SETTING_IP_CONFIG_DNS "dns"
-#define NM_SETTING_IP_CONFIG_DNS_SEARCH "dns-search"
-#define NM_SETTING_IP_CONFIG_DNS_OPTIONS "dns-options"
-#define NM_SETTING_IP_CONFIG_DNS_PRIORITY "dns-priority"
-#define NM_SETTING_IP_CONFIG_ADDRESSES "addresses"
-#define NM_SETTING_IP_CONFIG_GATEWAY "gateway"
-#define NM_SETTING_IP_CONFIG_ROUTES "routes"
-#define NM_SETTING_IP_CONFIG_ROUTE_METRIC "route-metric"
-#define NM_SETTING_IP_CONFIG_ROUTE_TABLE "route-table"
-#define NM_SETTING_IP_CONFIG_IGNORE_AUTO_ROUTES "ignore-auto-routes"
-#define NM_SETTING_IP_CONFIG_IGNORE_AUTO_DNS "ignore-auto-dns"
-#define NM_SETTING_IP_CONFIG_DHCP_HOSTNAME "dhcp-hostname"
-#define NM_SETTING_IP_CONFIG_DHCP_SEND_HOSTNAME "dhcp-send-hostname"
-#define NM_SETTING_IP_CONFIG_NEVER_DEFAULT "never-default"
-#define NM_SETTING_IP_CONFIG_MAY_FAIL "may-fail"
-#define NM_SETTING_IP_CONFIG_DAD_TIMEOUT "dad-timeout"
-#define NM_SETTING_IP_CONFIG_DHCP_TIMEOUT "dhcp-timeout"
-#define NM_SETTING_IP_CONFIG_DHCP_IAID "dhcp-iaid"
+#define NM_SETTING_IP_CONFIG_METHOD "method"
+#define NM_SETTING_IP_CONFIG_DNS "dns"
+#define NM_SETTING_IP_CONFIG_DNS_SEARCH "dns-search"
+#define NM_SETTING_IP_CONFIG_DNS_OPTIONS "dns-options"
+#define NM_SETTING_IP_CONFIG_DNS_PRIORITY "dns-priority"
+#define NM_SETTING_IP_CONFIG_ADDRESSES "addresses"
+#define NM_SETTING_IP_CONFIG_GATEWAY "gateway"
+#define NM_SETTING_IP_CONFIG_ROUTES "routes"
+#define NM_SETTING_IP_CONFIG_ROUTE_METRIC "route-metric"
+#define NM_SETTING_IP_CONFIG_ROUTE_TABLE "route-table"
+#define NM_SETTING_IP_CONFIG_IGNORE_AUTO_ROUTES "ignore-auto-routes"
+#define NM_SETTING_IP_CONFIG_IGNORE_AUTO_DNS "ignore-auto-dns"
+#define NM_SETTING_IP_CONFIG_DHCP_HOSTNAME "dhcp-hostname"
+#define NM_SETTING_IP_CONFIG_DHCP_SEND_HOSTNAME "dhcp-send-hostname"
+#define NM_SETTING_IP_CONFIG_DHCP_HOSTNAME_FLAGS "dhcp-hostname-flags"
+#define NM_SETTING_IP_CONFIG_NEVER_DEFAULT "never-default"
+#define NM_SETTING_IP_CONFIG_MAY_FAIL "may-fail"
+#define NM_SETTING_IP_CONFIG_DAD_TIMEOUT "dad-timeout"
+#define NM_SETTING_IP_CONFIG_DHCP_TIMEOUT "dhcp-timeout"
+#define NM_SETTING_IP_CONFIG_DHCP_IAID "dhcp-iaid"
/* these are not real GObject properties. */
#define NM_SETTING_IP_CONFIG_ROUTING_RULES "routing-rules"
@@ -360,6 +361,45 @@ typedef struct {
gpointer padding[8];
} NMSettingIPConfigClass;
+/**
+ * NMDhcpHostnameFlags:
+ * @NM_DHCP_HOSTNAME_FLAG_NONE: no flag set. The default value from
+ * Networkmanager global configuration is used. If such value is unset
+ * or still zero, the DHCP request will use standard FQDN flags, i.e.
+ * %NM_DHCP_HOSTNAME_FLAG_FQDN_SERV_UPDATE and
+ * %NM_DHCP_HOSTNAME_FLAG_FQDN_ENCODED for IPv4 and
+ * %NM_DHCP_HOSTNAME_FLAG_FQDN_SERV_UPDATE for IPv6.
+ * @NM_DHCP_HOSTNAME_FLAG_FQDN_SERV_UPDATE: whether the server should
+ * do the A RR (FQDN-to-address) DNS updates.
+ * @NM_DHCP_HOSTNAME_FLAG_FQDN_ENCODED: if set, the FQDN is encoded
+ * using canonical wire format. Otherwise it uses the deprecated
+ * ASCII encoding. This flag is allowed only for DHCPv4.
+ * @NM_DHCP_HOSTNAME_FLAG_FQDN_NO_UPDATE: when not set, request the
+ * server to perform updates (the PTR RR and possibly the A RR
+ * based on the %NM_DHCP_HOSTNAME_FLAG_FQDN_SERV_UPDATE flag). If
+ * this is set, the %NM_DHCP_HOSTNAME_FLAG_FQDN_SERV_UPDATE flag
+ * should be cleared.
+ * @NM_DHCP_HOSTNAME_FLAG_FQDN_CLEAR_FLAGS: when set, no FQDN flags are
+ * sent in the DHCP FQDN option. When cleared and all other FQDN
+ * flags are zero, standard FQDN flags are sent. This flag is
+ * incompatible with any other FQDN flag.
+ * *
+ * #NMDhcpHostnameFlags describe flags related to the DHCP hostname and
+ * FQDN.
+ *
+ * Since: 1.22
+ */
+typedef enum { /*< flags >*/
+ NM_DHCP_HOSTNAME_FLAG_NONE = 0x0,
+
+ NM_DHCP_HOSTNAME_FLAG_FQDN_SERV_UPDATE = 0x1,
+ NM_DHCP_HOSTNAME_FLAG_FQDN_ENCODED = 0x2,
+ NM_DHCP_HOSTNAME_FLAG_FQDN_NO_UPDATE = 0x4,
+
+ NM_DHCP_HOSTNAME_FLAG_FQDN_CLEAR_FLAGS = 0x8,
+
+} NMDhcpHostnameFlags;
+
GType nm_setting_ip_config_get_type (void);
const char *nm_setting_ip_config_get_method (NMSettingIPConfig *setting);
@@ -461,6 +501,9 @@ int nm_setting_ip_config_get_dhcp_timeout (NMSettingIPConfig
NM_AVAILABLE_IN_1_22
const char *nm_setting_ip_config_get_dhcp_iaid (NMSettingIPConfig *setting);
+NM_AVAILABLE_IN_1_22
+NMDhcpHostnameFlags nm_setting_ip_config_get_dhcp_hostname_flags (NMSettingIPConfig *setting);
+
G_END_DECLS
#endif /* NM_SETTING_IP_CONFIG_H */
diff --git a/libnm-core/nm-setting-ip4-config.c b/libnm-core/nm-setting-ip4-config.c
index c58ce65f9d..31c822202b 100644
--- a/libnm-core/nm-setting-ip4-config.c
+++ b/libnm-core/nm-setting-ip4-config.c
@@ -194,6 +194,18 @@ verify (NMSetting *setting, NMConnection *connection, GError **error)
return FALSE;
}
+ if ( NM_FLAGS_ANY (nm_setting_ip_config_get_dhcp_hostname_flags (s_ip),
+ NM_DHCP_HOSTNAME_FLAGS_FQDN_MASK)
+ && !priv->dhcp_fqdn) {
+ /* Currently we send a FQDN option only when ipv4.dhcp-fqdn is set */
+ g_set_error_literal (error,
+ NM_CONNECTION_ERROR,
+ NM_CONNECTION_ERROR_INVALID_PROPERTY,
+ _("FQDN flags requires a FQDN set"));
+ g_prefix_error (error, "%s.%s: ", NM_SETTING_IP4_CONFIG_SETTING_NAME, NM_SETTING_IP_CONFIG_DHCP_HOSTNAME_FLAGS);
+ return FALSE;
+ }
+
/* Failures from here on are NORMALIZABLE_ERROR... */
if ( nm_streq (method, NM_SETTING_IP4_CONFIG_METHOD_SHARED)
@@ -763,6 +775,13 @@ nm_setting_ip4_config_class_init (NMSettingIP4ConfigClass *klass)
* ---end---
*/
+ /* ---ifcfg-rh---
+ * property: dhcp-hostname-flags
+ * variable: DHCP_HOSTNAME_FLAGS
+ * description: flags for the DHCP hostname and FQDN properties
+ * example: DHCP_HOSTNAME_FLAGS=5
+ */
+
/**
* NMSettingIP4Config:dhcp-fqdn:
*
diff --git a/libnm-core/nm-setting-ip6-config.c b/libnm-core/nm-setting-ip6-config.c
index 7cc9aaf9bb..4cbda8304b 100644
--- a/libnm-core/nm-setting-ip6-config.c
+++ b/libnm-core/nm-setting-ip6-config.c
@@ -658,6 +658,13 @@ nm_setting_ip6_config_class_init (NMSettingIP6ConfigClass *klass)
*/
/* ---ifcfg-rh---
+ * property: dhcp-hostname-flags
+ * variable: DHCPV6_HOSTNAME_FLAGS
+ * description: flags for the DHCP hostname property
+ * example: DHCPV6_HOSTNAME_FLAGS=5
+ */
+
+ /* ---ifcfg-rh---
* property: never-default
* variable: IPV6_DEFROUTE(+), (and IPV6_DEFAULTGW, IPV6_DEFAULTDEV in /etc/sysconfig/network)
* default: IPV6_DEFROUTE=yes (when no variable specified)
diff --git a/libnm-core/nm-utils.c b/libnm-core/nm-utils.c
index 347ef84093..4659734b6b 100644
--- a/libnm-core/nm-utils.c
+++ b/libnm-core/nm-utils.c
@@ -6185,3 +6185,56 @@ _nm_utils_iaid_verify (const char *str, gint64 *out_value)
return FALSE;
}
+
+gboolean
+_nm_utils_validate_dhcp_hostname_flags (NMDhcpHostnameFlags flags,
+ int addr_family,
+ GError **error)
+{
+ NMDhcpHostnameFlags unknown;
+
+ unknown = flags;
+ unknown &= ~( NM_DHCP_HOSTNAME_FLAG_FQDN_ENCODED
+ | NM_DHCP_HOSTNAME_FLAG_FQDN_SERV_UPDATE
+ | NM_DHCP_HOSTNAME_FLAG_FQDN_NO_UPDATE
+ | NM_DHCP_HOSTNAME_FLAG_FQDN_CLEAR_FLAGS);
+ if (unknown) {
+ g_set_error (error,
+ NM_CONNECTION_ERROR,
+ NM_CONNECTION_ERROR_INVALID_PROPERTY,
+ _("unknown flags 0x%x"), (guint) unknown);
+ return FALSE;
+ }
+
+ if (NM_FLAGS_ALL (flags,
+ NM_DHCP_HOSTNAME_FLAG_FQDN_NO_UPDATE
+ | NM_DHCP_HOSTNAME_FLAG_FQDN_SERV_UPDATE)) {
+ g_set_error_literal (error,
+ NM_CONNECTION_ERROR,
+ NM_CONNECTION_ERROR_INVALID_PROPERTY,
+ _("'fqdn-no-update' and 'fqdn-serv-update' flags cannot be set at the same time"));
+ return FALSE;
+ }
+
+ if ( NM_FLAGS_HAS (flags, NM_DHCP_HOSTNAME_FLAG_FQDN_CLEAR_FLAGS)
+ && NM_FLAGS_ANY (flags, NM_DHCP_HOSTNAME_FLAG_FQDN_SERV_UPDATE
+ | NM_DHCP_HOSTNAME_FLAG_FQDN_ENCODED
+ | NM_DHCP_HOSTNAME_FLAG_FQDN_NO_UPDATE)) {
+ g_set_error_literal (error,
+ NM_CONNECTION_ERROR,
+ NM_CONNECTION_ERROR_INVALID_PROPERTY,
+ _("'fqdn-clear-flags' flag is incompatible with other FQDN flags"));
+ return FALSE;
+ }
+
+ if ( addr_family == AF_INET6
+ && (flags & NM_DHCP_HOSTNAME_FLAG_FQDN_ENCODED)) {
+ g_set_error_literal (error,
+ NM_CONNECTION_ERROR,
+ NM_CONNECTION_ERROR_INVALID_PROPERTY,
+ _("DHCPv6 does not support the E (encoded) FQDN flag"));
+ return FALSE;
+ }
+
+ return TRUE;
+}
diff --git a/libnm-core/tests/test-general.c b/libnm-core/tests/test-general.c
index cbc1a2f2ff..c1b7b84a16 100644
--- a/libnm-core/tests/test-general.c
+++ b/libnm-core/tests/test-general.c
@@ -3051,6 +3051,7 @@ test_connection_diff_a_only (void)
{ NM_SETTING_IP_CONFIG_DHCP_TIMEOUT, NM_SETTING_DIFF_RESULT_IN_A },
{ NM_SETTING_IP_CONFIG_DHCP_SEND_HOSTNAME, NM_SETTING_DIFF_RESULT_IN_A },
{ NM_SETTING_IP_CONFIG_DHCP_HOSTNAME, NM_SETTING_DIFF_RESULT_IN_A },
+ { NM_SETTING_IP_CONFIG_DHCP_HOSTNAME_FLAGS,NM_SETTING_DIFF_RESULT_IN_A },
{ NM_SETTING_IP4_CONFIG_DHCP_FQDN, NM_SETTING_DIFF_RESULT_IN_A },
{ NM_SETTING_IP_CONFIG_NEVER_DEFAULT, NM_SETTING_DIFF_RESULT_IN_A },
{ NM_SETTING_IP_CONFIG_MAY_FAIL, NM_SETTING_DIFF_RESULT_IN_A },
diff --git a/libnm/libnm.ver b/libnm/libnm.ver
index 5d37c5e71c..56a8e2cb43 100644
--- a/libnm/libnm.ver
+++ b/libnm/libnm.ver
@@ -1645,6 +1645,8 @@ global:
nm_client_reload_finish;
nm_device_get_interface_flags;
nm_device_interface_flags_get_type;
+ nm_dhcp_hostname_flags_get_type;
nm_manager_reload_flags_get_type;
nm_setting_gsm_get_auto_config;
+ nm_setting_ip_config_get_dhcp_hostname_flags;
} libnm_1_20_0;
diff --git a/man/NetworkManager.conf.xml b/man/NetworkManager.conf.xml
index 1cbbc53dba..cdf55ed62e 100644
--- a/man/NetworkManager.conf.xml
+++ b/man/NetworkManager.conf.xml
@@ -717,6 +717,10 @@ ipv6.ip6-privacy=0
<listitem><para>If left unspecified, it defaults to "ifname".</para></listitem>
</varlistentry>
<varlistentry>
+ <term><varname>ipv4.dhcp-hostname-flags</varname></term>
+ <listitem><para>If left unspecified, the value 3 (fqdn-encoded,fqdn-serv-update) is used.</para></listitem>
+ </varlistentry>
+ <varlistentry>
<term><varname>ipv4.dhcp-timeout</varname></term>
<listitem><para>If left unspecified, the default value for
the interface type is used.</para></listitem>
@@ -745,6 +749,10 @@ ipv6.ip6-privacy=0
<listitem><para>If left unspecified, it defaults to "ifname".</para></listitem>
</varlistentry>
<varlistentry>
+ <term><varname>ipv6.dhcp-hostname-flags</varname></term>
+ <listitem><para>If left unspecified, the value 1 (fqdn-serv-update) is used.</para></listitem>
+ </varlistentry>
+ <varlistentry>
<term><varname>ipv6.dhcp-timeout</varname></term>
<listitem><para>If left unspecified, the default value for
the interface type is used.</para></listitem>
diff --git a/shared/nm-libnm-core-intern/nm-common-macros.h b/shared/nm-libnm-core-intern/nm-common-macros.h
index 9c5ed9796f..5f011efd64 100644
--- a/shared/nm-libnm-core-intern/nm-common-macros.h
+++ b/shared/nm-libnm-core-intern/nm-common-macros.h
@@ -55,6 +55,5 @@ NM_IAID_IS_SPECIAL (const char *str)
NM_IAID_IFNAME,
NM_IAID_STABLE);
}
-/*****************************************************************************/
#endif /* __NM_COMMON_MACROS_H__ */
diff --git a/src/devices/nm-device.c b/src/devices/nm-device.c
index d3341053f2..ba7cb010b4 100644
--- a/src/devices/nm-device.c
+++ b/src/devices/nm-device.c
@@ -8092,6 +8092,53 @@ out_good:
return iaid;
}
+static NMDhcpHostnameFlags
+get_dhcp_hostname_flags (NMDevice *self, int addr_family)
+{
+ NMConnection *connection;
+ NMSettingIPConfig *s_ip;
+ NMDhcpHostnameFlags flags;
+ gs_free_error GError *error = NULL;
+
+ g_return_val_if_fail (NM_IS_DEVICE (self), NM_DHCP_HOSTNAME_FLAG_NONE);
+
+ connection = nm_device_get_applied_connection (self);
+ s_ip = nm_connection_get_setting_ip_config (connection, addr_family);
+ g_return_val_if_fail (s_ip, NM_DHCP_HOSTNAME_FLAG_NONE);
+
+ if (!nm_setting_ip_config_get_dhcp_send_hostname (s_ip))
+ return NM_DHCP_HOSTNAME_FLAG_NONE;
+
+ flags = nm_setting_ip_config_get_dhcp_hostname_flags (s_ip);
+ if (flags != NM_DHCP_HOSTNAME_FLAG_NONE)
+ return flags;
+
+ flags = nm_config_data_get_connection_default_int64 (NM_CONFIG_GET_DATA,
+ addr_family == AF_INET
+ ? NM_CON_DEFAULT ("ipv4.dhcp-hostname-flags")
+ : NM_CON_DEFAULT ("ipv6.dhcp-hostname-flags"),
+ self,
+ 0, NM_DHCP_HOSTNAME_FLAG_FQDN_CLEAR_FLAGS,
+ 0);
+
+ if (!_nm_utils_validate_dhcp_hostname_flags (flags, addr_family, &error)) {
+ _LOGW (LOGD_DEVICE, "invalid global default value 0x%x for ipv%d.%s: %s",
+ (guint) flags,
+ addr_family == AF_INET ? 4 : 6,
+ NM_SETTING_IP_CONFIG_DHCP_HOSTNAME_FLAGS,
+ error->message);
+ flags = NM_DHCP_HOSTNAME_FLAG_NONE;
+ }
+
+ if (flags != NM_DHCP_HOSTNAME_FLAG_NONE)
+ return flags;
+
+ if (addr_family == AF_INET)
+ return NM_DHCP_HOSTNAME_FLAGS_FQDN_DEFAULT_IP4;
+ else
+ return NM_DHCP_HOSTNAME_FLAGS_FQDN_DEFAULT_IP6;
+}
+
static GBytes *
dhcp4_get_client_id (NMDevice *self,
NMConnection *connection,
@@ -8265,12 +8312,12 @@ dhcp4_start (NMDevice *self)
nm_setting_ip_config_get_dhcp_send_hostname (s_ip4),
nm_setting_ip_config_get_dhcp_hostname (s_ip4),
nm_setting_ip4_config_get_dhcp_fqdn (NM_SETTING_IP4_CONFIG (s_ip4)),
+ get_dhcp_hostname_flags (self, AF_INET),
client_id,
get_dhcp_timeout (self, AF_INET),
priv->dhcp_anycast_address,
NULL,
&error);
-
if (!priv->dhcp4.client) {
_LOGW (LOGD_DHCP4, "failure to start DHCP: %s", error->message);
g_clear_error (&error);
@@ -9078,6 +9125,7 @@ dhcp6_start_with_link_ready (NMDevice *self, NMConnection *connection)
nm_device_get_route_metric (self, AF_INET6),
nm_setting_ip_config_get_dhcp_send_hostname (s_ip6),
nm_setting_ip_config_get_dhcp_hostname (s_ip6),
+ get_dhcp_hostname_flags (self, AF_INET6),
duid,
enforce_duid,
iaid,
diff --git a/src/dhcp/nm-dhcp-client.c b/src/dhcp/nm-dhcp-client.c
index b9103077f5..0a07b26cb9 100644
--- a/src/dhcp/nm-dhcp-client.c
+++ b/src/dhcp/nm-dhcp-client.c
@@ -49,6 +49,7 @@ NM_GOBJECT_PROPERTIES_DEFINE (NMDhcpClient,
PROP_IAID,
PROP_IAID_EXPLICIT,
PROP_HOSTNAME,
+ PROP_HOSTNAME_FLAGS,
);
typedef struct _NMDhcpClientPrivate {
@@ -69,6 +70,7 @@ typedef struct _NMDhcpClientPrivate {
guint32 timeout;
guint32 iaid;
NMDhcpState state;
+ NMDhcpHostnameFlags hostname_flags;
bool info_only:1;
bool use_fqdn:1;
bool iaid_explicit:1;
@@ -286,6 +288,14 @@ nm_dhcp_client_get_hostname (NMDhcpClient *self)
return NM_DHCP_CLIENT_GET_PRIVATE (self)->hostname;
}
+NMDhcpHostnameFlags
+nm_dhcp_client_get_hostname_flags (NMDhcpClient *self)
+{
+ g_return_val_if_fail (NM_IS_DHCP_CLIENT (self), NM_DHCP_HOSTNAME_FLAG_NONE);
+
+ return NM_DHCP_CLIENT_GET_PRIVATE (self)->hostname_flags;
+}
+
gboolean
nm_dhcp_client_get_info_only (NMDhcpClient *self)
{
@@ -1035,6 +1045,10 @@ set_property (GObject *object, guint prop_id,
/* construct-only */
priv->hostname = g_value_dup_string (value);
break;
+ case PROP_HOSTNAME_FLAGS:
+ /* construct-only */
+ priv->hostname_flags = g_value_get_uint (value);
+ break;
case PROP_ROUTE_TABLE:
priv->route_table = g_value_get_uint (value);
break;
@@ -1168,6 +1182,12 @@ nm_dhcp_client_class_init (NMDhcpClientClass *client_class)
G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY |
G_PARAM_STATIC_STRINGS);
+ obj_properties[PROP_HOSTNAME_FLAGS] =
+ g_param_spec_uint (NM_DHCP_CLIENT_HOSTNAME_FLAGS, "", "",
+ 0, G_MAXUINT32, NM_DHCP_HOSTNAME_FLAG_NONE,
+ G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY |
+ G_PARAM_STATIC_STRINGS);
+
obj_properties[PROP_ROUTE_TABLE] =
g_param_spec_uint (NM_DHCP_CLIENT_ROUTE_TABLE, "", "",
0, G_MAXUINT32, RT_TABLE_MAIN,
diff --git a/src/dhcp/nm-dhcp-client.h b/src/dhcp/nm-dhcp-client.h
index 8d8ae6d10b..6a431fa888 100644
--- a/src/dhcp/nm-dhcp-client.h
+++ b/src/dhcp/nm-dhcp-client.h
@@ -36,6 +36,7 @@
#define NM_DHCP_CLIENT_UUID "uuid"
#define NM_DHCP_CLIENT_IAID "iaid"
#define NM_DHCP_CLIENT_IAID_EXPLICIT "iaid-explicit"
+#define NM_DHCP_CLIENT_HOSTNAME_FLAGS "hostname-flags"
#define NM_DHCP_CLIENT_SIGNAL_STATE_CHANGED "state-changed"
#define NM_DHCP_CLIENT_SIGNAL_PREFIX_DELEGATED "prefix-delegated"
@@ -140,6 +141,8 @@ GBytes *nm_dhcp_client_get_client_id (NMDhcpClient *self);
const char *nm_dhcp_client_get_hostname (NMDhcpClient *self);
+NMDhcpHostnameFlags nm_dhcp_client_get_hostname_flags (NMDhcpClient *self);
+
gboolean nm_dhcp_client_get_info_only (NMDhcpClient *self);
gboolean nm_dhcp_client_get_use_fqdn (NMDhcpClient *self);
diff --git a/src/dhcp/nm-dhcp-dhclient-utils.c b/src/dhcp/nm-dhcp-dhclient-utils.c
index 229a90758b..f31c493cdd 100644
--- a/src/dhcp/nm-dhcp-dhclient-utils.c
+++ b/src/dhcp/nm-dhcp-dhclient-utils.c
@@ -93,21 +93,11 @@ grab_request_options (GPtrArray *store, const char* line)
}
static void
-add_hostname4 (GString *str, const char *hostname, gboolean use_fqdn)
-{
- if (hostname) {
- if (use_fqdn) {
- g_string_append_printf (str, FQDN_FORMAT "\n", hostname);
- g_string_append (str,
- "send fqdn.encoded on;\n"
- "send fqdn.server-update on;\n");
- } else
- g_string_append_printf (str, HOSTNAME4_FORMAT "\n", hostname);
- }
-}
-
-static void
-add_ip4_config (GString *str, GBytes *client_id, const char *hostname, gboolean use_fqdn)
+add_ip4_config (GString *str,
+ GBytes *client_id,
+ const char *hostname,
+ gboolean use_fqdn,
+ NMDhcpHostnameFlags hostname_flags)
{
if (client_id) {
const char *p;
@@ -143,7 +133,27 @@ add_ip4_config (GString *str, GBytes *client_id, const char *hostname, gboolean
g_string_append (str, "; # added by NetworkManager\n");
}
- add_hostname4 (str, hostname, use_fqdn);
+ if (hostname) {
+ if (use_fqdn) {
+ g_string_append_printf (str, FQDN_FORMAT "\n", hostname);
+
+ g_string_append_printf (str, FQDN_TAG_PREFIX "encoded %s;\n",
+ (hostname_flags & NM_DHCP_HOSTNAME_FLAG_FQDN_ENCODED)
+ ? "on"
+ : "off");
+
+ g_string_append_printf (str, FQDN_TAG_PREFIX "server-update %s;\n",
+ (hostname_flags & NM_DHCP_HOSTNAME_FLAG_FQDN_SERV_UPDATE)
+ ? "on"
+ : "off");
+
+ g_string_append_printf (str, FQDN_TAG_PREFIX "no-client-update %s;\n",
+ (hostname_flags & NM_DHCP_HOSTNAME_FLAG_FQDN_NO_UPDATE)
+ ? "on"
+ : "off");
+ } else
+ g_string_append_printf (str, HOSTNAME4_FORMAT "\n", hostname);
+ }
g_string_append_c (str, '\n');
@@ -159,12 +169,16 @@ add_ip4_config (GString *str, GBytes *client_id, const char *hostname, gboolean
}
static void
-add_hostname6 (GString *str, const char *hostname)
+add_hostname6 (GString *str,
+ const char *hostname,
+ NMDhcpHostnameFlags hostname_flags)
{
if (hostname) {
g_string_append_printf (str, FQDN_FORMAT "\n", hostname);
- g_string_append (str,
- "send fqdn.server-update on;\n");
+ if (hostname_flags & NM_DHCP_HOSTNAME_FLAG_FQDN_SERV_UPDATE)
+ g_string_append (str, FQDN_TAG_PREFIX "server-update on;\n");
+ if (hostname_flags & NM_DHCP_HOSTNAME_FLAG_FQDN_NO_UPDATE)
+ g_string_append (str, FQDN_TAG_PREFIX "no-client-update on;\n");
g_string_append_c (str, '\n');
}
}
@@ -271,6 +285,7 @@ nm_dhcp_dhclient_create_config (const char *interface,
const char *hostname,
guint32 timeout,
gboolean use_fqdn,
+ NMDhcpHostnameFlags hostname_flags,
const char *orig_path,
const char *orig_contents,
GBytes **out_new_client_id)
@@ -437,7 +452,7 @@ nm_dhcp_dhclient_create_config (const char *interface,
}
if (addr_family == AF_INET) {
- add_ip4_config (new_contents, client_id, hostname, use_fqdn);
+ add_ip4_config (new_contents, client_id, hostname, use_fqdn, hostname_flags);
add_request (reqs, "rfc3442-classless-static-routes");
add_request (reqs, "ms-classless-static-routes");
add_request (reqs, "static-routes");
@@ -445,7 +460,7 @@ nm_dhcp_dhclient_create_config (const char *interface,
add_request (reqs, "ntp-servers");
add_request (reqs, "root-path");
} else {
- add_hostname6 (new_contents, hostname);
+ add_hostname6 (new_contents, hostname, hostname_flags);
add_request (reqs, "dhcp6.name-servers");
add_request (reqs, "dhcp6.domain-search");
diff --git a/src/dhcp/nm-dhcp-dhclient-utils.h b/src/dhcp/nm-dhcp-dhclient-utils.h
index 20fa7afef3..0cf538872c 100644
--- a/src/dhcp/nm-dhcp-dhclient-utils.h
+++ b/src/dhcp/nm-dhcp-dhclient-utils.h
@@ -16,6 +16,7 @@ char *nm_dhcp_dhclient_create_config (const char *interface,
const char *hostname,
guint32 timeout,
gboolean use_fqdn,
+ NMDhcpHostnameFlags hostname_flags,
const char *orig_path,
const char *orig_contents,
GBytes **out_new_client_id);
diff --git a/src/dhcp/nm-dhcp-dhclient.c b/src/dhcp/nm-dhcp-dhclient.c
index 81eb21e80f..869966fba2 100644
--- a/src/dhcp/nm-dhcp-dhclient.c
+++ b/src/dhcp/nm-dhcp-dhclient.c
@@ -146,6 +146,7 @@ merge_dhclient_config (NMDhcpDhclient *self,
const char *hostname,
guint32 timeout,
gboolean use_fqdn,
+ NMDhcpHostnameFlags hostname_flags,
const char *orig_path,
GBytes **out_new_client_id,
GError **error)
@@ -174,6 +175,7 @@ merge_dhclient_config (NMDhcpDhclient *self,
hostname,
timeout,
use_fqdn,
+ hostname_flags,
orig_path,
orig,
out_new_client_id);
@@ -265,6 +267,7 @@ create_dhclient_config (NMDhcpDhclient *self,
const char *hostname,
guint32 timeout,
gboolean use_fqdn,
+ NMDhcpHostnameFlags hostname_flags,
GBytes **out_new_client_id)
{
gs_free char *orig = NULL;
@@ -292,6 +295,7 @@ create_dhclient_config (NMDhcpDhclient *self,
hostname,
timeout,
use_fqdn,
+ hostname_flags,
orig,
out_new_client_id,
&error)) {
@@ -491,6 +495,7 @@ ip4_start (NMDhcpClient *client,
nm_dhcp_client_get_hostname (client),
nm_dhcp_client_get_timeout (client),
nm_dhcp_client_get_use_fqdn (client),
+ nm_dhcp_client_get_hostname_flags (client),
&new_client_id);
if (!priv->conf_file) {
nm_utils_error_set_literal (error,
@@ -534,6 +539,7 @@ ip6_start (NMDhcpClient *client,
nm_dhcp_client_get_hostname (client),
nm_dhcp_client_get_timeout (client),
TRUE,
+ nm_dhcp_client_get_hostname_flags (client),
NULL);
if (!priv->conf_file) {
nm_utils_error_set_literal (error,
diff --git a/src/dhcp/nm-dhcp-manager.c b/src/dhcp/nm-dhcp-manager.c
index 1816e5a2ac..10ed9589c8 100644
--- a/src/dhcp/nm-dhcp-manager.c
+++ b/src/dhcp/nm-dhcp-manager.c
@@ -219,6 +219,7 @@ client_start (NMDhcpManager *self,
const char *dhcp_anycast_addr,
const char *hostname,
gboolean hostname_use_fqdn,
+ NMDhcpHostnameFlags hostname_flags,
gboolean info_only,
NMSettingIP6ConfigPrivacy privacy,
const char *last_ip4_address,
@@ -305,6 +306,7 @@ client_start (NMDhcpManager *self,
NM_DHCP_CLIENT_ROUTE_TABLE, (guint) route_table,
NM_DHCP_CLIENT_ROUTE_METRIC, (guint) route_metric,
NM_DHCP_CLIENT_TIMEOUT, (guint) timeout,
+ NM_DHCP_CLIENT_HOSTNAME_FLAGS, (guint) hostname_flags,
NM_DHCP_CLIENT_FLAGS, (guint) (0
| (hostname_use_fqdn ? NM_DHCP_CLIENT_FLAGS_USE_FQDN : 0)
| (info_only ? NM_DHCP_CLIENT_FLAGS_INFO_ONLY : 0)
@@ -379,6 +381,7 @@ nm_dhcp_manager_start_ip4 (NMDhcpManager *self,
gboolean send_hostname,
const char *dhcp_hostname,
const char *dhcp_fqdn,
+ NMDhcpHostnameFlags hostname_flags,
GBytes *dhcp_client_id,
guint32 timeout,
const char *dhcp_anycast_addr,
@@ -436,6 +439,7 @@ nm_dhcp_manager_start_ip4 (NMDhcpManager *self,
dhcp_anycast_addr,
hostname,
use_fqdn,
+ hostname_flags,
FALSE,
0,
last_ip_address,
@@ -457,6 +461,7 @@ nm_dhcp_manager_start_ip6 (NMDhcpManager *self,
guint32 route_metric,
gboolean send_hostname,
const char *dhcp_hostname,
+ NMDhcpHostnameFlags hostname_flags,
GBytes *duid,
gboolean enforce_duid,
guint32 iaid,
@@ -497,6 +502,7 @@ nm_dhcp_manager_start_ip6 (NMDhcpManager *self,
dhcp_anycast_addr,
hostname,
TRUE,
+ hostname_flags,
info_only,
privacy,
NULL,
diff --git a/src/dhcp/nm-dhcp-manager.h b/src/dhcp/nm-dhcp-manager.h
index 2feb0c29b7..fb1c98346b 100644
--- a/src/dhcp/nm-dhcp-manager.h
+++ b/src/dhcp/nm-dhcp-manager.h
@@ -42,6 +42,7 @@ NMDhcpClient * nm_dhcp_manager_start_ip4 (NMDhcpManager *manager,
gboolean send_hostname,
const char *dhcp_hostname,
const char *dhcp_fqdn,
+ NMDhcpHostnameFlags hostname_flags,
GBytes *dhcp_client_id,
guint32 timeout,
const char *dhcp_anycast_addr,
@@ -60,6 +61,7 @@ NMDhcpClient * nm_dhcp_manager_start_ip6 (NMDhcpManager *manager,
guint32 route_metric,
gboolean send_hostname,
const char *dhcp_hostname,
+ NMDhcpHostnameFlags hostname_flags,
GBytes *duid,
gboolean enforce_duid,
guint32 iaid,
diff --git a/src/dhcp/nm-dhcp-nettools.c b/src/dhcp/nm-dhcp-nettools.c
index 52f55655ed..e557c00487 100644
--- a/src/dhcp/nm-dhcp-nettools.c
+++ b/src/dhcp/nm-dhcp-nettools.c
@@ -72,13 +72,6 @@ G_DEFINE_TYPE (NMDhcpNettools, nm_dhcp_nettools, NM_TYPE_DHCP_CLIENT)
#define DHCP_MAX_FQDN_LENGTH 255
enum {
- DHCP_FQDN_FLAG_S = (1 << 0),
- DHCP_FQDN_FLAG_O = (1 << 1),
- DHCP_FQDN_FLAG_E = (1 << 2),
- DHCP_FQDN_FLAG_N = (1 << 3),
-};
-
-enum {
NM_IN_ADDR_CLASS_A,
NM_IN_ADDR_CLASS_B,
NM_IN_ADDR_CLASS_C,
@@ -1220,6 +1213,22 @@ decline (NMDhcpClient *client,
return TRUE;
}
+static guint8
+fqdn_flags_to_wire (NMDhcpHostnameFlags flags)
+{
+ guint r = 0;
+
+ /* RFC 4702 section 2.1 */
+ if (flags & NM_DHCP_HOSTNAME_FLAG_FQDN_SERV_UPDATE)
+ r |= (1 << 0);
+ if (flags & NM_DHCP_HOSTNAME_FLAG_FQDN_ENCODED)
+ r |= (1 << 2);
+ if (flags & NM_DHCP_HOSTNAME_FLAG_FQDN_NO_UPDATE)
+ r |= (1 << 3);
+
+ return r;
+}
+
static gboolean
ip4_start (NMDhcpClient *client,
const char *dhcp_anycast_addr,
@@ -1289,26 +1298,38 @@ ip4_start (NMDhcpClient *client,
hostname = nm_dhcp_client_get_hostname (client);
if (hostname) {
if (nm_dhcp_client_get_use_fqdn (client)) {
- uint8_t buffer[3 + DHCP_MAX_FQDN_LENGTH];
-
- buffer[0] = DHCP_FQDN_FLAG_S | /* Request server to perform A RR DNS updates */
- DHCP_FQDN_FLAG_E; /* Canonical wire format */
- buffer[1] = 0; /* RCODE1 (deprecated) */
- buffer[2] = 0; /* RCODE2 (deprecated) */
-
- r = nm_sd_dns_name_to_wire_format (hostname,
- buffer + 3,
- sizeof (buffer) - 3,
- FALSE);
- if (r < 0) {
- nm_utils_error_set_errno (error, r, "failed to convert DHCP FQDN: %s");
- return FALSE;
+ uint8_t buffer[255];
+ NMDhcpHostnameFlags flags;
+ size_t fqdn_len;
+
+ flags = nm_dhcp_client_get_hostname_flags (client);
+ buffer[0] = fqdn_flags_to_wire (flags);
+ buffer[1] = 0; /* RCODE1 (deprecated) */
+ buffer[2] = 0; /* RCODE2 (deprecated) */
+
+ if (flags & NM_DHCP_HOSTNAME_FLAG_FQDN_ENCODED) {
+ r = nm_sd_dns_name_to_wire_format (hostname,
+ buffer + 3,
+ sizeof (buffer) - 3,
+ FALSE);
+ if (r <= 0) {
+ nm_utils_error_set_errno (error, r, "failed to convert DHCP FQDN: %s");
+ return FALSE;
+ }
+ fqdn_len = r;
+ } else {
+ fqdn_len = strlen (hostname);
+ if (fqdn_len > sizeof (buffer) - 3) {
+ nm_utils_error_set (error, r, "failed to set DHCP FQDN: name too long");
+ return FALSE;
+ }
+ memcpy (buffer + 3, hostname, fqdn_len);
}
r = n_dhcp4_client_probe_config_append_option (config,
NM_DHCP_OPTION_DHCP4_CLIENT_FQDN,
buffer,
- 3 + r);
+ 3 + fqdn_len);
if (r) {
nm_utils_error_set_errno (error, r, "failed to set DHCP FQDN: %s");
return FALSE;
diff --git a/src/dhcp/tests/test-dhcp-dhclient.c b/src/dhcp/tests/test-dhcp-dhclient.c
index a3320151b4..761f9cdba6 100644
--- a/src/dhcp/tests/test-dhcp-dhclient.c
+++ b/src/dhcp/tests/test-dhcp-dhclient.c
@@ -29,6 +29,7 @@ test_config (const char *orig,
const char *hostname,
guint32 timeout,
gboolean use_fqdn,
+ NMDhcpHostnameFlags hostname_flags,
const char *dhcp_client_id,
GBytes *expected_new_client_id,
const char *iface,
@@ -50,6 +51,7 @@ test_config (const char *orig,
hostname,
timeout,
use_fqdn,
+ hostname_flags,
"/path/to/dhclient.conf",
orig,
&new_client_id);
@@ -94,7 +96,11 @@ static const char *orig_missing_expected = \
static void
test_orig_missing (void)
{
- test_config (NULL, orig_missing_expected, AF_INET, NULL, 0, FALSE, NULL, NULL, "eth0", NULL);
+ test_config (NULL,
+ orig_missing_expected,
+ AF_INET, NULL, 0, FALSE,
+ NM_DHCP_HOSTNAME_FLAG_NONE,
+ NULL, NULL, "eth0", NULL);
}
/*****************************************************************************/
@@ -125,6 +131,7 @@ test_override_client_id (void)
{
test_config (override_client_id_orig, override_client_id_expected,
AF_INET, NULL, 0, FALSE,
+ NM_DHCP_HOSTNAME_FLAG_NONE,
"11:22:33:44:55:66",
NULL,
"eth0",
@@ -155,6 +162,7 @@ test_quote_client_id (void)
{
test_config (NULL, quote_client_id_expected,
AF_INET, NULL, 0, FALSE,
+ NM_DHCP_HOSTNAME_FLAG_NONE,
"abcd",
NULL,
"eth0",
@@ -185,6 +193,7 @@ test_quote_client_id_2 (void)
{
test_config (NULL, quote_client_id_expected_2,
AF_INET, NULL, 0, FALSE,
+ NM_DHCP_HOSTNAME_FLAG_NONE,
"a\\bc",
NULL,
"eth0",
@@ -215,6 +224,7 @@ test_hex_zero_client_id (void)
{
test_config (NULL, hex_zero_client_id_expected,
AF_INET, NULL, 0, FALSE,
+ NM_DHCP_HOSTNAME_FLAG_NONE,
"00:11:22:33",
NULL,
"eth0",
@@ -245,6 +255,7 @@ test_ascii_client_id (void)
{
test_config (NULL, ascii_client_id_expected,
AF_INET, NULL, 0, FALSE,
+ NM_DHCP_HOSTNAME_FLAG_NONE,
"qb:cd:ef:12:34:56",
NULL,
"eth0",
@@ -275,6 +286,7 @@ test_hex_single_client_id (void)
{
test_config (NULL, hex_single_client_id_expected,
AF_INET, NULL, 0, FALSE,
+ NM_DHCP_HOSTNAME_FLAG_NONE,
"ab:cd:e:12:34:56",
NULL,
"eth0",
@@ -313,6 +325,7 @@ test_existing_hex_client_id (void)
new_client_id = g_bytes_new (bytes, sizeof (bytes));
test_config (existing_hex_client_id_orig, existing_hex_client_id_expected,
AF_INET, NULL, 0, FALSE,
+ NM_DHCP_HOSTNAME_FLAG_NONE,
NULL,
new_client_id,
"eth0",
@@ -350,6 +363,7 @@ test_existing_escaped_client_id (void)
new_client_id = g_bytes_new ("$test\xfe", 6);
test_config (existing_escaped_client_id_orig, existing_escaped_client_id_expected,
AF_INET, NULL, 0, FALSE,
+ NM_DHCP_HOSTNAME_FLAG_NONE,
NULL,
new_client_id,
"eth0",
@@ -391,6 +405,7 @@ test_existing_ascii_client_id (void)
new_client_id = g_bytes_new (buf, sizeof (buf));
test_config (existing_ascii_client_id_orig, existing_ascii_client_id_expected,
AF_INET, NULL, 0, FALSE,
+ NM_DHCP_HOSTNAME_FLAG_NONE,
NULL,
new_client_id,
"eth0",
@@ -403,7 +418,8 @@ static const char *fqdn_expected = \
"\n"
"send fqdn.fqdn \"foo.bar.com\"; # added by NetworkManager\n"
"send fqdn.encoded on;\n"
- "send fqdn.server-update on;\n"
+ "send fqdn.server-update off;\n"
+ "send fqdn.no-client-update on;\n"
"\n"
"option rfc3442-classless-static-routes code 121 = array of unsigned integer 8;\n"
"option ms-classless-static-routes code 249 = array of unsigned integer 8;\n"
@@ -421,7 +437,10 @@ test_fqdn (void)
{
test_config (NULL, fqdn_expected,
AF_INET, "foo.bar.com", 0,
- TRUE, NULL,
+ TRUE,
+ NM_DHCP_HOSTNAME_FLAG_FQDN_ENCODED
+ | NM_DHCP_HOSTNAME_FLAG_FQDN_NO_UPDATE,
+ NULL,
NULL,
"eth0",
NULL);
@@ -438,8 +457,9 @@ static const char *fqdn_options_override_expected = \
"# Merged from /path/to/dhclient.conf\n"
"\n"
"send fqdn.fqdn \"example2.com\"; # added by NetworkManager\n"
- "send fqdn.encoded on;\n"
+ "send fqdn.encoded off;\n"
"send fqdn.server-update on;\n"
+ "send fqdn.no-client-update off;\n"
"\n"
"option rfc3442-classless-static-routes code 121 = array of unsigned integer 8;\n"
"option ms-classless-static-routes code 249 = array of unsigned integer 8;\n"
@@ -462,6 +482,7 @@ test_fqdn_options_override (void)
test_config (fqdn_options_override_orig,
fqdn_options_override_expected,
AF_INET, "example2.com", 0,
+ NM_DHCP_HOSTNAME_FLAG_FQDN_SERV_UPDATE,
TRUE, NULL,
NULL,
"eth0",
@@ -496,6 +517,7 @@ test_override_hostname (void)
{
test_config (override_hostname_orig, override_hostname_expected,
AF_INET, "blahblah", 0, FALSE,
+ NM_DHCP_HOSTNAME_FLAG_NONE,
NULL,
NULL,
"eth0",
@@ -524,6 +546,7 @@ test_override_hostname6 (void)
{
test_config (override_hostname6_orig, override_hostname6_expected,
AF_INET6, "blahblah.local", 0, TRUE,
+ NM_DHCP_HOSTNAME_FLAG_FQDN_SERV_UPDATE,
NULL,
NULL,
"eth0",
@@ -536,7 +559,7 @@ static const char *nonfqdn_hostname6_expected = \
"# Created by NetworkManager\n"
"\n"
"send fqdn.fqdn \"blahblah\"; # added by NetworkManager\n"
- "send fqdn.server-update on;\n"
+ "send fqdn.no-client-update on;\n"
"\n"
"also request dhcp6.name-servers;\n"
"also request dhcp6.domain-search;\n"
@@ -549,6 +572,7 @@ test_nonfqdn_hostname6 (void)
/* Non-FQDN hostname can now be used with dhclient */
test_config (NULL, nonfqdn_hostname6_expected,
AF_INET6, "blahblah", 0, TRUE,
+ NM_DHCP_HOSTNAME_FLAG_FQDN_NO_UPDATE,
NULL,
NULL,
"eth0",
@@ -585,6 +609,7 @@ test_existing_alsoreq (void)
{
test_config (existing_alsoreq_orig, existing_alsoreq_expected,
AF_INET, NULL, 0, FALSE,
+ NM_DHCP_HOSTNAME_FLAG_NONE,
NULL,
NULL,
"eth0",
@@ -624,6 +649,7 @@ test_existing_req (void)
{
test_config (existing_req_orig, existing_req_expected,
AF_INET, NULL, 0, FALSE,
+ NM_DHCP_HOSTNAME_FLAG_NONE,
NULL,
NULL,
"eth0",
@@ -664,6 +690,7 @@ test_existing_multiline_alsoreq (void)
{
test_config (existing_multiline_alsoreq_orig, existing_multiline_alsoreq_expected,
AF_INET, NULL, 0, FALSE,
+ NM_DHCP_HOSTNAME_FLAG_NONE,
NULL,
NULL,
"eth0",
@@ -903,6 +930,7 @@ test_interface1 (void)
{
test_config (interface1_orig, interface1_expected,
AF_INET, NULL, 0, FALSE,
+ NM_DHCP_HOSTNAME_FLAG_NONE,
NULL,
NULL,
"eth0",
@@ -949,6 +977,7 @@ test_interface2 (void)
{
test_config (interface2_orig, interface2_expected,
AF_INET, NULL, 0, FALSE,
+ NM_DHCP_HOSTNAME_FLAG_NONE,
NULL,
NULL,
"eth1",
@@ -1060,6 +1089,7 @@ test_structured (void)
new_client_id = g_bytes_new (bytes, sizeof (bytes) - 1);
test_config (orig, expected,
AF_INET, NULL, 0, FALSE,
+ NM_DHCP_HOSTNAME_FLAG_NONE,
NULL,
new_client_id,
"eth0",
@@ -1115,6 +1145,7 @@ test_config_req_intf (void)
test_config (orig, expected,
AF_INET, NULL, 0, FALSE,
+ NM_DHCP_HOSTNAME_FLAG_NONE,
NULL,
NULL,
"eth0",
diff --git a/src/nm-iface-helper.c b/src/nm-iface-helper.c
index 73511a62d6..bfb7af578e 100644
--- a/src/nm-iface-helper.c
+++ b/src/nm-iface-helper.c
@@ -26,6 +26,7 @@
#include "ndisc/nm-ndisc.h"
#include "ndisc/nm-lndp-ndisc.h"
#include "nm-utils.h"
+#include "nm-core-internal.h"
#include "nm-setting-ip6-config.h"
#include "systemd/nm-sd.h"
@@ -520,6 +521,7 @@ main (int argc, char *argv[])
!!global_opt.dhcp4_hostname,
global_opt.dhcp4_hostname,
global_opt.dhcp4_fqdn,
+ NM_DHCP_HOSTNAME_FLAGS_FQDN_DEFAULT_IP4,
client_id,
NM_DHCP_TIMEOUT_DEFAULT,
NULL,
diff --git a/src/settings/plugins/ifcfg-rh/nms-ifcfg-rh-reader.c b/src/settings/plugins/ifcfg-rh/nms-ifcfg-rh-reader.c
index 5f61d4fb0f..a1d3236e9b 100644
--- a/src/settings/plugins/ifcfg-rh/nms-ifcfg-rh-reader.c
+++ b/src/settings/plugins/ifcfg-rh/nms-ifcfg-rh-reader.c
@@ -1579,7 +1579,7 @@ make_ip4_setting (shvarFile *ifcfg,
gboolean has_key;
shvarFile *route_ifcfg;
gboolean never_default;
- gint64 timeout;
+ gint64 i64;
int priority;
const char *const *item;
guint32 route_table;
@@ -1682,6 +1682,14 @@ make_ip4_setting (shvarFile *ifcfg,
NULL);
}
+ i64 = svGetValueInt64 (ifcfg, "DHCP_HOSTNAME_FLAGS", 10, 0, G_MAXUINT32, -1);
+ if (i64 > -1) {
+ g_object_set (s_ip4,
+ NM_SETTING_IP_CONFIG_DHCP_HOSTNAME_FLAGS,
+ (guint) i64,
+ NULL);
+ }
+
g_object_set (s_ip4,
NM_SETTING_IP_CONFIG_DHCP_SEND_HOSTNAME, svGetValueBoolean (ifcfg, "DHCP_SEND_HOSTNAME", TRUE),
NM_SETTING_IP_CONFIG_DHCP_TIMEOUT, svGetValueInt64 (ifcfg, "IPV4_DHCP_TIMEOUT", 10, 0, G_MAXINT32, 0),
@@ -1852,14 +1860,14 @@ make_ip4_setting (shvarFile *ifcfg,
}
}
- timeout = svGetValueInt64 (ifcfg, "ACD_TIMEOUT", 10, -1, NM_SETTING_IP_CONFIG_DAD_TIMEOUT_MAX, -2);
- if (timeout == -2) {
- timeout = svGetValueInt64 (ifcfg, "ARPING_WAIT", 10, -1,
- NM_SETTING_IP_CONFIG_DAD_TIMEOUT_MAX / 1000, -1);
- if (timeout > 0)
- timeout *= 1000;
+ i64 = svGetValueInt64 (ifcfg, "ACD_TIMEOUT", 10, -1, NM_SETTING_IP_CONFIG_DAD_TIMEOUT_MAX, -2);
+ if (i64 == -2) {
+ i64 = svGetValueInt64 (ifcfg, "ARPING_WAIT", 10, -1,
+ NM_SETTING_IP_CONFIG_DAD_TIMEOUT_MAX / 1000, -1);
+ if (i64 > 0)
+ i64 *= 1000;
}
- g_object_set (s_ip4, NM_SETTING_IP_CONFIG_DAD_TIMEOUT, (int) timeout, NULL);
+ g_object_set (s_ip4, NM_SETTING_IP_CONFIG_DAD_TIMEOUT, (int) i64, NULL);
return NM_SETTING (g_steal_pointer (&s_ip4));
}
@@ -1993,6 +2001,7 @@ make_ip6_setting (shvarFile *ifcfg,
gs_free const char **list = NULL;
const char *const *iter;
guint32 i;
+ gint64 i64;
int i_val;
GError *local = NULL;
int priority;
@@ -2153,6 +2162,15 @@ make_ip6_setting (shvarFile *ifcfg,
g_object_set (s_ip6, NM_SETTING_IP_CONFIG_DHCP_SEND_HOSTNAME,
svGetValueBoolean (ifcfg, "DHCPV6_SEND_HOSTNAME", TRUE), NULL);
+
+ i64 = svGetValueInt64 (ifcfg, "DHCPV6_HOSTNAME_FLAGS", 10, 0, G_MAXUINT32, -1);
+ if (i64 > -1) {
+ g_object_set (s_ip6,
+ NM_SETTING_IP_CONFIG_DHCP_HOSTNAME_FLAGS,
+ (guint) i64,
+ NULL);
+ }
+
/* Read static IP addresses.
* Read them even for AUTO and DHCP methods - in this case the addresses are
* added to the automatic ones. Note that this is not currently supported by
diff --git a/src/settings/plugins/ifcfg-rh/nms-ifcfg-rh-writer.c b/src/settings/plugins/ifcfg-rh/nms-ifcfg-rh-writer.c
index ea2cef803c..d33845c28c 100644
--- a/src/settings/plugins/ifcfg-rh/nms-ifcfg-rh-writer.c
+++ b/src/settings/plugins/ifcfg-rh/nms-ifcfg-rh-writer.c
@@ -2438,6 +2438,7 @@ write_ip4_setting (NMConnection *connection,
GString *searches;
const char *method = NULL;
gboolean has_netmask;
+ NMDhcpHostnameFlags flags;
NM_SET_OUT (out_route_content_svformat, NULL);
NM_SET_OUT (out_route_content, NULL);
@@ -2598,6 +2599,12 @@ write_ip4_setting (NMConnection *connection,
value = nm_setting_ip4_config_get_dhcp_fqdn (NM_SETTING_IP4_CONFIG (s_ip4));
svSetValueStr (ifcfg, "DHCP_FQDN", value);
+ flags = nm_setting_ip_config_get_dhcp_hostname_flags (s_ip4);
+ svSetValueInt64_cond (ifcfg,
+ "DHCP_HOSTNAME_FLAGS",
+ flags != NM_DHCP_HOSTNAME_FLAG_NONE,
+ flags);
+
/* Missing DHCP_SEND_HOSTNAME means TRUE, and we prefer not write it explicitly
* in that case, because it is NM-specific variable
*/
@@ -2744,6 +2751,7 @@ write_ip4_aliases (NMConnection *connection, const char *base_ifcfg_path)
static void
write_ip6_setting_dhcp_hostname (NMSettingIPConfig *s_ip6, shvarFile *ifcfg)
{
+ NMDhcpHostnameFlags flags;
const char *hostname;
hostname = nm_setting_ip_config_get_dhcp_hostname (s_ip6);
@@ -2756,6 +2764,12 @@ write_ip6_setting_dhcp_hostname (NMSettingIPConfig *s_ip6, shvarFile *ifcfg)
svUnsetValue (ifcfg, "DHCPV6_SEND_HOSTNAME");
else
svSetValueStr (ifcfg, "DHCPV6_SEND_HOSTNAME", "no");
+
+ flags = nm_setting_ip_config_get_dhcp_hostname_flags (s_ip6);
+ svSetValueInt64_cond (ifcfg,
+ "DHCPV6_HOSTNAME_FLAGS",
+ flags != NM_DHCP_HOSTNAME_FLAG_NONE,
+ flags);
}
static gboolean
diff --git a/src/settings/plugins/ifcfg-rh/tests/network-scripts/ifcfg-test-wired-dhcp b/src/settings/plugins/ifcfg-rh/tests/network-scripts/ifcfg-test-wired-dhcp
index 727d2cebcc..5d36675a41 100644
--- a/src/settings/plugins/ifcfg-rh/tests/network-scripts/ifcfg-test-wired-dhcp
+++ b/src/settings/plugins/ifcfg-rh/tests/network-scripts/ifcfg-test-wired-dhcp
@@ -8,7 +8,12 @@ USERCTL=yes
IPV6INIT=no
NM_CONTROLLED=yes
PEERDNS=no
-DHCP_HOSTNAME=foobar
+DHCP_FQDN=foo.bar
+DHCP_HOSTNAME_FLAGS=6
DNS1=4.2.2.1
DNS2=4.2.2.2
-
+IPV6_AUTOCONF=no
+IPV6INIT=yes
+DHCPV6C=yes
+DHCPV6_HOSTNAME_FLAGS=8
+DHCPV6_HOSTNAME=foo.bar
diff --git a/src/settings/plugins/ifcfg-rh/tests/test-ifcfg-rh.c b/src/settings/plugins/ifcfg-rh/tests/test-ifcfg-rh.c
index d3651978f2..675421d3c8 100644
--- a/src/settings/plugins/ifcfg-rh/tests/test-ifcfg-rh.c
+++ b/src/settings/plugins/ifcfg-rh/tests/test-ifcfg-rh.c
@@ -887,6 +887,7 @@ test_read_wired_dhcp (void)
NMSettingConnection *s_con;
NMSettingWired *s_wired;
NMSettingIPConfig *s_ip4;
+ NMSettingIPConfig *s_ip6;
char *unmanaged = NULL;
char expected_mac_address[ETH_ALEN] = { 0x00, 0x11, 0x22, 0x33, 0x44, 0xee };
const char *mac;
@@ -916,11 +917,23 @@ test_read_wired_dhcp (void)
s_ip4 = nm_connection_get_setting_ip4_config (connection);
g_assert (s_ip4);
g_assert_cmpstr (nm_setting_ip_config_get_method (s_ip4), ==, NM_SETTING_IP4_CONFIG_METHOD_AUTO);
- g_assert_cmpstr (nm_setting_ip_config_get_dhcp_hostname (s_ip4), ==, "foobar");
+ g_assert_cmpstr (nm_setting_ip4_config_get_dhcp_fqdn (NM_SETTING_IP4_CONFIG (s_ip4)), ==, "foo.bar");
g_assert (nm_setting_ip_config_get_ignore_auto_dns (s_ip4));
g_assert_cmpuint (nm_setting_ip_config_get_num_dns (s_ip4), ==, 2);
g_assert_cmpstr (nm_setting_ip_config_get_dns (s_ip4, 0), ==, "4.2.2.1");
g_assert_cmpstr (nm_setting_ip_config_get_dns (s_ip4, 1), ==, "4.2.2.2");
+ g_assert_cmpuint (nm_setting_ip_config_get_dhcp_hostname_flags (s_ip4),
+ ==,
+ NM_DHCP_HOSTNAME_FLAG_FQDN_ENCODED | NM_DHCP_HOSTNAME_FLAG_FQDN_NO_UPDATE);
+
+ /* ===== IPv6 SETTING ===== */
+ s_ip6 = nm_connection_get_setting_ip6_config (connection);
+ g_assert (s_ip6);
+ g_assert_cmpstr (nm_setting_ip_config_get_method (s_ip6), ==, NM_SETTING_IP6_CONFIG_METHOD_DHCP);
+ g_assert_cmpstr (nm_setting_ip_config_get_dhcp_hostname (s_ip6), ==, "foo.bar");
+ g_assert_cmpuint (nm_setting_ip_config_get_dhcp_hostname_flags (s_ip6),
+ ==,
+ NM_DHCP_HOSTNAME_FLAG_FQDN_CLEAR_FLAGS);
g_object_unref (connection);
}
@@ -4457,7 +4470,8 @@ test_write_wired_dhcp (void)
g_object_set (s_ip4,
NM_SETTING_IP_CONFIG_METHOD, NM_SETTING_IP4_CONFIG_METHOD_AUTO,
NM_SETTING_IP4_CONFIG_DHCP_CLIENT_ID, "random-client-id-00:22:33",
- NM_SETTING_IP_CONFIG_DHCP_HOSTNAME, "awesome-hostname",
+ NM_SETTING_IP4_CONFIG_DHCP_FQDN, "awesome.hostname",
+ NM_SETTING_IP_CONFIG_DHCP_HOSTNAME_FLAGS, (guint) NM_DHCP_HOSTNAME_FLAG_FQDN_ENCODED,
NM_SETTING_IP_CONFIG_IGNORE_AUTO_ROUTES, TRUE,
NM_SETTING_IP_CONFIG_IGNORE_AUTO_DNS, TRUE,
NM_SETTING_IP_CONFIG_DHCP_IAID, "2864434397",
@@ -4470,8 +4484,10 @@ test_write_wired_dhcp (void)
nm_connection_add_setting (connection, NM_SETTING (s_ip6));
g_object_set (s_ip6,
- NM_SETTING_IP_CONFIG_METHOD, NM_SETTING_IP6_CONFIG_METHOD_IGNORE,
+ NM_SETTING_IP_CONFIG_METHOD, NM_SETTING_IP6_CONFIG_METHOD_DHCP,
NM_SETTING_IP_CONFIG_MAY_FAIL, TRUE,
+ NM_SETTING_IP_CONFIG_DHCP_HOSTNAME, "awesome.hostname",
+ NM_SETTING_IP_CONFIG_DHCP_HOSTNAME_FLAGS, (guint) NM_DHCP_HOSTNAME_FLAG_FQDN_NO_UPDATE,
NULL);
_writer_new_connection (connection,