summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFernando Fernandez Mancera <ffmancera@riseup.net>2023-02-20 12:05:04 +0100
committerFernando Fernandez Mancera <ffmancera@riseup.net>2023-02-21 15:36:38 +0100
commitd2ca44ffc60c5df5c1f4113ff767228c627ddb13 (patch)
tree58c378a626640b87af0d5045f8ccda480b8b3295
parent79611e4fcc0c06fd12f7a13ff6fdcb0abc36616e (diff)
all: add new "ipv[46].replace-local-rule" settingff/route_rule_0
This setting allows the user to remove the local route rule that is autogenerated for both IPv4 and IPv6. By default, NetworkManager won't touch the local route rule.
-rw-r--r--src/core/devices/nm-device.c12
-rw-r--r--src/core/settings/plugins/ifcfg-rh/nms-ifcfg-rh-reader.c4
-rw-r--r--src/core/settings/plugins/ifcfg-rh/nms-ifcfg-rh-utils.c2
-rw-r--r--src/core/settings/plugins/ifcfg-rh/nms-ifcfg-rh-utils.h2
-rw-r--r--src/core/settings/plugins/ifcfg-rh/nms-ifcfg-rh-writer.c8
-rw-r--r--src/libnm-client-impl/libnm.ver1
-rw-r--r--src/libnm-core-impl/gen-metadata-nm-settings-libnm-core.xml.in8
-rw-r--r--src/libnm-core-impl/nm-setting-ip-config.c42
-rw-r--r--src/libnm-core-impl/nm-setting-ip4-config.c9
-rw-r--r--src/libnm-core-impl/nm-setting-ip6-config.c9
-rw-r--r--src/libnm-core-impl/nm-setting-private.h1
-rw-r--r--src/libnm-core-impl/tests/test-general.c1
-rw-r--r--src/libnm-core-public/nm-setting-ip-config.h3
-rw-r--r--src/libnmc-setting/nm-meta-setting-desc.c6
-rw-r--r--src/libnmc-setting/settings-docs.h.in2
-rw-r--r--src/nmcli/gen-metadata-nm-settings-nmcli.xml.in4
-rw-r--r--src/tests/client/test-client.check-on-disk/test_003.expected708
-rw-r--r--src/tests/client/test-client.check-on-disk/test_004.expected900
18 files changed, 1056 insertions, 666 deletions
diff --git a/src/core/devices/nm-device.c b/src/core/devices/nm-device.c
index 9d662bbf80..6f8b416440 100644
--- a/src/core/devices/nm-device.c
+++ b/src/core/devices/nm-device.c
@@ -9658,6 +9658,18 @@ _routing_rules_sync(NMDevice *self, NMTernary set_mode)
user_tag_1,
NMP_GLOBAL_TRACKER_EXTERN_WEAKLY_TRACKED_USER_TAG);
}
+
+ if (nm_setting_ip_config_get_replace_local_rule(s_ip) == NM_TERNARY_TRUE) {
+ /* The user specified that the local rule should be replaced.
+ * In order to do that, we track the local rule with negative
+ * priority. */
+ nmp_global_tracker_track_local_rule(
+ global_tracker,
+ addr_family,
+ -5,
+ user_tag_1,
+ NMP_GLOBAL_TRACKER_EXTERN_WEAKLY_TRACKED_USER_TAG);
+ }
}
if (klass->get_extra_rules) {
diff --git a/src/core/settings/plugins/ifcfg-rh/nms-ifcfg-rh-reader.c b/src/core/settings/plugins/ifcfg-rh/nms-ifcfg-rh-reader.c
index 0eeead8af5..aa593331c5 100644
--- a/src/core/settings/plugins/ifcfg-rh/nms-ifcfg-rh-reader.c
+++ b/src/core/settings/plugins/ifcfg-rh/nms-ifcfg-rh-reader.c
@@ -1944,6 +1944,8 @@ make_ip4_setting(shvarFile *ifcfg,
ipv4_link_local,
NM_SETTING_IP_CONFIG_AUTO_ROUTE_EXT_GW,
svGetValueTernary(ifcfg, "IPV4_AUTO_ROUTE_EXT_GW"),
+ NM_SETTING_IP_CONFIG_REPLACE_LOCAL_RULE,
+ svGetValueTernary(ifcfg, "IPV4_REPLACE_LOCAL_RULE"),
NULL);
if (nm_streq(method, NM_SETTING_IP4_CONFIG_METHOD_DISABLED))
@@ -2459,6 +2461,8 @@ make_ip6_setting(shvarFile *ifcfg, shvarFile *network_ifcfg, gboolean routes_rea
ip6_privacy_val,
NM_SETTING_IP_CONFIG_AUTO_ROUTE_EXT_GW,
svGetValueTernary(ifcfg, "IPV6_AUTO_ROUTE_EXT_GW"),
+ NM_SETTING_IP_CONFIG_REPLACE_LOCAL_RULE,
+ svGetValueTernary(ifcfg, "IPV6_REPLACE_LOCAL_RULE"),
NULL);
/* Don't bother to read IP, DNS and routes when IPv6 is disabled */
diff --git a/src/core/settings/plugins/ifcfg-rh/nms-ifcfg-rh-utils.c b/src/core/settings/plugins/ifcfg-rh/nms-ifcfg-rh-utils.c
index 85a0eb2631..552310ddf7 100644
--- a/src/core/settings/plugins/ifcfg-rh/nms-ifcfg-rh-utils.c
+++ b/src/core/settings/plugins/ifcfg-rh/nms-ifcfg-rh-utils.c
@@ -962,6 +962,7 @@ const NMSIfcfgKeyTypeInfo nms_ifcfg_well_known_keys[] = {
_KEY_TYPE("IPV4_DNS_PRIORITY", NMS_IFCFG_KEY_TYPE_IS_PLAIN),
_KEY_TYPE("IPV4_FAILURE_FATAL", NMS_IFCFG_KEY_TYPE_IS_PLAIN),
_KEY_TYPE("IPV4_LINK_LOCAL", NMS_IFCFG_KEY_TYPE_IS_PLAIN),
+ _KEY_TYPE("IPV4_REPLACE_LOCAL_RULE", NMS_IFCFG_KEY_TYPE_IS_PLAIN),
_KEY_TYPE("IPV4_REQUIRED_TIMEOUT", NMS_IFCFG_KEY_TYPE_IS_PLAIN),
_KEY_TYPE("IPV4_ROUTE_METRIC", NMS_IFCFG_KEY_TYPE_IS_PLAIN),
_KEY_TYPE("IPV4_ROUTE_TABLE", NMS_IFCFG_KEY_TYPE_IS_PLAIN),
@@ -986,6 +987,7 @@ const NMSIfcfgKeyTypeInfo nms_ifcfg_well_known_keys[] = {
_KEY_TYPE("IPV6_PRIVACY", NMS_IFCFG_KEY_TYPE_IS_PLAIN),
_KEY_TYPE("IPV6_PRIVACY_PREFER_PUBLIC_IP", NMS_IFCFG_KEY_TYPE_IS_PLAIN),
_KEY_TYPE("IPV6_RA_TIMEOUT", NMS_IFCFG_KEY_TYPE_IS_PLAIN),
+ _KEY_TYPE("IPV6_REPLACE_LOCAL_RULE", NMS_IFCFG_KEY_TYPE_IS_PLAIN),
_KEY_TYPE("IPV6_REQUIRED_TIMEOUT", NMS_IFCFG_KEY_TYPE_IS_PLAIN),
_KEY_TYPE("IPV6_RES_OPTIONS", NMS_IFCFG_KEY_TYPE_IS_PLAIN),
_KEY_TYPE("IPV6_ROUTE_METRIC", NMS_IFCFG_KEY_TYPE_IS_PLAIN),
diff --git a/src/core/settings/plugins/ifcfg-rh/nms-ifcfg-rh-utils.h b/src/core/settings/plugins/ifcfg-rh/nms-ifcfg-rh-utils.h
index 31064274ee..4fa9f18ce5 100644
--- a/src/core/settings/plugins/ifcfg-rh/nms-ifcfg-rh-utils.h
+++ b/src/core/settings/plugins/ifcfg-rh/nms-ifcfg-rh-utils.h
@@ -33,7 +33,7 @@ typedef struct {
NMSIfcfgKeyTypeFlags key_flags;
} NMSIfcfgKeyTypeInfo;
-extern const NMSIfcfgKeyTypeInfo nms_ifcfg_well_known_keys[259];
+extern const NMSIfcfgKeyTypeInfo nms_ifcfg_well_known_keys[261];
const NMSIfcfgKeyTypeInfo *nms_ifcfg_well_known_key_find_info(const char *key, gssize *out_idx);
diff --git a/src/core/settings/plugins/ifcfg-rh/nms-ifcfg-rh-writer.c b/src/core/settings/plugins/ifcfg-rh/nms-ifcfg-rh-writer.c
index 2ea097fd98..4126002039 100644
--- a/src/core/settings/plugins/ifcfg-rh/nms-ifcfg-rh-writer.c
+++ b/src/core/settings/plugins/ifcfg-rh/nms-ifcfg-rh-writer.c
@@ -2941,6 +2941,10 @@ write_ip4_setting(NMConnection *connection,
svSetValueTernary(ifcfg,
"IPV4_AUTO_ROUTE_EXT_GW",
nm_setting_ip_config_get_auto_route_ext_gw(s_ip4));
+
+ svSetValueTernary(ifcfg,
+ "IPV4_REPLACE_LOCAL_RULE",
+ nm_setting_ip_config_get_replace_local_rule(s_ip4));
}
static void
@@ -3205,6 +3209,10 @@ write_ip6_setting(NMConnection *connection, shvarFile *ifcfg, GString **out_rout
svSetValueTernary(ifcfg,
"IPV6_AUTO_ROUTE_EXT_GW",
nm_setting_ip_config_get_auto_route_ext_gw(s_ip6));
+
+ svSetValueTernary(ifcfg,
+ "IPV6_REPLACE_LOCAL_RULE",
+ nm_setting_ip_config_get_replace_local_rule(s_ip6));
}
static void
diff --git a/src/libnm-client-impl/libnm.ver b/src/libnm-client-impl/libnm.ver
index 75726d7caa..b816f2d725 100644
--- a/src/libnm-client-impl/libnm.ver
+++ b/src/libnm-client-impl/libnm.ver
@@ -1923,6 +1923,7 @@ global:
libnm_1_44_0 {
global:
nm_active_connection_get_controller;
+ nm_setting_ip_config_get_replace_local_rule;
nm_setting_gsm_get_initial_eps_apn;
nm_setting_gsm_get_initial_eps_config;
} libnm_1_42_0;
diff --git a/src/libnm-core-impl/gen-metadata-nm-settings-libnm-core.xml.in b/src/libnm-core-impl/gen-metadata-nm-settings-libnm-core.xml.in
index 562ba7916f..0559c2572f 100644
--- a/src/libnm-core-impl/gen-metadata-nm-settings-libnm-core.xml.in
+++ b/src/libnm-core-impl/gen-metadata-nm-settings-libnm-core.xml.in
@@ -1582,6 +1582,10 @@
dbus-type="b"
gprop-type="gboolean"
/>
+ <property name="replace-local-rule"
+ dbus-type="i"
+ gprop-type="NMTernary"
+ />
<property name="required-timeout"
dbus-type="i"
gprop-type="gint"
@@ -1713,6 +1717,10 @@
dbus-type="i"
gprop-type="gint"
/>
+ <property name="replace-local-rule"
+ dbus-type="i"
+ gprop-type="NMTernary"
+ />
<property name="required-timeout"
dbus-type="i"
gprop-type="gint"
diff --git a/src/libnm-core-impl/nm-setting-ip-config.c b/src/libnm-core-impl/nm-setting-ip-config.c
index 91557623d1..4250aa1fe9 100644
--- a/src/libnm-core-impl/nm-setting-ip-config.c
+++ b/src/libnm-core-impl/nm-setting-ip-config.c
@@ -3999,7 +3999,8 @@ NM_GOBJECT_PROPERTIES_DEFINE(NMSettingIPConfig,
PROP_REQUIRED_TIMEOUT,
PROP_DHCP_IAID,
PROP_DHCP_REJECT_SERVERS,
- PROP_AUTO_ROUTE_EXT_GW, );
+ PROP_AUTO_ROUTE_EXT_GW,
+ PROP_REPLACE_LOCAL_RULE, );
G_DEFINE_ABSTRACT_TYPE(NMSettingIPConfig, nm_setting_ip_config, NM_TYPE_SETTING)
@@ -5445,6 +5446,22 @@ nm_setting_ip_config_get_auto_route_ext_gw(NMSettingIPConfig *setting)
return NM_SETTING_IP_CONFIG_GET_PRIVATE(setting)->auto_route_ext_gw;
}
+/**
+ * nm_setting_ip_config_get_replace_local_rule:
+ * @setting: the #NMSettingIPConfig
+ *
+ * Returns: the #NMSettingIPConfig:replace-local-rule property of the setting
+ *
+ * Since: 1.44
+ **/
+NMTernary
+nm_setting_ip_config_get_replace_local_rule(NMSettingIPConfig *setting)
+{
+ g_return_val_if_fail(NM_IS_SETTING_IP_CONFIG(setting), NM_TERNARY_DEFAULT);
+
+ return NM_SETTING_IP_CONFIG_GET_PRIVATE(setting)->replace_local_rule;
+}
+
static gboolean
verify_label(const char *label)
{
@@ -6105,6 +6122,13 @@ _nm_sett_info_property_override_create_array_ip_config(int addr_family)
.direct_offset =
NM_STRUCT_OFFSET_ENSURE_TYPE(int, NMSettingIPConfigPrivate, auto_route_ext_gw));
+ _nm_properties_override_gobj(
+ properties_override,
+ obj_properties[PROP_REPLACE_LOCAL_RULE],
+ &nm_sett_info_propert_type_direct_enum,
+ .direct_offset =
+ NM_STRUCT_OFFSET_ENSURE_TYPE(int, NMSettingIPConfigPrivate, replace_local_rule));
+
return properties_override;
}
@@ -6807,5 +6831,21 @@ nm_setting_ip_config_class_init(NMSettingIPConfigClass *klass)
NM_TERNARY_DEFAULT,
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
+ /**
+ * NMSettingIPConfig:replace-local-rule:
+ *
+ * Connections will default to keep the autogenerated priority 0 local rule
+ * unless this setting is set to %TRUE.
+ *
+ * Since: 1.44
+ */
+ obj_properties[PROP_REPLACE_LOCAL_RULE] =
+ g_param_spec_enum(NM_SETTING_IP_CONFIG_REPLACE_LOCAL_RULE,
+ "",
+ "",
+ NM_TYPE_TERNARY,
+ NM_TERNARY_DEFAULT,
+ G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
+
g_object_class_install_properties(object_class, _PROPERTY_ENUMS_LAST, obj_properties);
}
diff --git a/src/libnm-core-impl/nm-setting-ip4-config.c b/src/libnm-core-impl/nm-setting-ip4-config.c
index f847918eda..83727ea3cb 100644
--- a/src/libnm-core-impl/nm-setting-ip4-config.c
+++ b/src/libnm-core-impl/nm-setting-ip4-config.c
@@ -808,6 +808,15 @@ nm_setting_ip4_config_class_init(NMSettingIP4ConfigClass *klass)
* ---end---
*/
+ /* ---ifcfg-rh---
+ * property: replace-local-rule
+ * variable: IPV4_REPLACE_LOCAL_RULE(+)
+ * default: no
+ * description: Connections will default to keep the autogenerated priority
+ * 0 local rule unless this setting is set to %TRUE.
+ * ---end---
+ */
+
/**
* NMSettingIP4Config:dhcp-client-id:
*
diff --git a/src/libnm-core-impl/nm-setting-ip6-config.c b/src/libnm-core-impl/nm-setting-ip6-config.c
index 43e2e3c708..54f0967c09 100644
--- a/src/libnm-core-impl/nm-setting-ip6-config.c
+++ b/src/libnm-core-impl/nm-setting-ip6-config.c
@@ -752,6 +752,15 @@ nm_setting_ip6_config_class_init(NMSettingIP6ConfigClass *klass)
* ---end---
*/
+ /* ---ifcfg-rh---
+ * property: replace-local-rule
+ * variable: IPV6_REPLACE_LOCAL_RULE(+)
+ * default: no
+ * description: Connections will default to keep the autogenerated priority
+ * 0 local rule unless this setting is set to %TRUE.
+ * ---end---
+ */
+
/**
* NMSettingIP6Config:ip6-privacy:
*
diff --git a/src/libnm-core-impl/nm-setting-private.h b/src/libnm-core-impl/nm-setting-private.h
index 26a31b1e5c..fff6c1ccc5 100644
--- a/src/libnm-core-impl/nm-setting-private.h
+++ b/src/libnm-core-impl/nm-setting-private.h
@@ -198,6 +198,7 @@ typedef struct {
char *dhcp_iaid;
gint64 route_metric;
int auto_route_ext_gw;
+ int replace_local_rule;
gint32 required_timeout;
gint32 dad_timeout;
gint32 dhcp_timeout;
diff --git a/src/libnm-core-impl/tests/test-general.c b/src/libnm-core-impl/tests/test-general.c
index 316d64fb7a..8a98265abb 100644
--- a/src/libnm-core-impl/tests/test-general.c
+++ b/src/libnm-core-impl/tests/test-general.c
@@ -4014,6 +4014,7 @@ test_connection_diff_a_only(void)
{NM_SETTING_IP_CONFIG_DHCP_REJECT_SERVERS, NM_SETTING_DIFF_RESULT_IN_A},
{NM_SETTING_IP4_CONFIG_LINK_LOCAL, NM_SETTING_DIFF_RESULT_IN_A},
{NM_SETTING_IP_CONFIG_AUTO_ROUTE_EXT_GW, NM_SETTING_DIFF_RESULT_IN_A},
+ {NM_SETTING_IP_CONFIG_REPLACE_LOCAL_RULE, NM_SETTING_DIFF_RESULT_IN_A},
{NULL, NM_SETTING_DIFF_RESULT_UNKNOWN},
}},
};
diff --git a/src/libnm-core-public/nm-setting-ip-config.h b/src/libnm-core-public/nm-setting-ip-config.h
index d52cf1474b..bb10fb3617 100644
--- a/src/libnm-core-public/nm-setting-ip-config.h
+++ b/src/libnm-core-public/nm-setting-ip-config.h
@@ -340,6 +340,7 @@ char *nm_ip_routing_rule_to_string(const NMIPRoutingRule *self,
#define NM_SETTING_IP_CONFIG_DHCP_IAID "dhcp-iaid"
#define NM_SETTING_IP_CONFIG_DHCP_REJECT_SERVERS "dhcp-reject-servers"
#define NM_SETTING_IP_CONFIG_AUTO_ROUTE_EXT_GW "auto-route-ext-gw"
+#define NM_SETTING_IP_CONFIG_REPLACE_LOCAL_RULE "replace-local-rule"
/* these are not real GObject properties. */
#define NM_SETTING_IP_CONFIG_ROUTING_RULES "routing-rules"
@@ -499,6 +500,8 @@ NM_AVAILABLE_IN_1_28
void nm_setting_ip_config_clear_dhcp_reject_servers(NMSettingIPConfig *setting);
NM_AVAILABLE_IN_1_42
NMTernary nm_setting_ip_config_get_auto_route_ext_gw(NMSettingIPConfig *setting);
+NM_AVAILABLE_IN_1_44
+NMTernary nm_setting_ip_config_get_replace_local_rule(NMSettingIPConfig *setting);
G_END_DECLS
diff --git a/src/libnmc-setting/nm-meta-setting-desc.c b/src/libnmc-setting/nm-meta-setting-desc.c
index d0714a86ab..c8b8e3a15b 100644
--- a/src/libnmc-setting/nm-meta-setting-desc.c
+++ b/src/libnmc-setting/nm-meta-setting-desc.c
@@ -6294,6 +6294,9 @@ static const NMMetaPropertyInfo *const property_infos_IP4_CONFIG[] = {
PROPERTY_INFO (NM_SETTING_IP_CONFIG_AUTO_ROUTE_EXT_GW, DESCRIBE_DOC_NM_SETTING_IP4_CONFIG_AUTO_ROUTE_EXT_GW,
.property_type = &_pt_gobject_ternary,
),
+ PROPERTY_INFO (NM_SETTING_IP_CONFIG_REPLACE_LOCAL_RULE, DESCRIBE_DOC_NM_SETTING_IP4_CONFIG_REPLACE_LOCAL_RULE,
+ .property_type = &_pt_gobject_ternary,
+ ),
NULL
};
@@ -6545,6 +6548,9 @@ static const NMMetaPropertyInfo *const property_infos_IP6_CONFIG[] = {
PROPERTY_INFO_WITH_DESC (NM_SETTING_IP6_CONFIG_TOKEN,
.property_type = &_pt_gobject_string,
),
+ PROPERTY_INFO (NM_SETTING_IP_CONFIG_REPLACE_LOCAL_RULE, DESCRIBE_DOC_NM_SETTING_IP6_CONFIG_REPLACE_LOCAL_RULE,
+ .property_type = &_pt_gobject_ternary,
+ ),
NULL
};
diff --git a/src/libnmc-setting/settings-docs.h.in b/src/libnmc-setting/settings-docs.h.in
index ec157a5ab1..ece3cfc831 100644
--- a/src/libnmc-setting/settings-docs.h.in
+++ b/src/libnmc-setting/settings-docs.h.in
@@ -181,6 +181,7 @@
#define DESCRIBE_DOC_NM_SETTING_IP4_CONFIG_MAY_FAIL N_("If TRUE, allow overall network configuration to proceed even if the configuration specified by this property times out. Note that at least one IP configuration must succeed or overall network configuration will still fail. For example, in IPv6-only networks, setting this property to TRUE on the NMSettingIP4Config allows the overall network configuration to succeed if IPv4 configuration fails but IPv6 configuration completes successfully.")
#define DESCRIBE_DOC_NM_SETTING_IP4_CONFIG_METHOD N_("IP configuration method. NMSettingIP4Config and NMSettingIP6Config both support \"disabled\", \"auto\", \"manual\", and \"link-local\". See the subclass-specific documentation for other values. In general, for the \"auto\" method, properties such as \"dns\" and \"routes\" specify information that is added on to the information returned from automatic configuration. The \"ignore-auto-routes\" and \"ignore-auto-dns\" properties modify this behavior. For methods that imply no upstream network, such as \"shared\" or \"link-local\", these properties must be empty. For IPv4 method \"shared\", the IP subnet can be configured by adding one manual IPv4 address or otherwise 10.42.x.0/24 is chosen. Note that the shared method must be configured on the interface which shares the internet to a subnet, not on the uplink which is shared.")
#define DESCRIBE_DOC_NM_SETTING_IP4_CONFIG_NEVER_DEFAULT N_("If TRUE, this connection will never be the default connection for this IP type, meaning it will never be assigned the default route by NetworkManager.")
+#define DESCRIBE_DOC_NM_SETTING_IP4_CONFIG_REPLACE_LOCAL_RULE N_("Connections will default to keep the autogenerated priority 0 local rule unless this setting is set to TRUE.")
#define DESCRIBE_DOC_NM_SETTING_IP4_CONFIG_REQUIRED_TIMEOUT N_("The minimum time interval in milliseconds for which dynamic IP configuration should be tried before the connection succeeds. This property is useful for example if both IPv4 and IPv6 are enabled and are allowed to fail. Normally the connection succeeds as soon as one of the two address families completes; by setting a required timeout for e.g. IPv4, one can ensure that even if IP6 succeeds earlier than IPv4, NetworkManager waits some time for IPv4 before the connection becomes active. Note that if \"may-fail\" is FALSE for the same address family, this property has no effect as NetworkManager needs to wait for the full DHCP timeout. A zero value means that no required timeout is present, -1 means the default value (either configuration ipvx.required-timeout override or zero).")
#define DESCRIBE_DOC_NM_SETTING_IP4_CONFIG_ROUTE_METRIC N_("The default metric for routes that don't explicitly specify a metric. The default value -1 means that the metric is chosen automatically based on the device type. The metric applies to dynamic routes, manual (static) routes that don't have an explicit metric setting, address prefix routes, and the default route. Note that for IPv6, the kernel accepts zero (0) but coerces it to 1024 (user default). Hence, setting this property to zero effectively mean setting it to 1024. For IPv4, zero is a regular value for the metric.")
#define DESCRIBE_DOC_NM_SETTING_IP4_CONFIG_ROUTE_TABLE N_("Enable policy routing (source routing) and set the routing table used when adding routes. This affects all routes, including device-routes, IPv4LL, DHCP, SLAAC, default-routes and static routes. But note that static routes can individually overwrite the setting by explicitly specifying a non-zero routing table. If the table setting is left at zero, it is eligible to be overwritten via global configuration. If the property is zero even after applying the global configuration value, policy routing is disabled for the address family of this connection. Policy routing disabled means that NetworkManager will add all routes to the main table (except static routes that explicitly configure a different table). Additionally, NetworkManager will not delete any extraneous routes from tables except the main table. This is to preserve backward compatibility for users who manage routing tables outside of NetworkManager.")
@@ -210,6 +211,7 @@
#define DESCRIBE_DOC_NM_SETTING_IP6_CONFIG_MTU N_("Maximum transmission unit size, in bytes. If zero (the default), the MTU is set automatically from router advertisements or is left equal to the link-layer MTU. If greater than the link-layer MTU, or greater than zero but less than the minimum IPv6 MTU of 1280, this value has no effect.")
#define DESCRIBE_DOC_NM_SETTING_IP6_CONFIG_NEVER_DEFAULT N_("If TRUE, this connection will never be the default connection for this IP type, meaning it will never be assigned the default route by NetworkManager.")
#define DESCRIBE_DOC_NM_SETTING_IP6_CONFIG_RA_TIMEOUT N_("A timeout for waiting Router Advertisements in seconds. If zero (the default), a globally configured default is used. If still unspecified, the timeout depends on the sysctl settings of the device. Set to 2147483647 (MAXINT32) for infinity.")
+#define DESCRIBE_DOC_NM_SETTING_IP6_CONFIG_REPLACE_LOCAL_RULE N_("Connections will default to keep the autogenerated priority 0 local rule unless this setting is set to TRUE.")
#define DESCRIBE_DOC_NM_SETTING_IP6_CONFIG_REQUIRED_TIMEOUT N_("The minimum time interval in milliseconds for which dynamic IP configuration should be tried before the connection succeeds. This property is useful for example if both IPv4 and IPv6 are enabled and are allowed to fail. Normally the connection succeeds as soon as one of the two address families completes; by setting a required timeout for e.g. IPv4, one can ensure that even if IP6 succeeds earlier than IPv4, NetworkManager waits some time for IPv4 before the connection becomes active. Note that if \"may-fail\" is FALSE for the same address family, this property has no effect as NetworkManager needs to wait for the full DHCP timeout. A zero value means that no required timeout is present, -1 means the default value (either configuration ipvx.required-timeout override or zero).")
#define DESCRIBE_DOC_NM_SETTING_IP6_CONFIG_ROUTE_METRIC N_("The default metric for routes that don't explicitly specify a metric. The default value -1 means that the metric is chosen automatically based on the device type. The metric applies to dynamic routes, manual (static) routes that don't have an explicit metric setting, address prefix routes, and the default route. Note that for IPv6, the kernel accepts zero (0) but coerces it to 1024 (user default). Hence, setting this property to zero effectively mean setting it to 1024. For IPv4, zero is a regular value for the metric.")
#define DESCRIBE_DOC_NM_SETTING_IP6_CONFIG_ROUTE_TABLE N_("Enable policy routing (source routing) and set the routing table used when adding routes. This affects all routes, including device-routes, IPv4LL, DHCP, SLAAC, default-routes and static routes. But note that static routes can individually overwrite the setting by explicitly specifying a non-zero routing table. If the table setting is left at zero, it is eligible to be overwritten via global configuration. If the property is zero even after applying the global configuration value, policy routing is disabled for the address family of this connection. Policy routing disabled means that NetworkManager will add all routes to the main table (except static routes that explicitly configure a different table). Additionally, NetworkManager will not delete any extraneous routes from tables except the main table. This is to preserve backward compatibility for users who manage routing tables outside of NetworkManager.")
diff --git a/src/nmcli/gen-metadata-nm-settings-nmcli.xml.in b/src/nmcli/gen-metadata-nm-settings-nmcli.xml.in
index 377603d97f..3fa715a0fb 100644
--- a/src/nmcli/gen-metadata-nm-settings-nmcli.xml.in
+++ b/src/nmcli/gen-metadata-nm-settings-nmcli.xml.in
@@ -712,6 +712,8 @@
description="Array of servers from which DHCP offers must be rejected. This property is useful to avoid getting a lease from misconfigured or rogue servers. For DHCPv4, each element must be an IPv4 address, optionally followed by a slash and a prefix length (e.g. &quot;192.168.122.0/24&quot;). This property is currently not implemented for DHCPv6." />
<property name="auto-route-ext-gw"
description="VPN connections will default to add the route automatically unless this setting is set to FALSE. For other connection types, adding such an automatic route is currently not supported and setting this to TRUE has no effect." />
+ <property name="replace-local-rule"
+ description="Connections will default to keep the autogenerated priority 0 local rule unless this setting is set to TRUE." />
</setting>
<setting name="ipv6" >
<property name="method"
@@ -771,6 +773,8 @@
description="VPN connections will default to add the route automatically unless this setting is set to FALSE. For other connection types, adding such an automatic route is currently not supported and setting this to TRUE has no effect." />
<property name="token"
description="Configure the token for draft-chown-6man-tokenised-ipv6-identifiers-02 IPv6 tokenized interface identifiers. Useful with eui64 addr-gen-mode." />
+ <property name="replace-local-rule"
+ description="Connections will default to keep the autogenerated priority 0 local rule unless this setting is set to TRUE." />
</setting>
<setting name="loopback" >
<property name="mtu"
diff --git a/src/tests/client/test-client.check-on-disk/test_003.expected b/src/tests/client/test-client.check-on-disk/test_003.expected
index ae4ad72dc1..0adc996935 100644
--- a/src/tests/client/test-client.check-on-disk/test_003.expected
+++ b/src/tests/client/test-client.check-on-disk/test_003.expected
@@ -182,12 +182,12 @@ id
path
uuid
<<<
-size: 5076
+size: 5182
location: src/tests/client/test-client.py:test_003()/14
cmd: $NMCLI con s con-gsm1
lang: C
returncode: 0
-stdout: 4943 bytes
+stdout: 5049 bytes
>>>
connection.id: con-gsm1
connection.uuid: UUID-con-gsm1-REPLACED-REPLACED-REPL
@@ -244,6 +244,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
@@ -272,6 +273,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
serial.baud: 5
serial.bits: 8
serial.parity: even
@@ -299,12 +301,12 @@ proxy.pac-url: --
proxy.pac-script: --
<<<
-size: 5115
+size: 5221
location: src/tests/client/test-client.py:test_003()/15
cmd: $NMCLI con s con-gsm1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 4972 bytes
+stdout: 5078 bytes
>>>
connection.id: con-gsm1
connection.uuid: UUID-con-gsm1-REPLACED-REPLACED-REPL
@@ -361,6 +363,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
@@ -389,6 +392,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
serial.baud: 5
serial.bits: 8
serial.parity: even
@@ -416,42 +420,42 @@ proxy.pac-url: --
proxy.pac-script: --
<<<
-size: 503
+size: 509
location: src/tests/client/test-client.py:test_003()/16
cmd: $NMCLI -g all con s con-gsm1
lang: C
returncode: 0
-stdout: 364 bytes
+stdout: 370 bytes
>>>
connection:con-gsm1:UUID-con-gsm1-REPLACED-REPLACED-REPL::gsm::no:0:-1:0:-1:0:no:::::-1::0:unknown:default:-1:-1:-1:0x0:-1:-1
-ipv4:auto::: :0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1:-1::0::-1
-ipv6:auto::::0::::-1:0::no:no:no:yes:-1:-1:default:0:auto:::0:yes::0x0:-1:
+ipv4:auto::: :0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1:-1::0::-1:-1
+ipv6:auto::::0::::-1:0::no:no:no:yes:-1:-1:default:0:auto:::0:yes::0x0:-1::-1
serial:5:8:even:1:100
gsm:no:::<hidden>:0:xyz.con-gsm1::<hidden>:0:no::::auto:no:
proxy:none:no::
<<<
-size: 513
+size: 519
location: src/tests/client/test-client.py:test_003()/17
cmd: $NMCLI -g all con s con-gsm1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 364 bytes
+stdout: 370 bytes
>>>
connection:con-gsm1:UUID-con-gsm1-REPLACED-REPLACED-REPL::gsm::no:0:-1:0:-1:0:no:::::-1::0:unknown:default:-1:-1:-1:0x0:-1:-1
-ipv4:auto::: :0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1:-1::0::-1
-ipv6:auto::::0::::-1:0::no:no:no:yes:-1:-1:default:0:auto:::0:yes::0x0:-1:
+ipv4:auto::: :0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1:-1::0::-1:-1
+ipv6:auto::::0::::-1:0::no:no:no:yes:-1:-1:default:0:auto:::0:yes::0x0:-1::-1
serial:5:8:even:1:100
gsm:no:::<hidden>:0:xyz.con-gsm1::<hidden>:0:no::::auto:no:
proxy:none:no::
<<<
-size: 5064
+size: 5170
location: src/tests/client/test-client.py:test_003()/18
cmd: $NMCLI con s con-gsm2
lang: C
returncode: 0
-stdout: 4931 bytes
+stdout: 5037 bytes
>>>
connection.id: con-gsm2
connection.uuid: UUID-con-gsm2-REPLACED-REPLACED-REPL
@@ -508,6 +512,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
@@ -536,6 +541,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
serial.baud: 5
serial.bits: 8
serial.parity: even
@@ -563,12 +569,12 @@ proxy.pac-url: --
proxy.pac-script: --
<<<
-size: 5103
+size: 5209
location: src/tests/client/test-client.py:test_003()/19
cmd: $NMCLI con s con-gsm2
lang: pl_PL.UTF-8
returncode: 0
-stdout: 4960 bytes
+stdout: 5066 bytes
>>>
connection.id: con-gsm2
connection.uuid: UUID-con-gsm2-REPLACED-REPLACED-REPL
@@ -625,6 +631,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
@@ -653,6 +660,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
serial.baud: 5
serial.bits: 8
serial.parity: even
@@ -680,42 +688,42 @@ proxy.pac-url: --
proxy.pac-script: --
<<<
-size: 491
+size: 497
location: src/tests/client/test-client.py:test_003()/20
cmd: $NMCLI -g all con s con-gsm2
lang: C
returncode: 0
-stdout: 352 bytes
+stdout: 358 bytes
>>>
connection:con-gsm2:UUID-con-gsm2-REPLACED-REPLACED-REPL::gsm::no:0:-1:0:-1:0:no:::::-1::0:unknown:default:-1:-1:-1:0x0:-1:-1
-ipv4:auto::: :0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1:-1::0::-1
-ipv6:auto::::0::::-1:0::no:no:no:yes:-1:-1:default:0:auto:::0:yes::0x0:-1:
+ipv4:auto::: :0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1:-1::0::-1:-1
+ipv6:auto::::0::::-1:0::no:no:no:yes:-1:-1:default:0:auto:::0:yes::0x0:-1::-1
serial:5:8:even:1:100
gsm:no:::<hidden>:0:::<hidden>:0:no::::auto:no:
proxy:none:no::
<<<
-size: 501
+size: 507
location: src/tests/client/test-client.py:test_003()/21
cmd: $NMCLI -g all con s con-gsm2
lang: pl_PL.UTF-8
returncode: 0
-stdout: 352 bytes
+stdout: 358 bytes
>>>
connection:con-gsm2:UUID-con-gsm2-REPLACED-REPLACED-REPL::gsm::no:0:-1:0:-1:0:no:::::-1::0:unknown:default:-1:-1:-1:0x0:-1:-1
-ipv4:auto::: :0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1:-1::0::-1
-ipv6:auto::::0::::-1:0::no:no:no:yes:-1:-1:default:0:auto:::0:yes::0x0:-1:
+ipv4:auto::: :0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1:-1::0::-1:-1
+ipv6:auto::::0::::-1:0::no:no:no:yes:-1:-1:default:0:auto:::0:yes::0x0:-1::-1
serial:5:8:even:1:100
gsm:no:::<hidden>:0:::<hidden>:0:no::::auto:no:
proxy:none:no::
<<<
-size: 5064
+size: 5170
location: src/tests/client/test-client.py:test_003()/22
cmd: $NMCLI con s con-gsm3
lang: C
returncode: 0
-stdout: 4931 bytes
+stdout: 5037 bytes
>>>
connection.id: con-gsm3
connection.uuid: UUID-con-gsm3-REPLACED-REPLACED-REPL
@@ -772,6 +780,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
@@ -800,6 +809,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
serial.baud: 5
serial.bits: 8
serial.parity: even
@@ -827,12 +837,12 @@ proxy.pac-url: --
proxy.pac-script: --
<<<
-size: 5103
+size: 5209
location: src/tests/client/test-client.py:test_003()/23
cmd: $NMCLI con s con-gsm3
lang: pl_PL.UTF-8
returncode: 0
-stdout: 4960 bytes
+stdout: 5066 bytes
>>>
connection.id: con-gsm3
connection.uuid: UUID-con-gsm3-REPLACED-REPLACED-REPL
@@ -889,6 +899,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
@@ -917,6 +928,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
serial.baud: 5
serial.bits: 8
serial.parity: even
@@ -944,31 +956,31 @@ proxy.pac-url: --
proxy.pac-script: --
<<<
-size: 492
+size: 498
location: src/tests/client/test-client.py:test_003()/24
cmd: $NMCLI -g all con s con-gsm3
lang: C
returncode: 0
-stdout: 353 bytes
+stdout: 359 bytes
>>>
connection:con-gsm3:UUID-con-gsm3-REPLACED-REPLACED-REPL::gsm::no:0:-1:0:-1:0:no:::::-1::0:unknown:default:-1:-1:-1:0x0:-1:-1
-ipv4:auto::: :0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1:-1::0::-1
-ipv6:auto::::0::::-1:0::no:no:no:yes:-1:-1:default:0:auto:::0:yes::0x0:-1:
+ipv4:auto::: :0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1:-1::0::-1:-1
+ipv6:auto::::0::::-1:0::no:no:no:yes:-1:-1:default:0:auto:::0:yes::0x0:-1::-1
serial:5:8:even:1:100
gsm:no:::<hidden>:0: ::<hidden>:0:no::::auto:no:
proxy:none:no::
<<<
-size: 502
+size: 508
location: src/tests/client/test-client.py:test_003()/25
cmd: $NMCLI -g all con s con-gsm3
lang: pl_PL.UTF-8
returncode: 0
-stdout: 353 bytes
+stdout: 359 bytes
>>>
connection:con-gsm3:UUID-con-gsm3-REPLACED-REPLACED-REPL::gsm::no:0:-1:0:-1:0:no:::::-1::0:unknown:default:-1:-1:-1:0x0:-1:-1
-ipv4:auto::: :0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1:-1::0::-1
-ipv6:auto::::0::::-1:0::no:no:no:yes:-1:-1:default:0:auto:::0:yes::0x0:-1:
+ipv4:auto::: :0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1:-1::0::-1:-1
+ipv6:auto::::0::::-1:0::no:no:no:yes:-1:-1:default:0:auto:::0:yes::0x0:-1::-1
serial:5:8:even:1:100
gsm:no:::<hidden>:0: ::<hidden>:0:no::::auto:no:
proxy:none:no::
@@ -1114,12 +1126,12 @@ UUID NAME
UUID-ethernet-REPLACED-REPLACED-REPL ethernet
<<<
-size: 4816
+size: 4922
location: src/tests/client/test-client.py:test_003()/37
cmd: $NMCLI -f ALL con s ethernet
lang: C
returncode: 0
-stdout: 4676 bytes
+stdout: 4782 bytes
>>>
connection.id: ethernet
connection.uuid: UUID-ethernet-REPLACED-REPLACED-REPL
@@ -1191,6 +1203,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
@@ -1219,18 +1232,19 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
proxy.method: none
proxy.browser-only: no
proxy.pac-url: --
proxy.pac-script: --
<<<
-size: 4852
+size: 4958
location: src/tests/client/test-client.py:test_003()/38
cmd: $NMCLI -f ALL con s ethernet
lang: pl_PL.UTF-8
returncode: 0
-stdout: 4702 bytes
+stdout: 4808 bytes
>>>
connection.id: ethernet
connection.uuid: UUID-ethernet-REPLACED-REPLACED-REPL
@@ -1302,6 +1316,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
@@ -1330,6 +1345,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
proxy.method: none
proxy.browser-only: nie
proxy.pac-url: --
@@ -1356,12 +1372,12 @@ stdout: 51 bytes
GENERAL.STATE: aktywowano
<<<
-size: 5518
+size: 5624
location: src/tests/client/test-client.py:test_003()/41
cmd: $NMCLI con s ethernet
lang: C
returncode: 0
-stdout: 5385 bytes
+stdout: 5491 bytes
>>>
connection.id: ethernet
connection.uuid: UUID-ethernet-REPLACED-REPLACED-REPL
@@ -1433,6 +1449,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
@@ -1461,6 +1478,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
proxy.method: none
proxy.browser-only: no
proxy.pac-url: --
@@ -1480,12 +1498,12 @@ GENERAL.ZONE: --
GENERAL.MASTER-PATH: --
<<<
-size: 5558
+size: 5664
location: src/tests/client/test-client.py:test_003()/42
cmd: $NMCLI con s ethernet
lang: pl_PL.UTF-8
returncode: 0
-stdout: 5415 bytes
+stdout: 5521 bytes
>>>
connection.id: ethernet
connection.uuid: UUID-ethernet-REPLACED-REPLACED-REPL
@@ -1557,6 +1575,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
@@ -1585,6 +1604,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
proxy.method: none
proxy.browser-only: nie
proxy.pac-url: --
@@ -2090,12 +2110,12 @@ UUID NAME
UUID-ethernet-REPLACED-REPLACED-REPL ethernet
<<<
-size: 4816
+size: 4922
location: src/tests/client/test-client.py:test_003()/62
cmd: $NMCLI -f ALL con s ethernet
lang: C
returncode: 0
-stdout: 4676 bytes
+stdout: 4782 bytes
>>>
connection.id: ethernet
connection.uuid: UUID-ethernet-REPLACED-REPLACED-REPL
@@ -2167,6 +2187,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
@@ -2195,18 +2216,19 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
proxy.method: none
proxy.browser-only: no
proxy.pac-url: --
proxy.pac-script: --
<<<
-size: 4852
+size: 4958
location: src/tests/client/test-client.py:test_003()/63
cmd: $NMCLI -f ALL con s ethernet
lang: pl_PL.UTF-8
returncode: 0
-stdout: 4702 bytes
+stdout: 4808 bytes
>>>
connection.id: ethernet
connection.uuid: UUID-ethernet-REPLACED-REPLACED-REPL
@@ -2278,6 +2300,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
@@ -2306,6 +2329,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
proxy.method: none
proxy.browser-only: nie
proxy.pac-url: --
@@ -2336,12 +2360,12 @@ GENERAL.STATE: aktywowano
GENERAL.STATE: aktywowano
<<<
-size: 6228
+size: 6334
location: src/tests/client/test-client.py:test_003()/66
cmd: $NMCLI con s ethernet
lang: C
returncode: 0
-stdout: 6095 bytes
+stdout: 6201 bytes
>>>
connection.id: ethernet
connection.uuid: UUID-ethernet-REPLACED-REPLACED-REPL
@@ -2413,6 +2437,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
@@ -2441,6 +2466,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
proxy.method: none
proxy.browser-only: no
proxy.pac-url: --
@@ -2474,12 +2500,12 @@ GENERAL.ZONE: --
GENERAL.MASTER-PATH: --
<<<
-size: 6272
+size: 6378
location: src/tests/client/test-client.py:test_003()/67
cmd: $NMCLI con s ethernet
lang: pl_PL.UTF-8
returncode: 0
-stdout: 6129 bytes
+stdout: 6235 bytes
>>>
connection.id: ethernet
connection.uuid: UUID-ethernet-REPLACED-REPLACED-REPL
@@ -2551,6 +2577,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
@@ -2579,6 +2606,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
proxy.method: none
proxy.browser-only: nie
proxy.pac-url: --
@@ -3090,12 +3118,12 @@ UUID-con-gsm3-REPLACED-REPLACED-REPL gsm
UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet
<<<
-size: 6231
+size: 6337
location: src/tests/client/test-client.py:test_003()/82
cmd: $NMCLI con s ethernet
lang: C
returncode: 0
-stdout: 6098 bytes
+stdout: 6204 bytes
>>>
connection.id: ethernet
connection.uuid: UUID-ethernet-REPLACED-REPLACED-REPL
@@ -3167,6 +3195,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
@@ -3195,6 +3224,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
proxy.method: none
proxy.browser-only: no
proxy.pac-url: --
@@ -3228,12 +3258,12 @@ GENERAL.ZONE: --
GENERAL.MASTER-PATH: --
<<<
-size: 6276
+size: 6382
location: src/tests/client/test-client.py:test_003()/83
cmd: $NMCLI con s ethernet
lang: pl_PL.UTF-8
returncode: 0
-stdout: 6133 bytes
+stdout: 6239 bytes
>>>
connection.id: ethernet
connection.uuid: UUID-ethernet-REPLACED-REPLACED-REPL
@@ -3305,6 +3335,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
@@ -3333,6 +3364,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
proxy.method: none
proxy.browser-only: nie
proxy.pac-url: --
@@ -3366,12 +3398,12 @@ GENERAL.ZONE: --
GENERAL.MASTER-PATH: --
<<<
-size: 5561
+size: 5667
location: src/tests/client/test-client.py:test_003()/84
cmd: $NMCLI c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: C
returncode: 0
-stdout: 5388 bytes
+stdout: 5494 bytes
>>>
connection.id: ethernet
connection.uuid: UUID-ethernet-REPLACED-REPLACED-REPL
@@ -3443,6 +3475,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
@@ -3471,6 +3504,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
proxy.method: none
proxy.browser-only: no
proxy.pac-url: --
@@ -3490,12 +3524,12 @@ GENERAL.ZONE: --
GENERAL.MASTER-PATH: --
<<<
-size: 5602
+size: 5708
location: src/tests/client/test-client.py:test_003()/85
cmd: $NMCLI c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 5419 bytes
+stdout: 5525 bytes
>>>
connection.id: ethernet
connection.uuid: UUID-ethernet-REPLACED-REPLACED-REPL
@@ -3567,6 +3601,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
@@ -3595,6 +3630,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
proxy.method: none
proxy.browser-only: nie
proxy.pac-url: --
@@ -3824,12 +3860,12 @@ UUID-con-gsm3-REPLACED-REPLACED-REPL gsm
UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet
<<<
-size: 6243
+size: 6349
location: src/tests/client/test-client.py:test_003()/92
cmd: $NMCLI --color yes con s ethernet
lang: C
returncode: 0
-stdout: 6098 bytes
+stdout: 6204 bytes
>>>
connection.id: ethernet
connection.uuid: UUID-ethernet-REPLACED-REPLACED-REPL
@@ -3901,6 +3937,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
@@ -3929,6 +3966,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
proxy.method: none
proxy.browser-only: no
proxy.pac-url: --
@@ -3962,12 +4000,12 @@ GENERAL.ZONE: --
GENERAL.MASTER-PATH: --
<<<
-size: 6288
+size: 6394
location: src/tests/client/test-client.py:test_003()/93
cmd: $NMCLI --color yes con s ethernet
lang: pl_PL.UTF-8
returncode: 0
-stdout: 6133 bytes
+stdout: 6239 bytes
>>>
connection.id: ethernet
connection.uuid: UUID-ethernet-REPLACED-REPLACED-REPL
@@ -4039,6 +4077,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
@@ -4067,6 +4106,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
proxy.method: none
proxy.browser-only: nie
proxy.pac-url: --
@@ -4100,12 +4140,12 @@ GENERAL.ZONE: --
GENERAL.MASTER-PATH: --
<<<
-size: 5573
+size: 5679
location: src/tests/client/test-client.py:test_003()/94
cmd: $NMCLI --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: C
returncode: 0
-stdout: 5388 bytes
+stdout: 5494 bytes
>>>
connection.id: ethernet
connection.uuid: UUID-ethernet-REPLACED-REPLACED-REPL
@@ -4177,6 +4217,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
@@ -4205,6 +4246,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
proxy.method: none
proxy.browser-only: no
proxy.pac-url: --
@@ -4224,12 +4266,12 @@ GENERAL.ZONE: --
GENERAL.MASTER-PATH: --
<<<
-size: 5614
+size: 5720
location: src/tests/client/test-client.py:test_003()/95
cmd: $NMCLI --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 5419 bytes
+stdout: 5525 bytes
>>>
connection.id: ethernet
connection.uuid: UUID-ethernet-REPLACED-REPLACED-REPL
@@ -4301,6 +4343,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
@@ -4329,6 +4372,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
proxy.method: none
proxy.browser-only: nie
proxy.pac-url: --
@@ -4574,12 +4618,12 @@ UUID-con-gsm3-REPLACED-REPLACED-REPL gsm
UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet
<<<
-size: 7484
+size: 7590
location: src/tests/client/test-client.py:test_003()/102
cmd: $NMCLI --pretty con s ethernet
lang: C
returncode: 0
-stdout: 7341 bytes
+stdout: 7447 bytes
>>>
===============================================================================
Connection profile details (ethernet)
@@ -4656,6 +4700,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
ipv6.method: auto
ipv6.dns: --
@@ -4685,6 +4730,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
proxy.method: none
proxy.browser-only: no
@@ -4728,12 +4774,12 @@ GENERAL.MASTER-PATH: --
-------------------------------------------------------------------------------
<<<
-size: 7550
+size: 7656
location: src/tests/client/test-client.py:test_003()/103
cmd: $NMCLI --pretty con s ethernet
lang: pl_PL.UTF-8
returncode: 0
-stdout: 7397 bytes
+stdout: 7503 bytes
>>>
===============================================================================
Szczegóły profilu połączenia (ethernet)
@@ -4810,6 +4856,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
ipv6.method: auto
ipv6.dns: --
@@ -4839,6 +4886,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
proxy.method: none
proxy.browser-only: nie
@@ -4882,12 +4930,12 @@ GENERAL.MASTER-PATH: --
-------------------------------------------------------------------------------
<<<
-size: 6502
+size: 6608
location: src/tests/client/test-client.py:test_003()/104
cmd: $NMCLI --pretty c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: C
returncode: 0
-stdout: 6319 bytes
+stdout: 6425 bytes
>>>
===============================================================================
Connection profile details (ethernet)
@@ -4964,6 +5012,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
ipv6.method: auto
ipv6.dns: --
@@ -4993,6 +5042,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
proxy.method: none
proxy.browser-only: no
@@ -5018,12 +5068,12 @@ GENERAL.MASTER-PATH: --
-------------------------------------------------------------------------------
<<<
-size: 6556
+size: 6662
location: src/tests/client/test-client.py:test_003()/105
cmd: $NMCLI --pretty c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 6363 bytes
+stdout: 6469 bytes
>>>
===============================================================================
Szczegóły profilu połączenia (ethernet)
@@ -5100,6 +5150,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
ipv6.method: auto
ipv6.dns: --
@@ -5129,6 +5180,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
proxy.method: none
proxy.browser-only: nie
@@ -5404,12 +5456,12 @@ UUID-con-gsm3-REPLACED-REPLACED-REPL gsm
UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet
<<<
-size: 7496
+size: 7602
location: src/tests/client/test-client.py:test_003()/112
cmd: $NMCLI --pretty --color yes con s ethernet
lang: C
returncode: 0
-stdout: 7341 bytes
+stdout: 7447 bytes
>>>
===============================================================================
Connection profile details (ethernet)
@@ -5486,6 +5538,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
ipv6.method: auto
ipv6.dns: --
@@ -5515,6 +5568,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
proxy.method: none
proxy.browser-only: no
@@ -5558,12 +5612,12 @@ GENERAL.MASTER-PATH: --
-------------------------------------------------------------------------------
<<<
-size: 7562
+size: 7668
location: src/tests/client/test-client.py:test_003()/113
cmd: $NMCLI --pretty --color yes con s ethernet
lang: pl_PL.UTF-8
returncode: 0
-stdout: 7397 bytes
+stdout: 7503 bytes
>>>
===============================================================================
Szczegóły profilu połączenia (ethernet)
@@ -5640,6 +5694,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
ipv6.method: auto
ipv6.dns: --
@@ -5669,6 +5724,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
proxy.method: none
proxy.browser-only: nie
@@ -5712,12 +5768,12 @@ GENERAL.MASTER-PATH: --
-------------------------------------------------------------------------------
<<<
-size: 6514
+size: 6620
location: src/tests/client/test-client.py:test_003()/114
cmd: $NMCLI --pretty --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: C
returncode: 0
-stdout: 6319 bytes
+stdout: 6425 bytes
>>>
===============================================================================
Connection profile details (ethernet)
@@ -5794,6 +5850,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
ipv6.method: auto
ipv6.dns: --
@@ -5823,6 +5880,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
proxy.method: none
proxy.browser-only: no
@@ -5848,12 +5906,12 @@ GENERAL.MASTER-PATH: --
-------------------------------------------------------------------------------
<<<
-size: 6568
+size: 6674
location: src/tests/client/test-client.py:test_003()/115
cmd: $NMCLI --pretty --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 6363 bytes
+stdout: 6469 bytes
>>>
===============================================================================
Szczegóły profilu połączenia (ethernet)
@@ -5930,6 +5988,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
ipv6.method: auto
ipv6.dns: --
@@ -5959,6 +6018,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
proxy.method: none
proxy.browser-only: nie
@@ -6214,12 +6274,12 @@ UUID-con-gsm3-REPLACED-REPLACED-REPL:gsm
UUID-con-xx1-REPLACED-REPLACED-REPLA:802-3-ethernet
<<<
-size: 3333
+size: 3387
location: src/tests/client/test-client.py:test_003()/122
cmd: $NMCLI --terse con s ethernet
lang: C
returncode: 0
-stdout: 3191 bytes
+stdout: 3245 bytes
>>>
connection.id:ethernet
connection.uuid:UUID-ethernet-REPLACED-REPLACED-REPL
@@ -6291,6 +6351,7 @@ ipv4.dhcp-vendor-class-identifier:
ipv4.link-local:0
ipv4.dhcp-reject-servers:
ipv4.auto-route-ext-gw:-1
+ipv4.replace-local-rule:-1
ipv6.method:auto
ipv6.dns:
ipv6.dns-search:
@@ -6319,6 +6380,7 @@ ipv6.dhcp-hostname:
ipv6.dhcp-hostname-flags:0x0
ipv6.auto-route-ext-gw:-1
ipv6.token:
+ipv6.replace-local-rule:-1
proxy.method:none
proxy.browser-only:no
proxy.pac-url:
@@ -6352,12 +6414,12 @@ GENERAL.ZONE:
GENERAL.MASTER-PATH:
<<<
-size: 3343
+size: 3397
location: src/tests/client/test-client.py:test_003()/123
cmd: $NMCLI --terse con s ethernet
lang: pl_PL.UTF-8
returncode: 0
-stdout: 3191 bytes
+stdout: 3245 bytes
>>>
connection.id:ethernet
connection.uuid:UUID-ethernet-REPLACED-REPLACED-REPL
@@ -6429,6 +6491,7 @@ ipv4.dhcp-vendor-class-identifier:
ipv4.link-local:0
ipv4.dhcp-reject-servers:
ipv4.auto-route-ext-gw:-1
+ipv4.replace-local-rule:-1
ipv6.method:auto
ipv6.dns:
ipv6.dns-search:
@@ -6457,6 +6520,7 @@ ipv6.dhcp-hostname:
ipv6.dhcp-hostname-flags:0x0
ipv6.auto-route-ext-gw:-1
ipv6.token:
+ipv6.replace-local-rule:-1
proxy.method:none
proxy.browser-only:no
proxy.pac-url:
@@ -6490,12 +6554,12 @@ GENERAL.ZONE:
GENERAL.MASTER-PATH:
<<<
-size: 2983
+size: 3037
location: src/tests/client/test-client.py:test_003()/124
cmd: $NMCLI --terse c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: C
returncode: 0
-stdout: 2801 bytes
+stdout: 2855 bytes
>>>
connection.id:ethernet
connection.uuid:UUID-ethernet-REPLACED-REPLACED-REPL
@@ -6567,6 +6631,7 @@ ipv4.dhcp-vendor-class-identifier:
ipv4.link-local:0
ipv4.dhcp-reject-servers:
ipv4.auto-route-ext-gw:-1
+ipv4.replace-local-rule:-1
ipv6.method:auto
ipv6.dns:
ipv6.dns-search:
@@ -6595,6 +6660,7 @@ ipv6.dhcp-hostname:
ipv6.dhcp-hostname-flags:0x0
ipv6.auto-route-ext-gw:-1
ipv6.token:
+ipv6.replace-local-rule:-1
proxy.method:none
proxy.browser-only:no
proxy.pac-url:
@@ -6614,12 +6680,12 @@ GENERAL.ZONE:
GENERAL.MASTER-PATH:
<<<
-size: 2993
+size: 3047
location: src/tests/client/test-client.py:test_003()/125
cmd: $NMCLI --terse c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 2801 bytes
+stdout: 2855 bytes
>>>
connection.id:ethernet
connection.uuid:UUID-ethernet-REPLACED-REPLACED-REPL
@@ -6691,6 +6757,7 @@ ipv4.dhcp-vendor-class-identifier:
ipv4.link-local:0
ipv4.dhcp-reject-servers:
ipv4.auto-route-ext-gw:-1
+ipv4.replace-local-rule:-1
ipv6.method:auto
ipv6.dns:
ipv6.dns-search:
@@ -6719,6 +6786,7 @@ ipv6.dhcp-hostname:
ipv6.dhcp-hostname-flags:0x0
ipv6.auto-route-ext-gw:-1
ipv6.token:
+ipv6.replace-local-rule:-1
proxy.method:none
proxy.browser-only:no
proxy.pac-url:
@@ -6944,12 +7012,12 @@ UUID-con-gsm3-REPLACED-REPLACED-REPL:gsm
UUID-con-xx1-REPLACED-REPLACED-REPLA:802-3-ethernet
<<<
-size: 3345
+size: 3399
location: src/tests/client/test-client.py:test_003()/132
cmd: $NMCLI --terse --color yes con s ethernet
lang: C
returncode: 0
-stdout: 3191 bytes
+stdout: 3245 bytes
>>>
connection.id:ethernet
connection.uuid:UUID-ethernet-REPLACED-REPLACED-REPL
@@ -7021,6 +7089,7 @@ ipv4.dhcp-vendor-class-identifier:
ipv4.link-local:0
ipv4.dhcp-reject-servers:
ipv4.auto-route-ext-gw:-1
+ipv4.replace-local-rule:-1
ipv6.method:auto
ipv6.dns:
ipv6.dns-search:
@@ -7049,6 +7118,7 @@ ipv6.dhcp-hostname:
ipv6.dhcp-hostname-flags:0x0
ipv6.auto-route-ext-gw:-1
ipv6.token:
+ipv6.replace-local-rule:-1
proxy.method:none
proxy.browser-only:no
proxy.pac-url:
@@ -7082,12 +7152,12 @@ GENERAL.ZONE:
GENERAL.MASTER-PATH:
<<<
-size: 3355
+size: 3409
location: src/tests/client/test-client.py:test_003()/133
cmd: $NMCLI --terse --color yes con s ethernet
lang: pl_PL.UTF-8
returncode: 0
-stdout: 3191 bytes
+stdout: 3245 bytes
>>>
connection.id:ethernet
connection.uuid:UUID-ethernet-REPLACED-REPLACED-REPL
@@ -7159,6 +7229,7 @@ ipv4.dhcp-vendor-class-identifier:
ipv4.link-local:0
ipv4.dhcp-reject-servers:
ipv4.auto-route-ext-gw:-1
+ipv4.replace-local-rule:-1
ipv6.method:auto
ipv6.dns:
ipv6.dns-search:
@@ -7187,6 +7258,7 @@ ipv6.dhcp-hostname:
ipv6.dhcp-hostname-flags:0x0
ipv6.auto-route-ext-gw:-1
ipv6.token:
+ipv6.replace-local-rule:-1
proxy.method:none
proxy.browser-only:no
proxy.pac-url:
@@ -7220,12 +7292,12 @@ GENERAL.ZONE:
GENERAL.MASTER-PATH:
<<<
-size: 2995
+size: 3049
location: src/tests/client/test-client.py:test_003()/134
cmd: $NMCLI --terse --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: C
returncode: 0
-stdout: 2801 bytes
+stdout: 2855 bytes
>>>
connection.id:ethernet
connection.uuid:UUID-ethernet-REPLACED-REPLACED-REPL
@@ -7297,6 +7369,7 @@ ipv4.dhcp-vendor-class-identifier:
ipv4.link-local:0
ipv4.dhcp-reject-servers:
ipv4.auto-route-ext-gw:-1
+ipv4.replace-local-rule:-1
ipv6.method:auto
ipv6.dns:
ipv6.dns-search:
@@ -7325,6 +7398,7 @@ ipv6.dhcp-hostname:
ipv6.dhcp-hostname-flags:0x0
ipv6.auto-route-ext-gw:-1
ipv6.token:
+ipv6.replace-local-rule:-1
proxy.method:none
proxy.browser-only:no
proxy.pac-url:
@@ -7344,12 +7418,12 @@ GENERAL.ZONE:
GENERAL.MASTER-PATH:
<<<
-size: 3005
+size: 3059
location: src/tests/client/test-client.py:test_003()/135
cmd: $NMCLI --terse --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 2801 bytes
+stdout: 2855 bytes
>>>
connection.id:ethernet
connection.uuid:UUID-ethernet-REPLACED-REPLACED-REPL
@@ -7421,6 +7495,7 @@ ipv4.dhcp-vendor-class-identifier:
ipv4.link-local:0
ipv4.dhcp-reject-servers:
ipv4.auto-route-ext-gw:-1
+ipv4.replace-local-rule:-1
ipv6.method:auto
ipv6.dns:
ipv6.dns-search:
@@ -7449,6 +7524,7 @@ ipv6.dhcp-hostname:
ipv6.dhcp-hostname-flags:0x0
ipv6.auto-route-ext-gw:-1
ipv6.token:
+ipv6.replace-local-rule:-1
proxy.method:none
proxy.browser-only:no
proxy.pac-url:
@@ -7678,12 +7754,12 @@ UUID-con-gsm3-REPLACED-REPLACED-REPL gsm
UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet
<<<
-size: 4181
+size: 4261
location: src/tests/client/test-client.py:test_003()/142
cmd: $NMCLI --mode tabular con s ethernet
lang: C
returncode: 0
-stdout: 4032 bytes
+stdout: 4112 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 dns-over-tls mptcp-flags wait-device-timeout wait-activation-delay
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 (default) 0x0 (default) -1 -1
@@ -7691,11 +7767,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 accept-all-mac-addresses
802-3-ethernet -- 0 -- no -- -- -- -- auto -- -- -- default -- -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 required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- 0x0 (none) no yes -1 (default) -1 (default) -- 0 (default) -- -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 required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw replace-local-rule
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- 0x0 (none) no yes -1 (default) -1 (default) -- 0 (default) -- -1 (default) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (default) -1 (unknown) default 0 (default) auto -- -- 0 (default) yes -- 0x0 (none) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token replace-local-rule
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (default) -1 (unknown) default 0 (default) auto -- -- 0 (default) yes -- 0x0 (none) -1 (default) -- -1 (default)
name method browser-only pac-url pac-script
proxy none no -- --
@@ -7709,12 +7785,12 @@ GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 eth0 deac
<<<
-size: 4231
+size: 4311
location: src/tests/client/test-client.py:test_003()/143
cmd: $NMCLI --mode tabular con s ethernet
lang: pl_PL.UTF-8
returncode: 0
-stdout: 4072 bytes
+stdout: 4152 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 dns-over-tls mptcp-flags wait-device-timeout wait-activation-delay
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 (default) 0x0 (default) -1 -1
@@ -7722,11 +7798,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 accept-all-mac-addresses
802-3-ethernet -- 0 -- nie -- -- -- -- automatyczne -- -- -- default -- -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 required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- 0x0 (none) nie tak -1 (default) -1 (default) -- 0 (default) -- -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 required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw replace-local-rule
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- 0x0 (none) nie tak -1 (default) -1 (default) -- 0 (default) -- -1 (default) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (default) -1 (unknown) default 0 (default) automatyczne -- -- 0 (default) tak -- 0x0 (none) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token replace-local-rule
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (default) -1 (unknown) default 0 (default) automatyczne -- -- 0 (default) tak -- 0x0 (none) -1 (default) -- -1 (default)
name method browser-only pac-url pac-script
proxy none nie -- --
@@ -7740,12 +7816,12 @@ GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 eth0 deza
<<<
-size: 3719
+size: 3799
location: src/tests/client/test-client.py:test_003()/144
cmd: $NMCLI --mode tabular c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: C
returncode: 0
-stdout: 3530 bytes
+stdout: 3610 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 dns-over-tls mptcp-flags wait-device-timeout wait-activation-delay
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 (default) 0x0 (default) -1 -1
@@ -7753,11 +7829,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 accept-all-mac-addresses
802-3-ethernet -- 0 -- no -- -- -- -- auto -- -- -- default -- -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 required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- 0x0 (none) no yes -1 (default) -1 (default) -- 0 (default) -- -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 required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw replace-local-rule
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- 0x0 (none) no yes -1 (default) -1 (default) -- 0 (default) -- -1 (default) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (default) -1 (unknown) default 0 (default) auto -- -- 0 (default) yes -- 0x0 (none) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token replace-local-rule
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (default) -1 (unknown) default 0 (default) auto -- -- 0 (default) yes -- 0x0 (none) -1 (default) -- -1 (default)
name method browser-only pac-url pac-script
proxy none no -- --
@@ -7767,12 +7843,12 @@ GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 eth0 deac
<<<
-size: 3767
+size: 3847
location: src/tests/client/test-client.py:test_003()/145
cmd: $NMCLI --mode tabular c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 3568 bytes
+stdout: 3648 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 dns-over-tls mptcp-flags wait-device-timeout wait-activation-delay
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 (default) 0x0 (default) -1 -1
@@ -7780,11 +7856,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 accept-all-mac-addresses
802-3-ethernet -- 0 -- nie -- -- -- -- automatyczne -- -- -- default -- -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 required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- 0x0 (none) nie tak -1 (default) -1 (default) -- 0 (default) -- -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 required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw replace-local-rule
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- 0x0 (none) nie tak -1 (default) -1 (default) -- 0 (default) -- -1 (default) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (default) -1 (unknown) default 0 (default) automatyczne -- -- 0 (default) tak -- 0x0 (none) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token replace-local-rule
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (default) -1 (unknown) default 0 (default) automatyczne -- -- 0 (default) tak -- 0x0 (none) -1 (default) -- -1 (default)
name method browser-only pac-url pac-script
proxy none nie -- --
@@ -7930,12 +8006,12 @@ UUID-con-gsm3-REPLACED-REPLACED-REPL gsm
UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet
<<<
-size: 4193
+size: 4273
location: src/tests/client/test-client.py:test_003()/152
cmd: $NMCLI --mode tabular --color yes con s ethernet
lang: C
returncode: 0
-stdout: 4032 bytes
+stdout: 4112 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 dns-over-tls mptcp-flags wait-device-timeout wait-activation-delay
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 (default) 0x0 (default) -1 -1
@@ -7943,11 +8019,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 accept-all-mac-addresses
802-3-ethernet -- 0 -- no -- -- -- -- auto -- -- -- default -- -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 required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- 0x0 (none) no yes -1 (default) -1 (default) -- 0 (default) -- -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 required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw replace-local-rule
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- 0x0 (none) no yes -1 (default) -1 (default) -- 0 (default) -- -1 (default) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (default) -1 (unknown) default 0 (default) auto -- -- 0 (default) yes -- 0x0 (none) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token replace-local-rule
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (default) -1 (unknown) default 0 (default) auto -- -- 0 (default) yes -- 0x0 (none) -1 (default) -- -1 (default)
name method browser-only pac-url pac-script
proxy none no -- --
@@ -7961,12 +8037,12 @@ GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 eth0 deac
<<<
-size: 4243
+size: 4323
location: src/tests/client/test-client.py:test_003()/153
cmd: $NMCLI --mode tabular --color yes con s ethernet
lang: pl_PL.UTF-8
returncode: 0
-stdout: 4072 bytes
+stdout: 4152 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 dns-over-tls mptcp-flags wait-device-timeout wait-activation-delay
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 (default) 0x0 (default) -1 -1
@@ -7974,11 +8050,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 accept-all-mac-addresses
802-3-ethernet -- 0 -- nie -- -- -- -- automatyczne -- -- -- default -- -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 required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- 0x0 (none) nie tak -1 (default) -1 (default) -- 0 (default) -- -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 required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw replace-local-rule
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- 0x0 (none) nie tak -1 (default) -1 (default) -- 0 (default) -- -1 (default) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (default) -1 (unknown) default 0 (default) automatyczne -- -- 0 (default) tak -- 0x0 (none) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token replace-local-rule
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (default) -1 (unknown) default 0 (default) automatyczne -- -- 0 (default) tak -- 0x0 (none) -1 (default) -- -1 (default)
name method browser-only pac-url pac-script
proxy none nie -- --
@@ -7992,12 +8068,12 @@ GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 eth0 deza
<<<
-size: 3731
+size: 3811
location: src/tests/client/test-client.py:test_003()/154
cmd: $NMCLI --mode tabular --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: C
returncode: 0
-stdout: 3530 bytes
+stdout: 3610 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 dns-over-tls mptcp-flags wait-device-timeout wait-activation-delay
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 (default) 0x0 (default) -1 -1
@@ -8005,11 +8081,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 accept-all-mac-addresses
802-3-ethernet -- 0 -- no -- -- -- -- auto -- -- -- default -- -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 required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- 0x0 (none) no yes -1 (default) -1 (default) -- 0 (default) -- -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 required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw replace-local-rule
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- 0x0 (none) no yes -1 (default) -1 (default) -- 0 (default) -- -1 (default) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (default) -1 (unknown) default 0 (default) auto -- -- 0 (default) yes -- 0x0 (none) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token replace-local-rule
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (default) -1 (unknown) default 0 (default) auto -- -- 0 (default) yes -- 0x0 (none) -1 (default) -- -1 (default)
name method browser-only pac-url pac-script
proxy none no -- --
@@ -8019,12 +8095,12 @@ GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 eth0 deac
<<<
-size: 3779
+size: 3859
location: src/tests/client/test-client.py:test_003()/155
cmd: $NMCLI --mode tabular --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 3568 bytes
+stdout: 3648 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 dns-over-tls mptcp-flags wait-device-timeout wait-activation-delay
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 (default) 0x0 (default) -1 -1
@@ -8032,11 +8108,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 accept-all-mac-addresses
802-3-ethernet -- 0 -- nie -- -- -- -- automatyczne -- -- -- default -- -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 required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- 0x0 (none) nie tak -1 (default) -1 (default) -- 0 (default) -- -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 required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw replace-local-rule
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- 0x0 (none) nie tak -1 (default) -1 (default) -- 0 (default) -- -1 (default) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (default) -1 (unknown) default 0 (default) automatyczne -- -- 0 (default) tak -- 0x0 (none) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token replace-local-rule
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (default) -1 (unknown) default 0 (default) automatyczne -- -- 0 (default) tak -- 0x0 (none) -1 (default) -- -1 (default)
name method browser-only pac-url pac-script
proxy none nie -- --
@@ -8198,12 +8274,12 @@ UUID-con-gsm3-REPLACED-REPLACED-REPL gsm
UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet
<<<
-size: 6743
+size: 6863
location: src/tests/client/test-client.py:test_003()/162
cmd: $NMCLI --mode tabular --pretty con s ethernet
lang: C
returncode: 0
-stdout: 6585 bytes
+stdout: 6705 bytes
>>>
=========================================
Connection profile details (ethernet)
@@ -8216,13 +8292,13 @@ name port speed duplex auto-negotiate mac-address cloned-mac-add
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
802-3-ethernet -- 0 -- no -- -- -- -- auto -- -- -- default -- -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 required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- 0x0 (none) no yes -1 (default) -1 (default) -- 0 (default) -- -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 required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw replace-local-rule
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- 0x0 (none) no yes -1 (default) -1 (default) -- 0 (default) -- -1 (default) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (default) -1 (unknown) default 0 (default) auto -- -- 0 (default) yes -- 0x0 (none) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token replace-local-rule
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (default) -1 (unknown) default 0 (default) auto -- -- 0 (default) yes -- 0x0 (none) -1 (default) -- -1 (default)
name method browser-only pac-url pac-script
--------------------------------------------------
@@ -8245,12 +8321,12 @@ GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 eth0 deac
<<<
-size: 6873
+size: 6993
location: src/tests/client/test-client.py:test_003()/163
cmd: $NMCLI --mode tabular --pretty con s ethernet
lang: pl_PL.UTF-8
returncode: 0
-stdout: 6705 bytes
+stdout: 6825 bytes
>>>
===========================================
Szczegóły profilu połączenia (ethernet)
@@ -8263,13 +8339,13 @@ name port speed duplex auto-negotiate mac-address cloned-mac-add
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
802-3-ethernet -- 0 -- nie -- -- -- -- automatyczne -- -- -- default -- -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 required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- 0x0 (none) nie tak -1 (default) -1 (default) -- 0 (default) -- -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 required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw replace-local-rule
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- 0x0 (none) nie tak -1 (default) -1 (default) -- 0 (default) -- -1 (default) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (default) -1 (unknown) default 0 (default) automatyczne -- -- 0 (default) tak -- 0x0 (none) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token replace-local-rule
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (default) -1 (unknown) default 0 (default) automatyczne -- -- 0 (default) tak -- 0x0 (none) -1 (default) -- -1 (default)
name method browser-only pac-url pac-script
--------------------------------------------------
@@ -8292,12 +8368,12 @@ GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 eth0 deza
<<<
-size: 5825
+size: 5945
location: src/tests/client/test-client.py:test_003()/164
cmd: $NMCLI --mode tabular --pretty c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: C
returncode: 0
-stdout: 5627 bytes
+stdout: 5747 bytes
>>>
=========================================
Connection profile details (ethernet)
@@ -8310,13 +8386,13 @@ name port speed duplex auto-negotiate mac-address cloned-mac-add
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
802-3-ethernet -- 0 -- no -- -- -- -- auto -- -- -- default -- -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 required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- 0x0 (none) no yes -1 (default) -1 (default) -- 0 (default) -- -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 required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw replace-local-rule
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- 0x0 (none) no yes -1 (default) -1 (default) -- 0 (default) -- -1 (default) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (default) -1 (unknown) default 0 (default) auto -- -- 0 (default) yes -- 0x0 (none) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token replace-local-rule
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (default) -1 (unknown) default 0 (default) auto -- -- 0 (default) yes -- 0x0 (none) -1 (default) -- -1 (default)
name method browser-only pac-url pac-script
--------------------------------------------------
@@ -8331,12 +8407,12 @@ GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 eth0 deac
<<<
-size: 5927
+size: 6047
location: src/tests/client/test-client.py:test_003()/165
cmd: $NMCLI --mode tabular --pretty c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 5719 bytes
+stdout: 5839 bytes
>>>
===========================================
Szczegóły profilu połączenia (ethernet)
@@ -8349,13 +8425,13 @@ name port speed duplex auto-negotiate mac-address cloned-mac-add
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
802-3-ethernet -- 0 -- nie -- -- -- -- automatyczne -- -- -- default -- -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 required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- 0x0 (none) nie tak -1 (default) -1 (default) -- 0 (default) -- -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 required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw replace-local-rule
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- 0x0 (none) nie tak -1 (default) -1 (default) -- 0 (default) -- -1 (default) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (default) -1 (unknown) default 0 (default) automatyczne -- -- 0 (default) tak -- 0x0 (none) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token replace-local-rule
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (default) -1 (unknown) default 0 (default) automatyczne -- -- 0 (default) tak -- 0x0 (none) -1 (default) -- -1 (default)
name method browser-only pac-url pac-script
--------------------------------------------------
@@ -8546,12 +8622,12 @@ UUID-con-gsm3-REPLACED-REPLACED-REPL gsm
UUID-con-xx1-REPLACED-REPLACED-REPLA ethernet
<<<
-size: 6755
+size: 6875
location: src/tests/client/test-client.py:test_003()/172
cmd: $NMCLI --mode tabular --pretty --color yes con s ethernet
lang: C
returncode: 0
-stdout: 6585 bytes
+stdout: 6705 bytes
>>>
=========================================
Connection profile details (ethernet)
@@ -8564,13 +8640,13 @@ name port speed duplex auto-negotiate mac-address cloned-mac-add
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
802-3-ethernet -- 0 -- no -- -- -- -- auto -- -- -- default -- -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 required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- 0x0 (none) no yes -1 (default) -1 (default) -- 0 (default) -- -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 required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw replace-local-rule
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- 0x0 (none) no yes -1 (default) -1 (default) -- 0 (default) -- -1 (default) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (default) -1 (unknown) default 0 (default) auto -- -- 0 (default) yes -- 0x0 (none) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token replace-local-rule
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (default) -1 (unknown) default 0 (default) auto -- -- 0 (default) yes -- 0x0 (none) -1 (default) -- -1 (default)
name method browser-only pac-url pac-script
--------------------------------------------------
@@ -8593,12 +8669,12 @@ GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 eth0 deac
<<<
-size: 6885
+size: 7005
location: src/tests/client/test-client.py:test_003()/173
cmd: $NMCLI --mode tabular --pretty --color yes con s ethernet
lang: pl_PL.UTF-8
returncode: 0
-stdout: 6705 bytes
+stdout: 6825 bytes
>>>
===========================================
Szczegóły profilu połączenia (ethernet)
@@ -8611,13 +8687,13 @@ name port speed duplex auto-negotiate mac-address cloned-mac-add
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
802-3-ethernet -- 0 -- nie -- -- -- -- automatyczne -- -- -- default -- -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 required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- 0x0 (none) nie tak -1 (default) -1 (default) -- 0 (default) -- -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 required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw replace-local-rule
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- 0x0 (none) nie tak -1 (default) -1 (default) -- 0 (default) -- -1 (default) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (default) -1 (unknown) default 0 (default) automatyczne -- -- 0 (default) tak -- 0x0 (none) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token replace-local-rule
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (default) -1 (unknown) default 0 (default) automatyczne -- -- 0 (default) tak -- 0x0 (none) -1 (default) -- -1 (default)
name method browser-only pac-url pac-script
--------------------------------------------------
@@ -8640,12 +8716,12 @@ GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 eth0 deza
<<<
-size: 5837
+size: 5957
location: src/tests/client/test-client.py:test_003()/174
cmd: $NMCLI --mode tabular --pretty --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: C
returncode: 0
-stdout: 5627 bytes
+stdout: 5747 bytes
>>>
=========================================
Connection profile details (ethernet)
@@ -8658,13 +8734,13 @@ name port speed duplex auto-negotiate mac-address cloned-mac-add
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
802-3-ethernet -- 0 -- no -- -- -- -- auto -- -- -- default -- -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 required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- 0x0 (none) no yes -1 (default) -1 (default) -- 0 (default) -- -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 required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw replace-local-rule
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- 0x0 (none) no yes -1 (default) -1 (default) -- 0 (default) -- -1 (default) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (default) -1 (unknown) default 0 (default) auto -- -- 0 (default) yes -- 0x0 (none) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token replace-local-rule
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (default) -1 (unknown) default 0 (default) auto -- -- 0 (default) yes -- 0x0 (none) -1 (default) -- -1 (default)
name method browser-only pac-url pac-script
--------------------------------------------------
@@ -8679,12 +8755,12 @@ GENERAL ethernet UUID-ethernet-REPLACED-REPLACED-REPL eth0 eth0 deac
<<<
-size: 5939
+size: 6059
location: src/tests/client/test-client.py:test_003()/175
cmd: $NMCLI --mode tabular --pretty --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 5719 bytes
+stdout: 5839 bytes
>>>
===========================================
Szczegóły profilu połączenia (ethernet)
@@ -8697,13 +8773,13 @@ name port speed duplex auto-negotiate mac-address cloned-mac-add
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
802-3-ethernet -- 0 -- nie -- -- -- -- automatyczne -- -- -- default -- -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 required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- 0x0 (none) nie tak -1 (default) -1 (default) -- 0 (default) -- -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 required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw replace-local-rule
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- 0x0 (none) nie tak -1 (default) -1 (default) -- 0 (default) -- -1 (default) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (default) -1 (unknown) default 0 (default) automatyczne -- -- 0 (default) tak -- 0x0 (none) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token replace-local-rule
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (default) -1 (unknown) default 0 (default) automatyczne -- -- 0 (default) tak -- 0x0 (none) -1 (default) -- -1 (default)
name method browser-only pac-url pac-script
--------------------------------------------------
@@ -8874,66 +8950,66 @@ UUID-con-gsm3-REPLACED-REPLACED-REPL:gsm
UUID-con-xx1-REPLACED-REPLACED-REPLA:802-3-ethernet
<<<
-size: 881
+size: 887
location: src/tests/client/test-client.py:test_003()/182
cmd: $NMCLI --mode tabular --terse con s ethernet
lang: C
returncode: 0
-stdout: 725 bytes
+stdout: 731 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:0x0:-1:-1
802-3-ethernet::0::no:::::auto::::default::-1
-ipv4:auto::::0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1:-1::0::-1
-ipv6:auto::::0::::-1:0::no:no:no:yes:-1:-1:default:0:auto:::0:yes::0x0:-1:
+ipv4:auto::::0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1:-1::0::-1:-1
+ipv6:auto::::0::::-1:0::no:no:no:yes:-1:-1:default:0:auto:::0:yes::0x0:-1::-1
proxy:none:no::
GENERAL:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:eth1:eth1:activated:no:no::no:/org/freedesktop/NetworkManager/ActiveConnection/2:/org/freedesktop/NetworkManager/Settings/Connection/6::
GENERAL:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:eth0:eth0:deactivating:no:no::no:/org/freedesktop/NetworkManager/ActiveConnection/1:/org/freedesktop/NetworkManager/Settings/Connection/6::
<<<
-size: 891
+size: 897
location: src/tests/client/test-client.py:test_003()/183
cmd: $NMCLI --mode tabular --terse con s ethernet
lang: pl_PL.UTF-8
returncode: 0
-stdout: 725 bytes
+stdout: 731 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:0x0:-1:-1
802-3-ethernet::0::no:::::auto::::default::-1
-ipv4:auto::::0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1:-1::0::-1
-ipv6:auto::::0::::-1:0::no:no:no:yes:-1:-1:default:0:auto:::0:yes::0x0:-1:
+ipv4:auto::::0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1:-1::0::-1:-1
+ipv6:auto::::0::::-1:0::no:no:no:yes:-1:-1:default:0:auto:::0:yes::0x0:-1::-1
proxy:none:no::
GENERAL:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:eth1:eth1:activated:no:no::no:/org/freedesktop/NetworkManager/ActiveConnection/2:/org/freedesktop/NetworkManager/Settings/Connection/6::
GENERAL:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:eth0:eth0:deactivating:no:no::no:/org/freedesktop/NetworkManager/ActiveConnection/1:/org/freedesktop/NetworkManager/Settings/Connection/6::
<<<
-size: 729
+size: 735
location: src/tests/client/test-client.py:test_003()/184
cmd: $NMCLI --mode tabular --terse c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: C
returncode: 0
-stdout: 533 bytes
+stdout: 539 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:0x0:-1:-1
802-3-ethernet::0::no:::::auto::::default::-1
-ipv4:auto::::0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1:-1::0::-1
-ipv6:auto::::0::::-1:0::no:no:no:yes:-1:-1:default:0:auto:::0:yes::0x0:-1:
+ipv4:auto::::0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1:-1::0::-1:-1
+ipv6:auto::::0::::-1:0::no:no:no:yes:-1:-1:default:0:auto:::0:yes::0x0:-1::-1
proxy:none:no::
GENERAL:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:eth0:eth0:deactivating:no:no::no:/org/freedesktop/NetworkManager/ActiveConnection/1:/org/freedesktop/NetworkManager/Settings/Connection/6::
<<<
-size: 739
+size: 745
location: src/tests/client/test-client.py:test_003()/185
cmd: $NMCLI --mode tabular --terse c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 533 bytes
+stdout: 539 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:0x0:-1:-1
802-3-ethernet::0::no:::::auto::::default::-1
-ipv4:auto::::0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1:-1::0::-1
-ipv6:auto::::0::::-1:0::no:no:no:yes:-1:-1:default:0:auto:::0:yes::0x0:-1:
+ipv4:auto::::0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1:-1::0::-1:-1
+ipv6:auto::::0::::-1:0::no:no:no:yes:-1:-1:default:0:auto:::0:yes::0x0:-1::-1
proxy:none:no::
GENERAL:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:eth0:eth0:deactivating:no:no::no:/org/freedesktop/NetworkManager/ActiveConnection/1:/org/freedesktop/NetworkManager/Settings/Connection/6::
@@ -9036,66 +9112,66 @@ UUID-con-gsm3-REPLACED-REPLACED-REPL:gsm
UUID-con-xx1-REPLACED-REPLACED-REPLA:802-3-ethernet
<<<
-size: 893
+size: 899
location: src/tests/client/test-client.py:test_003()/192
cmd: $NMCLI --mode tabular --terse --color yes con s ethernet
lang: C
returncode: 0
-stdout: 725 bytes
+stdout: 731 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:0x0:-1:-1
802-3-ethernet::0::no:::::auto::::default::-1
-ipv4:auto::::0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1:-1::0::-1
-ipv6:auto::::0::::-1:0::no:no:no:yes:-1:-1:default:0:auto:::0:yes::0x0:-1:
+ipv4:auto::::0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1:-1::0::-1:-1
+ipv6:auto::::0::::-1:0::no:no:no:yes:-1:-1:default:0:auto:::0:yes::0x0:-1::-1
proxy:none:no::
GENERAL:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:eth1:eth1:activated:no:no::no:/org/freedesktop/NetworkManager/ActiveConnection/2:/org/freedesktop/NetworkManager/Settings/Connection/6::
GENERAL:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:eth0:eth0:deactivating:no:no::no:/org/freedesktop/NetworkManager/ActiveConnection/1:/org/freedesktop/NetworkManager/Settings/Connection/6::
<<<
-size: 903
+size: 909
location: src/tests/client/test-client.py:test_003()/193
cmd: $NMCLI --mode tabular --terse --color yes con s ethernet
lang: pl_PL.UTF-8
returncode: 0
-stdout: 725 bytes
+stdout: 731 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:0x0:-1:-1
802-3-ethernet::0::no:::::auto::::default::-1
-ipv4:auto::::0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1:-1::0::-1
-ipv6:auto::::0::::-1:0::no:no:no:yes:-1:-1:default:0:auto:::0:yes::0x0:-1:
+ipv4:auto::::0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1:-1::0::-1:-1
+ipv6:auto::::0::::-1:0::no:no:no:yes:-1:-1:default:0:auto:::0:yes::0x0:-1::-1
proxy:none:no::
GENERAL:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:eth1:eth1:activated:no:no::no:/org/freedesktop/NetworkManager/ActiveConnection/2:/org/freedesktop/NetworkManager/Settings/Connection/6::
GENERAL:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:eth0:eth0:deactivating:no:no::no:/org/freedesktop/NetworkManager/ActiveConnection/1:/org/freedesktop/NetworkManager/Settings/Connection/6::
<<<
-size: 741
+size: 747
location: src/tests/client/test-client.py:test_003()/194
cmd: $NMCLI --mode tabular --terse --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: C
returncode: 0
-stdout: 533 bytes
+stdout: 539 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:0x0:-1:-1
802-3-ethernet::0::no:::::auto::::default::-1
-ipv4:auto::::0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1:-1::0::-1
-ipv6:auto::::0::::-1:0::no:no:no:yes:-1:-1:default:0:auto:::0:yes::0x0:-1:
+ipv4:auto::::0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1:-1::0::-1:-1
+ipv6:auto::::0::::-1:0::no:no:no:yes:-1:-1:default:0:auto:::0:yes::0x0:-1::-1
proxy:none:no::
GENERAL:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:eth0:eth0:deactivating:no:no::no:/org/freedesktop/NetworkManager/ActiveConnection/1:/org/freedesktop/NetworkManager/Settings/Connection/6::
<<<
-size: 751
+size: 757
location: src/tests/client/test-client.py:test_003()/195
cmd: $NMCLI --mode tabular --terse --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 533 bytes
+stdout: 539 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:0x0:-1:-1
802-3-ethernet::0::no:::::auto::::default::-1
-ipv4:auto::::0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1:-1::0::-1
-ipv6:auto::::0::::-1:0::no:no:no:yes:-1:-1:default:0:auto:::0:yes::0x0:-1:
+ipv4:auto::::0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1:-1::0::-1:-1
+ipv6:auto::::0::::-1:0::no:no:no:yes:-1:-1:default:0:auto:::0:yes::0x0:-1::-1
proxy:none:no::
GENERAL:ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:eth0:eth0:deactivating:no:no::no:/org/freedesktop/NetworkManager/ActiveConnection/1:/org/freedesktop/NetworkManager/Settings/Connection/6::
@@ -9406,12 +9482,12 @@ UUID: UUID-con-xx1-REPLACED-REPLACED-REPLA
TYPE: ethernet
<<<
-size: 6249
+size: 6355
location: src/tests/client/test-client.py:test_003()/202
cmd: $NMCLI --mode multiline con s ethernet
lang: C
returncode: 0
-stdout: 6098 bytes
+stdout: 6204 bytes
>>>
connection.id: ethernet
connection.uuid: UUID-ethernet-REPLACED-REPLACED-REPL
@@ -9483,6 +9559,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
@@ -9511,6 +9588,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
proxy.method: none
proxy.browser-only: no
proxy.pac-url: --
@@ -9544,12 +9622,12 @@ GENERAL.ZONE: --
GENERAL.MASTER-PATH: --
<<<
-size: 6294
+size: 6400
location: src/tests/client/test-client.py:test_003()/203
cmd: $NMCLI --mode multiline con s ethernet
lang: pl_PL.UTF-8
returncode: 0
-stdout: 6133 bytes
+stdout: 6239 bytes
>>>
connection.id: ethernet
connection.uuid: UUID-ethernet-REPLACED-REPLACED-REPL
@@ -9621,6 +9699,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
@@ -9649,6 +9728,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
proxy.method: none
proxy.browser-only: nie
proxy.pac-url: --
@@ -9682,12 +9762,12 @@ GENERAL.ZONE: --
GENERAL.MASTER-PATH: --
<<<
-size: 5579
+size: 5685
location: src/tests/client/test-client.py:test_003()/204
cmd: $NMCLI --mode multiline c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: C
returncode: 0
-stdout: 5388 bytes
+stdout: 5494 bytes
>>>
connection.id: ethernet
connection.uuid: UUID-ethernet-REPLACED-REPLACED-REPL
@@ -9759,6 +9839,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
@@ -9787,6 +9868,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
proxy.method: none
proxy.browser-only: no
proxy.pac-url: --
@@ -9806,12 +9888,12 @@ GENERAL.ZONE: --
GENERAL.MASTER-PATH: --
<<<
-size: 5620
+size: 5726
location: src/tests/client/test-client.py:test_003()/205
cmd: $NMCLI --mode multiline c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 5419 bytes
+stdout: 5525 bytes
>>>
connection.id: ethernet
connection.uuid: UUID-ethernet-REPLACED-REPLACED-REPL
@@ -9883,6 +9965,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
@@ -9911,6 +9994,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
proxy.method: none
proxy.browser-only: nie
proxy.pac-url: --
@@ -10344,12 +10428,12 @@ UUID: UUID-con-xx1-REPLACED-REPLACED-REPLA
TYPE: ethernet
<<<
-size: 6261
+size: 6367
location: src/tests/client/test-client.py:test_003()/212
cmd: $NMCLI --mode multiline --color yes con s ethernet
lang: C
returncode: 0
-stdout: 6098 bytes
+stdout: 6204 bytes
>>>
connection.id: ethernet
connection.uuid: UUID-ethernet-REPLACED-REPLACED-REPL
@@ -10421,6 +10505,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
@@ -10449,6 +10534,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
proxy.method: none
proxy.browser-only: no
proxy.pac-url: --
@@ -10482,12 +10568,12 @@ GENERAL.ZONE: --
GENERAL.MASTER-PATH: --
<<<
-size: 6306
+size: 6412
location: src/tests/client/test-client.py:test_003()/213
cmd: $NMCLI --mode multiline --color yes con s ethernet
lang: pl_PL.UTF-8
returncode: 0
-stdout: 6133 bytes
+stdout: 6239 bytes
>>>
connection.id: ethernet
connection.uuid: UUID-ethernet-REPLACED-REPLACED-REPL
@@ -10559,6 +10645,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
@@ -10587,6 +10674,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
proxy.method: none
proxy.browser-only: nie
proxy.pac-url: --
@@ -10620,12 +10708,12 @@ GENERAL.ZONE: --
GENERAL.MASTER-PATH: --
<<<
-size: 5591
+size: 5697
location: src/tests/client/test-client.py:test_003()/214
cmd: $NMCLI --mode multiline --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: C
returncode: 0
-stdout: 5388 bytes
+stdout: 5494 bytes
>>>
connection.id: ethernet
connection.uuid: UUID-ethernet-REPLACED-REPLACED-REPL
@@ -10697,6 +10785,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
@@ -10725,6 +10814,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
proxy.method: none
proxy.browser-only: no
proxy.pac-url: --
@@ -10744,12 +10834,12 @@ GENERAL.ZONE: --
GENERAL.MASTER-PATH: --
<<<
-size: 5632
+size: 5738
location: src/tests/client/test-client.py:test_003()/215
cmd: $NMCLI --mode multiline --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 5419 bytes
+stdout: 5525 bytes
>>>
connection.id: ethernet
connection.uuid: UUID-ethernet-REPLACED-REPLACED-REPL
@@ -10821,6 +10911,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
@@ -10849,6 +10940,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
proxy.method: none
proxy.browser-only: nie
proxy.pac-url: --
@@ -11320,12 +11412,12 @@ TYPE: ethernet
-------------------------------------------------------------------------------
<<<
-size: 7501
+size: 7607
location: src/tests/client/test-client.py:test_003()/222
cmd: $NMCLI --mode multiline --pretty con s ethernet
lang: C
returncode: 0
-stdout: 7341 bytes
+stdout: 7447 bytes
>>>
===============================================================================
Connection profile details (ethernet)
@@ -11402,6 +11494,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
ipv6.method: auto
ipv6.dns: --
@@ -11431,6 +11524,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
proxy.method: none
proxy.browser-only: no
@@ -11474,12 +11568,12 @@ GENERAL.MASTER-PATH: --
-------------------------------------------------------------------------------
<<<
-size: 7567
+size: 7673
location: src/tests/client/test-client.py:test_003()/223
cmd: $NMCLI --mode multiline --pretty con s ethernet
lang: pl_PL.UTF-8
returncode: 0
-stdout: 7397 bytes
+stdout: 7503 bytes
>>>
===============================================================================
Szczegóły profilu połączenia (ethernet)
@@ -11556,6 +11650,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
ipv6.method: auto
ipv6.dns: --
@@ -11585,6 +11680,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
proxy.method: none
proxy.browser-only: nie
@@ -11628,12 +11724,12 @@ GENERAL.MASTER-PATH: --
-------------------------------------------------------------------------------
<<<
-size: 6519
+size: 6625
location: src/tests/client/test-client.py:test_003()/224
cmd: $NMCLI --mode multiline --pretty c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: C
returncode: 0
-stdout: 6319 bytes
+stdout: 6425 bytes
>>>
===============================================================================
Connection profile details (ethernet)
@@ -11710,6 +11806,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
ipv6.method: auto
ipv6.dns: --
@@ -11739,6 +11836,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
proxy.method: none
proxy.browser-only: no
@@ -11764,12 +11862,12 @@ GENERAL.MASTER-PATH: --
-------------------------------------------------------------------------------
<<<
-size: 6573
+size: 6679
location: src/tests/client/test-client.py:test_003()/225
cmd: $NMCLI --mode multiline --pretty c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 6363 bytes
+stdout: 6469 bytes
>>>
===============================================================================
Szczegóły profilu połączenia (ethernet)
@@ -11846,6 +11944,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
ipv6.method: auto
ipv6.dns: --
@@ -11875,6 +11974,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
proxy.method: none
proxy.browser-only: nie
@@ -12376,12 +12476,12 @@ TYPE: ethernet
-------------------------------------------------------------------------------
<<<
-size: 7513
+size: 7619
location: src/tests/client/test-client.py:test_003()/232
cmd: $NMCLI --mode multiline --pretty --color yes con s ethernet
lang: C
returncode: 0
-stdout: 7341 bytes
+stdout: 7447 bytes
>>>
===============================================================================
Connection profile details (ethernet)
@@ -12458,6 +12558,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
ipv6.method: auto
ipv6.dns: --
@@ -12487,6 +12588,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
proxy.method: none
proxy.browser-only: no
@@ -12530,12 +12632,12 @@ GENERAL.MASTER-PATH: --
-------------------------------------------------------------------------------
<<<
-size: 7579
+size: 7685
location: src/tests/client/test-client.py:test_003()/233
cmd: $NMCLI --mode multiline --pretty --color yes con s ethernet
lang: pl_PL.UTF-8
returncode: 0
-stdout: 7397 bytes
+stdout: 7503 bytes
>>>
===============================================================================
Szczegóły profilu połączenia (ethernet)
@@ -12612,6 +12714,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
ipv6.method: auto
ipv6.dns: --
@@ -12641,6 +12744,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
proxy.method: none
proxy.browser-only: nie
@@ -12684,12 +12788,12 @@ GENERAL.MASTER-PATH: --
-------------------------------------------------------------------------------
<<<
-size: 6531
+size: 6637
location: src/tests/client/test-client.py:test_003()/234
cmd: $NMCLI --mode multiline --pretty --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: C
returncode: 0
-stdout: 6319 bytes
+stdout: 6425 bytes
>>>
===============================================================================
Connection profile details (ethernet)
@@ -12766,6 +12870,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
ipv6.method: auto
ipv6.dns: --
@@ -12795,6 +12900,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
proxy.method: none
proxy.browser-only: no
@@ -12820,12 +12926,12 @@ GENERAL.MASTER-PATH: --
-------------------------------------------------------------------------------
<<<
-size: 6585
+size: 6691
location: src/tests/client/test-client.py:test_003()/235
cmd: $NMCLI --mode multiline --pretty --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 6363 bytes
+stdout: 6469 bytes
>>>
===============================================================================
Szczegóły profilu połączenia (ethernet)
@@ -12902,6 +13008,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
ipv6.method: auto
ipv6.dns: --
@@ -12931,6 +13038,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
proxy.method: none
proxy.browser-only: nie
@@ -13394,12 +13502,12 @@ UUID:UUID-con-xx1-REPLACED-REPLACED-REPLA
TYPE:802-3-ethernet
<<<
-size: 3350
+size: 3404
location: src/tests/client/test-client.py:test_003()/242
cmd: $NMCLI --mode multiline --terse con s ethernet
lang: C
returncode: 0
-stdout: 3191 bytes
+stdout: 3245 bytes
>>>
connection.id:ethernet
connection.uuid:UUID-ethernet-REPLACED-REPLACED-REPL
@@ -13471,6 +13579,7 @@ ipv4.dhcp-vendor-class-identifier:
ipv4.link-local:0
ipv4.dhcp-reject-servers:
ipv4.auto-route-ext-gw:-1
+ipv4.replace-local-rule:-1
ipv6.method:auto
ipv6.dns:
ipv6.dns-search:
@@ -13499,6 +13608,7 @@ ipv6.dhcp-hostname:
ipv6.dhcp-hostname-flags:0x0
ipv6.auto-route-ext-gw:-1
ipv6.token:
+ipv6.replace-local-rule:-1
proxy.method:none
proxy.browser-only:no
proxy.pac-url:
@@ -13532,12 +13642,12 @@ GENERAL.ZONE:
GENERAL.MASTER-PATH:
<<<
-size: 3360
+size: 3414
location: src/tests/client/test-client.py:test_003()/243
cmd: $NMCLI --mode multiline --terse con s ethernet
lang: pl_PL.UTF-8
returncode: 0
-stdout: 3191 bytes
+stdout: 3245 bytes
>>>
connection.id:ethernet
connection.uuid:UUID-ethernet-REPLACED-REPLACED-REPL
@@ -13609,6 +13719,7 @@ ipv4.dhcp-vendor-class-identifier:
ipv4.link-local:0
ipv4.dhcp-reject-servers:
ipv4.auto-route-ext-gw:-1
+ipv4.replace-local-rule:-1
ipv6.method:auto
ipv6.dns:
ipv6.dns-search:
@@ -13637,6 +13748,7 @@ ipv6.dhcp-hostname:
ipv6.dhcp-hostname-flags:0x0
ipv6.auto-route-ext-gw:-1
ipv6.token:
+ipv6.replace-local-rule:-1
proxy.method:none
proxy.browser-only:no
proxy.pac-url:
@@ -13670,12 +13782,12 @@ GENERAL.ZONE:
GENERAL.MASTER-PATH:
<<<
-size: 3000
+size: 3054
location: src/tests/client/test-client.py:test_003()/244
cmd: $NMCLI --mode multiline --terse c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: C
returncode: 0
-stdout: 2801 bytes
+stdout: 2855 bytes
>>>
connection.id:ethernet
connection.uuid:UUID-ethernet-REPLACED-REPLACED-REPL
@@ -13747,6 +13859,7 @@ ipv4.dhcp-vendor-class-identifier:
ipv4.link-local:0
ipv4.dhcp-reject-servers:
ipv4.auto-route-ext-gw:-1
+ipv4.replace-local-rule:-1
ipv6.method:auto
ipv6.dns:
ipv6.dns-search:
@@ -13775,6 +13888,7 @@ ipv6.dhcp-hostname:
ipv6.dhcp-hostname-flags:0x0
ipv6.auto-route-ext-gw:-1
ipv6.token:
+ipv6.replace-local-rule:-1
proxy.method:none
proxy.browser-only:no
proxy.pac-url:
@@ -13794,12 +13908,12 @@ GENERAL.ZONE:
GENERAL.MASTER-PATH:
<<<
-size: 3010
+size: 3064
location: src/tests/client/test-client.py:test_003()/245
cmd: $NMCLI --mode multiline --terse c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 2801 bytes
+stdout: 2855 bytes
>>>
connection.id:ethernet
connection.uuid:UUID-ethernet-REPLACED-REPLACED-REPL
@@ -13871,6 +13985,7 @@ ipv4.dhcp-vendor-class-identifier:
ipv4.link-local:0
ipv4.dhcp-reject-servers:
ipv4.auto-route-ext-gw:-1
+ipv4.replace-local-rule:-1
ipv6.method:auto
ipv6.dns:
ipv6.dns-search:
@@ -13899,6 +14014,7 @@ ipv6.dhcp-hostname:
ipv6.dhcp-hostname-flags:0x0
ipv6.auto-route-ext-gw:-1
ipv6.token:
+ipv6.replace-local-rule:-1
proxy.method:none
proxy.browser-only:no
proxy.pac-url:
@@ -14332,12 +14448,12 @@ UUID:UUID-con-xx1-REPLACED-REPLACED-REPLA
TYPE:802-3-ethernet
<<<
-size: 3362
+size: 3416
location: src/tests/client/test-client.py:test_003()/252
cmd: $NMCLI --mode multiline --terse --color yes con s ethernet
lang: C
returncode: 0
-stdout: 3191 bytes
+stdout: 3245 bytes
>>>
connection.id:ethernet
connection.uuid:UUID-ethernet-REPLACED-REPLACED-REPL
@@ -14409,6 +14525,7 @@ ipv4.dhcp-vendor-class-identifier:
ipv4.link-local:0
ipv4.dhcp-reject-servers:
ipv4.auto-route-ext-gw:-1
+ipv4.replace-local-rule:-1
ipv6.method:auto
ipv6.dns:
ipv6.dns-search:
@@ -14437,6 +14554,7 @@ ipv6.dhcp-hostname:
ipv6.dhcp-hostname-flags:0x0
ipv6.auto-route-ext-gw:-1
ipv6.token:
+ipv6.replace-local-rule:-1
proxy.method:none
proxy.browser-only:no
proxy.pac-url:
@@ -14470,12 +14588,12 @@ GENERAL.ZONE:
GENERAL.MASTER-PATH:
<<<
-size: 3372
+size: 3426
location: src/tests/client/test-client.py:test_003()/253
cmd: $NMCLI --mode multiline --terse --color yes con s ethernet
lang: pl_PL.UTF-8
returncode: 0
-stdout: 3191 bytes
+stdout: 3245 bytes
>>>
connection.id:ethernet
connection.uuid:UUID-ethernet-REPLACED-REPLACED-REPL
@@ -14547,6 +14665,7 @@ ipv4.dhcp-vendor-class-identifier:
ipv4.link-local:0
ipv4.dhcp-reject-servers:
ipv4.auto-route-ext-gw:-1
+ipv4.replace-local-rule:-1
ipv6.method:auto
ipv6.dns:
ipv6.dns-search:
@@ -14575,6 +14694,7 @@ ipv6.dhcp-hostname:
ipv6.dhcp-hostname-flags:0x0
ipv6.auto-route-ext-gw:-1
ipv6.token:
+ipv6.replace-local-rule:-1
proxy.method:none
proxy.browser-only:no
proxy.pac-url:
@@ -14608,12 +14728,12 @@ GENERAL.ZONE:
GENERAL.MASTER-PATH:
<<<
-size: 3012
+size: 3066
location: src/tests/client/test-client.py:test_003()/254
cmd: $NMCLI --mode multiline --terse --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: C
returncode: 0
-stdout: 2801 bytes
+stdout: 2855 bytes
>>>
connection.id:ethernet
connection.uuid:UUID-ethernet-REPLACED-REPLACED-REPL
@@ -14685,6 +14805,7 @@ ipv4.dhcp-vendor-class-identifier:
ipv4.link-local:0
ipv4.dhcp-reject-servers:
ipv4.auto-route-ext-gw:-1
+ipv4.replace-local-rule:-1
ipv6.method:auto
ipv6.dns:
ipv6.dns-search:
@@ -14713,6 +14834,7 @@ ipv6.dhcp-hostname:
ipv6.dhcp-hostname-flags:0x0
ipv6.auto-route-ext-gw:-1
ipv6.token:
+ipv6.replace-local-rule:-1
proxy.method:none
proxy.browser-only:no
proxy.pac-url:
@@ -14732,12 +14854,12 @@ GENERAL.ZONE:
GENERAL.MASTER-PATH:
<<<
-size: 3022
+size: 3076
location: src/tests/client/test-client.py:test_003()/255
cmd: $NMCLI --mode multiline --terse --color yes c s /org/freedesktop/NetworkManager/ActiveConnection/1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 2801 bytes
+stdout: 2855 bytes
>>>
connection.id:ethernet
connection.uuid:UUID-ethernet-REPLACED-REPLACED-REPL
@@ -14809,6 +14931,7 @@ ipv4.dhcp-vendor-class-identifier:
ipv4.link-local:0
ipv4.dhcp-reject-servers:
ipv4.auto-route-ext-gw:-1
+ipv4.replace-local-rule:-1
ipv6.method:auto
ipv6.dns:
ipv6.dns-search:
@@ -14837,6 +14960,7 @@ ipv6.dhcp-hostname:
ipv6.dhcp-hostname-flags:0x0
ipv6.auto-route-ext-gw:-1
ipv6.token:
+ipv6.replace-local-rule:-1
proxy.method:none
proxy.browser-only:no
proxy.pac-url:
diff --git a/src/tests/client/test-client.check-on-disk/test_004.expected b/src/tests/client/test-client.check-on-disk/test_004.expected
index b8d3478698..065b8ee426 100644
--- a/src/tests/client/test-client.check-on-disk/test_004.expected
+++ b/src/tests/client/test-client.check-on-disk/test_004.expected
@@ -58,12 +58,12 @@ location: src/tests/client/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: 5058
+size: 5164
location: src/tests/client/test-client.py:test_004()/8
cmd: $NMCLI con s con-xx1
lang: C
returncode: 0
-stdout: 4927 bytes
+stdout: 5033 bytes
>>>
connection.id: con-xx1
connection.uuid: UUID-con-xx1-REPLACED-REPLACED-REPLA
@@ -138,6 +138,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
@@ -166,18 +167,19 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
proxy.method: none
proxy.browser-only: no
proxy.pac-url: --
proxy.pac-script: --
<<<
-size: 5094
+size: 5200
location: src/tests/client/test-client.py:test_004()/9
cmd: $NMCLI con s con-xx1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 4953 bytes
+stdout: 5059 bytes
>>>
connection.id: con-xx1
connection.uuid: UUID-con-xx1-REPLACED-REPLACED-REPLA
@@ -252,6 +254,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
@@ -280,6 +283,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
proxy.method: none
proxy.browser-only: nie
proxy.pac-url: --
@@ -322,12 +326,12 @@ con-vpn-1 UUID-con-vpn-1-REPLACED-REPLACED-REP vpn --
con-xx1 UUID-con-xx1-REPLACED-REPLACED-REPLA wifi --
<<<
-size: 4472
+size: 4578
location: src/tests/client/test-client.py:test_004()/13
cmd: $NMCLI con s con-vpn-1
lang: C
returncode: 0
-stdout: 4338 bytes
+stdout: 4444 bytes
>>>
connection.id: con-vpn-1
connection.uuid: UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -384,6 +388,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
@@ -412,6 +417,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
vpn.data: key1 = val1, key2 = val2, key3 = val3
@@ -424,12 +430,12 @@ proxy.pac-url: --
proxy.pac-script: --
<<<
-size: 4500
+size: 4606
location: src/tests/client/test-client.py:test_004()/14
cmd: $NMCLI con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 4356 bytes
+stdout: 4462 bytes
>>>
connection.id: con-vpn-1
connection.uuid: UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -486,6 +492,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
@@ -514,6 +521,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
vpn.data: key1 = val1, key2 = val2, key3 = val3
@@ -598,12 +606,12 @@ con-xx1 UUID-con-xx1-REPLACED-REPLACED-REPLA wifi wlan0
con-1 5fcfd6d7-1e63-3332-8826-a7eda103792d ethernet --
<<<
-size: 5600
+size: 5706
location: src/tests/client/test-client.py:test_004()/21
cmd: $NMCLI con s con-vpn-1
lang: C
returncode: 0
-stdout: 5466 bytes
+stdout: 5572 bytes
>>>
connection.id: con-vpn-1
connection.uuid: UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -660,6 +668,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
@@ -688,6 +697,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
vpn.data: key1 = val1, key2 = val2, key3 = val3
@@ -721,12 +731,12 @@ VPN.CFG[2]: key2 = val2
VPN.CFG[3]: key3 = val3
<<<
-size: 5634
+size: 5740
location: src/tests/client/test-client.py:test_004()/22
cmd: $NMCLI con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 5490 bytes
+stdout: 5596 bytes
>>>
connection.id: con-vpn-1
connection.uuid: UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -783,6 +793,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
@@ -811,6 +822,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
vpn.data: key1 = val1, key2 = val2, key3 = val3
@@ -926,12 +938,12 @@ Strony podręcznika nmcli(1) i nmcli-examples(7) zawierają pełne informacje
o użyciu.
<<<
-size: 5606
+size: 5712
location: src/tests/client/test-client.py:test_004()/25
cmd: $NMCLI con s con-vpn-1
lang: C
returncode: 0
-stdout: 5472 bytes
+stdout: 5578 bytes
>>>
connection.id: con-vpn-1
connection.uuid: UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -988,6 +1000,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
@@ -1016,6 +1029,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
vpn.data: key1 = val1, key2 = val2, key3 = val3
@@ -1049,12 +1063,12 @@ VPN.CFG[2]: key2 = val2
VPN.CFG[3]: key3 = val3
<<<
-size: 5644
+size: 5750
location: src/tests/client/test-client.py:test_004()/26
cmd: $NMCLI con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 5500 bytes
+stdout: 5606 bytes
>>>
connection.id: con-vpn-1
connection.uuid: UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -1111,6 +1125,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
@@ -1139,6 +1154,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
vpn.data: key1 = val1, key2 = val2, key3 = val3
@@ -1172,12 +1188,12 @@ VPN.CFG[2]: key2 = val2
VPN.CFG[3]: key3 = val3
<<<
-size: 5606
+size: 5712
location: src/tests/client/test-client.py:test_004()/27
cmd: $NMCLI con s con-vpn-1
lang: C
returncode: 0
-stdout: 5472 bytes
+stdout: 5578 bytes
>>>
connection.id: con-vpn-1
connection.uuid: UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -1234,6 +1250,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
@@ -1262,6 +1279,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
vpn.data: key1 = val1, key2 = val2, key3 = val3
@@ -1295,12 +1313,12 @@ VPN.CFG[2]: key2 = val2
VPN.CFG[3]: key3 = val3
<<<
-size: 5644
+size: 5750
location: src/tests/client/test-client.py:test_004()/28
cmd: $NMCLI con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 5500 bytes
+stdout: 5606 bytes
>>>
connection.id: con-vpn-1
connection.uuid: UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -1357,6 +1375,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
@@ -1385,6 +1404,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
vpn.data: key1 = val1, key2 = val2, key3 = val3
@@ -1418,12 +1438,12 @@ VPN.CFG[2]: key2 = val2
VPN.CFG[3]: key3 = val3
<<<
-size: 4479
+size: 4585
location: src/tests/client/test-client.py:test_004()/29
cmd: $NMCLI -f ALL con s con-vpn-1
lang: C
returncode: 0
-stdout: 4338 bytes
+stdout: 4444 bytes
>>>
connection.id: con-vpn-1
connection.uuid: UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -1480,6 +1500,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
@@ -1508,6 +1529,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
vpn.data: key1 = val1, key2 = val2, key3 = val3
@@ -1520,12 +1542,12 @@ proxy.pac-url: --
proxy.pac-script: --
<<<
-size: 4507
+size: 4613
location: src/tests/client/test-client.py:test_004()/30
cmd: $NMCLI -f ALL con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 4356 bytes
+stdout: 4462 bytes
>>>
connection.id: con-vpn-1
connection.uuid: UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -1582,6 +1604,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
@@ -1610,6 +1633,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
vpn.data: key1 = val1, key2 = val2, key3 = val3
@@ -4216,12 +4240,12 @@ connection.type: 802-11-wireless
connection.interface-name: --
<<<
-size: 5618
+size: 5724
location: src/tests/client/test-client.py:test_004()/75
cmd: $NMCLI --color yes con s con-vpn-1
lang: C
returncode: 0
-stdout: 5472 bytes
+stdout: 5578 bytes
>>>
connection.id: con-vpn-1
connection.uuid: UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -4278,6 +4302,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
@@ -4306,6 +4331,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
vpn.data: key1 = val1, key2 = val2, key3 = val3
@@ -4339,12 +4365,12 @@ VPN.CFG[2]: key2 = val2
VPN.CFG[3]: key3 = val3
<<<
-size: 5656
+size: 5762
location: src/tests/client/test-client.py:test_004()/76
cmd: $NMCLI --color yes con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 5500 bytes
+stdout: 5606 bytes
>>>
connection.id: con-vpn-1
connection.uuid: UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -4401,6 +4427,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
@@ -4429,6 +4456,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
vpn.data: key1 = val1, key2 = val2, key3 = val3
@@ -4462,12 +4490,12 @@ VPN.CFG[2]: key2 = val2
VPN.CFG[3]: key3 = val3
<<<
-size: 5618
+size: 5724
location: src/tests/client/test-client.py:test_004()/77
cmd: $NMCLI --color yes con s con-vpn-1
lang: C
returncode: 0
-stdout: 5472 bytes
+stdout: 5578 bytes
>>>
connection.id: con-vpn-1
connection.uuid: UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -4524,6 +4552,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
@@ -4552,6 +4581,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
vpn.data: key1 = val1, key2 = val2, key3 = val3
@@ -4585,12 +4615,12 @@ VPN.CFG[2]: key2 = val2
VPN.CFG[3]: key3 = val3
<<<
-size: 5656
+size: 5762
location: src/tests/client/test-client.py:test_004()/78
cmd: $NMCLI --color yes con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 5500 bytes
+stdout: 5606 bytes
>>>
connection.id: con-vpn-1
connection.uuid: UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -4647,6 +4677,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
@@ -4675,6 +4706,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
vpn.data: key1 = val1, key2 = val2, key3 = val3
@@ -4708,12 +4740,12 @@ VPN.CFG[2]: key2 = val2
VPN.CFG[3]: key3 = val3
<<<
-size: 4491
+size: 4597
location: src/tests/client/test-client.py:test_004()/79
cmd: $NMCLI --color yes -f ALL con s con-vpn-1
lang: C
returncode: 0
-stdout: 4338 bytes
+stdout: 4444 bytes
>>>
connection.id: con-vpn-1
connection.uuid: UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -4770,6 +4802,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
@@ -4798,6 +4831,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
vpn.data: key1 = val1, key2 = val2, key3 = val3
@@ -4810,12 +4844,12 @@ proxy.pac-url: --
proxy.pac-script: --
<<<
-size: 4519
+size: 4625
location: src/tests/client/test-client.py:test_004()/80
cmd: $NMCLI --color yes -f ALL con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 4356 bytes
+stdout: 4462 bytes
>>>
connection.id: con-vpn-1
connection.uuid: UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -4872,6 +4906,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
@@ -4900,6 +4935,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
vpn.data: key1 = val1, key2 = val2, key3 = val3
@@ -7506,12 +7542,12 @@ connection.type: 802-11-wireless
connection.interface-name: --
<<<
-size: 6627
+size: 6733
location: src/tests/client/test-client.py:test_004()/125
cmd: $NMCLI --pretty con s con-vpn-1
lang: C
returncode: 0
-stdout: 6483 bytes
+stdout: 6589 bytes
>>>
===============================================================================
Connection profile details (con-vpn-1)
@@ -7572,6 +7608,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
ipv6.method: auto
ipv6.dns: --
@@ -7601,6 +7638,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
@@ -7642,12 +7680,12 @@ VPN.CFG[3]: key3 = val3
-------------------------------------------------------------------------------
<<<
-size: 6678
+size: 6784
location: src/tests/client/test-client.py:test_004()/126
cmd: $NMCLI --pretty con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 6524 bytes
+stdout: 6630 bytes
>>>
===============================================================================
Szczegóły profilu połączenia (con-vpn-1)
@@ -7708,6 +7746,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
ipv6.method: auto
ipv6.dns: --
@@ -7737,6 +7776,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
@@ -7778,12 +7818,12 @@ VPN.CFG[3]: key3 = val3
-------------------------------------------------------------------------------
<<<
-size: 6627
+size: 6733
location: src/tests/client/test-client.py:test_004()/127
cmd: $NMCLI --pretty con s con-vpn-1
lang: C
returncode: 0
-stdout: 6483 bytes
+stdout: 6589 bytes
>>>
===============================================================================
Connection profile details (con-vpn-1)
@@ -7844,6 +7884,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
ipv6.method: auto
ipv6.dns: --
@@ -7873,6 +7914,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
@@ -7914,12 +7956,12 @@ VPN.CFG[3]: key3 = val3
-------------------------------------------------------------------------------
<<<
-size: 6678
+size: 6784
location: src/tests/client/test-client.py:test_004()/128
cmd: $NMCLI --pretty con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 6524 bytes
+stdout: 6630 bytes
>>>
===============================================================================
Szczegóły profilu połączenia (con-vpn-1)
@@ -7980,6 +8022,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
ipv6.method: auto
ipv6.dns: --
@@ -8009,6 +8052,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
@@ -8050,12 +8094,12 @@ VPN.CFG[3]: key3 = val3
-------------------------------------------------------------------------------
<<<
-size: 5108
+size: 5214
location: src/tests/client/test-client.py:test_004()/129
cmd: $NMCLI --pretty -f ALL con s con-vpn-1
lang: C
returncode: 0
-stdout: 4957 bytes
+stdout: 5063 bytes
>>>
===============================================================================
Connection profile details (con-vpn-1)
@@ -8116,6 +8160,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
ipv6.method: auto
ipv6.dns: --
@@ -8145,6 +8190,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
@@ -8160,12 +8206,12 @@ proxy.pac-script: --
-------------------------------------------------------------------------------
<<<
-size: 5141
+size: 5247
location: src/tests/client/test-client.py:test_004()/130
cmd: $NMCLI --pretty -f ALL con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 4980 bytes
+stdout: 5086 bytes
>>>
===============================================================================
Szczegóły profilu połączenia (con-vpn-1)
@@ -8226,6 +8272,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
ipv6.method: auto
ipv6.dns: --
@@ -8255,6 +8302,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
@@ -11468,12 +11516,12 @@ connection.interface-name: --
-------------------------------------------------------------------------------
<<<
-size: 6639
+size: 6745
location: src/tests/client/test-client.py:test_004()/175
cmd: $NMCLI --pretty --color yes con s con-vpn-1
lang: C
returncode: 0
-stdout: 6483 bytes
+stdout: 6589 bytes
>>>
===============================================================================
Connection profile details (con-vpn-1)
@@ -11534,6 +11582,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
ipv6.method: auto
ipv6.dns: --
@@ -11563,6 +11612,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
@@ -11604,12 +11654,12 @@ VPN.CFG[3]: key3 = val3
-------------------------------------------------------------------------------
<<<
-size: 6690
+size: 6796
location: src/tests/client/test-client.py:test_004()/176
cmd: $NMCLI --pretty --color yes con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 6524 bytes
+stdout: 6630 bytes
>>>
===============================================================================
Szczegóły profilu połączenia (con-vpn-1)
@@ -11670,6 +11720,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
ipv6.method: auto
ipv6.dns: --
@@ -11699,6 +11750,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
@@ -11740,12 +11792,12 @@ VPN.CFG[3]: key3 = val3
-------------------------------------------------------------------------------
<<<
-size: 6639
+size: 6745
location: src/tests/client/test-client.py:test_004()/177
cmd: $NMCLI --pretty --color yes con s con-vpn-1
lang: C
returncode: 0
-stdout: 6483 bytes
+stdout: 6589 bytes
>>>
===============================================================================
Connection profile details (con-vpn-1)
@@ -11806,6 +11858,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
ipv6.method: auto
ipv6.dns: --
@@ -11835,6 +11888,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
@@ -11876,12 +11930,12 @@ VPN.CFG[3]: key3 = val3
-------------------------------------------------------------------------------
<<<
-size: 6690
+size: 6796
location: src/tests/client/test-client.py:test_004()/178
cmd: $NMCLI --pretty --color yes con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 6524 bytes
+stdout: 6630 bytes
>>>
===============================================================================
Szczegóły profilu połączenia (con-vpn-1)
@@ -11942,6 +11996,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
ipv6.method: auto
ipv6.dns: --
@@ -11971,6 +12026,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
@@ -12012,12 +12068,12 @@ VPN.CFG[3]: key3 = val3
-------------------------------------------------------------------------------
<<<
-size: 5120
+size: 5226
location: src/tests/client/test-client.py:test_004()/179
cmd: $NMCLI --pretty --color yes -f ALL con s con-vpn-1
lang: C
returncode: 0
-stdout: 4957 bytes
+stdout: 5063 bytes
>>>
===============================================================================
Connection profile details (con-vpn-1)
@@ -12078,6 +12134,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
ipv6.method: auto
ipv6.dns: --
@@ -12107,6 +12164,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
@@ -12122,12 +12180,12 @@ proxy.pac-script: --
-------------------------------------------------------------------------------
<<<
-size: 5153
+size: 5259
location: src/tests/client/test-client.py:test_004()/180
cmd: $NMCLI --pretty --color yes -f ALL con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 4980 bytes
+stdout: 5086 bytes
>>>
===============================================================================
Szczegóły profilu połączenia (con-vpn-1)
@@ -12188,6 +12246,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
ipv6.method: auto
ipv6.dns: --
@@ -12217,6 +12276,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
@@ -15430,12 +15490,12 @@ connection.interface-name: --
-------------------------------------------------------------------------------
<<<
-size: 2822
+size: 2876
location: src/tests/client/test-client.py:test_004()/225
cmd: $NMCLI --terse con s con-vpn-1
lang: C
returncode: 0
-stdout: 2679 bytes
+stdout: 2733 bytes
>>>
connection.id:con-vpn-1
connection.uuid:UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -15492,6 +15552,7 @@ ipv4.dhcp-vendor-class-identifier:
ipv4.link-local:0
ipv4.dhcp-reject-servers:
ipv4.auto-route-ext-gw:-1
+ipv4.replace-local-rule:-1
ipv6.method:auto
ipv6.dns:
ipv6.dns-search:
@@ -15520,6 +15581,7 @@ ipv6.dhcp-hostname:
ipv6.dhcp-hostname-flags:0x0
ipv6.auto-route-ext-gw:-1
ipv6.token:
+ipv6.replace-local-rule:-1
vpn.service-type:org.freedesktop.NetworkManager.openvpn
vpn.user-name:
vpn.data:key1 = val1, key2 = val2, key3 = val3
@@ -15553,12 +15615,12 @@ VPN.CFG[2]:key2 = val2
VPN.CFG[3]:key3 = val3
<<<
-size: 2832
+size: 2886
location: src/tests/client/test-client.py:test_004()/226
cmd: $NMCLI --terse con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 2679 bytes
+stdout: 2733 bytes
>>>
connection.id:con-vpn-1
connection.uuid:UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -15615,6 +15677,7 @@ ipv4.dhcp-vendor-class-identifier:
ipv4.link-local:0
ipv4.dhcp-reject-servers:
ipv4.auto-route-ext-gw:-1
+ipv4.replace-local-rule:-1
ipv6.method:auto
ipv6.dns:
ipv6.dns-search:
@@ -15643,6 +15706,7 @@ ipv6.dhcp-hostname:
ipv6.dhcp-hostname-flags:0x0
ipv6.auto-route-ext-gw:-1
ipv6.token:
+ipv6.replace-local-rule:-1
vpn.service-type:org.freedesktop.NetworkManager.openvpn
vpn.user-name:
vpn.data:key1 = val1, key2 = val2, key3 = val3
@@ -15676,12 +15740,12 @@ VPN.CFG[2]:key2 = val2
VPN.CFG[3]:key3 = val3
<<<
-size: 2822
+size: 2876
location: src/tests/client/test-client.py:test_004()/227
cmd: $NMCLI --terse con s con-vpn-1
lang: C
returncode: 0
-stdout: 2679 bytes
+stdout: 2733 bytes
>>>
connection.id:con-vpn-1
connection.uuid:UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -15738,6 +15802,7 @@ ipv4.dhcp-vendor-class-identifier:
ipv4.link-local:0
ipv4.dhcp-reject-servers:
ipv4.auto-route-ext-gw:-1
+ipv4.replace-local-rule:-1
ipv6.method:auto
ipv6.dns:
ipv6.dns-search:
@@ -15766,6 +15831,7 @@ ipv6.dhcp-hostname:
ipv6.dhcp-hostname-flags:0x0
ipv6.auto-route-ext-gw:-1
ipv6.token:
+ipv6.replace-local-rule:-1
vpn.service-type:org.freedesktop.NetworkManager.openvpn
vpn.user-name:
vpn.data:key1 = val1, key2 = val2, key3 = val3
@@ -15799,12 +15865,12 @@ VPN.CFG[2]:key2 = val2
VPN.CFG[3]:key3 = val3
<<<
-size: 2832
+size: 2886
location: src/tests/client/test-client.py:test_004()/228
cmd: $NMCLI --terse con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 2679 bytes
+stdout: 2733 bytes
>>>
connection.id:con-vpn-1
connection.uuid:UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -15861,6 +15927,7 @@ ipv4.dhcp-vendor-class-identifier:
ipv4.link-local:0
ipv4.dhcp-reject-servers:
ipv4.auto-route-ext-gw:-1
+ipv4.replace-local-rule:-1
ipv6.method:auto
ipv6.dns:
ipv6.dns-search:
@@ -15889,6 +15956,7 @@ ipv6.dhcp-hostname:
ipv6.dhcp-hostname-flags:0x0
ipv6.auto-route-ext-gw:-1
ipv6.token:
+ipv6.replace-local-rule:-1
vpn.service-type:org.freedesktop.NetworkManager.openvpn
vpn.user-name:
vpn.data:key1 = val1, key2 = val2, key3 = val3
@@ -15922,12 +15990,12 @@ VPN.CFG[2]:key2 = val2
VPN.CFG[3]:key3 = val3
<<<
-size: 2247
+size: 2301
location: src/tests/client/test-client.py:test_004()/229
cmd: $NMCLI --terse -f ALL con s con-vpn-1
lang: C
returncode: 0
-stdout: 2097 bytes
+stdout: 2151 bytes
>>>
connection.id:con-vpn-1
connection.uuid:UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -15984,6 +16052,7 @@ ipv4.dhcp-vendor-class-identifier:
ipv4.link-local:0
ipv4.dhcp-reject-servers:
ipv4.auto-route-ext-gw:-1
+ipv4.replace-local-rule:-1
ipv6.method:auto
ipv6.dns:
ipv6.dns-search:
@@ -16012,6 +16081,7 @@ ipv6.dhcp-hostname:
ipv6.dhcp-hostname-flags:0x0
ipv6.auto-route-ext-gw:-1
ipv6.token:
+ipv6.replace-local-rule:-1
vpn.service-type:org.freedesktop.NetworkManager.openvpn
vpn.user-name:
vpn.data:key1 = val1, key2 = val2, key3 = val3
@@ -16024,12 +16094,12 @@ proxy.pac-url:
proxy.pac-script:
<<<
-size: 2257
+size: 2311
location: src/tests/client/test-client.py:test_004()/230
cmd: $NMCLI --terse -f ALL con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 2097 bytes
+stdout: 2151 bytes
>>>
connection.id:con-vpn-1
connection.uuid:UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -16086,6 +16156,7 @@ ipv4.dhcp-vendor-class-identifier:
ipv4.link-local:0
ipv4.dhcp-reject-servers:
ipv4.auto-route-ext-gw:-1
+ipv4.replace-local-rule:-1
ipv6.method:auto
ipv6.dns:
ipv6.dns-search:
@@ -16114,6 +16185,7 @@ ipv6.dhcp-hostname:
ipv6.dhcp-hostname-flags:0x0
ipv6.auto-route-ext-gw:-1
ipv6.token:
+ipv6.replace-local-rule:-1
vpn.service-type:org.freedesktop.NetworkManager.openvpn
vpn.user-name:
vpn.data:key1 = val1, key2 = val2, key3 = val3
@@ -18690,12 +18762,12 @@ connection.type:802-11-wireless
connection.interface-name:
<<<
-size: 2834
+size: 2888
location: src/tests/client/test-client.py:test_004()/275
cmd: $NMCLI --terse --color yes con s con-vpn-1
lang: C
returncode: 0
-stdout: 2679 bytes
+stdout: 2733 bytes
>>>
connection.id:con-vpn-1
connection.uuid:UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -18752,6 +18824,7 @@ ipv4.dhcp-vendor-class-identifier:
ipv4.link-local:0
ipv4.dhcp-reject-servers:
ipv4.auto-route-ext-gw:-1
+ipv4.replace-local-rule:-1
ipv6.method:auto
ipv6.dns:
ipv6.dns-search:
@@ -18780,6 +18853,7 @@ ipv6.dhcp-hostname:
ipv6.dhcp-hostname-flags:0x0
ipv6.auto-route-ext-gw:-1
ipv6.token:
+ipv6.replace-local-rule:-1
vpn.service-type:org.freedesktop.NetworkManager.openvpn
vpn.user-name:
vpn.data:key1 = val1, key2 = val2, key3 = val3
@@ -18813,12 +18887,12 @@ VPN.CFG[2]:key2 = val2
VPN.CFG[3]:key3 = val3
<<<
-size: 2844
+size: 2898
location: src/tests/client/test-client.py:test_004()/276
cmd: $NMCLI --terse --color yes con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 2679 bytes
+stdout: 2733 bytes
>>>
connection.id:con-vpn-1
connection.uuid:UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -18875,6 +18949,7 @@ ipv4.dhcp-vendor-class-identifier:
ipv4.link-local:0
ipv4.dhcp-reject-servers:
ipv4.auto-route-ext-gw:-1
+ipv4.replace-local-rule:-1
ipv6.method:auto
ipv6.dns:
ipv6.dns-search:
@@ -18903,6 +18978,7 @@ ipv6.dhcp-hostname:
ipv6.dhcp-hostname-flags:0x0
ipv6.auto-route-ext-gw:-1
ipv6.token:
+ipv6.replace-local-rule:-1
vpn.service-type:org.freedesktop.NetworkManager.openvpn
vpn.user-name:
vpn.data:key1 = val1, key2 = val2, key3 = val3
@@ -18936,12 +19012,12 @@ VPN.CFG[2]:key2 = val2
VPN.CFG[3]:key3 = val3
<<<
-size: 2834
+size: 2888
location: src/tests/client/test-client.py:test_004()/277
cmd: $NMCLI --terse --color yes con s con-vpn-1
lang: C
returncode: 0
-stdout: 2679 bytes
+stdout: 2733 bytes
>>>
connection.id:con-vpn-1
connection.uuid:UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -18998,6 +19074,7 @@ ipv4.dhcp-vendor-class-identifier:
ipv4.link-local:0
ipv4.dhcp-reject-servers:
ipv4.auto-route-ext-gw:-1
+ipv4.replace-local-rule:-1
ipv6.method:auto
ipv6.dns:
ipv6.dns-search:
@@ -19026,6 +19103,7 @@ ipv6.dhcp-hostname:
ipv6.dhcp-hostname-flags:0x0
ipv6.auto-route-ext-gw:-1
ipv6.token:
+ipv6.replace-local-rule:-1
vpn.service-type:org.freedesktop.NetworkManager.openvpn
vpn.user-name:
vpn.data:key1 = val1, key2 = val2, key3 = val3
@@ -19059,12 +19137,12 @@ VPN.CFG[2]:key2 = val2
VPN.CFG[3]:key3 = val3
<<<
-size: 2844
+size: 2898
location: src/tests/client/test-client.py:test_004()/278
cmd: $NMCLI --terse --color yes con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 2679 bytes
+stdout: 2733 bytes
>>>
connection.id:con-vpn-1
connection.uuid:UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -19121,6 +19199,7 @@ ipv4.dhcp-vendor-class-identifier:
ipv4.link-local:0
ipv4.dhcp-reject-servers:
ipv4.auto-route-ext-gw:-1
+ipv4.replace-local-rule:-1
ipv6.method:auto
ipv6.dns:
ipv6.dns-search:
@@ -19149,6 +19228,7 @@ ipv6.dhcp-hostname:
ipv6.dhcp-hostname-flags:0x0
ipv6.auto-route-ext-gw:-1
ipv6.token:
+ipv6.replace-local-rule:-1
vpn.service-type:org.freedesktop.NetworkManager.openvpn
vpn.user-name:
vpn.data:key1 = val1, key2 = val2, key3 = val3
@@ -19182,12 +19262,12 @@ VPN.CFG[2]:key2 = val2
VPN.CFG[3]:key3 = val3
<<<
-size: 2259
+size: 2313
location: src/tests/client/test-client.py:test_004()/279
cmd: $NMCLI --terse --color yes -f ALL con s con-vpn-1
lang: C
returncode: 0
-stdout: 2097 bytes
+stdout: 2151 bytes
>>>
connection.id:con-vpn-1
connection.uuid:UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -19244,6 +19324,7 @@ ipv4.dhcp-vendor-class-identifier:
ipv4.link-local:0
ipv4.dhcp-reject-servers:
ipv4.auto-route-ext-gw:-1
+ipv4.replace-local-rule:-1
ipv6.method:auto
ipv6.dns:
ipv6.dns-search:
@@ -19272,6 +19353,7 @@ ipv6.dhcp-hostname:
ipv6.dhcp-hostname-flags:0x0
ipv6.auto-route-ext-gw:-1
ipv6.token:
+ipv6.replace-local-rule:-1
vpn.service-type:org.freedesktop.NetworkManager.openvpn
vpn.user-name:
vpn.data:key1 = val1, key2 = val2, key3 = val3
@@ -19284,12 +19366,12 @@ proxy.pac-url:
proxy.pac-script:
<<<
-size: 2269
+size: 2323
location: src/tests/client/test-client.py:test_004()/280
cmd: $NMCLI --terse --color yes -f ALL con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 2097 bytes
+stdout: 2151 bytes
>>>
connection.id:con-vpn-1
connection.uuid:UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -19346,6 +19428,7 @@ ipv4.dhcp-vendor-class-identifier:
ipv4.link-local:0
ipv4.dhcp-reject-servers:
ipv4.auto-route-ext-gw:-1
+ipv4.replace-local-rule:-1
ipv6.method:auto
ipv6.dns:
ipv6.dns-search:
@@ -19374,6 +19457,7 @@ ipv6.dhcp-hostname:
ipv6.dhcp-hostname-flags:0x0
ipv6.auto-route-ext-gw:-1
ipv6.token:
+ipv6.replace-local-rule:-1
vpn.service-type:org.freedesktop.NetworkManager.openvpn
vpn.user-name:
vpn.data:key1 = val1, key2 = val2, key3 = val3
@@ -21950,21 +22034,21 @@ connection.type:802-11-wireless
connection.interface-name:
<<<
-size: 3670
+size: 3750
location: src/tests/client/test-client.py:test_004()/325
cmd: $NMCLI --mode tabular con s con-vpn-1
lang: C
returncode: 0
-stdout: 3520 bytes
+stdout: 3600 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 dns-over-tls mptcp-flags wait-device-timeout wait-activation-delay
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 (default) 0x0 (default) -1 -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 dhcp-hostname-flags never-default may-fail required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- 0x0 (none) no yes -1 (default) -1 (default) -- 0 (default) -- -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 required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw replace-local-rule
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- 0x0 (none) no yes -1 (default) -1 (default) -- 0 (default) -- -1 (default) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (default) -1 (unknown) default 0 (default) auto -- -- 0 (default) yes -- 0x0 (none) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token replace-local-rule
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (default) -1 (unknown) default 0 (default) auto -- -- 0 (default) yes -- 0x0 (none) -1 (default) -- -1 (default)
name service-type user-name data secrets persistent timeout
vpn org.freedesktop.NetworkManager.openvpn -- key1 = val1, key2 = val2, key3 = val3 <hidden> no 0
@@ -21979,21 +22063,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: 3709
+size: 3789
location: src/tests/client/test-client.py:test_004()/326
cmd: $NMCLI --mode tabular con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 3549 bytes
+stdout: 3629 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 dns-over-tls mptcp-flags wait-device-timeout wait-activation-delay
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 (default) 0x0 (default) -1 -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 dhcp-hostname-flags never-default may-fail required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- 0x0 (none) nie tak -1 (default) -1 (default) -- 0 (default) -- -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 required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw replace-local-rule
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- 0x0 (none) nie tak -1 (default) -1 (default) -- 0 (default) -- -1 (default) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (default) -1 (unknown) default 0 (default) automatyczne -- -- 0 (default) tak -- 0x0 (none) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token replace-local-rule
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (default) -1 (unknown) default 0 (default) automatyczne -- -- 0 (default) tak -- 0x0 (none) -1 (default) -- -1 (default)
name service-type user-name data secrets persistent timeout
vpn org.freedesktop.NetworkManager.openvpn -- key1 = val1, key2 = val2, key3 = val3 <hidden> nie 0
@@ -22008,21 +22092,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: 3670
+size: 3750
location: src/tests/client/test-client.py:test_004()/327
cmd: $NMCLI --mode tabular con s con-vpn-1
lang: C
returncode: 0
-stdout: 3520 bytes
+stdout: 3600 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 dns-over-tls mptcp-flags wait-device-timeout wait-activation-delay
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 (default) 0x0 (default) -1 -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 dhcp-hostname-flags never-default may-fail required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- 0x0 (none) no yes -1 (default) -1 (default) -- 0 (default) -- -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 required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw replace-local-rule
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- 0x0 (none) no yes -1 (default) -1 (default) -- 0 (default) -- -1 (default) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (default) -1 (unknown) default 0 (default) auto -- -- 0 (default) yes -- 0x0 (none) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token replace-local-rule
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (default) -1 (unknown) default 0 (default) auto -- -- 0 (default) yes -- 0x0 (none) -1 (default) -- -1 (default)
name service-type user-name data secrets persistent timeout
vpn org.freedesktop.NetworkManager.openvpn -- key1 = val1, key2 = val2, key3 = val3 <hidden> no 0
@@ -22037,21 +22121,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: 3709
+size: 3789
location: src/tests/client/test-client.py:test_004()/328
cmd: $NMCLI --mode tabular con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 3549 bytes
+stdout: 3629 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 dns-over-tls mptcp-flags wait-device-timeout wait-activation-delay
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 (default) 0x0 (default) -1 -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 dhcp-hostname-flags never-default may-fail required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- 0x0 (none) nie tak -1 (default) -1 (default) -- 0 (default) -- -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 required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw replace-local-rule
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- 0x0 (none) nie tak -1 (default) -1 (default) -- 0 (default) -- -1 (default) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (default) -1 (unknown) default 0 (default) automatyczne -- -- 0 (default) tak -- 0x0 (none) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token replace-local-rule
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (default) -1 (unknown) default 0 (default) automatyczne -- -- 0 (default) tak -- 0x0 (none) -1 (default) -- -1 (default)
name service-type user-name data secrets persistent timeout
vpn org.freedesktop.NetworkManager.openvpn -- key1 = val1, key2 = val2, key3 = val3 <hidden> nie 0
@@ -22066,21 +22150,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: 2918
+size: 2998
location: src/tests/client/test-client.py:test_004()/329
cmd: $NMCLI --mode tabular -f ALL con s con-vpn-1
lang: C
returncode: 0
-stdout: 2761 bytes
+stdout: 2841 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 dns-over-tls mptcp-flags wait-device-timeout wait-activation-delay
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 (default) 0x0 (default) -1 -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 dhcp-hostname-flags never-default may-fail required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- 0x0 (none) no yes -1 (default) -1 (default) -- 0 (default) -- -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 required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw replace-local-rule
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- 0x0 (none) no yes -1 (default) -1 (default) -- 0 (default) -- -1 (default) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (default) -1 (unknown) default 0 (default) auto -- -- 0 (default) yes -- 0x0 (none) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token replace-local-rule
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (default) -1 (unknown) default 0 (default) auto -- -- 0 (default) yes -- 0x0 (none) -1 (default) -- -1 (default)
name service-type user-name data secrets persistent timeout
vpn org.freedesktop.NetworkManager.openvpn -- key1 = val1, key2 = val2, key3 = val3 <hidden> no 0
@@ -22090,21 +22174,21 @@ proxy none no -- --
<<<
-size: 2946
+size: 3026
location: src/tests/client/test-client.py:test_004()/330
cmd: $NMCLI --mode tabular -f ALL con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 2779 bytes
+stdout: 2859 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 dns-over-tls mptcp-flags wait-device-timeout wait-activation-delay
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 (default) 0x0 (default) -1 -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 dhcp-hostname-flags never-default may-fail required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- 0x0 (none) nie tak -1 (default) -1 (default) -- 0 (default) -- -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 required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw replace-local-rule
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- 0x0 (none) nie tak -1 (default) -1 (default) -- 0 (default) -- -1 (default) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (default) -1 (unknown) default 0 (default) automatyczne -- -- 0 (default) tak -- 0x0 (none) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token replace-local-rule
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (default) -1 (unknown) default 0 (default) automatyczne -- -- 0 (default) tak -- 0x0 (none) -1 (default) -- -1 (default)
name service-type user-name data secrets persistent timeout
vpn org.freedesktop.NetworkManager.openvpn -- key1 = val1, key2 = val2, key3 = val3 <hidden> nie 0
@@ -23604,21 +23688,21 @@ interface-name
<<<
-size: 3682
+size: 3762
location: src/tests/client/test-client.py:test_004()/375
cmd: $NMCLI --mode tabular --color yes con s con-vpn-1
lang: C
returncode: 0
-stdout: 3520 bytes
+stdout: 3600 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 dns-over-tls mptcp-flags wait-device-timeout wait-activation-delay
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 (default) 0x0 (default) -1 -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 dhcp-hostname-flags never-default may-fail required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- 0x0 (none) no yes -1 (default) -1 (default) -- 0 (default) -- -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 required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw replace-local-rule
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- 0x0 (none) no yes -1 (default) -1 (default) -- 0 (default) -- -1 (default) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (default) -1 (unknown) default 0 (default) auto -- -- 0 (default) yes -- 0x0 (none) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token replace-local-rule
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (default) -1 (unknown) default 0 (default) auto -- -- 0 (default) yes -- 0x0 (none) -1 (default) -- -1 (default)
name service-type user-name data secrets persistent timeout
vpn org.freedesktop.NetworkManager.openvpn -- key1 = val1, key2 = val2, key3 = val3 <hidden> no 0
@@ -23633,21 +23717,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: 3721
+size: 3801
location: src/tests/client/test-client.py:test_004()/376
cmd: $NMCLI --mode tabular --color yes con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 3549 bytes
+stdout: 3629 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 dns-over-tls mptcp-flags wait-device-timeout wait-activation-delay
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 (default) 0x0 (default) -1 -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 dhcp-hostname-flags never-default may-fail required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- 0x0 (none) nie tak -1 (default) -1 (default) -- 0 (default) -- -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 required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw replace-local-rule
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- 0x0 (none) nie tak -1 (default) -1 (default) -- 0 (default) -- -1 (default) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (default) -1 (unknown) default 0 (default) automatyczne -- -- 0 (default) tak -- 0x0 (none) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token replace-local-rule
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (default) -1 (unknown) default 0 (default) automatyczne -- -- 0 (default) tak -- 0x0 (none) -1 (default) -- -1 (default)
name service-type user-name data secrets persistent timeout
vpn org.freedesktop.NetworkManager.openvpn -- key1 = val1, key2 = val2, key3 = val3 <hidden> nie 0
@@ -23662,21 +23746,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: 3682
+size: 3762
location: src/tests/client/test-client.py:test_004()/377
cmd: $NMCLI --mode tabular --color yes con s con-vpn-1
lang: C
returncode: 0
-stdout: 3520 bytes
+stdout: 3600 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 dns-over-tls mptcp-flags wait-device-timeout wait-activation-delay
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 (default) 0x0 (default) -1 -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 dhcp-hostname-flags never-default may-fail required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- 0x0 (none) no yes -1 (default) -1 (default) -- 0 (default) -- -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 required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw replace-local-rule
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- 0x0 (none) no yes -1 (default) -1 (default) -- 0 (default) -- -1 (default) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (default) -1 (unknown) default 0 (default) auto -- -- 0 (default) yes -- 0x0 (none) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token replace-local-rule
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (default) -1 (unknown) default 0 (default) auto -- -- 0 (default) yes -- 0x0 (none) -1 (default) -- -1 (default)
name service-type user-name data secrets persistent timeout
vpn org.freedesktop.NetworkManager.openvpn -- key1 = val1, key2 = val2, key3 = val3 <hidden> no 0
@@ -23691,21 +23775,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: 3721
+size: 3801
location: src/tests/client/test-client.py:test_004()/378
cmd: $NMCLI --mode tabular --color yes con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 3549 bytes
+stdout: 3629 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 dns-over-tls mptcp-flags wait-device-timeout wait-activation-delay
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 (default) 0x0 (default) -1 -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 dhcp-hostname-flags never-default may-fail required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- 0x0 (none) nie tak -1 (default) -1 (default) -- 0 (default) -- -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 required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw replace-local-rule
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- 0x0 (none) nie tak -1 (default) -1 (default) -- 0 (default) -- -1 (default) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (default) -1 (unknown) default 0 (default) automatyczne -- -- 0 (default) tak -- 0x0 (none) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token replace-local-rule
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (default) -1 (unknown) default 0 (default) automatyczne -- -- 0 (default) tak -- 0x0 (none) -1 (default) -- -1 (default)
name service-type user-name data secrets persistent timeout
vpn org.freedesktop.NetworkManager.openvpn -- key1 = val1, key2 = val2, key3 = val3 <hidden> nie 0
@@ -23720,21 +23804,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: 2930
+size: 3010
location: src/tests/client/test-client.py:test_004()/379
cmd: $NMCLI --mode tabular --color yes -f ALL con s con-vpn-1
lang: C
returncode: 0
-stdout: 2761 bytes
+stdout: 2841 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 dns-over-tls mptcp-flags wait-device-timeout wait-activation-delay
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 (default) 0x0 (default) -1 -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 dhcp-hostname-flags never-default may-fail required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- 0x0 (none) no yes -1 (default) -1 (default) -- 0 (default) -- -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 required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw replace-local-rule
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- 0x0 (none) no yes -1 (default) -1 (default) -- 0 (default) -- -1 (default) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (default) -1 (unknown) default 0 (default) auto -- -- 0 (default) yes -- 0x0 (none) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token replace-local-rule
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (default) -1 (unknown) default 0 (default) auto -- -- 0 (default) yes -- 0x0 (none) -1 (default) -- -1 (default)
name service-type user-name data secrets persistent timeout
vpn org.freedesktop.NetworkManager.openvpn -- key1 = val1, key2 = val2, key3 = val3 <hidden> no 0
@@ -23744,21 +23828,21 @@ proxy none no -- --
<<<
-size: 2958
+size: 3038
location: src/tests/client/test-client.py:test_004()/380
cmd: $NMCLI --mode tabular --color yes -f ALL con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 2779 bytes
+stdout: 2859 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 dns-over-tls mptcp-flags wait-device-timeout wait-activation-delay
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 (default) 0x0 (default) -1 -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 dhcp-hostname-flags never-default may-fail required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- 0x0 (none) nie tak -1 (default) -1 (default) -- 0 (default) -- -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 required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw replace-local-rule
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- 0x0 (none) nie tak -1 (default) -1 (default) -- 0 (default) -- -1 (default) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (default) -1 (unknown) default 0 (default) automatyczne -- -- 0 (default) tak -- 0x0 (none) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token replace-local-rule
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (default) -1 (unknown) default 0 (default) automatyczne -- -- 0 (default) tak -- 0x0 (none) -1 (default) -- -1 (default)
name service-type user-name data secrets persistent timeout
vpn org.freedesktop.NetworkManager.openvpn -- key1 = val1, key2 = val2, key3 = val3 <hidden> nie 0
@@ -25258,12 +25342,12 @@ interface-name
<<<
-size: 5775
+size: 5895
location: src/tests/client/test-client.py:test_004()/425
cmd: $NMCLI --mode tabular --pretty con s con-vpn-1
lang: C
returncode: 0
-stdout: 5616 bytes
+stdout: 5736 bytes
>>>
==========================================
Connection profile details (con-vpn-1)
@@ -25272,13 +25356,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 (default) 0x0 (default) -1 -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 dhcp-hostname-flags never-default may-fail required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- 0x0 (none) no yes -1 (default) -1 (default) -- 0 (default) -- -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 required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw replace-local-rule
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- 0x0 (none) no yes -1 (default) -1 (default) -- 0 (default) -- -1 (default) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (default) -1 (unknown) default 0 (default) auto -- -- 0 (default) yes -- 0x0 (none) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token replace-local-rule
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (default) -1 (unknown) default 0 (default) auto -- -- 0 (default) yes -- 0x0 (none) -1 (default) -- -1 (default)
name service-type user-name data secrets persistent timeout
-------------------------------------------------------------------------------------------------------------------------------
@@ -25300,12 +25384,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: 5861
+size: 5981
location: src/tests/client/test-client.py:test_004()/426
cmd: $NMCLI --mode tabular --pretty con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 5692 bytes
+stdout: 5812 bytes
>>>
============================================
Szczegóły profilu połączenia (con-vpn-1)
@@ -25314,13 +25398,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 (default) 0x0 (default) -1 -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 dhcp-hostname-flags never-default may-fail required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- 0x0 (none) nie tak -1 (default) -1 (default) -- 0 (default) -- -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 required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw replace-local-rule
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- 0x0 (none) nie tak -1 (default) -1 (default) -- 0 (default) -- -1 (default) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (default) -1 (unknown) default 0 (default) automatyczne -- -- 0 (default) tak -- 0x0 (none) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token replace-local-rule
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (default) -1 (unknown) default 0 (default) automatyczne -- -- 0 (default) tak -- 0x0 (none) -1 (default) -- -1 (default)
name service-type user-name data secrets persistent timeout
-------------------------------------------------------------------------------------------------------------------------------
@@ -25342,12 +25426,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: 5775
+size: 5895
location: src/tests/client/test-client.py:test_004()/427
cmd: $NMCLI --mode tabular --pretty con s con-vpn-1
lang: C
returncode: 0
-stdout: 5616 bytes
+stdout: 5736 bytes
>>>
==========================================
Connection profile details (con-vpn-1)
@@ -25356,13 +25440,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 (default) 0x0 (default) -1 -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 dhcp-hostname-flags never-default may-fail required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- 0x0 (none) no yes -1 (default) -1 (default) -- 0 (default) -- -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 required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw replace-local-rule
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- 0x0 (none) no yes -1 (default) -1 (default) -- 0 (default) -- -1 (default) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (default) -1 (unknown) default 0 (default) auto -- -- 0 (default) yes -- 0x0 (none) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token replace-local-rule
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (default) -1 (unknown) default 0 (default) auto -- -- 0 (default) yes -- 0x0 (none) -1 (default) -- -1 (default)
name service-type user-name data secrets persistent timeout
-------------------------------------------------------------------------------------------------------------------------------
@@ -25384,12 +25468,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: 5861
+size: 5981
location: src/tests/client/test-client.py:test_004()/428
cmd: $NMCLI --mode tabular --pretty con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 5692 bytes
+stdout: 5812 bytes
>>>
============================================
Szczegóły profilu połączenia (con-vpn-1)
@@ -25398,13 +25482,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 (default) 0x0 (default) -1 -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 dhcp-hostname-flags never-default may-fail required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- 0x0 (none) nie tak -1 (default) -1 (default) -- 0 (default) -- -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 required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw replace-local-rule
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- 0x0 (none) nie tak -1 (default) -1 (default) -- 0 (default) -- -1 (default) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (default) -1 (unknown) default 0 (default) automatyczne -- -- 0 (default) tak -- 0x0 (none) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token replace-local-rule
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (default) -1 (unknown) default 0 (default) automatyczne -- -- 0 (default) tak -- 0x0 (none) -1 (default) -- -1 (default)
name service-type user-name data secrets persistent timeout
-------------------------------------------------------------------------------------------------------------------------------
@@ -25426,12 +25510,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: 4437
+size: 4557
location: src/tests/client/test-client.py:test_004()/429
cmd: $NMCLI --mode tabular --pretty -f ALL con s con-vpn-1
lang: C
returncode: 0
-stdout: 4271 bytes
+stdout: 4391 bytes
>>>
==========================================
Connection profile details (con-vpn-1)
@@ -25440,13 +25524,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 (default) 0x0 (default) -1 -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 dhcp-hostname-flags never-default may-fail required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- 0x0 (none) no yes -1 (default) -1 (default) -- 0 (default) -- -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 required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw replace-local-rule
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- 0x0 (none) no yes -1 (default) -1 (default) -- 0 (default) -- -1 (default) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (default) -1 (unknown) default 0 (default) auto -- -- 0 (default) yes -- 0x0 (none) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token replace-local-rule
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (default) -1 (unknown) default 0 (default) auto -- -- 0 (default) yes -- 0x0 (none) -1 (default) -- -1 (default)
name service-type user-name data secrets persistent timeout
-------------------------------------------------------------------------------------------------------------------------------
@@ -25458,12 +25542,12 @@ proxy none no -- --
<<<
-size: 4484
+size: 4604
location: src/tests/client/test-client.py:test_004()/430
cmd: $NMCLI --mode tabular --pretty -f ALL con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 4308 bytes
+stdout: 4428 bytes
>>>
============================================
Szczegóły profilu połączenia (con-vpn-1)
@@ -25472,13 +25556,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 (default) 0x0 (default) -1 -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 dhcp-hostname-flags never-default may-fail required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- 0x0 (none) nie tak -1 (default) -1 (default) -- 0 (default) -- -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 required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw replace-local-rule
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- 0x0 (none) nie tak -1 (default) -1 (default) -- 0 (default) -- -1 (default) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (default) -1 (unknown) default 0 (default) automatyczne -- -- 0 (default) tak -- 0x0 (none) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token replace-local-rule
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (default) -1 (unknown) default 0 (default) automatyczne -- -- 0 (default) tak -- 0x0 (none) -1 (default) -- -1 (default)
name service-type user-name data secrets persistent timeout
-------------------------------------------------------------------------------------------------------------------------------
@@ -27566,12 +27650,12 @@ interface-name
<<<
-size: 5787
+size: 5907
location: src/tests/client/test-client.py:test_004()/475
cmd: $NMCLI --mode tabular --pretty --color yes con s con-vpn-1
lang: C
returncode: 0
-stdout: 5616 bytes
+stdout: 5736 bytes
>>>
==========================================
Connection profile details (con-vpn-1)
@@ -27580,13 +27664,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 (default) 0x0 (default) -1 -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 dhcp-hostname-flags never-default may-fail required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- 0x0 (none) no yes -1 (default) -1 (default) -- 0 (default) -- -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 required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw replace-local-rule
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- 0x0 (none) no yes -1 (default) -1 (default) -- 0 (default) -- -1 (default) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (default) -1 (unknown) default 0 (default) auto -- -- 0 (default) yes -- 0x0 (none) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token replace-local-rule
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (default) -1 (unknown) default 0 (default) auto -- -- 0 (default) yes -- 0x0 (none) -1 (default) -- -1 (default)
name service-type user-name data secrets persistent timeout
-------------------------------------------------------------------------------------------------------------------------------
@@ -27608,12 +27692,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: 5873
+size: 5993
location: src/tests/client/test-client.py:test_004()/476
cmd: $NMCLI --mode tabular --pretty --color yes con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 5692 bytes
+stdout: 5812 bytes
>>>
============================================
Szczegóły profilu połączenia (con-vpn-1)
@@ -27622,13 +27706,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 (default) 0x0 (default) -1 -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 dhcp-hostname-flags never-default may-fail required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- 0x0 (none) nie tak -1 (default) -1 (default) -- 0 (default) -- -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 required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw replace-local-rule
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- 0x0 (none) nie tak -1 (default) -1 (default) -- 0 (default) -- -1 (default) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (default) -1 (unknown) default 0 (default) automatyczne -- -- 0 (default) tak -- 0x0 (none) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token replace-local-rule
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (default) -1 (unknown) default 0 (default) automatyczne -- -- 0 (default) tak -- 0x0 (none) -1 (default) -- -1 (default)
name service-type user-name data secrets persistent timeout
-------------------------------------------------------------------------------------------------------------------------------
@@ -27650,12 +27734,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: 5787
+size: 5907
location: src/tests/client/test-client.py:test_004()/477
cmd: $NMCLI --mode tabular --pretty --color yes con s con-vpn-1
lang: C
returncode: 0
-stdout: 5616 bytes
+stdout: 5736 bytes
>>>
==========================================
Connection profile details (con-vpn-1)
@@ -27664,13 +27748,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 (default) 0x0 (default) -1 -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 dhcp-hostname-flags never-default may-fail required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- 0x0 (none) no yes -1 (default) -1 (default) -- 0 (default) -- -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 required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw replace-local-rule
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- 0x0 (none) no yes -1 (default) -1 (default) -- 0 (default) -- -1 (default) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (default) -1 (unknown) default 0 (default) auto -- -- 0 (default) yes -- 0x0 (none) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token replace-local-rule
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (default) -1 (unknown) default 0 (default) auto -- -- 0 (default) yes -- 0x0 (none) -1 (default) -- -1 (default)
name service-type user-name data secrets persistent timeout
-------------------------------------------------------------------------------------------------------------------------------
@@ -27692,12 +27776,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: 5873
+size: 5993
location: src/tests/client/test-client.py:test_004()/478
cmd: $NMCLI --mode tabular --pretty --color yes con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 5692 bytes
+stdout: 5812 bytes
>>>
============================================
Szczegóły profilu połączenia (con-vpn-1)
@@ -27706,13 +27790,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 (default) 0x0 (default) -1 -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 dhcp-hostname-flags never-default may-fail required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- 0x0 (none) nie tak -1 (default) -1 (default) -- 0 (default) -- -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 required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw replace-local-rule
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- 0x0 (none) nie tak -1 (default) -1 (default) -- 0 (default) -- -1 (default) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (default) -1 (unknown) default 0 (default) automatyczne -- -- 0 (default) tak -- 0x0 (none) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token replace-local-rule
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (default) -1 (unknown) default 0 (default) automatyczne -- -- 0 (default) tak -- 0x0 (none) -1 (default) -- -1 (default)
name service-type user-name data secrets persistent timeout
-------------------------------------------------------------------------------------------------------------------------------
@@ -27734,12 +27818,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: 4449
+size: 4569
location: src/tests/client/test-client.py:test_004()/479
cmd: $NMCLI --mode tabular --pretty --color yes -f ALL con s con-vpn-1
lang: C
returncode: 0
-stdout: 4271 bytes
+stdout: 4391 bytes
>>>
==========================================
Connection profile details (con-vpn-1)
@@ -27748,13 +27832,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 (default) 0x0 (default) -1 -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 dhcp-hostname-flags never-default may-fail required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- 0x0 (none) no yes -1 (default) -1 (default) -- 0 (default) -- -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 required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw replace-local-rule
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no -- -- 0 (default) yes -- -- 0x0 (none) no yes -1 (default) -1 (default) -- 0 (default) -- -1 (default) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (default) -1 (unknown) default 0 (default) auto -- -- 0 (default) yes -- 0x0 (none) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token replace-local-rule
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- no no no yes -1 (default) -1 (unknown) default 0 (default) auto -- -- 0 (default) yes -- 0x0 (none) -1 (default) -- -1 (default)
name service-type user-name data secrets persistent timeout
-------------------------------------------------------------------------------------------------------------------------------
@@ -27766,12 +27850,12 @@ proxy none no -- --
<<<
-size: 4496
+size: 4616
location: src/tests/client/test-client.py:test_004()/480
cmd: $NMCLI --mode tabular --pretty --color yes -f ALL con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 4308 bytes
+stdout: 4428 bytes
>>>
============================================
Szczegóły profilu połączenia (con-vpn-1)
@@ -27780,13 +27864,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 (default) 0x0 (default) -1 -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 dhcp-hostname-flags never-default may-fail required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- 0x0 (none) nie tak -1 (default) -1 (default) -- 0 (default) -- -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 required-timeout dad-timeout dhcp-vendor-class-identifier link-local dhcp-reject-servers auto-route-ext-gw replace-local-rule
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv4 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie -- -- 0 (default) tak -- -- 0x0 (none) nie tak -1 (default) -1 (default) -- 0 (default) -- -1 (default) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
-ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (default) -1 (unknown) default 0 (default) automatyczne -- -- 0 (default) tak -- 0x0 (none) -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 required-timeout ip6-privacy addr-gen-mode ra-timeout mtu dhcp-duid dhcp-iaid dhcp-timeout dhcp-send-hostname dhcp-hostname dhcp-hostname-flags auto-route-ext-gw token replace-local-rule
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+ipv6 auto -- -- -- 0 -- -- -- -1 0 (unspec) -- nie nie nie tak -1 (default) -1 (unknown) default 0 (default) automatyczne -- -- 0 (default) tak -- 0x0 (none) -1 (default) -- -1 (default)
name service-type user-name data secrets persistent timeout
-------------------------------------------------------------------------------------------------------------------------------
@@ -29874,94 +29958,94 @@ interface-name
<<<
-size: 836
+size: 842
location: src/tests/client/test-client.py:test_004()/525
cmd: $NMCLI --mode tabular --terse con s con-vpn-1
lang: C
returncode: 0
-stdout: 679 bytes
+stdout: 685 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:0x0:-1:-1
-ipv4:auto::::0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1:-1::0::-1
-ipv6:auto::::0::::-1:0::no:no:no:yes:-1:-1:default:0:auto:::0:yes::0x0:-1:
+ipv4:auto::::0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1:-1::0::-1:-1
+ipv6:auto::::0::::-1:0::no:no:no:yes:-1:-1:default:0:auto:::0:yes::0x0:-1::-1
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: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: 846
+size: 852
location: src/tests/client/test-client.py:test_004()/526
cmd: $NMCLI --mode tabular --terse con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 679 bytes
+stdout: 685 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:0x0:-1:-1
-ipv4:auto::::0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1:-1::0::-1
-ipv6:auto::::0::::-1:0::no:no:no:yes:-1:-1:default:0:auto:::0:yes::0x0:-1:
+ipv4:auto::::0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1:-1::0::-1:-1
+ipv6:auto::::0::::-1:0::no:no:no:yes:-1:-1:default:0:auto:::0:yes::0x0:-1::-1
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: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: 836
+size: 842
location: src/tests/client/test-client.py:test_004()/527
cmd: $NMCLI --mode tabular --terse con s con-vpn-1
lang: C
returncode: 0
-stdout: 679 bytes
+stdout: 685 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:0x0:-1:-1
-ipv4:auto::::0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1:-1::0::-1
-ipv6:auto::::0::::-1:0::no:no:no:yes:-1:-1:default:0:auto:::0:yes::0x0:-1:
+ipv4:auto::::0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1:-1::0::-1:-1
+ipv6:auto::::0::::-1:0::no:no:no:yes:-1:-1:default:0:auto:::0:yes::0x0:-1::-1
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: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: 846
+size: 852
location: src/tests/client/test-client.py:test_004()/528
cmd: $NMCLI --mode tabular --terse con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 679 bytes
+stdout: 685 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:0x0:-1:-1
-ipv4:auto::::0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1:-1::0::-1
-ipv6:auto::::0::::-1:0::no:no:no:yes:-1:-1:default:0:auto:::0:yes::0x0:-1:
+ipv4:auto::::0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1:-1::0::-1:-1
+ipv6:auto::::0::::-1:0::no:no:no:yes:-1:-1:default:0:auto:::0:yes::0x0:-1::-1
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: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: 543
+size: 549
location: src/tests/client/test-client.py:test_004()/529
cmd: $NMCLI --mode tabular --terse -f ALL con s con-vpn-1
lang: C
returncode: 0
-stdout: 379 bytes
+stdout: 385 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:0x0:-1:-1
-ipv4:auto::::0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1:-1::0::-1
-ipv6:auto::::0::::-1:0::no:no:no:yes:-1:-1:default:0:auto:::0:yes::0x0:-1:
+ipv4:auto::::0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1:-1::0::-1:-1
+ipv6:auto::::0::::-1:0::no:no:no:yes:-1:-1:default:0:auto:::0:yes::0x0:-1::-1
vpn:org.freedesktop.NetworkManager.openvpn::key1 = val1, key2 = val2, key3 = val3:<hidden>:no:0
proxy:none:no::
<<<
-size: 553
+size: 559
location: src/tests/client/test-client.py:test_004()/530
cmd: $NMCLI --mode tabular --terse -f ALL con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 379 bytes
+stdout: 385 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:0x0:-1:-1
-ipv4:auto::::0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1:-1::0::-1
-ipv6:auto::::0::::-1:0::no:no:no:yes:-1:-1:default:0:auto:::0:yes::0x0:-1:
+ipv4:auto::::0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1:-1::0::-1:-1
+ipv6:auto::::0::::-1:0::no:no:no:yes:-1:-1:default:0:auto:::0:yes::0x0:-1::-1
vpn:org.freedesktop.NetworkManager.openvpn::key1 = val1, key2 = val2, key3 = val3:<hidden>:no:0
proxy:none:no::
@@ -30812,94 +30896,94 @@ UUID-con-xx1-REPLACED-REPLACED-REPLA
<<<
-size: 848
+size: 854
location: src/tests/client/test-client.py:test_004()/575
cmd: $NMCLI --mode tabular --terse --color yes con s con-vpn-1
lang: C
returncode: 0
-stdout: 679 bytes
+stdout: 685 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:0x0:-1:-1
-ipv4:auto::::0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1:-1::0::-1
-ipv6:auto::::0::::-1:0::no:no:no:yes:-1:-1:default:0:auto:::0:yes::0x0:-1:
+ipv4:auto::::0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1:-1::0::-1:-1
+ipv6:auto::::0::::-1:0::no:no:no:yes:-1:-1:default:0:auto:::0:yes::0x0:-1::-1
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: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: 858
+size: 864
location: src/tests/client/test-client.py:test_004()/576
cmd: $NMCLI --mode tabular --terse --color yes con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 679 bytes
+stdout: 685 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:0x0:-1:-1
-ipv4:auto::::0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1:-1::0::-1
-ipv6:auto::::0::::-1:0::no:no:no:yes:-1:-1:default:0:auto:::0:yes::0x0:-1:
+ipv4:auto::::0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1:-1::0::-1:-1
+ipv6:auto::::0::::-1:0::no:no:no:yes:-1:-1:default:0:auto:::0:yes::0x0:-1::-1
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: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: 848
+size: 854
location: src/tests/client/test-client.py:test_004()/577
cmd: $NMCLI --mode tabular --terse --color yes con s con-vpn-1
lang: C
returncode: 0
-stdout: 679 bytes
+stdout: 685 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:0x0:-1:-1
-ipv4:auto::::0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1:-1::0::-1
-ipv6:auto::::0::::-1:0::no:no:no:yes:-1:-1:default:0:auto:::0:yes::0x0:-1:
+ipv4:auto::::0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1:-1::0::-1:-1
+ipv6:auto::::0::::-1:0::no:no:no:yes:-1:-1:default:0:auto:::0:yes::0x0:-1::-1
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: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: 858
+size: 864
location: src/tests/client/test-client.py:test_004()/578
cmd: $NMCLI --mode tabular --terse --color yes con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 679 bytes
+stdout: 685 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:0x0:-1:-1
-ipv4:auto::::0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1:-1::0::-1
-ipv6:auto::::0::::-1:0::no:no:no:yes:-1:-1:default:0:auto:::0:yes::0x0:-1:
+ipv4:auto::::0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1:-1::0::-1:-1
+ipv6:auto::::0::::-1:0::no:no:no:yes:-1:-1:default:0:auto:::0:yes::0x0:-1::-1
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: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: 555
+size: 561
location: src/tests/client/test-client.py:test_004()/579
cmd: $NMCLI --mode tabular --terse --color yes -f ALL con s con-vpn-1
lang: C
returncode: 0
-stdout: 379 bytes
+stdout: 385 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:0x0:-1:-1
-ipv4:auto::::0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1:-1::0::-1
-ipv6:auto::::0::::-1:0::no:no:no:yes:-1:-1:default:0:auto:::0:yes::0x0:-1:
+ipv4:auto::::0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1:-1::0::-1:-1
+ipv6:auto::::0::::-1:0::no:no:no:yes:-1:-1:default:0:auto:::0:yes::0x0:-1::-1
vpn:org.freedesktop.NetworkManager.openvpn::key1 = val1, key2 = val2, key3 = val3:<hidden>:no:0
proxy:none:no::
<<<
-size: 565
+size: 571
location: src/tests/client/test-client.py:test_004()/580
cmd: $NMCLI --mode tabular --terse --color yes -f ALL con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 379 bytes
+stdout: 385 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:0x0:-1:-1
-ipv4:auto::::0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1:-1::0::-1
-ipv6:auto::::0::::-1:0::no:no:no:yes:-1:-1:default:0:auto:::0:yes::0x0:-1:
+ipv4:auto::::0::::-1:0::no:no:::0:yes:::0x0:no:yes:-1:-1::0::-1:-1
+ipv6:auto::::0::::-1:0::no:no:no:yes:-1:-1:default:0:auto:::0:yes::0x0:-1::-1
vpn:org.freedesktop.NetworkManager.openvpn::key1 = val1, key2 = val2, key3 = val3:<hidden>:no:0
proxy:none:no::
@@ -31750,12 +31834,12 @@ UUID-con-xx1-REPLACED-REPLACED-REPLA
<<<
-size: 5624
+size: 5730
location: src/tests/client/test-client.py:test_004()/625
cmd: $NMCLI --mode multiline con s con-vpn-1
lang: C
returncode: 0
-stdout: 5472 bytes
+stdout: 5578 bytes
>>>
connection.id: con-vpn-1
connection.uuid: UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -31812,6 +31896,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
@@ -31840,6 +31925,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
vpn.data: key1 = val1, key2 = val2, key3 = val3
@@ -31873,12 +31959,12 @@ VPN.CFG[2]: key2 = val2
VPN.CFG[3]: key3 = val3
<<<
-size: 5662
+size: 5768
location: src/tests/client/test-client.py:test_004()/626
cmd: $NMCLI --mode multiline con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 5500 bytes
+stdout: 5606 bytes
>>>
connection.id: con-vpn-1
connection.uuid: UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -31935,6 +32021,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
@@ -31963,6 +32050,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
vpn.data: key1 = val1, key2 = val2, key3 = val3
@@ -31996,12 +32084,12 @@ VPN.CFG[2]: key2 = val2
VPN.CFG[3]: key3 = val3
<<<
-size: 5624
+size: 5730
location: src/tests/client/test-client.py:test_004()/627
cmd: $NMCLI --mode multiline con s con-vpn-1
lang: C
returncode: 0
-stdout: 5472 bytes
+stdout: 5578 bytes
>>>
connection.id: con-vpn-1
connection.uuid: UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -32058,6 +32146,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
@@ -32086,6 +32175,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
vpn.data: key1 = val1, key2 = val2, key3 = val3
@@ -32119,12 +32209,12 @@ VPN.CFG[2]: key2 = val2
VPN.CFG[3]: key3 = val3
<<<
-size: 5662
+size: 5768
location: src/tests/client/test-client.py:test_004()/628
cmd: $NMCLI --mode multiline con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 5500 bytes
+stdout: 5606 bytes
>>>
connection.id: con-vpn-1
connection.uuid: UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -32181,6 +32271,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
@@ -32209,6 +32300,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
vpn.data: key1 = val1, key2 = val2, key3 = val3
@@ -32242,12 +32334,12 @@ VPN.CFG[2]: key2 = val2
VPN.CFG[3]: key3 = val3
<<<
-size: 4497
+size: 4603
location: src/tests/client/test-client.py:test_004()/629
cmd: $NMCLI --mode multiline -f ALL con s con-vpn-1
lang: C
returncode: 0
-stdout: 4338 bytes
+stdout: 4444 bytes
>>>
connection.id: con-vpn-1
connection.uuid: UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -32304,6 +32396,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
@@ -32332,6 +32425,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
vpn.data: key1 = val1, key2 = val2, key3 = val3
@@ -32344,12 +32438,12 @@ proxy.pac-url: --
proxy.pac-script: --
<<<
-size: 4525
+size: 4631
location: src/tests/client/test-client.py:test_004()/630
cmd: $NMCLI --mode multiline -f ALL con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 4356 bytes
+stdout: 4462 bytes
>>>
connection.id: con-vpn-1
connection.uuid: UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -32406,6 +32500,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
@@ -32434,6 +32529,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
vpn.data: key1 = val1, key2 = val2, key3 = val3
@@ -35540,12 +35636,12 @@ connection.type: 802-11-wireless
connection.interface-name: --
<<<
-size: 5636
+size: 5742
location: src/tests/client/test-client.py:test_004()/675
cmd: $NMCLI --mode multiline --color yes con s con-vpn-1
lang: C
returncode: 0
-stdout: 5472 bytes
+stdout: 5578 bytes
>>>
connection.id: con-vpn-1
connection.uuid: UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -35602,6 +35698,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
@@ -35630,6 +35727,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
vpn.data: key1 = val1, key2 = val2, key3 = val3
@@ -35663,12 +35761,12 @@ VPN.CFG[2]: key2 = val2
VPN.CFG[3]: key3 = val3
<<<
-size: 5674
+size: 5780
location: src/tests/client/test-client.py:test_004()/676
cmd: $NMCLI --mode multiline --color yes con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 5500 bytes
+stdout: 5606 bytes
>>>
connection.id: con-vpn-1
connection.uuid: UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -35725,6 +35823,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
@@ -35753,6 +35852,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
vpn.data: key1 = val1, key2 = val2, key3 = val3
@@ -35786,12 +35886,12 @@ VPN.CFG[2]: key2 = val2
VPN.CFG[3]: key3 = val3
<<<
-size: 5636
+size: 5742
location: src/tests/client/test-client.py:test_004()/677
cmd: $NMCLI --mode multiline --color yes con s con-vpn-1
lang: C
returncode: 0
-stdout: 5472 bytes
+stdout: 5578 bytes
>>>
connection.id: con-vpn-1
connection.uuid: UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -35848,6 +35948,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
@@ -35876,6 +35977,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
vpn.data: key1 = val1, key2 = val2, key3 = val3
@@ -35909,12 +36011,12 @@ VPN.CFG[2]: key2 = val2
VPN.CFG[3]: key3 = val3
<<<
-size: 5674
+size: 5780
location: src/tests/client/test-client.py:test_004()/678
cmd: $NMCLI --mode multiline --color yes con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 5500 bytes
+stdout: 5606 bytes
>>>
connection.id: con-vpn-1
connection.uuid: UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -35971,6 +36073,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
@@ -35999,6 +36102,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
vpn.data: key1 = val1, key2 = val2, key3 = val3
@@ -36032,12 +36136,12 @@ VPN.CFG[2]: key2 = val2
VPN.CFG[3]: key3 = val3
<<<
-size: 4509
+size: 4615
location: src/tests/client/test-client.py:test_004()/679
cmd: $NMCLI --mode multiline --color yes -f ALL con s con-vpn-1
lang: C
returncode: 0
-stdout: 4338 bytes
+stdout: 4444 bytes
>>>
connection.id: con-vpn-1
connection.uuid: UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -36094,6 +36198,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
@@ -36122,6 +36227,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
vpn.data: key1 = val1, key2 = val2, key3 = val3
@@ -36134,12 +36240,12 @@ proxy.pac-url: --
proxy.pac-script: --
<<<
-size: 4537
+size: 4643
location: src/tests/client/test-client.py:test_004()/680
cmd: $NMCLI --mode multiline --color yes -f ALL con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 4356 bytes
+stdout: 4462 bytes
>>>
connection.id: con-vpn-1
connection.uuid: UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -36196,6 +36302,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
ipv6.method: auto
ipv6.dns: --
ipv6.dns-search: --
@@ -36224,6 +36331,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
vpn.data: key1 = val1, key2 = val2, key3 = val3
@@ -39330,12 +39438,12 @@ connection.type: 802-11-wireless
connection.interface-name: --
<<<
-size: 6644
+size: 6750
location: src/tests/client/test-client.py:test_004()/725
cmd: $NMCLI --mode multiline --pretty con s con-vpn-1
lang: C
returncode: 0
-stdout: 6483 bytes
+stdout: 6589 bytes
>>>
===============================================================================
Connection profile details (con-vpn-1)
@@ -39396,6 +39504,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
ipv6.method: auto
ipv6.dns: --
@@ -39425,6 +39534,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
@@ -39466,12 +39576,12 @@ VPN.CFG[3]: key3 = val3
-------------------------------------------------------------------------------
<<<
-size: 6695
+size: 6801
location: src/tests/client/test-client.py:test_004()/726
cmd: $NMCLI --mode multiline --pretty con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 6524 bytes
+stdout: 6630 bytes
>>>
===============================================================================
Szczegóły profilu połączenia (con-vpn-1)
@@ -39532,6 +39642,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
ipv6.method: auto
ipv6.dns: --
@@ -39561,6 +39672,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
@@ -39602,12 +39714,12 @@ VPN.CFG[3]: key3 = val3
-------------------------------------------------------------------------------
<<<
-size: 6644
+size: 6750
location: src/tests/client/test-client.py:test_004()/727
cmd: $NMCLI --mode multiline --pretty con s con-vpn-1
lang: C
returncode: 0
-stdout: 6483 bytes
+stdout: 6589 bytes
>>>
===============================================================================
Connection profile details (con-vpn-1)
@@ -39668,6 +39780,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
ipv6.method: auto
ipv6.dns: --
@@ -39697,6 +39810,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
@@ -39738,12 +39852,12 @@ VPN.CFG[3]: key3 = val3
-------------------------------------------------------------------------------
<<<
-size: 6695
+size: 6801
location: src/tests/client/test-client.py:test_004()/728
cmd: $NMCLI --mode multiline --pretty con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 6524 bytes
+stdout: 6630 bytes
>>>
===============================================================================
Szczegóły profilu połączenia (con-vpn-1)
@@ -39804,6 +39918,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
ipv6.method: auto
ipv6.dns: --
@@ -39833,6 +39948,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
@@ -39874,12 +39990,12 @@ VPN.CFG[3]: key3 = val3
-------------------------------------------------------------------------------
<<<
-size: 5125
+size: 5231
location: src/tests/client/test-client.py:test_004()/729
cmd: $NMCLI --mode multiline --pretty -f ALL con s con-vpn-1
lang: C
returncode: 0
-stdout: 4957 bytes
+stdout: 5063 bytes
>>>
===============================================================================
Connection profile details (con-vpn-1)
@@ -39940,6 +40056,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
ipv6.method: auto
ipv6.dns: --
@@ -39969,6 +40086,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
@@ -39984,12 +40102,12 @@ proxy.pac-script: --
-------------------------------------------------------------------------------
<<<
-size: 5158
+size: 5264
location: src/tests/client/test-client.py:test_004()/730
cmd: $NMCLI --mode multiline --pretty -f ALL con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 4980 bytes
+stdout: 5086 bytes
>>>
===============================================================================
Szczegóły profilu połączenia (con-vpn-1)
@@ -40050,6 +40168,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
ipv6.method: auto
ipv6.dns: --
@@ -40079,6 +40198,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
@@ -43822,12 +43942,12 @@ connection.interface-name: --
-------------------------------------------------------------------------------
<<<
-size: 6656
+size: 6762
location: src/tests/client/test-client.py:test_004()/775
cmd: $NMCLI --mode multiline --pretty --color yes con s con-vpn-1
lang: C
returncode: 0
-stdout: 6483 bytes
+stdout: 6589 bytes
>>>
===============================================================================
Connection profile details (con-vpn-1)
@@ -43888,6 +44008,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
ipv6.method: auto
ipv6.dns: --
@@ -43917,6 +44038,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
@@ -43958,12 +44080,12 @@ VPN.CFG[3]: key3 = val3
-------------------------------------------------------------------------------
<<<
-size: 6707
+size: 6813
location: src/tests/client/test-client.py:test_004()/776
cmd: $NMCLI --mode multiline --pretty --color yes con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 6524 bytes
+stdout: 6630 bytes
>>>
===============================================================================
Szczegóły profilu połączenia (con-vpn-1)
@@ -44024,6 +44146,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
ipv6.method: auto
ipv6.dns: --
@@ -44053,6 +44176,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
@@ -44094,12 +44218,12 @@ VPN.CFG[3]: key3 = val3
-------------------------------------------------------------------------------
<<<
-size: 6656
+size: 6762
location: src/tests/client/test-client.py:test_004()/777
cmd: $NMCLI --mode multiline --pretty --color yes con s con-vpn-1
lang: C
returncode: 0
-stdout: 6483 bytes
+stdout: 6589 bytes
>>>
===============================================================================
Connection profile details (con-vpn-1)
@@ -44160,6 +44284,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
ipv6.method: auto
ipv6.dns: --
@@ -44189,6 +44314,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
@@ -44230,12 +44356,12 @@ VPN.CFG[3]: key3 = val3
-------------------------------------------------------------------------------
<<<
-size: 6707
+size: 6813
location: src/tests/client/test-client.py:test_004()/778
cmd: $NMCLI --mode multiline --pretty --color yes con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 6524 bytes
+stdout: 6630 bytes
>>>
===============================================================================
Szczegóły profilu połączenia (con-vpn-1)
@@ -44296,6 +44422,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
ipv6.method: auto
ipv6.dns: --
@@ -44325,6 +44452,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
@@ -44366,12 +44494,12 @@ VPN.CFG[3]: key3 = val3
-------------------------------------------------------------------------------
<<<
-size: 5137
+size: 5243
location: src/tests/client/test-client.py:test_004()/779
cmd: $NMCLI --mode multiline --pretty --color yes -f ALL con s con-vpn-1
lang: C
returncode: 0
-stdout: 4957 bytes
+stdout: 5063 bytes
>>>
===============================================================================
Connection profile details (con-vpn-1)
@@ -44432,6 +44560,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
ipv6.method: auto
ipv6.dns: --
@@ -44461,6 +44590,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
@@ -44476,12 +44606,12 @@ proxy.pac-script: --
-------------------------------------------------------------------------------
<<<
-size: 5170
+size: 5276
location: src/tests/client/test-client.py:test_004()/780
cmd: $NMCLI --mode multiline --pretty --color yes -f ALL con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 4980 bytes
+stdout: 5086 bytes
>>>
===============================================================================
Szczegóły profilu połączenia (con-vpn-1)
@@ -44542,6 +44672,7 @@ ipv4.dhcp-vendor-class-identifier: --
ipv4.link-local: 0 (default)
ipv4.dhcp-reject-servers: --
ipv4.auto-route-ext-gw: -1 (default)
+ipv4.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
ipv6.method: auto
ipv6.dns: --
@@ -44571,6 +44702,7 @@ ipv6.dhcp-hostname: --
ipv6.dhcp-hostname-flags: 0x0 (none)
ipv6.auto-route-ext-gw: -1 (default)
ipv6.token: --
+ipv6.replace-local-rule: -1 (default)
-------------------------------------------------------------------------------
vpn.service-type: org.freedesktop.NetworkManager.openvpn
vpn.user-name: --
@@ -48314,12 +48446,12 @@ connection.interface-name: --
-------------------------------------------------------------------------------
<<<
-size: 2839
+size: 2893
location: src/tests/client/test-client.py:test_004()/825
cmd: $NMCLI --mode multiline --terse con s con-vpn-1
lang: C
returncode: 0
-stdout: 2679 bytes
+stdout: 2733 bytes
>>>
connection.id:con-vpn-1
connection.uuid:UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -48376,6 +48508,7 @@ ipv4.dhcp-vendor-class-identifier:
ipv4.link-local:0
ipv4.dhcp-reject-servers:
ipv4.auto-route-ext-gw:-1
+ipv4.replace-local-rule:-1
ipv6.method:auto
ipv6.dns:
ipv6.dns-search:
@@ -48404,6 +48537,7 @@ ipv6.dhcp-hostname:
ipv6.dhcp-hostname-flags:0x0
ipv6.auto-route-ext-gw:-1
ipv6.token:
+ipv6.replace-local-rule:-1
vpn.service-type:org.freedesktop.NetworkManager.openvpn
vpn.user-name:
vpn.data:key1 = val1, key2 = val2, key3 = val3
@@ -48437,12 +48571,12 @@ VPN.CFG[2]:key2 = val2
VPN.CFG[3]:key3 = val3
<<<
-size: 2849
+size: 2903
location: src/tests/client/test-client.py:test_004()/826
cmd: $NMCLI --mode multiline --terse con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 2679 bytes
+stdout: 2733 bytes
>>>
connection.id:con-vpn-1
connection.uuid:UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -48499,6 +48633,7 @@ ipv4.dhcp-vendor-class-identifier:
ipv4.link-local:0
ipv4.dhcp-reject-servers:
ipv4.auto-route-ext-gw:-1
+ipv4.replace-local-rule:-1
ipv6.method:auto
ipv6.dns:
ipv6.dns-search:
@@ -48527,6 +48662,7 @@ ipv6.dhcp-hostname:
ipv6.dhcp-hostname-flags:0x0
ipv6.auto-route-ext-gw:-1
ipv6.token:
+ipv6.replace-local-rule:-1
vpn.service-type:org.freedesktop.NetworkManager.openvpn
vpn.user-name:
vpn.data:key1 = val1, key2 = val2, key3 = val3
@@ -48560,12 +48696,12 @@ VPN.CFG[2]:key2 = val2
VPN.CFG[3]:key3 = val3
<<<
-size: 2839
+size: 2893
location: src/tests/client/test-client.py:test_004()/827
cmd: $NMCLI --mode multiline --terse con s con-vpn-1
lang: C
returncode: 0
-stdout: 2679 bytes
+stdout: 2733 bytes
>>>
connection.id:con-vpn-1
connection.uuid:UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -48622,6 +48758,7 @@ ipv4.dhcp-vendor-class-identifier:
ipv4.link-local:0
ipv4.dhcp-reject-servers:
ipv4.auto-route-ext-gw:-1
+ipv4.replace-local-rule:-1
ipv6.method:auto
ipv6.dns:
ipv6.dns-search:
@@ -48650,6 +48787,7 @@ ipv6.dhcp-hostname:
ipv6.dhcp-hostname-flags:0x0
ipv6.auto-route-ext-gw:-1
ipv6.token:
+ipv6.replace-local-rule:-1
vpn.service-type:org.freedesktop.NetworkManager.openvpn
vpn.user-name:
vpn.data:key1 = val1, key2 = val2, key3 = val3
@@ -48683,12 +48821,12 @@ VPN.CFG[2]:key2 = val2
VPN.CFG[3]:key3 = val3
<<<
-size: 2849
+size: 2903
location: src/tests/client/test-client.py:test_004()/828
cmd: $NMCLI --mode multiline --terse con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 2679 bytes
+stdout: 2733 bytes
>>>
connection.id:con-vpn-1
connection.uuid:UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -48745,6 +48883,7 @@ ipv4.dhcp-vendor-class-identifier:
ipv4.link-local:0
ipv4.dhcp-reject-servers:
ipv4.auto-route-ext-gw:-1
+ipv4.replace-local-rule:-1
ipv6.method:auto
ipv6.dns:
ipv6.dns-search:
@@ -48773,6 +48912,7 @@ ipv6.dhcp-hostname:
ipv6.dhcp-hostname-flags:0x0
ipv6.auto-route-ext-gw:-1
ipv6.token:
+ipv6.replace-local-rule:-1
vpn.service-type:org.freedesktop.NetworkManager.openvpn
vpn.user-name:
vpn.data:key1 = val1, key2 = val2, key3 = val3
@@ -48806,12 +48946,12 @@ VPN.CFG[2]:key2 = val2
VPN.CFG[3]:key3 = val3
<<<
-size: 2264
+size: 2318
location: src/tests/client/test-client.py:test_004()/829
cmd: $NMCLI --mode multiline --terse -f ALL con s con-vpn-1
lang: C
returncode: 0
-stdout: 2097 bytes
+stdout: 2151 bytes
>>>
connection.id:con-vpn-1
connection.uuid:UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -48868,6 +49008,7 @@ ipv4.dhcp-vendor-class-identifier:
ipv4.link-local:0
ipv4.dhcp-reject-servers:
ipv4.auto-route-ext-gw:-1
+ipv4.replace-local-rule:-1
ipv6.method:auto
ipv6.dns:
ipv6.dns-search:
@@ -48896,6 +49037,7 @@ ipv6.dhcp-hostname:
ipv6.dhcp-hostname-flags:0x0
ipv6.auto-route-ext-gw:-1
ipv6.token:
+ipv6.replace-local-rule:-1
vpn.service-type:org.freedesktop.NetworkManager.openvpn
vpn.user-name:
vpn.data:key1 = val1, key2 = val2, key3 = val3
@@ -48908,12 +49050,12 @@ proxy.pac-url:
proxy.pac-script:
<<<
-size: 2274
+size: 2328
location: src/tests/client/test-client.py:test_004()/830
cmd: $NMCLI --mode multiline --terse -f ALL con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 2097 bytes
+stdout: 2151 bytes
>>>
connection.id:con-vpn-1
connection.uuid:UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -48970,6 +49112,7 @@ ipv4.dhcp-vendor-class-identifier:
ipv4.link-local:0
ipv4.dhcp-reject-servers:
ipv4.auto-route-ext-gw:-1
+ipv4.replace-local-rule:-1
ipv6.method:auto
ipv6.dns:
ipv6.dns-search:
@@ -48998,6 +49141,7 @@ ipv6.dhcp-hostname:
ipv6.dhcp-hostname-flags:0x0
ipv6.auto-route-ext-gw:-1
ipv6.token:
+ipv6.replace-local-rule:-1
vpn.service-type:org.freedesktop.NetworkManager.openvpn
vpn.user-name:
vpn.data:key1 = val1, key2 = val2, key3 = val3
@@ -52104,12 +52248,12 @@ connection.type:802-11-wireless
connection.interface-name:
<<<
-size: 2851
+size: 2905
location: src/tests/client/test-client.py:test_004()/875
cmd: $NMCLI --mode multiline --terse --color yes con s con-vpn-1
lang: C
returncode: 0
-stdout: 2679 bytes
+stdout: 2733 bytes
>>>
connection.id:con-vpn-1
connection.uuid:UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -52166,6 +52310,7 @@ ipv4.dhcp-vendor-class-identifier:
ipv4.link-local:0
ipv4.dhcp-reject-servers:
ipv4.auto-route-ext-gw:-1
+ipv4.replace-local-rule:-1
ipv6.method:auto
ipv6.dns:
ipv6.dns-search:
@@ -52194,6 +52339,7 @@ ipv6.dhcp-hostname:
ipv6.dhcp-hostname-flags:0x0
ipv6.auto-route-ext-gw:-1
ipv6.token:
+ipv6.replace-local-rule:-1
vpn.service-type:org.freedesktop.NetworkManager.openvpn
vpn.user-name:
vpn.data:key1 = val1, key2 = val2, key3 = val3
@@ -52227,12 +52373,12 @@ VPN.CFG[2]:key2 = val2
VPN.CFG[3]:key3 = val3
<<<
-size: 2861
+size: 2915
location: src/tests/client/test-client.py:test_004()/876
cmd: $NMCLI --mode multiline --terse --color yes con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 2679 bytes
+stdout: 2733 bytes
>>>
connection.id:con-vpn-1
connection.uuid:UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -52289,6 +52435,7 @@ ipv4.dhcp-vendor-class-identifier:
ipv4.link-local:0
ipv4.dhcp-reject-servers:
ipv4.auto-route-ext-gw:-1
+ipv4.replace-local-rule:-1
ipv6.method:auto
ipv6.dns:
ipv6.dns-search:
@@ -52317,6 +52464,7 @@ ipv6.dhcp-hostname:
ipv6.dhcp-hostname-flags:0x0
ipv6.auto-route-ext-gw:-1
ipv6.token:
+ipv6.replace-local-rule:-1
vpn.service-type:org.freedesktop.NetworkManager.openvpn
vpn.user-name:
vpn.data:key1 = val1, key2 = val2, key3 = val3
@@ -52350,12 +52498,12 @@ VPN.CFG[2]:key2 = val2
VPN.CFG[3]:key3 = val3
<<<
-size: 2851
+size: 2905
location: src/tests/client/test-client.py:test_004()/877
cmd: $NMCLI --mode multiline --terse --color yes con s con-vpn-1
lang: C
returncode: 0
-stdout: 2679 bytes
+stdout: 2733 bytes
>>>
connection.id:con-vpn-1
connection.uuid:UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -52412,6 +52560,7 @@ ipv4.dhcp-vendor-class-identifier:
ipv4.link-local:0
ipv4.dhcp-reject-servers:
ipv4.auto-route-ext-gw:-1
+ipv4.replace-local-rule:-1
ipv6.method:auto
ipv6.dns:
ipv6.dns-search:
@@ -52440,6 +52589,7 @@ ipv6.dhcp-hostname:
ipv6.dhcp-hostname-flags:0x0
ipv6.auto-route-ext-gw:-1
ipv6.token:
+ipv6.replace-local-rule:-1
vpn.service-type:org.freedesktop.NetworkManager.openvpn
vpn.user-name:
vpn.data:key1 = val1, key2 = val2, key3 = val3
@@ -52473,12 +52623,12 @@ VPN.CFG[2]:key2 = val2
VPN.CFG[3]:key3 = val3
<<<
-size: 2861
+size: 2915
location: src/tests/client/test-client.py:test_004()/878
cmd: $NMCLI --mode multiline --terse --color yes con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 2679 bytes
+stdout: 2733 bytes
>>>
connection.id:con-vpn-1
connection.uuid:UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -52535,6 +52685,7 @@ ipv4.dhcp-vendor-class-identifier:
ipv4.link-local:0
ipv4.dhcp-reject-servers:
ipv4.auto-route-ext-gw:-1
+ipv4.replace-local-rule:-1
ipv6.method:auto
ipv6.dns:
ipv6.dns-search:
@@ -52563,6 +52714,7 @@ ipv6.dhcp-hostname:
ipv6.dhcp-hostname-flags:0x0
ipv6.auto-route-ext-gw:-1
ipv6.token:
+ipv6.replace-local-rule:-1
vpn.service-type:org.freedesktop.NetworkManager.openvpn
vpn.user-name:
vpn.data:key1 = val1, key2 = val2, key3 = val3
@@ -52596,12 +52748,12 @@ VPN.CFG[2]:key2 = val2
VPN.CFG[3]:key3 = val3
<<<
-size: 2276
+size: 2330
location: src/tests/client/test-client.py:test_004()/879
cmd: $NMCLI --mode multiline --terse --color yes -f ALL con s con-vpn-1
lang: C
returncode: 0
-stdout: 2097 bytes
+stdout: 2151 bytes
>>>
connection.id:con-vpn-1
connection.uuid:UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -52658,6 +52810,7 @@ ipv4.dhcp-vendor-class-identifier:
ipv4.link-local:0
ipv4.dhcp-reject-servers:
ipv4.auto-route-ext-gw:-1
+ipv4.replace-local-rule:-1
ipv6.method:auto
ipv6.dns:
ipv6.dns-search:
@@ -52686,6 +52839,7 @@ ipv6.dhcp-hostname:
ipv6.dhcp-hostname-flags:0x0
ipv6.auto-route-ext-gw:-1
ipv6.token:
+ipv6.replace-local-rule:-1
vpn.service-type:org.freedesktop.NetworkManager.openvpn
vpn.user-name:
vpn.data:key1 = val1, key2 = val2, key3 = val3
@@ -52698,12 +52852,12 @@ proxy.pac-url:
proxy.pac-script:
<<<
-size: 2286
+size: 2340
location: src/tests/client/test-client.py:test_004()/880
cmd: $NMCLI --mode multiline --terse --color yes -f ALL con s con-vpn-1
lang: pl_PL.UTF-8
returncode: 0
-stdout: 2097 bytes
+stdout: 2151 bytes
>>>
connection.id:con-vpn-1
connection.uuid:UUID-con-vpn-1-REPLACED-REPLACED-REP
@@ -52760,6 +52914,7 @@ ipv4.dhcp-vendor-class-identifier:
ipv4.link-local:0
ipv4.dhcp-reject-servers:
ipv4.auto-route-ext-gw:-1
+ipv4.replace-local-rule:-1
ipv6.method:auto
ipv6.dns:
ipv6.dns-search:
@@ -52788,6 +52943,7 @@ ipv6.dhcp-hostname:
ipv6.dhcp-hostname-flags:0x0
ipv6.auto-route-ext-gw:-1
ipv6.token:
+ipv6.replace-local-rule:-1
vpn.service-type:org.freedesktop.NetworkManager.openvpn
vpn.user-name:
vpn.data:key1 = val1, key2 = val2, key3 = val3