From 2f8694c43993f6a6aec2780f1e8d1e1a3cf34c09 Mon Sep 17 00:00:00 2001 From: liaohanqin Date: Tue, 7 Feb 2023 10:21:32 +0800 Subject: nmcli: add WPA-EAP-SUITE-B-192 to SECURITY --- src/nmcli/devices.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/nmcli/devices.c b/src/nmcli/devices.c index 31e7d8be4d..6e7affdf18 100644 --- a/src/nmcli/devices.c +++ b/src/nmcli/devices.c @@ -1376,6 +1376,10 @@ fill_output_access_point(NMAccessPoint *ap, const APInfo *info) || (rsn_flags & NM_802_11_AP_SEC_KEY_MGMT_802_1X)) { g_string_append(security_str, "802.1X "); } + if ((wpa_flags & NM_802_11_AP_SEC_KEY_MGMT_EAP_SUITE_B_192) + || (rsn_flags & NM_802_11_AP_SEC_KEY_MGMT_EAP_SUITE_B_192)) { + g_string_append(security_str, "WPA-EAP-SUITE-B-192 "); + } } if (security_str->len > 0) -- cgit v1.2.3