mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-04-04 22:30:38 +02:00
cli: rework printing of "connections" device details
This commit is contained in:
parent
e771153c0a
commit
2fc475ccdf
158 changed files with 634 additions and 548 deletions
|
|
@ -200,13 +200,133 @@ const NmcMetaGenericInfo *const metagen_device_detail_general[_NMC_GENERIC_INFO_
|
|||
|
||||
/*****************************************************************************/
|
||||
|
||||
const NmcMetaGenericInfo *const nmc_fields_dev_show_connections[] = {
|
||||
NMC_META_GENERIC ("NAME"), /* 0 */
|
||||
NMC_META_GENERIC ("AVAILABLE-CONNECTION-PATHS"), /* 1 */
|
||||
NMC_META_GENERIC ("AVAILABLE-CONNECTIONS"), /* 2 */
|
||||
NULL,
|
||||
static NMRemoteConnection **
|
||||
_device_get_available_connections (NMDevice *d, guint *out_len)
|
||||
{
|
||||
NMRemoteConnection **avail_cons;
|
||||
const GPtrArray *avail_cons_arr;
|
||||
|
||||
avail_cons_arr = nm_device_get_available_connections (d);
|
||||
if (!avail_cons_arr || avail_cons_arr->len == 0) {
|
||||
*out_len = 0;
|
||||
return NULL;
|
||||
}
|
||||
|
||||
avail_cons = (NMRemoteConnection **) nmc_objects_sort_by_path ((const NMObject *const*) avail_cons_arr->pdata,
|
||||
avail_cons_arr->len);
|
||||
nm_assert (avail_cons_arr->len == NM_PTRARRAY_LEN (avail_cons));
|
||||
*out_len = avail_cons_arr->len;
|
||||
return avail_cons;
|
||||
}
|
||||
|
||||
static gconstpointer
|
||||
_metagen_device_detail_connections_get_fcn (NMC_META_GENERIC_INFO_GET_FCN_ARGS)
|
||||
{
|
||||
NMDevice *d = target;
|
||||
gs_free NMRemoteConnection **avail_cons = NULL;
|
||||
guint avail_cons_len;
|
||||
guint i, j;
|
||||
char **arr = NULL;
|
||||
GString *str;
|
||||
gboolean had_prefix, has_prefix;
|
||||
|
||||
NMC_HANDLE_COLOR (NM_META_COLOR_NONE);
|
||||
|
||||
switch (info->info_type) {
|
||||
case NMC_GENERIC_INFO_TYPE_DEVICE_DETAIL_CONNECTIONS_AVAILABLE_CONNECTIONS:
|
||||
if (!NM_FLAGS_HAS (get_flags, NM_META_ACCESSOR_GET_FLAGS_ACCEPT_STRV))
|
||||
return NULL;
|
||||
|
||||
avail_cons = _device_get_available_connections (d, &avail_cons_len);
|
||||
if (avail_cons_len == 0)
|
||||
goto arr_out;
|
||||
|
||||
arr = g_new (char *, avail_cons_len + 1);
|
||||
j = 0;
|
||||
for (i = 0; i < avail_cons_len; i++) {
|
||||
NMRemoteConnection *ac = avail_cons[i];
|
||||
const char *ac_id = nm_connection_get_id (NM_CONNECTION (ac));
|
||||
const char *ac_uuid = nm_connection_get_uuid (NM_CONNECTION (ac));
|
||||
|
||||
if (!ac_id || !ac_uuid) {
|
||||
const char *ac_path = nm_connection_get_path (NM_CONNECTION (ac));
|
||||
|
||||
if (get_type == NM_META_ACCESSOR_GET_TYPE_PRETTY) {
|
||||
arr[j++] = ac_path
|
||||
? g_strdup_printf (_("<invisible> | %s"), ac_path)
|
||||
: g_strdup (_("<invisible>"));
|
||||
} else {
|
||||
arr[j++] = ac_path
|
||||
? g_strdup_printf ("<invisible> | %s", ac_path)
|
||||
: g_strdup ("<invisible>");
|
||||
}
|
||||
} else
|
||||
arr[j++] = g_strdup_printf ("%s | %s", ac_uuid, ac_id);
|
||||
}
|
||||
arr[j] = NULL;
|
||||
goto arr_out;
|
||||
|
||||
case NMC_GENERIC_INFO_TYPE_DEVICE_DETAIL_CONNECTIONS_AVAILABLE_CONNECTION_PATHS:
|
||||
|
||||
avail_cons = _device_get_available_connections (d, &avail_cons_len);
|
||||
if (avail_cons_len == 0)
|
||||
return NULL;
|
||||
|
||||
str = g_string_new (NULL);
|
||||
|
||||
had_prefix = FALSE;
|
||||
for (i = 0; i < avail_cons_len; i++) {
|
||||
NMRemoteConnection *ac = avail_cons[i];
|
||||
const char *p = nm_connection_get_path (NM_CONNECTION (ac));
|
||||
|
||||
if (!p)
|
||||
continue;
|
||||
|
||||
has_prefix = g_str_has_prefix (p, NM_DBUS_PATH_SETTINGS_CONNECTION"/")
|
||||
&& p[NM_STRLEN (NM_DBUS_PATH_SETTINGS_CONNECTION"/")];
|
||||
|
||||
if (str->len > 0) {
|
||||
if ( had_prefix
|
||||
&& !has_prefix)
|
||||
g_string_append_c (str, '}');
|
||||
g_string_append_c (str, ',');
|
||||
}
|
||||
|
||||
if (!has_prefix)
|
||||
g_string_append (str, p);
|
||||
else {
|
||||
if (!had_prefix)
|
||||
g_string_printf (str, "%s/{", NM_DBUS_PATH_SETTINGS_CONNECTION);
|
||||
g_string_append (str, &p[NM_STRLEN (NM_DBUS_PATH_SETTINGS_CONNECTION"/")]);
|
||||
}
|
||||
had_prefix = has_prefix;
|
||||
}
|
||||
if (had_prefix)
|
||||
g_string_append_c (str, '}');
|
||||
|
||||
return (*out_to_free = g_string_free (str, FALSE));
|
||||
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
g_return_val_if_reached (NULL);
|
||||
|
||||
arr_out:
|
||||
NM_SET_OUT (out_is_default, !arr || !arr[0]);
|
||||
*out_flags |= NM_META_ACCESSOR_GET_OUT_FLAGS_STRV;
|
||||
*out_to_free = arr;
|
||||
return arr;
|
||||
}
|
||||
|
||||
const NmcMetaGenericInfo *const metagen_device_detail_connections[_NMC_GENERIC_INFO_TYPE_DEVICE_DETAIL_CONNECTIONS_NUM + 1] = {
|
||||
#define _METAGEN_DEVICE_DETAIL_CONNECTIONS(type, name) \
|
||||
[type] = NMC_META_GENERIC(name, .info_type = type, .get_fcn = _metagen_device_detail_connections_get_fcn)
|
||||
_METAGEN_DEVICE_DETAIL_CONNECTIONS (NMC_GENERIC_INFO_TYPE_DEVICE_DETAIL_CONNECTIONS_AVAILABLE_CONNECTION_PATHS, "AVAILABLE-CONNECTION-PATHS"),
|
||||
_METAGEN_DEVICE_DETAIL_CONNECTIONS (NMC_GENERIC_INFO_TYPE_DEVICE_DETAIL_CONNECTIONS_AVAILABLE_CONNECTIONS, "AVAILABLE-CONNECTIONS"),
|
||||
};
|
||||
#define NMC_FIELDS_DEV_SHOW_CONNECTIONS_COMMON "NAME,AVAILABLE-CONNECTION-PATHS,AVAILABLE-CONNECTIONS"
|
||||
|
||||
/*****************************************************************************/
|
||||
|
||||
const NmcMetaGenericInfo *const nmc_fields_dev_show_cap[] = {
|
||||
NMC_META_GENERIC ("NAME"), /* 0 */
|
||||
|
|
@ -336,7 +456,7 @@ const NmcMetaGenericInfo *const nmc_fields_dev_show_sections[] = {
|
|||
NMC_META_GENERIC_WITH_NESTED ("BRIDGE", nmc_fields_dev_show_master_prop + 1), /* 13 */
|
||||
NMC_META_GENERIC_WITH_NESTED ("VLAN", nmc_fields_dev_show_vlan_prop + 1), /* 14 */
|
||||
NMC_META_GENERIC_WITH_NESTED ("BLUETOOTH", nmc_fields_dev_show_bluetooth + 1), /* 15 */
|
||||
NMC_META_GENERIC_WITH_NESTED ("CONNECTIONS", nmc_fields_dev_show_connections + 1), /* 16 */
|
||||
NMC_META_GENERIC_WITH_NESTED ("CONNECTIONS", metagen_device_detail_connections), /* 16 */
|
||||
NULL,
|
||||
};
|
||||
#define NMC_FIELDS_DEV_SHOW_SECTIONS_COMMON "GENERAL.DEVICE,GENERAL.TYPE,GENERAL.HWADDR,GENERAL.MTU,GENERAL.STATE,"\
|
||||
|
|
@ -1466,55 +1586,17 @@ show_device_info (NMDevice *device, NmCli *nmc)
|
|||
}
|
||||
}
|
||||
|
||||
/* section CONNECTIONS */
|
||||
if (!strcasecmp (nmc_fields_dev_show_sections[section_idx]->name, nmc_fields_dev_show_sections[16]->name)) {
|
||||
const GPtrArray *avail_cons;
|
||||
GString *ac_paths_str;
|
||||
char **ac_arr = NULL;
|
||||
int i;
|
||||
NMC_OUTPUT_DATA_DEFINE_SCOPED (out);
|
||||
if (nmc_fields_dev_show_sections[section_idx]->nested == metagen_device_detail_connections) {
|
||||
gs_free char *f = section_fld ? g_strdup_printf ("CONNECTIONS.%s", section_fld) : NULL;
|
||||
|
||||
tmpl = (const NMMetaAbstractInfo *const*) nmc_fields_dev_show_connections;
|
||||
out_indices = parse_output_fields (section_fld,
|
||||
tmpl, FALSE, NULL, NULL);
|
||||
arr = nmc_dup_fields_array (tmpl, NMC_OF_FLAG_FIELD_NAMES);
|
||||
g_ptr_array_add (out.output_data, arr);
|
||||
|
||||
/* available-connections */
|
||||
avail_cons = nm_device_get_available_connections (device);
|
||||
ac_paths_str = g_string_new (NULL);
|
||||
if (avail_cons->len) {
|
||||
ac_arr = g_new (char *, avail_cons->len + 1);
|
||||
ac_arr[avail_cons->len] = NULL;
|
||||
}
|
||||
for (i = 0; i < avail_cons->len; i++) {
|
||||
NMRemoteConnection *avail_con = g_ptr_array_index (avail_cons, i);
|
||||
const char *ac_path = nm_connection_get_path (NM_CONNECTION (avail_con));
|
||||
const char *ac_id = nm_connection_get_id (NM_CONNECTION (avail_con));
|
||||
const char *ac_uuid = nm_connection_get_uuid (NM_CONNECTION (avail_con));
|
||||
|
||||
ac_arr[i] = g_strdup_printf ("%s | %s", ac_uuid, ac_id);
|
||||
|
||||
if (i == 0)
|
||||
g_string_printf (ac_paths_str, "%s/{", NM_DBUS_PATH_SETTINGS);
|
||||
else
|
||||
g_string_append_c (ac_paths_str, ',');
|
||||
g_string_append (ac_paths_str, strrchr (ac_path, '/') + 1);
|
||||
}
|
||||
if (ac_paths_str->len > 0)
|
||||
g_string_append_c (ac_paths_str, '}');
|
||||
|
||||
arr = nmc_dup_fields_array (tmpl, NMC_OF_FLAG_SECTION_PREFIX);
|
||||
set_val_strc (arr, 0, nmc_fields_dev_show_sections[16]->name); /* "CONNECTIONS" */
|
||||
set_val_str (arr, 1, ac_paths_str->str);
|
||||
set_val_arr (arr, 2, (ac_arr));
|
||||
g_ptr_array_add (out.output_data, arr);
|
||||
|
||||
print_data_prepare_width (out.output_data);
|
||||
print_data (&nmc->nmc_config, out_indices, NULL, 0, &out);
|
||||
|
||||
g_string_free (ac_paths_str, FALSE);
|
||||
nmc_print (&nmc->nmc_config,
|
||||
(gpointer[]) { device, NULL },
|
||||
NULL,
|
||||
NMC_META_GENERIC_GROUP ("CONNECTIONS", metagen_device_detail_connections, N_("NAME")),
|
||||
f,
|
||||
NULL);
|
||||
was_output = TRUE;
|
||||
continue;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -36,7 +36,7 @@ NMMetaColor nmc_device_state_to_color (NMDeviceState state);
|
|||
|
||||
extern const NmcMetaGenericInfo *const metagen_device_status[];
|
||||
extern const NmcMetaGenericInfo *const metagen_device_detail_general[];
|
||||
extern const NmcMetaGenericInfo *const nmc_fields_dev_show_connections[];
|
||||
extern const NmcMetaGenericInfo *const metagen_device_detail_connections[];
|
||||
extern const NmcMetaGenericInfo *const nmc_fields_dev_show_cap[];
|
||||
extern const NmcMetaGenericInfo *const nmc_fields_dev_show_wired_prop[];
|
||||
extern const NmcMetaGenericInfo *const nmc_fields_dev_show_wifi_prop[];
|
||||
|
|
|
|||
|
|
@ -197,7 +197,7 @@ complete_fields (const char *option, const char *prefix)
|
|||
complete_field (h, nmc_fields_con_active_details_groups);
|
||||
complete_field (h, metagen_device_status);
|
||||
complete_field (h, metagen_device_detail_general);
|
||||
complete_field (h, nmc_fields_dev_show_connections);
|
||||
complete_field (h, metagen_device_detail_connections);
|
||||
complete_field (h, nmc_fields_dev_show_cap);
|
||||
complete_field (h, nmc_fields_dev_show_wired_prop);
|
||||
complete_field (h, nmc_fields_dev_show_wifi_prop);
|
||||
|
|
|
|||
|
|
@ -198,6 +198,10 @@ typedef enum {
|
|||
NMC_GENERIC_INFO_TYPE_DEVICE_DETAIL_GENERAL_METERED,
|
||||
_NMC_GENERIC_INFO_TYPE_DEVICE_DETAIL_GENERAL_NUM,
|
||||
|
||||
NMC_GENERIC_INFO_TYPE_DEVICE_DETAIL_CONNECTIONS_AVAILABLE_CONNECTION_PATHS = 0,
|
||||
NMC_GENERIC_INFO_TYPE_DEVICE_DETAIL_CONNECTIONS_AVAILABLE_CONNECTIONS,
|
||||
_NMC_GENERIC_INFO_TYPE_DEVICE_DETAIL_CONNECTIONS_NUM,
|
||||
|
||||
} NmcGenericInfoType;
|
||||
|
||||
#define NMC_HANDLE_COLOR(color) \
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:857:test_003()/30
|
|||
cmd: $NMCLI -f ALL dev show eth0
|
||||
lang: C
|
||||
returncode: 0
|
||||
stdout: 3239 bytes
|
||||
stdout: 3250 bytes
|
||||
>>>
|
||||
GENERAL.DEVICE: eth0
|
||||
GENERAL.TYPE: ethernet
|
||||
|
|
@ -55,9 +55,9 @@ DHCP6.OPTION[1]: dhcp-6-opt-1 = val-1
|
|||
DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5
|
||||
DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6
|
||||
DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/{2,1,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]: UUID-ethernet-REPLACED-REPLACED-REPL | ethernet
|
||||
|
||||
<<<
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:857:test_003()/31
|
|||
cmd: $NMCLI -f ALL dev show eth0
|
||||
lang: pl_PL.UTF-8
|
||||
returncode: 0
|
||||
stdout: 3262 bytes
|
||||
stdout: 3273 bytes
|
||||
>>>
|
||||
GENERAL.DEVICE: eth0
|
||||
GENERAL.TYPE: ethernet
|
||||
|
|
@ -55,9 +55,9 @@ DHCP6.OPTION[1]: dhcp-6-opt-1 = val-1
|
|||
DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5
|
||||
DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6
|
||||
DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/{2,1,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]: UUID-ethernet-REPLACED-REPLACED-REPL | ethernet
|
||||
|
||||
<<<
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:860:test_003()/32
|
|||
cmd: $NMCLI -f ALL -t dev show eth0
|
||||
lang: C
|
||||
returncode: 0
|
||||
stdout: 2011 bytes
|
||||
stdout: 2022 bytes
|
||||
>>>
|
||||
GENERAL.DEVICE:eth0
|
||||
GENERAL.TYPE:ethernet
|
||||
|
|
@ -55,9 +55,9 @@ DHCP6.OPTION[1]:dhcp-6-opt-1 = val-1
|
|||
DHCP6.OPTION[2]:dhcp-6-opt-5 = val-5
|
||||
DHCP6.OPTION[3]:dhcp-6-opt-6 = val-6
|
||||
DHCP6.OPTION[4]:dhcp-6-opt-8 = val-8
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/{2,1,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]:UUID-ethernet-REPLACED-REPLACED-REPL | ethernet
|
||||
|
||||
<<<
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:860:test_003()/33
|
|||
cmd: $NMCLI -f ALL -t dev show eth0
|
||||
lang: pl_PL.UTF-8
|
||||
returncode: 0
|
||||
stdout: 2024 bytes
|
||||
stdout: 2035 bytes
|
||||
>>>
|
||||
GENERAL.DEVICE:eth0
|
||||
GENERAL.TYPE:ethernet
|
||||
|
|
@ -55,9 +55,9 @@ DHCP6.OPTION[1]:dhcp-6-opt-1 = val-1
|
|||
DHCP6.OPTION[2]:dhcp-6-opt-5 = val-5
|
||||
DHCP6.OPTION[3]:dhcp-6-opt-6 = val-6
|
||||
DHCP6.OPTION[4]:dhcp-6-opt-8 = val-8
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/{2,1,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]:UUID-ethernet-REPLACED-REPLACED-REPL | ethernet
|
||||
|
||||
<<<
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:857:test_003()/53
|
|||
cmd: $NMCLI -f ALL dev show eth0
|
||||
lang: C
|
||||
returncode: 0
|
||||
stdout: 3239 bytes
|
||||
stdout: 3250 bytes
|
||||
>>>
|
||||
GENERAL.DEVICE: eth0
|
||||
GENERAL.TYPE: ethernet
|
||||
|
|
@ -55,9 +55,9 @@ DHCP6.OPTION[1]: dhcp-6-opt-1 = val-1
|
|||
DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5
|
||||
DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6
|
||||
DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/{2,1,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]: UUID-ethernet-REPLACED-REPLACED-REPL | ethernet
|
||||
|
||||
<<<
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:857:test_003()/54
|
|||
cmd: $NMCLI -f ALL dev show eth0
|
||||
lang: pl_PL.UTF-8
|
||||
returncode: 0
|
||||
stdout: 3262 bytes
|
||||
stdout: 3273 bytes
|
||||
>>>
|
||||
GENERAL.DEVICE: eth0
|
||||
GENERAL.TYPE: ethernet
|
||||
|
|
@ -55,9 +55,9 @@ DHCP6.OPTION[1]: dhcp-6-opt-1 = val-1
|
|||
DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5
|
||||
DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6
|
||||
DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/{2,1,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]: UUID-ethernet-REPLACED-REPLACED-REPL | ethernet
|
||||
|
||||
<<<
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:860:test_003()/55
|
|||
cmd: $NMCLI -f ALL -t dev show eth0
|
||||
lang: C
|
||||
returncode: 0
|
||||
stdout: 2011 bytes
|
||||
stdout: 2022 bytes
|
||||
>>>
|
||||
GENERAL.DEVICE:eth0
|
||||
GENERAL.TYPE:ethernet
|
||||
|
|
@ -55,9 +55,9 @@ DHCP6.OPTION[1]:dhcp-6-opt-1 = val-1
|
|||
DHCP6.OPTION[2]:dhcp-6-opt-5 = val-5
|
||||
DHCP6.OPTION[3]:dhcp-6-opt-6 = val-6
|
||||
DHCP6.OPTION[4]:dhcp-6-opt-8 = val-8
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/{2,1,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]:UUID-ethernet-REPLACED-REPLACED-REPL | ethernet
|
||||
|
||||
<<<
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:860:test_003()/56
|
|||
cmd: $NMCLI -f ALL -t dev show eth0
|
||||
lang: pl_PL.UTF-8
|
||||
returncode: 0
|
||||
stdout: 2024 bytes
|
||||
stdout: 2035 bytes
|
||||
>>>
|
||||
GENERAL.DEVICE:eth0
|
||||
GENERAL.TYPE:ethernet
|
||||
|
|
@ -55,9 +55,9 @@ DHCP6.OPTION[1]:dhcp-6-opt-1 = val-1
|
|||
DHCP6.OPTION[2]:dhcp-6-opt-5 = val-5
|
||||
DHCP6.OPTION[3]:dhcp-6-opt-6 = val-6
|
||||
DHCP6.OPTION[4]:dhcp-6-opt-8 = val-8
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/{2,1,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]:UUID-ethernet-REPLACED-REPLACED-REPL | ethernet
|
||||
|
||||
<<<
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/65
|
|||
cmd: $NMCLI -f all dev show eth0
|
||||
lang: C
|
||||
returncode: 0
|
||||
stdout: 3239 bytes
|
||||
stdout: 3250 bytes
|
||||
>>>
|
||||
GENERAL.DEVICE: eth0
|
||||
GENERAL.TYPE: ethernet
|
||||
|
|
@ -55,9 +55,9 @@ DHCP6.OPTION[1]: dhcp-6-opt-1 = val-1
|
|||
DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5
|
||||
DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6
|
||||
DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/{2,1,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]: UUID-ethernet-REPLACED-REPLACED-REPL | ethernet
|
||||
|
||||
<<<
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/66
|
|||
cmd: $NMCLI -f all dev show eth0
|
||||
lang: pl_PL.UTF-8
|
||||
returncode: 0
|
||||
stdout: 3262 bytes
|
||||
stdout: 3273 bytes
|
||||
>>>
|
||||
GENERAL.DEVICE: eth0
|
||||
GENERAL.TYPE: ethernet
|
||||
|
|
@ -55,9 +55,9 @@ DHCP6.OPTION[1]: dhcp-6-opt-1 = val-1
|
|||
DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5
|
||||
DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6
|
||||
DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/{2,1,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]: UUID-ethernet-REPLACED-REPLACED-REPL | ethernet
|
||||
|
||||
<<<
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/75
|
|||
cmd: $NMCLI --color yes -f all dev show eth0
|
||||
lang: C
|
||||
returncode: 0
|
||||
stdout: 3239 bytes
|
||||
stdout: 3250 bytes
|
||||
>>>
|
||||
GENERAL.DEVICE: eth0
|
||||
GENERAL.TYPE: ethernet
|
||||
|
|
@ -55,9 +55,9 @@ DHCP6.OPTION[1]: dhcp-6-opt-1 = val-1
|
|||
DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5
|
||||
DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6
|
||||
DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/{2,1,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]: UUID-ethernet-REPLACED-REPLACED-REPL | ethernet
|
||||
|
||||
<<<
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/76
|
|||
cmd: $NMCLI --color yes -f all dev show eth0
|
||||
lang: pl_PL.UTF-8
|
||||
returncode: 0
|
||||
stdout: 3262 bytes
|
||||
stdout: 3273 bytes
|
||||
>>>
|
||||
GENERAL.DEVICE: eth0
|
||||
GENERAL.TYPE: ethernet
|
||||
|
|
@ -55,9 +55,9 @@ DHCP6.OPTION[1]: dhcp-6-opt-1 = val-1
|
|||
DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5
|
||||
DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6
|
||||
DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/{2,1,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]: UUID-ethernet-REPLACED-REPLACED-REPL | ethernet
|
||||
|
||||
<<<
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/85
|
|||
cmd: $NMCLI --pretty -f all dev show eth0
|
||||
lang: C
|
||||
returncode: 0
|
||||
stdout: 4090 bytes
|
||||
stdout: 4101 bytes
|
||||
>>>
|
||||
===============================================================================
|
||||
Device details (eth0)
|
||||
|
|
@ -65,9 +65,9 @@ DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5
|
|||
DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6
|
||||
DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8
|
||||
-------------------------------------------------------------------------------
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/{2,1,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]: UUID-ethernet-REPLACED-REPLACED-REPL | ethernet
|
||||
-------------------------------------------------------------------------------
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/86
|
|||
cmd: $NMCLI --pretty -f all dev show eth0
|
||||
lang: pl_PL.UTF-8
|
||||
returncode: 0
|
||||
stdout: 4119 bytes
|
||||
stdout: 4130 bytes
|
||||
>>>
|
||||
===============================================================================
|
||||
Informacje o urządzeniu (eth0)
|
||||
|
|
@ -65,9 +65,9 @@ DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5
|
|||
DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6
|
||||
DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8
|
||||
-------------------------------------------------------------------------------
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/{2,1,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]: UUID-ethernet-REPLACED-REPLACED-REPL | ethernet
|
||||
-------------------------------------------------------------------------------
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/95
|
|||
cmd: $NMCLI --pretty --color yes -f all dev show eth0
|
||||
lang: C
|
||||
returncode: 0
|
||||
stdout: 4090 bytes
|
||||
stdout: 4101 bytes
|
||||
>>>
|
||||
===============================================================================
|
||||
Device details (eth0)
|
||||
|
|
@ -65,9 +65,9 @@ DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5
|
|||
DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6
|
||||
DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8
|
||||
-------------------------------------------------------------------------------
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/{2,1,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]: UUID-ethernet-REPLACED-REPLACED-REPL | ethernet
|
||||
-------------------------------------------------------------------------------
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/96
|
|||
cmd: $NMCLI --pretty --color yes -f all dev show eth0
|
||||
lang: pl_PL.UTF-8
|
||||
returncode: 0
|
||||
stdout: 4119 bytes
|
||||
stdout: 4130 bytes
|
||||
>>>
|
||||
===============================================================================
|
||||
Informacje o urządzeniu (eth0)
|
||||
|
|
@ -65,9 +65,9 @@ DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5
|
|||
DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6
|
||||
DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8
|
||||
-------------------------------------------------------------------------------
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/{2,1,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]: UUID-ethernet-REPLACED-REPLACED-REPL | ethernet
|
||||
-------------------------------------------------------------------------------
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/105
|
|||
cmd: $NMCLI --terse -f all dev show eth0
|
||||
lang: C
|
||||
returncode: 0
|
||||
stdout: 2011 bytes
|
||||
stdout: 2022 bytes
|
||||
>>>
|
||||
GENERAL.DEVICE:eth0
|
||||
GENERAL.TYPE:ethernet
|
||||
|
|
@ -55,9 +55,9 @@ DHCP6.OPTION[1]:dhcp-6-opt-1 = val-1
|
|||
DHCP6.OPTION[2]:dhcp-6-opt-5 = val-5
|
||||
DHCP6.OPTION[3]:dhcp-6-opt-6 = val-6
|
||||
DHCP6.OPTION[4]:dhcp-6-opt-8 = val-8
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/{2,1,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]:UUID-ethernet-REPLACED-REPLACED-REPL | ethernet
|
||||
|
||||
<<<
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/106
|
|||
cmd: $NMCLI --terse -f all dev show eth0
|
||||
lang: pl_PL.UTF-8
|
||||
returncode: 0
|
||||
stdout: 2024 bytes
|
||||
stdout: 2035 bytes
|
||||
>>>
|
||||
GENERAL.DEVICE:eth0
|
||||
GENERAL.TYPE:ethernet
|
||||
|
|
@ -55,9 +55,9 @@ DHCP6.OPTION[1]:dhcp-6-opt-1 = val-1
|
|||
DHCP6.OPTION[2]:dhcp-6-opt-5 = val-5
|
||||
DHCP6.OPTION[3]:dhcp-6-opt-6 = val-6
|
||||
DHCP6.OPTION[4]:dhcp-6-opt-8 = val-8
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/{2,1,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]:UUID-ethernet-REPLACED-REPLACED-REPL | ethernet
|
||||
|
||||
<<<
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/115
|
|||
cmd: $NMCLI --terse --color yes -f all dev show eth0
|
||||
lang: C
|
||||
returncode: 0
|
||||
stdout: 2011 bytes
|
||||
stdout: 2022 bytes
|
||||
>>>
|
||||
GENERAL.DEVICE:eth0
|
||||
GENERAL.TYPE:ethernet
|
||||
|
|
@ -55,9 +55,9 @@ DHCP6.OPTION[1]:dhcp-6-opt-1 = val-1
|
|||
DHCP6.OPTION[2]:dhcp-6-opt-5 = val-5
|
||||
DHCP6.OPTION[3]:dhcp-6-opt-6 = val-6
|
||||
DHCP6.OPTION[4]:dhcp-6-opt-8 = val-8
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/{2,1,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]:UUID-ethernet-REPLACED-REPLACED-REPL | ethernet
|
||||
|
||||
<<<
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/116
|
|||
cmd: $NMCLI --terse --color yes -f all dev show eth0
|
||||
lang: pl_PL.UTF-8
|
||||
returncode: 0
|
||||
stdout: 2024 bytes
|
||||
stdout: 2035 bytes
|
||||
>>>
|
||||
GENERAL.DEVICE:eth0
|
||||
GENERAL.TYPE:ethernet
|
||||
|
|
@ -55,9 +55,9 @@ DHCP6.OPTION[1]:dhcp-6-opt-1 = val-1
|
|||
DHCP6.OPTION[2]:dhcp-6-opt-5 = val-5
|
||||
DHCP6.OPTION[3]:dhcp-6-opt-6 = val-6
|
||||
DHCP6.OPTION[4]:dhcp-6-opt-8 = val-8
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/{2,1,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]:UUID-ethernet-REPLACED-REPLACED-REPL | ethernet
|
||||
|
||||
<<<
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/125
|
|||
cmd: $NMCLI --mode tabular -f all dev show eth0
|
||||
lang: C
|
||||
returncode: 0
|
||||
stdout: 2721 bytes
|
||||
stdout: 2743 bytes
|
||||
>>>
|
||||
NAME DEVICE TYPE NM-TYPE VENDOR PRODUCT DRIVER DRIVER-VERSION FIRMWARE-VERSION HWADDR MTU STATE REASON UDI IP-IFACE IS-SOFTWARE NM-MANAGED AUTOCONNECT FIRMWARE-MISSING NM-PLUGIN-MISSING PHYS-PORT-ID CONNECTION CON-UUID CON-PATH METERED
|
||||
GENERAL eth0 ethernet NMDeviceEthernet -- -- virtual -- -- C0:61:AE:26:4D:D7 0 20 (unavailable) 0 (No reason given) /sys/devices/virtual/eth0 -- no yes yes no no -- ethernet UUID-ethernet-REPLACED-REPLACED-REPL /org/freedesktop/NetworkManager/ActiveConnection/1 unknown
|
||||
|
|
@ -25,8 +25,8 @@ IP6 2001:a::29c0:62b9:2e01:30a/69 | 2001:a::6433:6420:34f9:3801/115 | 2001:a:
|
|||
GROUP OPTION
|
||||
DHCP6 dhcp-6-opt-1 = val-1 | dhcp-6-opt-5 = val-5 | dhcp-6-opt-6 = val-6 | dhcp-6-opt-8 = val-8
|
||||
|
||||
NAME AVAILABLE-CONNECTION-PATHS AVAILABLE-CONNECTIONS
|
||||
CONNECTIONS /org/freedesktop/NetworkManager/Settings/{2,1,3} UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-ethernet-REPLACED-REPLACED-REPL | ethernet
|
||||
NAME AVAILABLE-CONNECTION-PATHS AVAILABLE-CONNECTIONS
|
||||
CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | UUID-ethernet-REPLACED-REPLACED-REPL | ethernet
|
||||
|
||||
<<<
|
||||
stderr: 0 bytes
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/126
|
|||
cmd: $NMCLI --mode tabular -f all dev show eth0
|
||||
lang: pl_PL.UTF-8
|
||||
returncode: 0
|
||||
stdout: 2742 bytes
|
||||
stdout: 2764 bytes
|
||||
>>>
|
||||
NAME DEVICE TYPE NM-TYPE VENDOR PRODUCT DRIVER DRIVER-VERSION FIRMWARE-VERSION HWADDR MTU STATE REASON UDI IP-IFACE IS-SOFTWARE NM-MANAGED AUTOCONNECT FIRMWARE-MISSING NM-PLUGIN-MISSING PHYS-PORT-ID CONNECTION CON-UUID CON-PATH METERED
|
||||
GENERAL eth0 ethernet NMDeviceEthernet -- -- virtual -- -- C0:61:AE:26:4D:D7 0 20 (niedostępne) 0 (Nie podano przyczyny) /sys/devices/virtual/eth0 -- nie tak tak nie nie -- ethernet UUID-ethernet-REPLACED-REPLACED-REPL /org/freedesktop/NetworkManager/ActiveConnection/1 nieznane
|
||||
|
|
@ -25,8 +25,8 @@ IP6 2001:a::29c0:62b9:2e01:30a/69 | 2001:a::6433:6420:34f9:3801/115 | 2001:a:
|
|||
GROUP OPTION
|
||||
DHCP6 dhcp-6-opt-1 = val-1 | dhcp-6-opt-5 = val-5 | dhcp-6-opt-6 = val-6 | dhcp-6-opt-8 = val-8
|
||||
|
||||
NAME AVAILABLE-CONNECTION-PATHS AVAILABLE-CONNECTIONS
|
||||
CONNECTIONS /org/freedesktop/NetworkManager/Settings/{2,1,3} UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-ethernet-REPLACED-REPLACED-REPL | ethernet
|
||||
NAME AVAILABLE-CONNECTION-PATHS AVAILABLE-CONNECTIONS
|
||||
CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | UUID-ethernet-REPLACED-REPLACED-REPL | ethernet
|
||||
|
||||
<<<
|
||||
stderr: 0 bytes
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/135
|
|||
cmd: $NMCLI --mode tabular --color yes -f all dev show eth0
|
||||
lang: C
|
||||
returncode: 0
|
||||
stdout: 2721 bytes
|
||||
stdout: 2743 bytes
|
||||
>>>
|
||||
NAME DEVICE TYPE NM-TYPE VENDOR PRODUCT DRIVER DRIVER-VERSION FIRMWARE-VERSION HWADDR MTU STATE REASON UDI IP-IFACE IS-SOFTWARE NM-MANAGED AUTOCONNECT FIRMWARE-MISSING NM-PLUGIN-MISSING PHYS-PORT-ID CONNECTION CON-UUID CON-PATH METERED
|
||||
GENERAL eth0 ethernet NMDeviceEthernet -- -- virtual -- -- C0:61:AE:26:4D:D7 0 20 (unavailable) 0 (No reason given) /sys/devices/virtual/eth0 -- no yes yes no no -- ethernet UUID-ethernet-REPLACED-REPLACED-REPL /org/freedesktop/NetworkManager/ActiveConnection/1 unknown
|
||||
|
|
@ -25,8 +25,8 @@ IP6 2001:a::29c0:62b9:2e01:30a/69 | 2001:a::6433:6420:34f9:3801/115 | 2001:a:
|
|||
GROUP OPTION
|
||||
DHCP6 dhcp-6-opt-1 = val-1 | dhcp-6-opt-5 = val-5 | dhcp-6-opt-6 = val-6 | dhcp-6-opt-8 = val-8
|
||||
|
||||
NAME AVAILABLE-CONNECTION-PATHS AVAILABLE-CONNECTIONS
|
||||
CONNECTIONS /org/freedesktop/NetworkManager/Settings/{2,1,3} UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-ethernet-REPLACED-REPLACED-REPL | ethernet
|
||||
NAME AVAILABLE-CONNECTION-PATHS AVAILABLE-CONNECTIONS
|
||||
CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | UUID-ethernet-REPLACED-REPLACED-REPL | ethernet
|
||||
|
||||
<<<
|
||||
stderr: 0 bytes
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/136
|
|||
cmd: $NMCLI --mode tabular --color yes -f all dev show eth0
|
||||
lang: pl_PL.UTF-8
|
||||
returncode: 0
|
||||
stdout: 2742 bytes
|
||||
stdout: 2764 bytes
|
||||
>>>
|
||||
NAME DEVICE TYPE NM-TYPE VENDOR PRODUCT DRIVER DRIVER-VERSION FIRMWARE-VERSION HWADDR MTU STATE REASON UDI IP-IFACE IS-SOFTWARE NM-MANAGED AUTOCONNECT FIRMWARE-MISSING NM-PLUGIN-MISSING PHYS-PORT-ID CONNECTION CON-UUID CON-PATH METERED
|
||||
GENERAL eth0 ethernet NMDeviceEthernet -- -- virtual -- -- C0:61:AE:26:4D:D7 0 20 (niedostępne) 0 (Nie podano przyczyny) /sys/devices/virtual/eth0 -- nie tak tak nie nie -- ethernet UUID-ethernet-REPLACED-REPLACED-REPL /org/freedesktop/NetworkManager/ActiveConnection/1 nieznane
|
||||
|
|
@ -25,8 +25,8 @@ IP6 2001:a::29c0:62b9:2e01:30a/69 | 2001:a::6433:6420:34f9:3801/115 | 2001:a:
|
|||
GROUP OPTION
|
||||
DHCP6 dhcp-6-opt-1 = val-1 | dhcp-6-opt-5 = val-5 | dhcp-6-opt-6 = val-6 | dhcp-6-opt-8 = val-8
|
||||
|
||||
NAME AVAILABLE-CONNECTION-PATHS AVAILABLE-CONNECTIONS
|
||||
CONNECTIONS /org/freedesktop/NetworkManager/Settings/{2,1,3} UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-ethernet-REPLACED-REPLACED-REPL | ethernet
|
||||
NAME AVAILABLE-CONNECTION-PATHS AVAILABLE-CONNECTIONS
|
||||
CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | UUID-ethernet-REPLACED-REPLACED-REPL | ethernet
|
||||
|
||||
<<<
|
||||
stderr: 0 bytes
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/145
|
|||
cmd: $NMCLI --mode tabular --pretty -f all dev show eth0
|
||||
lang: C
|
||||
returncode: 0
|
||||
stdout: 4162 bytes
|
||||
stdout: 4195 bytes
|
||||
>>>
|
||||
=========================
|
||||
Device details (eth0)
|
||||
|
|
@ -35,9 +35,9 @@ GROUP OPTION
|
|||
--------------------------------------------------------------------------------------------------
|
||||
DHCP6 dhcp-6-opt-1 = val-1 | dhcp-6-opt-5 = val-5 | dhcp-6-opt-6 = val-6 | dhcp-6-opt-8 = val-8
|
||||
|
||||
NAME AVAILABLE-CONNECTION-PATHS AVAILABLE-CONNECTIONS
|
||||
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
||||
CONNECTIONS /org/freedesktop/NetworkManager/Settings/{2,1,3} UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-ethernet-REPLACED-REPLACED-REPL | ethernet
|
||||
NAME AVAILABLE-CONNECTION-PATHS AVAILABLE-CONNECTIONS
|
||||
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
||||
CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | UUID-ethernet-REPLACED-REPLACED-REPL | ethernet
|
||||
|
||||
<<<
|
||||
stderr: 0 bytes
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/146
|
|||
cmd: $NMCLI --mode tabular --pretty -f all dev show eth0
|
||||
lang: pl_PL.UTF-8
|
||||
returncode: 0
|
||||
stdout: 4220 bytes
|
||||
stdout: 4253 bytes
|
||||
>>>
|
||||
==================================
|
||||
Informacje o urządzeniu (eth0)
|
||||
|
|
@ -35,9 +35,9 @@ GROUP OPTION
|
|||
--------------------------------------------------------------------------------------------------
|
||||
DHCP6 dhcp-6-opt-1 = val-1 | dhcp-6-opt-5 = val-5 | dhcp-6-opt-6 = val-6 | dhcp-6-opt-8 = val-8
|
||||
|
||||
NAME AVAILABLE-CONNECTION-PATHS AVAILABLE-CONNECTIONS
|
||||
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
||||
CONNECTIONS /org/freedesktop/NetworkManager/Settings/{2,1,3} UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-ethernet-REPLACED-REPLACED-REPL | ethernet
|
||||
NAME AVAILABLE-CONNECTION-PATHS AVAILABLE-CONNECTIONS
|
||||
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
||||
CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | UUID-ethernet-REPLACED-REPLACED-REPL | ethernet
|
||||
|
||||
<<<
|
||||
stderr: 0 bytes
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/155
|
|||
cmd: $NMCLI --mode tabular --pretty --color yes -f all dev show eth0
|
||||
lang: C
|
||||
returncode: 0
|
||||
stdout: 4162 bytes
|
||||
stdout: 4195 bytes
|
||||
>>>
|
||||
=========================
|
||||
Device details (eth0)
|
||||
|
|
@ -35,9 +35,9 @@ GROUP OPTION
|
|||
--------------------------------------------------------------------------------------------------
|
||||
DHCP6 dhcp-6-opt-1 = val-1 | dhcp-6-opt-5 = val-5 | dhcp-6-opt-6 = val-6 | dhcp-6-opt-8 = val-8
|
||||
|
||||
NAME AVAILABLE-CONNECTION-PATHS AVAILABLE-CONNECTIONS
|
||||
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
||||
CONNECTIONS /org/freedesktop/NetworkManager/Settings/{2,1,3} UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-ethernet-REPLACED-REPLACED-REPL | ethernet
|
||||
NAME AVAILABLE-CONNECTION-PATHS AVAILABLE-CONNECTIONS
|
||||
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
||||
CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | UUID-ethernet-REPLACED-REPLACED-REPL | ethernet
|
||||
|
||||
<<<
|
||||
stderr: 0 bytes
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/156
|
|||
cmd: $NMCLI --mode tabular --pretty --color yes -f all dev show eth0
|
||||
lang: pl_PL.UTF-8
|
||||
returncode: 0
|
||||
stdout: 4220 bytes
|
||||
stdout: 4253 bytes
|
||||
>>>
|
||||
==================================
|
||||
Informacje o urządzeniu (eth0)
|
||||
|
|
@ -35,9 +35,9 @@ GROUP OPTION
|
|||
--------------------------------------------------------------------------------------------------
|
||||
DHCP6 dhcp-6-opt-1 = val-1 | dhcp-6-opt-5 = val-5 | dhcp-6-opt-6 = val-6 | dhcp-6-opt-8 = val-8
|
||||
|
||||
NAME AVAILABLE-CONNECTION-PATHS AVAILABLE-CONNECTIONS
|
||||
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
||||
CONNECTIONS /org/freedesktop/NetworkManager/Settings/{2,1,3} UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-ethernet-REPLACED-REPLACED-REPL | ethernet
|
||||
NAME AVAILABLE-CONNECTION-PATHS AVAILABLE-CONNECTIONS
|
||||
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
||||
CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | UUID-ethernet-REPLACED-REPLACED-REPL | ethernet
|
||||
|
||||
<<<
|
||||
stderr: 0 bytes
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/165
|
|||
cmd: $NMCLI --mode tabular --terse -f all dev show eth0
|
||||
lang: C
|
||||
returncode: 0
|
||||
stdout: 1176 bytes
|
||||
stdout: 1187 bytes
|
||||
>>>
|
||||
GENERAL:eth0:ethernet:NMDeviceEthernet:::virtual:::C0\:61\:AE\:26\:4D\:D7:0:20 (unavailable):0 (No reason given):/sys/devices/virtual/eth0::no:yes:yes:no:no::ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:/org/freedesktop/NetworkManager/ActiveConnection/1:unknown
|
||||
CAPABILITIES:no:100 Mb/s:no:no
|
||||
|
|
@ -11,7 +11,7 @@ IP4:192.168.6.238/29::dst = 192.168.58.133/31, nh = 192.168.50.116, mt = 3130348
|
|||
DHCP4:
|
||||
IP6:2001\:a\:\:29c0\:62b9\:2e01\:30a/69 | 2001\:a\:\:6433\:6420\:34f9\:3801/115 | 2001\:a\:\:8191\:ed6b\:8ce\:b60/103:2001\:a\:\:2b50\:64d1\:9a91\:23b4:dst = 2001\:a\:\:5ecb\:f5ee\:fb96\:856c/100, nh = \:\:, mt = 4249082794:2001\:a\:\:1323\:9a78\:2b82\:d16b | 2001\:a\:\:4e1\:24e6\:b8c1\:91bb | 2001\:a\:\:bd96\:3bed\:fbd6\:19c5:sear6.fo.x.y | sear6.foo4.bar
|
||||
DHCP6:dhcp-6-opt-1 = val-1 | dhcp-6-opt-5 = val-5 | dhcp-6-opt-6 = val-6 | dhcp-6-opt-8 = val-8
|
||||
CONNECTIONS:/org/freedesktop/NetworkManager/Settings/{2,1,3}:UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-ethernet-REPLACED-REPLACED-REPL | ethernet
|
||||
CONNECTIONS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | UUID-ethernet-REPLACED-REPLACED-REPL | ethernet
|
||||
|
||||
<<<
|
||||
stderr: 0 bytes
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/166
|
|||
cmd: $NMCLI --mode tabular --terse -f all dev show eth0
|
||||
lang: pl_PL.UTF-8
|
||||
returncode: 0
|
||||
stdout: 1189 bytes
|
||||
stdout: 1200 bytes
|
||||
>>>
|
||||
GENERAL:eth0:ethernet:NMDeviceEthernet:::virtual:::C0\:61\:AE\:26\:4D\:D7:0:20 (unavailable):0 (No reason given):/sys/devices/virtual/eth0::no:yes:yes:no:no::ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:/org/freedesktop/NetworkManager/ActiveConnection/1:unknown
|
||||
CAPABILITIES:nie:100 Mb/s:nie:nie
|
||||
|
|
@ -11,7 +11,7 @@ IP4:192.168.6.238/29::dst = 192.168.58.133/31, nh = 192.168.50.116, mt = 3130348
|
|||
DHCP4:
|
||||
IP6:2001\:a\:\:29c0\:62b9\:2e01\:30a/69 | 2001\:a\:\:6433\:6420\:34f9\:3801/115 | 2001\:a\:\:8191\:ed6b\:8ce\:b60/103:2001\:a\:\:2b50\:64d1\:9a91\:23b4:dst = 2001\:a\:\:5ecb\:f5ee\:fb96\:856c/100, nh = \:\:, mt = 4249082794:2001\:a\:\:1323\:9a78\:2b82\:d16b | 2001\:a\:\:4e1\:24e6\:b8c1\:91bb | 2001\:a\:\:bd96\:3bed\:fbd6\:19c5:sear6.fo.x.y | sear6.foo4.bar
|
||||
DHCP6:dhcp-6-opt-1 = val-1 | dhcp-6-opt-5 = val-5 | dhcp-6-opt-6 = val-6 | dhcp-6-opt-8 = val-8
|
||||
CONNECTIONS:/org/freedesktop/NetworkManager/Settings/{2,1,3}:UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-ethernet-REPLACED-REPLACED-REPL | ethernet
|
||||
CONNECTIONS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | UUID-ethernet-REPLACED-REPLACED-REPL | ethernet
|
||||
|
||||
<<<
|
||||
stderr: 0 bytes
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/175
|
|||
cmd: $NMCLI --mode tabular --terse --color yes -f all dev show eth0
|
||||
lang: C
|
||||
returncode: 0
|
||||
stdout: 1176 bytes
|
||||
stdout: 1187 bytes
|
||||
>>>
|
||||
GENERAL:eth0:ethernet:NMDeviceEthernet:::virtual:::C0\:61\:AE\:26\:4D\:D7:0:20 (unavailable):0 (No reason given):/sys/devices/virtual/eth0::no:yes:yes:no:no::ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:/org/freedesktop/NetworkManager/ActiveConnection/1:unknown
|
||||
CAPABILITIES:no:100 Mb/s:no:no
|
||||
|
|
@ -11,7 +11,7 @@ IP4:192.168.6.238/29::dst = 192.168.58.133/31, nh = 192.168.50.116, mt = 3130348
|
|||
DHCP4:
|
||||
IP6:2001\:a\:\:29c0\:62b9\:2e01\:30a/69 | 2001\:a\:\:6433\:6420\:34f9\:3801/115 | 2001\:a\:\:8191\:ed6b\:8ce\:b60/103:2001\:a\:\:2b50\:64d1\:9a91\:23b4:dst = 2001\:a\:\:5ecb\:f5ee\:fb96\:856c/100, nh = \:\:, mt = 4249082794:2001\:a\:\:1323\:9a78\:2b82\:d16b | 2001\:a\:\:4e1\:24e6\:b8c1\:91bb | 2001\:a\:\:bd96\:3bed\:fbd6\:19c5:sear6.fo.x.y | sear6.foo4.bar
|
||||
DHCP6:dhcp-6-opt-1 = val-1 | dhcp-6-opt-5 = val-5 | dhcp-6-opt-6 = val-6 | dhcp-6-opt-8 = val-8
|
||||
CONNECTIONS:/org/freedesktop/NetworkManager/Settings/{2,1,3}:UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-ethernet-REPLACED-REPLACED-REPL | ethernet
|
||||
CONNECTIONS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | UUID-ethernet-REPLACED-REPLACED-REPL | ethernet
|
||||
|
||||
<<<
|
||||
stderr: 0 bytes
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/176
|
|||
cmd: $NMCLI --mode tabular --terse --color yes -f all dev show eth0
|
||||
lang: pl_PL.UTF-8
|
||||
returncode: 0
|
||||
stdout: 1189 bytes
|
||||
stdout: 1200 bytes
|
||||
>>>
|
||||
GENERAL:eth0:ethernet:NMDeviceEthernet:::virtual:::C0\:61\:AE\:26\:4D\:D7:0:20 (unavailable):0 (No reason given):/sys/devices/virtual/eth0::no:yes:yes:no:no::ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:/org/freedesktop/NetworkManager/ActiveConnection/1:unknown
|
||||
CAPABILITIES:nie:100 Mb/s:nie:nie
|
||||
|
|
@ -11,7 +11,7 @@ IP4:192.168.6.238/29::dst = 192.168.58.133/31, nh = 192.168.50.116, mt = 3130348
|
|||
DHCP4:
|
||||
IP6:2001\:a\:\:29c0\:62b9\:2e01\:30a/69 | 2001\:a\:\:6433\:6420\:34f9\:3801/115 | 2001\:a\:\:8191\:ed6b\:8ce\:b60/103:2001\:a\:\:2b50\:64d1\:9a91\:23b4:dst = 2001\:a\:\:5ecb\:f5ee\:fb96\:856c/100, nh = \:\:, mt = 4249082794:2001\:a\:\:1323\:9a78\:2b82\:d16b | 2001\:a\:\:4e1\:24e6\:b8c1\:91bb | 2001\:a\:\:bd96\:3bed\:fbd6\:19c5:sear6.fo.x.y | sear6.foo4.bar
|
||||
DHCP6:dhcp-6-opt-1 = val-1 | dhcp-6-opt-5 = val-5 | dhcp-6-opt-6 = val-6 | dhcp-6-opt-8 = val-8
|
||||
CONNECTIONS:/org/freedesktop/NetworkManager/Settings/{2,1,3}:UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-ethernet-REPLACED-REPLACED-REPL | ethernet
|
||||
CONNECTIONS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | UUID-ethernet-REPLACED-REPLACED-REPL | ethernet
|
||||
|
||||
<<<
|
||||
stderr: 0 bytes
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/185
|
|||
cmd: $NMCLI --mode multiline -f all dev show eth0
|
||||
lang: C
|
||||
returncode: 0
|
||||
stdout: 3239 bytes
|
||||
stdout: 3250 bytes
|
||||
>>>
|
||||
GENERAL.DEVICE: eth0
|
||||
GENERAL.TYPE: ethernet
|
||||
|
|
@ -55,9 +55,9 @@ DHCP6.OPTION[1]: dhcp-6-opt-1 = val-1
|
|||
DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5
|
||||
DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6
|
||||
DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/{2,1,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]: UUID-ethernet-REPLACED-REPLACED-REPL | ethernet
|
||||
|
||||
<<<
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/186
|
|||
cmd: $NMCLI --mode multiline -f all dev show eth0
|
||||
lang: pl_PL.UTF-8
|
||||
returncode: 0
|
||||
stdout: 3262 bytes
|
||||
stdout: 3273 bytes
|
||||
>>>
|
||||
GENERAL.DEVICE: eth0
|
||||
GENERAL.TYPE: ethernet
|
||||
|
|
@ -55,9 +55,9 @@ DHCP6.OPTION[1]: dhcp-6-opt-1 = val-1
|
|||
DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5
|
||||
DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6
|
||||
DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/{2,1,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]: UUID-ethernet-REPLACED-REPLACED-REPL | ethernet
|
||||
|
||||
<<<
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/195
|
|||
cmd: $NMCLI --mode multiline --color yes -f all dev show eth0
|
||||
lang: C
|
||||
returncode: 0
|
||||
stdout: 3239 bytes
|
||||
stdout: 3250 bytes
|
||||
>>>
|
||||
GENERAL.DEVICE: eth0
|
||||
GENERAL.TYPE: ethernet
|
||||
|
|
@ -55,9 +55,9 @@ DHCP6.OPTION[1]: dhcp-6-opt-1 = val-1
|
|||
DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5
|
||||
DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6
|
||||
DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/{2,1,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]: UUID-ethernet-REPLACED-REPLACED-REPL | ethernet
|
||||
|
||||
<<<
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/196
|
|||
cmd: $NMCLI --mode multiline --color yes -f all dev show eth0
|
||||
lang: pl_PL.UTF-8
|
||||
returncode: 0
|
||||
stdout: 3262 bytes
|
||||
stdout: 3273 bytes
|
||||
>>>
|
||||
GENERAL.DEVICE: eth0
|
||||
GENERAL.TYPE: ethernet
|
||||
|
|
@ -55,9 +55,9 @@ DHCP6.OPTION[1]: dhcp-6-opt-1 = val-1
|
|||
DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5
|
||||
DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6
|
||||
DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/{2,1,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]: UUID-ethernet-REPLACED-REPLACED-REPL | ethernet
|
||||
|
||||
<<<
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/205
|
|||
cmd: $NMCLI --mode multiline --pretty -f all dev show eth0
|
||||
lang: C
|
||||
returncode: 0
|
||||
stdout: 4090 bytes
|
||||
stdout: 4101 bytes
|
||||
>>>
|
||||
===============================================================================
|
||||
Device details (eth0)
|
||||
|
|
@ -65,9 +65,9 @@ DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5
|
|||
DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6
|
||||
DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8
|
||||
-------------------------------------------------------------------------------
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/{2,1,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]: UUID-ethernet-REPLACED-REPLACED-REPL | ethernet
|
||||
-------------------------------------------------------------------------------
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/206
|
|||
cmd: $NMCLI --mode multiline --pretty -f all dev show eth0
|
||||
lang: pl_PL.UTF-8
|
||||
returncode: 0
|
||||
stdout: 4119 bytes
|
||||
stdout: 4130 bytes
|
||||
>>>
|
||||
===============================================================================
|
||||
Informacje o urządzeniu (eth0)
|
||||
|
|
@ -65,9 +65,9 @@ DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5
|
|||
DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6
|
||||
DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8
|
||||
-------------------------------------------------------------------------------
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/{2,1,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]: UUID-ethernet-REPLACED-REPLACED-REPL | ethernet
|
||||
-------------------------------------------------------------------------------
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/215
|
|||
cmd: $NMCLI --mode multiline --pretty --color yes -f all dev show eth0
|
||||
lang: C
|
||||
returncode: 0
|
||||
stdout: 4090 bytes
|
||||
stdout: 4101 bytes
|
||||
>>>
|
||||
===============================================================================
|
||||
Device details (eth0)
|
||||
|
|
@ -65,9 +65,9 @@ DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5
|
|||
DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6
|
||||
DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8
|
||||
-------------------------------------------------------------------------------
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/{2,1,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]: UUID-ethernet-REPLACED-REPLACED-REPL | ethernet
|
||||
-------------------------------------------------------------------------------
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/216
|
|||
cmd: $NMCLI --mode multiline --pretty --color yes -f all dev show eth0
|
||||
lang: pl_PL.UTF-8
|
||||
returncode: 0
|
||||
stdout: 4119 bytes
|
||||
stdout: 4130 bytes
|
||||
>>>
|
||||
===============================================================================
|
||||
Informacje o urządzeniu (eth0)
|
||||
|
|
@ -65,9 +65,9 @@ DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5
|
|||
DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6
|
||||
DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8
|
||||
-------------------------------------------------------------------------------
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/{2,1,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]: UUID-ethernet-REPLACED-REPLACED-REPL | ethernet
|
||||
-------------------------------------------------------------------------------
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/225
|
|||
cmd: $NMCLI --mode multiline --terse -f all dev show eth0
|
||||
lang: C
|
||||
returncode: 0
|
||||
stdout: 2011 bytes
|
||||
stdout: 2022 bytes
|
||||
>>>
|
||||
GENERAL.DEVICE:eth0
|
||||
GENERAL.TYPE:ethernet
|
||||
|
|
@ -55,9 +55,9 @@ DHCP6.OPTION[1]:dhcp-6-opt-1 = val-1
|
|||
DHCP6.OPTION[2]:dhcp-6-opt-5 = val-5
|
||||
DHCP6.OPTION[3]:dhcp-6-opt-6 = val-6
|
||||
DHCP6.OPTION[4]:dhcp-6-opt-8 = val-8
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/{2,1,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]:UUID-ethernet-REPLACED-REPLACED-REPL | ethernet
|
||||
|
||||
<<<
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/226
|
|||
cmd: $NMCLI --mode multiline --terse -f all dev show eth0
|
||||
lang: pl_PL.UTF-8
|
||||
returncode: 0
|
||||
stdout: 2024 bytes
|
||||
stdout: 2035 bytes
|
||||
>>>
|
||||
GENERAL.DEVICE:eth0
|
||||
GENERAL.TYPE:ethernet
|
||||
|
|
@ -55,9 +55,9 @@ DHCP6.OPTION[1]:dhcp-6-opt-1 = val-1
|
|||
DHCP6.OPTION[2]:dhcp-6-opt-5 = val-5
|
||||
DHCP6.OPTION[3]:dhcp-6-opt-6 = val-6
|
||||
DHCP6.OPTION[4]:dhcp-6-opt-8 = val-8
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/{2,1,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]:UUID-ethernet-REPLACED-REPLACED-REPL | ethernet
|
||||
|
||||
<<<
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/235
|
|||
cmd: $NMCLI --mode multiline --terse --color yes -f all dev show eth0
|
||||
lang: C
|
||||
returncode: 0
|
||||
stdout: 2011 bytes
|
||||
stdout: 2022 bytes
|
||||
>>>
|
||||
GENERAL.DEVICE:eth0
|
||||
GENERAL.TYPE:ethernet
|
||||
|
|
@ -55,9 +55,9 @@ DHCP6.OPTION[1]:dhcp-6-opt-1 = val-1
|
|||
DHCP6.OPTION[2]:dhcp-6-opt-5 = val-5
|
||||
DHCP6.OPTION[3]:dhcp-6-opt-6 = val-6
|
||||
DHCP6.OPTION[4]:dhcp-6-opt-8 = val-8
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/{2,1,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]:UUID-ethernet-REPLACED-REPLACED-REPL | ethernet
|
||||
|
||||
<<<
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/236
|
|||
cmd: $NMCLI --mode multiline --terse --color yes -f all dev show eth0
|
||||
lang: pl_PL.UTF-8
|
||||
returncode: 0
|
||||
stdout: 2024 bytes
|
||||
stdout: 2035 bytes
|
||||
>>>
|
||||
GENERAL.DEVICE:eth0
|
||||
GENERAL.TYPE:ethernet
|
||||
|
|
@ -55,9 +55,9 @@ DHCP6.OPTION[1]:dhcp-6-opt-1 = val-1
|
|||
DHCP6.OPTION[2]:dhcp-6-opt-5 = val-5
|
||||
DHCP6.OPTION[3]:dhcp-6-opt-6 = val-6
|
||||
DHCP6.OPTION[4]:dhcp-6-opt-8 = val-8
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/{2,1,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]:UUID-ethernet-REPLACED-REPLACED-REPL | ethernet
|
||||
|
||||
<<<
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/245
|
|||
cmd: $NMCLI -f all dev show eth0
|
||||
lang: C
|
||||
returncode: 0
|
||||
stdout: 3207 bytes
|
||||
stdout: 3270 bytes
|
||||
>>>
|
||||
GENERAL.DEVICE: eth0
|
||||
GENERAL.TYPE: ethernet
|
||||
|
|
@ -55,10 +55,10 @@ DHCP6.OPTION[1]: dhcp-6-opt-1 = val-1
|
|||
DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5
|
||||
DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6
|
||||
DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/{2,1,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]: (null) | (null)
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]: <invisible> | /org/freedesktop/NetworkManager/Settings/Connection/3
|
||||
|
||||
<<<
|
||||
stderr: 0 bytes
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/246
|
|||
cmd: $NMCLI -f all dev show eth0
|
||||
lang: pl_PL.UTF-8
|
||||
returncode: 0
|
||||
stdout: 3230 bytes
|
||||
stdout: 3293 bytes
|
||||
>>>
|
||||
GENERAL.DEVICE: eth0
|
||||
GENERAL.TYPE: ethernet
|
||||
|
|
@ -55,10 +55,10 @@ DHCP6.OPTION[1]: dhcp-6-opt-1 = val-1
|
|||
DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5
|
||||
DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6
|
||||
DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/{2,1,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]: (null) | (null)
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]: <invisible> | /org/freedesktop/NetworkManager/Settings/Connection/3
|
||||
|
||||
<<<
|
||||
stderr: 0 bytes
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/255
|
|||
cmd: $NMCLI --color yes -f all dev show eth0
|
||||
lang: C
|
||||
returncode: 0
|
||||
stdout: 3207 bytes
|
||||
stdout: 3270 bytes
|
||||
>>>
|
||||
GENERAL.DEVICE: eth0
|
||||
GENERAL.TYPE: ethernet
|
||||
|
|
@ -55,10 +55,10 @@ DHCP6.OPTION[1]: dhcp-6-opt-1 = val-1
|
|||
DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5
|
||||
DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6
|
||||
DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/{2,1,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]: (null) | (null)
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]: <invisible> | /org/freedesktop/NetworkManager/Settings/Connection/3
|
||||
|
||||
<<<
|
||||
stderr: 0 bytes
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/256
|
|||
cmd: $NMCLI --color yes -f all dev show eth0
|
||||
lang: pl_PL.UTF-8
|
||||
returncode: 0
|
||||
stdout: 3230 bytes
|
||||
stdout: 3293 bytes
|
||||
>>>
|
||||
GENERAL.DEVICE: eth0
|
||||
GENERAL.TYPE: ethernet
|
||||
|
|
@ -55,10 +55,10 @@ DHCP6.OPTION[1]: dhcp-6-opt-1 = val-1
|
|||
DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5
|
||||
DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6
|
||||
DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/{2,1,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]: (null) | (null)
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]: <invisible> | /org/freedesktop/NetworkManager/Settings/Connection/3
|
||||
|
||||
<<<
|
||||
stderr: 0 bytes
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/265
|
|||
cmd: $NMCLI --pretty -f all dev show eth0
|
||||
lang: C
|
||||
returncode: 0
|
||||
stdout: 4058 bytes
|
||||
stdout: 4121 bytes
|
||||
>>>
|
||||
===============================================================================
|
||||
Device details (eth0)
|
||||
|
|
@ -65,10 +65,10 @@ DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5
|
|||
DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6
|
||||
DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8
|
||||
-------------------------------------------------------------------------------
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/{2,1,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]: (null) | (null)
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]: <invisible> | /org/freedesktop/NetworkManager/Settings/Connection/3
|
||||
-------------------------------------------------------------------------------
|
||||
|
||||
<<<
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/266
|
|||
cmd: $NMCLI --pretty -f all dev show eth0
|
||||
lang: pl_PL.UTF-8
|
||||
returncode: 0
|
||||
stdout: 4087 bytes
|
||||
stdout: 4150 bytes
|
||||
>>>
|
||||
===============================================================================
|
||||
Informacje o urządzeniu (eth0)
|
||||
|
|
@ -65,10 +65,10 @@ DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5
|
|||
DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6
|
||||
DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8
|
||||
-------------------------------------------------------------------------------
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/{2,1,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]: (null) | (null)
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]: <invisible> | /org/freedesktop/NetworkManager/Settings/Connection/3
|
||||
-------------------------------------------------------------------------------
|
||||
|
||||
<<<
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/275
|
|||
cmd: $NMCLI --pretty --color yes -f all dev show eth0
|
||||
lang: C
|
||||
returncode: 0
|
||||
stdout: 4058 bytes
|
||||
stdout: 4121 bytes
|
||||
>>>
|
||||
===============================================================================
|
||||
Device details (eth0)
|
||||
|
|
@ -65,10 +65,10 @@ DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5
|
|||
DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6
|
||||
DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8
|
||||
-------------------------------------------------------------------------------
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/{2,1,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]: (null) | (null)
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]: <invisible> | /org/freedesktop/NetworkManager/Settings/Connection/3
|
||||
-------------------------------------------------------------------------------
|
||||
|
||||
<<<
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/276
|
|||
cmd: $NMCLI --pretty --color yes -f all dev show eth0
|
||||
lang: pl_PL.UTF-8
|
||||
returncode: 0
|
||||
stdout: 4087 bytes
|
||||
stdout: 4150 bytes
|
||||
>>>
|
||||
===============================================================================
|
||||
Informacje o urządzeniu (eth0)
|
||||
|
|
@ -65,10 +65,10 @@ DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5
|
|||
DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6
|
||||
DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8
|
||||
-------------------------------------------------------------------------------
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/{2,1,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]: (null) | (null)
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]: <invisible> | /org/freedesktop/NetworkManager/Settings/Connection/3
|
||||
-------------------------------------------------------------------------------
|
||||
|
||||
<<<
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/285
|
|||
cmd: $NMCLI --terse -f all dev show eth0
|
||||
lang: C
|
||||
returncode: 0
|
||||
stdout: 1979 bytes
|
||||
stdout: 2042 bytes
|
||||
>>>
|
||||
GENERAL.DEVICE:eth0
|
||||
GENERAL.TYPE:ethernet
|
||||
|
|
@ -55,10 +55,10 @@ DHCP6.OPTION[1]:dhcp-6-opt-1 = val-1
|
|||
DHCP6.OPTION[2]:dhcp-6-opt-5 = val-5
|
||||
DHCP6.OPTION[3]:dhcp-6-opt-6 = val-6
|
||||
DHCP6.OPTION[4]:dhcp-6-opt-8 = val-8
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/{2,1,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]:(null) | (null)
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]:<invisible> | /org/freedesktop/NetworkManager/Settings/Connection/3
|
||||
|
||||
<<<
|
||||
stderr: 0 bytes
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/286
|
|||
cmd: $NMCLI --terse -f all dev show eth0
|
||||
lang: pl_PL.UTF-8
|
||||
returncode: 0
|
||||
stdout: 1992 bytes
|
||||
stdout: 2055 bytes
|
||||
>>>
|
||||
GENERAL.DEVICE:eth0
|
||||
GENERAL.TYPE:ethernet
|
||||
|
|
@ -55,10 +55,10 @@ DHCP6.OPTION[1]:dhcp-6-opt-1 = val-1
|
|||
DHCP6.OPTION[2]:dhcp-6-opt-5 = val-5
|
||||
DHCP6.OPTION[3]:dhcp-6-opt-6 = val-6
|
||||
DHCP6.OPTION[4]:dhcp-6-opt-8 = val-8
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/{2,1,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]:(null) | (null)
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]:<invisible> | /org/freedesktop/NetworkManager/Settings/Connection/3
|
||||
|
||||
<<<
|
||||
stderr: 0 bytes
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/295
|
|||
cmd: $NMCLI --terse --color yes -f all dev show eth0
|
||||
lang: C
|
||||
returncode: 0
|
||||
stdout: 1979 bytes
|
||||
stdout: 2042 bytes
|
||||
>>>
|
||||
GENERAL.DEVICE:eth0
|
||||
GENERAL.TYPE:ethernet
|
||||
|
|
@ -55,10 +55,10 @@ DHCP6.OPTION[1]:dhcp-6-opt-1 = val-1
|
|||
DHCP6.OPTION[2]:dhcp-6-opt-5 = val-5
|
||||
DHCP6.OPTION[3]:dhcp-6-opt-6 = val-6
|
||||
DHCP6.OPTION[4]:dhcp-6-opt-8 = val-8
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/{2,1,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]:(null) | (null)
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]:<invisible> | /org/freedesktop/NetworkManager/Settings/Connection/3
|
||||
|
||||
<<<
|
||||
stderr: 0 bytes
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/296
|
|||
cmd: $NMCLI --terse --color yes -f all dev show eth0
|
||||
lang: pl_PL.UTF-8
|
||||
returncode: 0
|
||||
stdout: 1992 bytes
|
||||
stdout: 2055 bytes
|
||||
>>>
|
||||
GENERAL.DEVICE:eth0
|
||||
GENERAL.TYPE:ethernet
|
||||
|
|
@ -55,10 +55,10 @@ DHCP6.OPTION[1]:dhcp-6-opt-1 = val-1
|
|||
DHCP6.OPTION[2]:dhcp-6-opt-5 = val-5
|
||||
DHCP6.OPTION[3]:dhcp-6-opt-6 = val-6
|
||||
DHCP6.OPTION[4]:dhcp-6-opt-8 = val-8
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/{2,1,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]:(null) | (null)
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]:<invisible> | /org/freedesktop/NetworkManager/Settings/Connection/3
|
||||
|
||||
<<<
|
||||
stderr: 0 bytes
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/305
|
|||
cmd: $NMCLI --mode tabular -f all dev show eth0
|
||||
lang: C
|
||||
returncode: 0
|
||||
stdout: 2657 bytes
|
||||
stdout: 2783 bytes
|
||||
>>>
|
||||
NAME DEVICE TYPE NM-TYPE VENDOR PRODUCT DRIVER DRIVER-VERSION FIRMWARE-VERSION HWADDR MTU STATE REASON UDI IP-IFACE IS-SOFTWARE NM-MANAGED AUTOCONNECT FIRMWARE-MISSING NM-PLUGIN-MISSING PHYS-PORT-ID CONNECTION CON-UUID CON-PATH METERED
|
||||
GENERAL eth0 ethernet NMDeviceEthernet -- -- virtual -- -- C0:61:AE:26:4D:D7 0 20 (unavailable) 0 (No reason given) /sys/devices/virtual/eth0 -- no yes yes no no -- ethernet UUID-ethernet-REPLACED-REPLACED-REPL /org/freedesktop/NetworkManager/ActiveConnection/1 unknown
|
||||
|
|
@ -25,8 +25,8 @@ IP6 2001:a::29c0:62b9:2e01:30a/69 | 2001:a::6433:6420:34f9:3801/115 | 2001:a:
|
|||
GROUP OPTION
|
||||
DHCP6 dhcp-6-opt-1 = val-1 | dhcp-6-opt-5 = val-5 | dhcp-6-opt-6 = val-6 | dhcp-6-opt-8 = val-8
|
||||
|
||||
NAME AVAILABLE-CONNECTION-PATHS AVAILABLE-CONNECTIONS
|
||||
CONNECTIONS /org/freedesktop/NetworkManager/Settings/{2,1,3} UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | (null) | (null)
|
||||
NAME AVAILABLE-CONNECTION-PATHS AVAILABLE-CONNECTIONS
|
||||
CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | <invisible> | /org/freedesktop/NetworkManager/Settings/Connection/3
|
||||
|
||||
<<<
|
||||
stderr: 0 bytes
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/306
|
|||
cmd: $NMCLI --mode tabular -f all dev show eth0
|
||||
lang: pl_PL.UTF-8
|
||||
returncode: 0
|
||||
stdout: 2678 bytes
|
||||
stdout: 2804 bytes
|
||||
>>>
|
||||
NAME DEVICE TYPE NM-TYPE VENDOR PRODUCT DRIVER DRIVER-VERSION FIRMWARE-VERSION HWADDR MTU STATE REASON UDI IP-IFACE IS-SOFTWARE NM-MANAGED AUTOCONNECT FIRMWARE-MISSING NM-PLUGIN-MISSING PHYS-PORT-ID CONNECTION CON-UUID CON-PATH METERED
|
||||
GENERAL eth0 ethernet NMDeviceEthernet -- -- virtual -- -- C0:61:AE:26:4D:D7 0 20 (niedostępne) 0 (Nie podano przyczyny) /sys/devices/virtual/eth0 -- nie tak tak nie nie -- ethernet UUID-ethernet-REPLACED-REPLACED-REPL /org/freedesktop/NetworkManager/ActiveConnection/1 nieznane
|
||||
|
|
@ -25,8 +25,8 @@ IP6 2001:a::29c0:62b9:2e01:30a/69 | 2001:a::6433:6420:34f9:3801/115 | 2001:a:
|
|||
GROUP OPTION
|
||||
DHCP6 dhcp-6-opt-1 = val-1 | dhcp-6-opt-5 = val-5 | dhcp-6-opt-6 = val-6 | dhcp-6-opt-8 = val-8
|
||||
|
||||
NAME AVAILABLE-CONNECTION-PATHS AVAILABLE-CONNECTIONS
|
||||
CONNECTIONS /org/freedesktop/NetworkManager/Settings/{2,1,3} UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | (null) | (null)
|
||||
NAME AVAILABLE-CONNECTION-PATHS AVAILABLE-CONNECTIONS
|
||||
CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | <invisible> | /org/freedesktop/NetworkManager/Settings/Connection/3
|
||||
|
||||
<<<
|
||||
stderr: 0 bytes
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/315
|
|||
cmd: $NMCLI --mode tabular --color yes -f all dev show eth0
|
||||
lang: C
|
||||
returncode: 0
|
||||
stdout: 2657 bytes
|
||||
stdout: 2783 bytes
|
||||
>>>
|
||||
NAME DEVICE TYPE NM-TYPE VENDOR PRODUCT DRIVER DRIVER-VERSION FIRMWARE-VERSION HWADDR MTU STATE REASON UDI IP-IFACE IS-SOFTWARE NM-MANAGED AUTOCONNECT FIRMWARE-MISSING NM-PLUGIN-MISSING PHYS-PORT-ID CONNECTION CON-UUID CON-PATH METERED
|
||||
GENERAL eth0 ethernet NMDeviceEthernet -- -- virtual -- -- C0:61:AE:26:4D:D7 0 20 (unavailable) 0 (No reason given) /sys/devices/virtual/eth0 -- no yes yes no no -- ethernet UUID-ethernet-REPLACED-REPLACED-REPL /org/freedesktop/NetworkManager/ActiveConnection/1 unknown
|
||||
|
|
@ -25,8 +25,8 @@ IP6 2001:a::29c0:62b9:2e01:30a/69 | 2001:a::6433:6420:34f9:3801/115 | 2001:a:
|
|||
GROUP OPTION
|
||||
DHCP6 dhcp-6-opt-1 = val-1 | dhcp-6-opt-5 = val-5 | dhcp-6-opt-6 = val-6 | dhcp-6-opt-8 = val-8
|
||||
|
||||
NAME AVAILABLE-CONNECTION-PATHS AVAILABLE-CONNECTIONS
|
||||
CONNECTIONS /org/freedesktop/NetworkManager/Settings/{2,1,3} UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | (null) | (null)
|
||||
NAME AVAILABLE-CONNECTION-PATHS AVAILABLE-CONNECTIONS
|
||||
CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | <invisible> | /org/freedesktop/NetworkManager/Settings/Connection/3
|
||||
|
||||
<<<
|
||||
stderr: 0 bytes
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/316
|
|||
cmd: $NMCLI --mode tabular --color yes -f all dev show eth0
|
||||
lang: pl_PL.UTF-8
|
||||
returncode: 0
|
||||
stdout: 2678 bytes
|
||||
stdout: 2804 bytes
|
||||
>>>
|
||||
NAME DEVICE TYPE NM-TYPE VENDOR PRODUCT DRIVER DRIVER-VERSION FIRMWARE-VERSION HWADDR MTU STATE REASON UDI IP-IFACE IS-SOFTWARE NM-MANAGED AUTOCONNECT FIRMWARE-MISSING NM-PLUGIN-MISSING PHYS-PORT-ID CONNECTION CON-UUID CON-PATH METERED
|
||||
GENERAL eth0 ethernet NMDeviceEthernet -- -- virtual -- -- C0:61:AE:26:4D:D7 0 20 (niedostępne) 0 (Nie podano przyczyny) /sys/devices/virtual/eth0 -- nie tak tak nie nie -- ethernet UUID-ethernet-REPLACED-REPLACED-REPL /org/freedesktop/NetworkManager/ActiveConnection/1 nieznane
|
||||
|
|
@ -25,8 +25,8 @@ IP6 2001:a::29c0:62b9:2e01:30a/69 | 2001:a::6433:6420:34f9:3801/115 | 2001:a:
|
|||
GROUP OPTION
|
||||
DHCP6 dhcp-6-opt-1 = val-1 | dhcp-6-opt-5 = val-5 | dhcp-6-opt-6 = val-6 | dhcp-6-opt-8 = val-8
|
||||
|
||||
NAME AVAILABLE-CONNECTION-PATHS AVAILABLE-CONNECTIONS
|
||||
CONNECTIONS /org/freedesktop/NetworkManager/Settings/{2,1,3} UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | (null) | (null)
|
||||
NAME AVAILABLE-CONNECTION-PATHS AVAILABLE-CONNECTIONS
|
||||
CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | <invisible> | /org/freedesktop/NetworkManager/Settings/Connection/3
|
||||
|
||||
<<<
|
||||
stderr: 0 bytes
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/325
|
|||
cmd: $NMCLI --mode tabular --pretty -f all dev show eth0
|
||||
lang: C
|
||||
returncode: 0
|
||||
stdout: 4066 bytes
|
||||
stdout: 4255 bytes
|
||||
>>>
|
||||
=========================
|
||||
Device details (eth0)
|
||||
|
|
@ -35,9 +35,9 @@ GROUP OPTION
|
|||
--------------------------------------------------------------------------------------------------
|
||||
DHCP6 dhcp-6-opt-1 = val-1 | dhcp-6-opt-5 = val-5 | dhcp-6-opt-6 = val-6 | dhcp-6-opt-8 = val-8
|
||||
|
||||
NAME AVAILABLE-CONNECTION-PATHS AVAILABLE-CONNECTIONS
|
||||
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
||||
CONNECTIONS /org/freedesktop/NetworkManager/Settings/{2,1,3} UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | (null) | (null)
|
||||
NAME AVAILABLE-CONNECTION-PATHS AVAILABLE-CONNECTIONS
|
||||
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
||||
CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | <invisible> | /org/freedesktop/NetworkManager/Settings/Connection/3
|
||||
|
||||
<<<
|
||||
stderr: 0 bytes
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/326
|
|||
cmd: $NMCLI --mode tabular --pretty -f all dev show eth0
|
||||
lang: pl_PL.UTF-8
|
||||
returncode: 0
|
||||
stdout: 4124 bytes
|
||||
stdout: 4313 bytes
|
||||
>>>
|
||||
==================================
|
||||
Informacje o urządzeniu (eth0)
|
||||
|
|
@ -35,9 +35,9 @@ GROUP OPTION
|
|||
--------------------------------------------------------------------------------------------------
|
||||
DHCP6 dhcp-6-opt-1 = val-1 | dhcp-6-opt-5 = val-5 | dhcp-6-opt-6 = val-6 | dhcp-6-opt-8 = val-8
|
||||
|
||||
NAME AVAILABLE-CONNECTION-PATHS AVAILABLE-CONNECTIONS
|
||||
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
||||
CONNECTIONS /org/freedesktop/NetworkManager/Settings/{2,1,3} UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | (null) | (null)
|
||||
NAME AVAILABLE-CONNECTION-PATHS AVAILABLE-CONNECTIONS
|
||||
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
||||
CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | <invisible> | /org/freedesktop/NetworkManager/Settings/Connection/3
|
||||
|
||||
<<<
|
||||
stderr: 0 bytes
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/335
|
|||
cmd: $NMCLI --mode tabular --pretty --color yes -f all dev show eth0
|
||||
lang: C
|
||||
returncode: 0
|
||||
stdout: 4066 bytes
|
||||
stdout: 4255 bytes
|
||||
>>>
|
||||
=========================
|
||||
Device details (eth0)
|
||||
|
|
@ -35,9 +35,9 @@ GROUP OPTION
|
|||
--------------------------------------------------------------------------------------------------
|
||||
DHCP6 dhcp-6-opt-1 = val-1 | dhcp-6-opt-5 = val-5 | dhcp-6-opt-6 = val-6 | dhcp-6-opt-8 = val-8
|
||||
|
||||
NAME AVAILABLE-CONNECTION-PATHS AVAILABLE-CONNECTIONS
|
||||
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
||||
CONNECTIONS /org/freedesktop/NetworkManager/Settings/{2,1,3} UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | (null) | (null)
|
||||
NAME AVAILABLE-CONNECTION-PATHS AVAILABLE-CONNECTIONS
|
||||
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
||||
CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | <invisible> | /org/freedesktop/NetworkManager/Settings/Connection/3
|
||||
|
||||
<<<
|
||||
stderr: 0 bytes
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/336
|
|||
cmd: $NMCLI --mode tabular --pretty --color yes -f all dev show eth0
|
||||
lang: pl_PL.UTF-8
|
||||
returncode: 0
|
||||
stdout: 4124 bytes
|
||||
stdout: 4313 bytes
|
||||
>>>
|
||||
==================================
|
||||
Informacje o urządzeniu (eth0)
|
||||
|
|
@ -35,9 +35,9 @@ GROUP OPTION
|
|||
--------------------------------------------------------------------------------------------------
|
||||
DHCP6 dhcp-6-opt-1 = val-1 | dhcp-6-opt-5 = val-5 | dhcp-6-opt-6 = val-6 | dhcp-6-opt-8 = val-8
|
||||
|
||||
NAME AVAILABLE-CONNECTION-PATHS AVAILABLE-CONNECTIONS
|
||||
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
||||
CONNECTIONS /org/freedesktop/NetworkManager/Settings/{2,1,3} UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | (null) | (null)
|
||||
NAME AVAILABLE-CONNECTION-PATHS AVAILABLE-CONNECTIONS
|
||||
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
||||
CONNECTIONS /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3} 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | <invisible> | /org/freedesktop/NetworkManager/Settings/Connection/3
|
||||
|
||||
<<<
|
||||
stderr: 0 bytes
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/345
|
|||
cmd: $NMCLI --mode tabular --terse -f all dev show eth0
|
||||
lang: C
|
||||
returncode: 0
|
||||
stdout: 1144 bytes
|
||||
stdout: 1207 bytes
|
||||
>>>
|
||||
GENERAL:eth0:ethernet:NMDeviceEthernet:::virtual:::C0\:61\:AE\:26\:4D\:D7:0:20 (unavailable):0 (No reason given):/sys/devices/virtual/eth0::no:yes:yes:no:no::ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:/org/freedesktop/NetworkManager/ActiveConnection/1:unknown
|
||||
CAPABILITIES:no:100 Mb/s:no:no
|
||||
|
|
@ -11,7 +11,7 @@ IP4:192.168.6.238/29::dst = 192.168.58.133/31, nh = 192.168.50.116, mt = 3130348
|
|||
DHCP4:
|
||||
IP6:2001\:a\:\:29c0\:62b9\:2e01\:30a/69 | 2001\:a\:\:6433\:6420\:34f9\:3801/115 | 2001\:a\:\:8191\:ed6b\:8ce\:b60/103:2001\:a\:\:2b50\:64d1\:9a91\:23b4:dst = 2001\:a\:\:5ecb\:f5ee\:fb96\:856c/100, nh = \:\:, mt = 4249082794:2001\:a\:\:1323\:9a78\:2b82\:d16b | 2001\:a\:\:4e1\:24e6\:b8c1\:91bb | 2001\:a\:\:bd96\:3bed\:fbd6\:19c5:sear6.fo.x.y | sear6.foo4.bar
|
||||
DHCP6:dhcp-6-opt-1 = val-1 | dhcp-6-opt-5 = val-5 | dhcp-6-opt-6 = val-6 | dhcp-6-opt-8 = val-8
|
||||
CONNECTIONS:/org/freedesktop/NetworkManager/Settings/{2,1,3}:UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | (null) | (null)
|
||||
CONNECTIONS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | <invisible> | /org/freedesktop/NetworkManager/Settings/Connection/3
|
||||
|
||||
<<<
|
||||
stderr: 0 bytes
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/346
|
|||
cmd: $NMCLI --mode tabular --terse -f all dev show eth0
|
||||
lang: pl_PL.UTF-8
|
||||
returncode: 0
|
||||
stdout: 1157 bytes
|
||||
stdout: 1220 bytes
|
||||
>>>
|
||||
GENERAL:eth0:ethernet:NMDeviceEthernet:::virtual:::C0\:61\:AE\:26\:4D\:D7:0:20 (unavailable):0 (No reason given):/sys/devices/virtual/eth0::no:yes:yes:no:no::ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:/org/freedesktop/NetworkManager/ActiveConnection/1:unknown
|
||||
CAPABILITIES:nie:100 Mb/s:nie:nie
|
||||
|
|
@ -11,7 +11,7 @@ IP4:192.168.6.238/29::dst = 192.168.58.133/31, nh = 192.168.50.116, mt = 3130348
|
|||
DHCP4:
|
||||
IP6:2001\:a\:\:29c0\:62b9\:2e01\:30a/69 | 2001\:a\:\:6433\:6420\:34f9\:3801/115 | 2001\:a\:\:8191\:ed6b\:8ce\:b60/103:2001\:a\:\:2b50\:64d1\:9a91\:23b4:dst = 2001\:a\:\:5ecb\:f5ee\:fb96\:856c/100, nh = \:\:, mt = 4249082794:2001\:a\:\:1323\:9a78\:2b82\:d16b | 2001\:a\:\:4e1\:24e6\:b8c1\:91bb | 2001\:a\:\:bd96\:3bed\:fbd6\:19c5:sear6.fo.x.y | sear6.foo4.bar
|
||||
DHCP6:dhcp-6-opt-1 = val-1 | dhcp-6-opt-5 = val-5 | dhcp-6-opt-6 = val-6 | dhcp-6-opt-8 = val-8
|
||||
CONNECTIONS:/org/freedesktop/NetworkManager/Settings/{2,1,3}:UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | (null) | (null)
|
||||
CONNECTIONS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | <invisible> | /org/freedesktop/NetworkManager/Settings/Connection/3
|
||||
|
||||
<<<
|
||||
stderr: 0 bytes
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/355
|
|||
cmd: $NMCLI --mode tabular --terse --color yes -f all dev show eth0
|
||||
lang: C
|
||||
returncode: 0
|
||||
stdout: 1144 bytes
|
||||
stdout: 1207 bytes
|
||||
>>>
|
||||
GENERAL:eth0:ethernet:NMDeviceEthernet:::virtual:::C0\:61\:AE\:26\:4D\:D7:0:20 (unavailable):0 (No reason given):/sys/devices/virtual/eth0::no:yes:yes:no:no::ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:/org/freedesktop/NetworkManager/ActiveConnection/1:unknown
|
||||
CAPABILITIES:no:100 Mb/s:no:no
|
||||
|
|
@ -11,7 +11,7 @@ IP4:192.168.6.238/29::dst = 192.168.58.133/31, nh = 192.168.50.116, mt = 3130348
|
|||
DHCP4:
|
||||
IP6:2001\:a\:\:29c0\:62b9\:2e01\:30a/69 | 2001\:a\:\:6433\:6420\:34f9\:3801/115 | 2001\:a\:\:8191\:ed6b\:8ce\:b60/103:2001\:a\:\:2b50\:64d1\:9a91\:23b4:dst = 2001\:a\:\:5ecb\:f5ee\:fb96\:856c/100, nh = \:\:, mt = 4249082794:2001\:a\:\:1323\:9a78\:2b82\:d16b | 2001\:a\:\:4e1\:24e6\:b8c1\:91bb | 2001\:a\:\:bd96\:3bed\:fbd6\:19c5:sear6.fo.x.y | sear6.foo4.bar
|
||||
DHCP6:dhcp-6-opt-1 = val-1 | dhcp-6-opt-5 = val-5 | dhcp-6-opt-6 = val-6 | dhcp-6-opt-8 = val-8
|
||||
CONNECTIONS:/org/freedesktop/NetworkManager/Settings/{2,1,3}:UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | (null) | (null)
|
||||
CONNECTIONS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | <invisible> | /org/freedesktop/NetworkManager/Settings/Connection/3
|
||||
|
||||
<<<
|
||||
stderr: 0 bytes
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/356
|
|||
cmd: $NMCLI --mode tabular --terse --color yes -f all dev show eth0
|
||||
lang: pl_PL.UTF-8
|
||||
returncode: 0
|
||||
stdout: 1157 bytes
|
||||
stdout: 1220 bytes
|
||||
>>>
|
||||
GENERAL:eth0:ethernet:NMDeviceEthernet:::virtual:::C0\:61\:AE\:26\:4D\:D7:0:20 (unavailable):0 (No reason given):/sys/devices/virtual/eth0::no:yes:yes:no:no::ethernet:UUID-ethernet-REPLACED-REPLACED-REPL:/org/freedesktop/NetworkManager/ActiveConnection/1:unknown
|
||||
CAPABILITIES:nie:100 Mb/s:nie:nie
|
||||
|
|
@ -11,7 +11,7 @@ IP4:192.168.6.238/29::dst = 192.168.58.133/31, nh = 192.168.50.116, mt = 3130348
|
|||
DHCP4:
|
||||
IP6:2001\:a\:\:29c0\:62b9\:2e01\:30a/69 | 2001\:a\:\:6433\:6420\:34f9\:3801/115 | 2001\:a\:\:8191\:ed6b\:8ce\:b60/103:2001\:a\:\:2b50\:64d1\:9a91\:23b4:dst = 2001\:a\:\:5ecb\:f5ee\:fb96\:856c/100, nh = \:\:, mt = 4249082794:2001\:a\:\:1323\:9a78\:2b82\:d16b | 2001\:a\:\:4e1\:24e6\:b8c1\:91bb | 2001\:a\:\:bd96\:3bed\:fbd6\:19c5:sear6.fo.x.y | sear6.foo4.bar
|
||||
DHCP6:dhcp-6-opt-1 = val-1 | dhcp-6-opt-5 = val-5 | dhcp-6-opt-6 = val-6 | dhcp-6-opt-8 = val-8
|
||||
CONNECTIONS:/org/freedesktop/NetworkManager/Settings/{2,1,3}:UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | (null) | (null)
|
||||
CONNECTIONS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1 | UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1 | <invisible> | /org/freedesktop/NetworkManager/Settings/Connection/3
|
||||
|
||||
<<<
|
||||
stderr: 0 bytes
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/365
|
|||
cmd: $NMCLI --mode multiline -f all dev show eth0
|
||||
lang: C
|
||||
returncode: 0
|
||||
stdout: 3207 bytes
|
||||
stdout: 3270 bytes
|
||||
>>>
|
||||
GENERAL.DEVICE: eth0
|
||||
GENERAL.TYPE: ethernet
|
||||
|
|
@ -55,10 +55,10 @@ DHCP6.OPTION[1]: dhcp-6-opt-1 = val-1
|
|||
DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5
|
||||
DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6
|
||||
DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/{2,1,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]: (null) | (null)
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]: <invisible> | /org/freedesktop/NetworkManager/Settings/Connection/3
|
||||
|
||||
<<<
|
||||
stderr: 0 bytes
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/366
|
|||
cmd: $NMCLI --mode multiline -f all dev show eth0
|
||||
lang: pl_PL.UTF-8
|
||||
returncode: 0
|
||||
stdout: 3230 bytes
|
||||
stdout: 3293 bytes
|
||||
>>>
|
||||
GENERAL.DEVICE: eth0
|
||||
GENERAL.TYPE: ethernet
|
||||
|
|
@ -55,10 +55,10 @@ DHCP6.OPTION[1]: dhcp-6-opt-1 = val-1
|
|||
DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5
|
||||
DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6
|
||||
DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/{2,1,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]: (null) | (null)
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]: <invisible> | /org/freedesktop/NetworkManager/Settings/Connection/3
|
||||
|
||||
<<<
|
||||
stderr: 0 bytes
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/375
|
|||
cmd: $NMCLI --mode multiline --color yes -f all dev show eth0
|
||||
lang: C
|
||||
returncode: 0
|
||||
stdout: 3207 bytes
|
||||
stdout: 3270 bytes
|
||||
>>>
|
||||
GENERAL.DEVICE: eth0
|
||||
GENERAL.TYPE: ethernet
|
||||
|
|
@ -55,10 +55,10 @@ DHCP6.OPTION[1]: dhcp-6-opt-1 = val-1
|
|||
DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5
|
||||
DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6
|
||||
DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/{2,1,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]: (null) | (null)
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]: <invisible> | /org/freedesktop/NetworkManager/Settings/Connection/3
|
||||
|
||||
<<<
|
||||
stderr: 0 bytes
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/376
|
|||
cmd: $NMCLI --mode multiline --color yes -f all dev show eth0
|
||||
lang: pl_PL.UTF-8
|
||||
returncode: 0
|
||||
stdout: 3230 bytes
|
||||
stdout: 3293 bytes
|
||||
>>>
|
||||
GENERAL.DEVICE: eth0
|
||||
GENERAL.TYPE: ethernet
|
||||
|
|
@ -55,10 +55,10 @@ DHCP6.OPTION[1]: dhcp-6-opt-1 = val-1
|
|||
DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5
|
||||
DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6
|
||||
DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/{2,1,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]: (null) | (null)
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]: <invisible> | /org/freedesktop/NetworkManager/Settings/Connection/3
|
||||
|
||||
<<<
|
||||
stderr: 0 bytes
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/385
|
|||
cmd: $NMCLI --mode multiline --pretty -f all dev show eth0
|
||||
lang: C
|
||||
returncode: 0
|
||||
stdout: 4058 bytes
|
||||
stdout: 4121 bytes
|
||||
>>>
|
||||
===============================================================================
|
||||
Device details (eth0)
|
||||
|
|
@ -65,10 +65,10 @@ DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5
|
|||
DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6
|
||||
DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8
|
||||
-------------------------------------------------------------------------------
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/{2,1,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]: (null) | (null)
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]: <invisible> | /org/freedesktop/NetworkManager/Settings/Connection/3
|
||||
-------------------------------------------------------------------------------
|
||||
|
||||
<<<
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/386
|
|||
cmd: $NMCLI --mode multiline --pretty -f all dev show eth0
|
||||
lang: pl_PL.UTF-8
|
||||
returncode: 0
|
||||
stdout: 4087 bytes
|
||||
stdout: 4150 bytes
|
||||
>>>
|
||||
===============================================================================
|
||||
Informacje o urządzeniu (eth0)
|
||||
|
|
@ -65,10 +65,10 @@ DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5
|
|||
DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6
|
||||
DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8
|
||||
-------------------------------------------------------------------------------
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/{2,1,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]: (null) | (null)
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]: <invisible> | /org/freedesktop/NetworkManager/Settings/Connection/3
|
||||
-------------------------------------------------------------------------------
|
||||
|
||||
<<<
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/395
|
|||
cmd: $NMCLI --mode multiline --pretty --color yes -f all dev show eth0
|
||||
lang: C
|
||||
returncode: 0
|
||||
stdout: 4058 bytes
|
||||
stdout: 4121 bytes
|
||||
>>>
|
||||
===============================================================================
|
||||
Device details (eth0)
|
||||
|
|
@ -65,10 +65,10 @@ DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5
|
|||
DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6
|
||||
DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8
|
||||
-------------------------------------------------------------------------------
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/{2,1,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]: (null) | (null)
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]: <invisible> | /org/freedesktop/NetworkManager/Settings/Connection/3
|
||||
-------------------------------------------------------------------------------
|
||||
|
||||
<<<
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/396
|
|||
cmd: $NMCLI --mode multiline --pretty --color yes -f all dev show eth0
|
||||
lang: pl_PL.UTF-8
|
||||
returncode: 0
|
||||
stdout: 4087 bytes
|
||||
stdout: 4150 bytes
|
||||
>>>
|
||||
===============================================================================
|
||||
Informacje o urządzeniu (eth0)
|
||||
|
|
@ -65,10 +65,10 @@ DHCP6.OPTION[2]: dhcp-6-opt-5 = val-5
|
|||
DHCP6.OPTION[3]: dhcp-6-opt-6 = val-6
|
||||
DHCP6.OPTION[4]: dhcp-6-opt-8 = val-8
|
||||
-------------------------------------------------------------------------------
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/{2,1,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]: (null) | (null)
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: 5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]: <invisible> | /org/freedesktop/NetworkManager/Settings/Connection/3
|
||||
-------------------------------------------------------------------------------
|
||||
|
||||
<<<
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/405
|
|||
cmd: $NMCLI --mode multiline --terse -f all dev show eth0
|
||||
lang: C
|
||||
returncode: 0
|
||||
stdout: 1979 bytes
|
||||
stdout: 2042 bytes
|
||||
>>>
|
||||
GENERAL.DEVICE:eth0
|
||||
GENERAL.TYPE:ethernet
|
||||
|
|
@ -55,10 +55,10 @@ DHCP6.OPTION[1]:dhcp-6-opt-1 = val-1
|
|||
DHCP6.OPTION[2]:dhcp-6-opt-5 = val-5
|
||||
DHCP6.OPTION[3]:dhcp-6-opt-6 = val-6
|
||||
DHCP6.OPTION[4]:dhcp-6-opt-8 = val-8
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/{2,1,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]:(null) | (null)
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]:<invisible> | /org/freedesktop/NetworkManager/Settings/Connection/3
|
||||
|
||||
<<<
|
||||
stderr: 0 bytes
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/406
|
|||
cmd: $NMCLI --mode multiline --terse -f all dev show eth0
|
||||
lang: pl_PL.UTF-8
|
||||
returncode: 0
|
||||
stdout: 1992 bytes
|
||||
stdout: 2055 bytes
|
||||
>>>
|
||||
GENERAL.DEVICE:eth0
|
||||
GENERAL.TYPE:ethernet
|
||||
|
|
@ -55,10 +55,10 @@ DHCP6.OPTION[1]:dhcp-6-opt-1 = val-1
|
|||
DHCP6.OPTION[2]:dhcp-6-opt-5 = val-5
|
||||
DHCP6.OPTION[3]:dhcp-6-opt-6 = val-6
|
||||
DHCP6.OPTION[4]:dhcp-6-opt-8 = val-8
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/{2,1,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]:(null) | (null)
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]:<invisible> | /org/freedesktop/NetworkManager/Settings/Connection/3
|
||||
|
||||
<<<
|
||||
stderr: 0 bytes
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/415
|
|||
cmd: $NMCLI --mode multiline --terse --color yes -f all dev show eth0
|
||||
lang: C
|
||||
returncode: 0
|
||||
stdout: 1979 bytes
|
||||
stdout: 2042 bytes
|
||||
>>>
|
||||
GENERAL.DEVICE:eth0
|
||||
GENERAL.TYPE:ethernet
|
||||
|
|
@ -55,10 +55,10 @@ DHCP6.OPTION[1]:dhcp-6-opt-1 = val-1
|
|||
DHCP6.OPTION[2]:dhcp-6-opt-5 = val-5
|
||||
DHCP6.OPTION[3]:dhcp-6-opt-6 = val-6
|
||||
DHCP6.OPTION[4]:dhcp-6-opt-8 = val-8
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/{2,1,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]:(null) | (null)
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]:<invisible> | /org/freedesktop/NetworkManager/Settings/Connection/3
|
||||
|
||||
<<<
|
||||
stderr: 0 bytes
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:887:test_003()/416
|
|||
cmd: $NMCLI --mode multiline --terse --color yes -f all dev show eth0
|
||||
lang: pl_PL.UTF-8
|
||||
returncode: 0
|
||||
stdout: 1992 bytes
|
||||
stdout: 2055 bytes
|
||||
>>>
|
||||
GENERAL.DEVICE:eth0
|
||||
GENERAL.TYPE:ethernet
|
||||
|
|
@ -55,10 +55,10 @@ DHCP6.OPTION[1]:dhcp-6-opt-1 = val-1
|
|||
DHCP6.OPTION[2]:dhcp-6-opt-5 = val-5
|
||||
DHCP6.OPTION[3]:dhcp-6-opt-6 = val-6
|
||||
DHCP6.OPTION[4]:dhcp-6-opt-8 = val-8
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/{2,1,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]:(null) | (null)
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS:/org/freedesktop/NetworkManager/Settings/Connection/{1,2,3}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]:5fcfd6d7-1e63-3332-8826-a7eda103792d | con-1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[2]:UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[3]:<invisible> | /org/freedesktop/NetworkManager/Settings/Connection/3
|
||||
|
||||
<<<
|
||||
stderr: 0 bytes
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:957:test_004()/35
|
|||
cmd: $NMCLI -f all dev show wlan0
|
||||
lang: C
|
||||
returncode: 0
|
||||
stdout: 4600 bytes
|
||||
stdout: 4611 bytes
|
||||
>>>
|
||||
GENERAL.DEVICE: wlan0
|
||||
GENERAL.TYPE: wifi
|
||||
|
|
@ -91,7 +91,7 @@ DHCP6.OPTION[2]: dhcp-6-opt-2 = val-2
|
|||
DHCP6.OPTION[3]: dhcp-6-opt-3 = val-3
|
||||
DHCP6.OPTION[4]: dhcp-6-opt-4 = val-4
|
||||
DHCP6.OPTION[5]: dhcp-6-opt-5 = val-5
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/{2}
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{2}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
|
||||
<<<
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:957:test_004()/36
|
|||
cmd: $NMCLI -f all dev show wlan0
|
||||
lang: pl_PL.UTF-8
|
||||
returncode: 0
|
||||
stdout: 4643 bytes
|
||||
stdout: 4654 bytes
|
||||
>>>
|
||||
GENERAL.DEVICE: wlan0
|
||||
GENERAL.TYPE: wifi
|
||||
|
|
@ -91,7 +91,7 @@ DHCP6.OPTION[2]: dhcp-6-opt-2 = val-2
|
|||
DHCP6.OPTION[3]: dhcp-6-opt-3 = val-3
|
||||
DHCP6.OPTION[4]: dhcp-6-opt-4 = val-4
|
||||
DHCP6.OPTION[5]: dhcp-6-opt-5 = val-5
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/{2}
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{2}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
|
||||
<<<
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:984:test_004()/55
|
|||
cmd: $NMCLI -f ALL device show wlan0
|
||||
lang: C
|
||||
returncode: 0
|
||||
stdout: 4600 bytes
|
||||
stdout: 4611 bytes
|
||||
>>>
|
||||
GENERAL.DEVICE: wlan0
|
||||
GENERAL.TYPE: wifi
|
||||
|
|
@ -91,7 +91,7 @@ DHCP6.OPTION[2]: dhcp-6-opt-2 = val-2
|
|||
DHCP6.OPTION[3]: dhcp-6-opt-3 = val-3
|
||||
DHCP6.OPTION[4]: dhcp-6-opt-4 = val-4
|
||||
DHCP6.OPTION[5]: dhcp-6-opt-5 = val-5
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/{2}
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{2}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
|
||||
<<<
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:984:test_004()/56
|
|||
cmd: $NMCLI -f ALL device show wlan0
|
||||
lang: pl_PL.UTF-8
|
||||
returncode: 0
|
||||
stdout: 4643 bytes
|
||||
stdout: 4654 bytes
|
||||
>>>
|
||||
GENERAL.DEVICE: wlan0
|
||||
GENERAL.TYPE: wifi
|
||||
|
|
@ -91,7 +91,7 @@ DHCP6.OPTION[2]: dhcp-6-opt-2 = val-2
|
|||
DHCP6.OPTION[3]: dhcp-6-opt-3 = val-3
|
||||
DHCP6.OPTION[4]: dhcp-6-opt-4 = val-4
|
||||
DHCP6.OPTION[5]: dhcp-6-opt-5 = val-5
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/{2}
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{2}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
|
||||
<<<
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:988:test_004()/59
|
|||
cmd: $NMCLI -f GENERAL,CAPABILITIES,WIFI-PROPERTIES,AP,WIRED-PROPERTIES,WIMAX-PROPERTIES,NSP,IP4,DHCP4,IP6,DHCP6,BOND,TEAM,BRIDGE,VLAN,BLUETOOTH,CONNECTIONS device show wlan0
|
||||
lang: C
|
||||
returncode: 0
|
||||
stdout: 4600 bytes
|
||||
stdout: 4611 bytes
|
||||
>>>
|
||||
GENERAL.DEVICE: wlan0
|
||||
GENERAL.TYPE: wifi
|
||||
|
|
@ -91,7 +91,7 @@ DHCP6.OPTION[2]: dhcp-6-opt-2 = val-2
|
|||
DHCP6.OPTION[3]: dhcp-6-opt-3 = val-3
|
||||
DHCP6.OPTION[4]: dhcp-6-opt-4 = val-4
|
||||
DHCP6.OPTION[5]: dhcp-6-opt-5 = val-5
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/{2}
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{2}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
|
||||
<<<
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:988:test_004()/60
|
|||
cmd: $NMCLI -f GENERAL,CAPABILITIES,WIFI-PROPERTIES,AP,WIRED-PROPERTIES,WIMAX-PROPERTIES,NSP,IP4,DHCP4,IP6,DHCP6,BOND,TEAM,BRIDGE,VLAN,BLUETOOTH,CONNECTIONS device show wlan0
|
||||
lang: pl_PL.UTF-8
|
||||
returncode: 0
|
||||
stdout: 4643 bytes
|
||||
stdout: 4654 bytes
|
||||
>>>
|
||||
GENERAL.DEVICE: wlan0
|
||||
GENERAL.TYPE: wifi
|
||||
|
|
@ -91,7 +91,7 @@ DHCP6.OPTION[2]: dhcp-6-opt-2 = val-2
|
|||
DHCP6.OPTION[3]: dhcp-6-opt-3 = val-3
|
||||
DHCP6.OPTION[4]: dhcp-6-opt-4 = val-4
|
||||
DHCP6.OPTION[5]: dhcp-6-opt-5 = val-5
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/{2}
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{2}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
|
||||
<<<
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:984:test_004()/73
|
|||
cmd: $NMCLI --color yes -f ALL device show wlan0
|
||||
lang: C
|
||||
returncode: 0
|
||||
stdout: 4816 bytes
|
||||
stdout: 4827 bytes
|
||||
>>>
|
||||
GENERAL.DEVICE: wlan0
|
||||
GENERAL.TYPE: wifi
|
||||
|
|
@ -91,7 +91,7 @@ DHCP6.OPTION[2]: dhcp-6-opt-2 = val-2
|
|||
DHCP6.OPTION[3]: dhcp-6-opt-3 = val-3
|
||||
DHCP6.OPTION[4]: dhcp-6-opt-4 = val-4
|
||||
DHCP6.OPTION[5]: dhcp-6-opt-5 = val-5
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/{2}
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{2}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
|
||||
<<<
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:984:test_004()/74
|
|||
cmd: $NMCLI --color yes -f ALL device show wlan0
|
||||
lang: pl_PL.UTF-8
|
||||
returncode: 0
|
||||
stdout: 4859 bytes
|
||||
stdout: 4870 bytes
|
||||
>>>
|
||||
GENERAL.DEVICE: wlan0
|
||||
GENERAL.TYPE: wifi
|
||||
|
|
@ -91,7 +91,7 @@ DHCP6.OPTION[2]: dhcp-6-opt-2 = val-2
|
|||
DHCP6.OPTION[3]: dhcp-6-opt-3 = val-3
|
||||
DHCP6.OPTION[4]: dhcp-6-opt-4 = val-4
|
||||
DHCP6.OPTION[5]: dhcp-6-opt-5 = val-5
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/{2}
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{2}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
|
||||
<<<
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:988:test_004()/77
|
|||
cmd: $NMCLI --color yes -f GENERAL,CAPABILITIES,WIFI-PROPERTIES,AP,WIRED-PROPERTIES,WIMAX-PROPERTIES,NSP,IP4,DHCP4,IP6,DHCP6,BOND,TEAM,BRIDGE,VLAN,BLUETOOTH,CONNECTIONS device show wlan0
|
||||
lang: C
|
||||
returncode: 0
|
||||
stdout: 4816 bytes
|
||||
stdout: 4827 bytes
|
||||
>>>
|
||||
GENERAL.DEVICE: wlan0
|
||||
GENERAL.TYPE: wifi
|
||||
|
|
@ -91,7 +91,7 @@ DHCP6.OPTION[2]: dhcp-6-opt-2 = val-2
|
|||
DHCP6.OPTION[3]: dhcp-6-opt-3 = val-3
|
||||
DHCP6.OPTION[4]: dhcp-6-opt-4 = val-4
|
||||
DHCP6.OPTION[5]: dhcp-6-opt-5 = val-5
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/{2}
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{2}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
|
||||
<<<
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:988:test_004()/78
|
|||
cmd: $NMCLI --color yes -f GENERAL,CAPABILITIES,WIFI-PROPERTIES,AP,WIRED-PROPERTIES,WIMAX-PROPERTIES,NSP,IP4,DHCP4,IP6,DHCP6,BOND,TEAM,BRIDGE,VLAN,BLUETOOTH,CONNECTIONS device show wlan0
|
||||
lang: pl_PL.UTF-8
|
||||
returncode: 0
|
||||
stdout: 4859 bytes
|
||||
stdout: 4870 bytes
|
||||
>>>
|
||||
GENERAL.DEVICE: wlan0
|
||||
GENERAL.TYPE: wifi
|
||||
|
|
@ -91,7 +91,7 @@ DHCP6.OPTION[2]: dhcp-6-opt-2 = val-2
|
|||
DHCP6.OPTION[3]: dhcp-6-opt-3 = val-3
|
||||
DHCP6.OPTION[4]: dhcp-6-opt-4 = val-4
|
||||
DHCP6.OPTION[5]: dhcp-6-opt-5 = val-5
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/{2}
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{2}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
|
||||
<<<
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:984:test_004()/91
|
|||
cmd: $NMCLI --pretty -f ALL device show wlan0
|
||||
lang: C
|
||||
returncode: 0
|
||||
stdout: 5691 bytes
|
||||
stdout: 5702 bytes
|
||||
>>>
|
||||
===============================================================================
|
||||
Device details (wlan0)
|
||||
|
|
@ -104,7 +104,7 @@ DHCP6.OPTION[3]: dhcp-6-opt-3 = val-3
|
|||
DHCP6.OPTION[4]: dhcp-6-opt-4 = val-4
|
||||
DHCP6.OPTION[5]: dhcp-6-opt-5 = val-5
|
||||
-------------------------------------------------------------------------------
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/{2}
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{2}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
-------------------------------------------------------------------------------
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:984:test_004()/92
|
|||
cmd: $NMCLI --pretty -f ALL device show wlan0
|
||||
lang: pl_PL.UTF-8
|
||||
returncode: 0
|
||||
stdout: 5741 bytes
|
||||
stdout: 5752 bytes
|
||||
>>>
|
||||
===============================================================================
|
||||
Informacje o urządzeniu (wlan0)
|
||||
|
|
@ -104,7 +104,7 @@ DHCP6.OPTION[3]: dhcp-6-opt-3 = val-3
|
|||
DHCP6.OPTION[4]: dhcp-6-opt-4 = val-4
|
||||
DHCP6.OPTION[5]: dhcp-6-opt-5 = val-5
|
||||
-------------------------------------------------------------------------------
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/{2}
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{2}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
-------------------------------------------------------------------------------
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:988:test_004()/95
|
|||
cmd: $NMCLI --pretty -f GENERAL,CAPABILITIES,WIFI-PROPERTIES,AP,WIRED-PROPERTIES,WIMAX-PROPERTIES,NSP,IP4,DHCP4,IP6,DHCP6,BOND,TEAM,BRIDGE,VLAN,BLUETOOTH,CONNECTIONS device show wlan0
|
||||
lang: C
|
||||
returncode: 0
|
||||
stdout: 5691 bytes
|
||||
stdout: 5702 bytes
|
||||
>>>
|
||||
===============================================================================
|
||||
Device details (wlan0)
|
||||
|
|
@ -104,7 +104,7 @@ DHCP6.OPTION[3]: dhcp-6-opt-3 = val-3
|
|||
DHCP6.OPTION[4]: dhcp-6-opt-4 = val-4
|
||||
DHCP6.OPTION[5]: dhcp-6-opt-5 = val-5
|
||||
-------------------------------------------------------------------------------
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/{2}
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{2}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
-------------------------------------------------------------------------------
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:988:test_004()/96
|
|||
cmd: $NMCLI --pretty -f GENERAL,CAPABILITIES,WIFI-PROPERTIES,AP,WIRED-PROPERTIES,WIMAX-PROPERTIES,NSP,IP4,DHCP4,IP6,DHCP6,BOND,TEAM,BRIDGE,VLAN,BLUETOOTH,CONNECTIONS device show wlan0
|
||||
lang: pl_PL.UTF-8
|
||||
returncode: 0
|
||||
stdout: 5741 bytes
|
||||
stdout: 5752 bytes
|
||||
>>>
|
||||
===============================================================================
|
||||
Informacje o urządzeniu (wlan0)
|
||||
|
|
@ -104,7 +104,7 @@ DHCP6.OPTION[3]: dhcp-6-opt-3 = val-3
|
|||
DHCP6.OPTION[4]: dhcp-6-opt-4 = val-4
|
||||
DHCP6.OPTION[5]: dhcp-6-opt-5 = val-5
|
||||
-------------------------------------------------------------------------------
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/{2}
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{2}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
-------------------------------------------------------------------------------
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:984:test_004()/109
|
|||
cmd: $NMCLI --pretty --color yes -f ALL device show wlan0
|
||||
lang: C
|
||||
returncode: 0
|
||||
stdout: 5907 bytes
|
||||
stdout: 5918 bytes
|
||||
>>>
|
||||
===============================================================================
|
||||
Device details (wlan0)
|
||||
|
|
@ -104,7 +104,7 @@ DHCP6.OPTION[3]: dhcp-6-opt-3 = val-3
|
|||
DHCP6.OPTION[4]: dhcp-6-opt-4 = val-4
|
||||
DHCP6.OPTION[5]: dhcp-6-opt-5 = val-5
|
||||
-------------------------------------------------------------------------------
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/{2}
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{2}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
-------------------------------------------------------------------------------
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ location: clients/tests/test-client.py:984:test_004()/110
|
|||
cmd: $NMCLI --pretty --color yes -f ALL device show wlan0
|
||||
lang: pl_PL.UTF-8
|
||||
returncode: 0
|
||||
stdout: 5957 bytes
|
||||
stdout: 5968 bytes
|
||||
>>>
|
||||
===============================================================================
|
||||
Informacje o urządzeniu (wlan0)
|
||||
|
|
@ -104,7 +104,7 @@ DHCP6.OPTION[3]: dhcp-6-opt-3 = val-3
|
|||
DHCP6.OPTION[4]: dhcp-6-opt-4 = val-4
|
||||
DHCP6.OPTION[5]: dhcp-6-opt-5 = val-5
|
||||
-------------------------------------------------------------------------------
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/{2}
|
||||
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/Connection/{2}
|
||||
CONNECTIONS.AVAILABLE-CONNECTIONS[1]: UUID-con-xx1-REPLACED-REPLACED-REPLA | con-xx1
|
||||
-------------------------------------------------------------------------------
|
||||
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue