我的 wpa_supplicant.conf 内容对于 WPA3-Personal 身份验证是否正确?

我的 wpa_supplicant.conf 内容对于 WPA3-Personal 身份验证是否正确?

我使用的是 Debian 12 的最新内核,又名 Bookworm,并请您建议 wpa_supplicant 的内容(见下文)是否正确、是否缺少相关细节或是否应该删除某些内容。

下面是我的 /etc/wpa_supplicant/wpa_supplicant.conf 版本,用于将我的计算机连接到仅使用 WPA3-Personal 身份验证的无线路由器。

# Connections to pure WPA3-Personal access points

# MAIN section

# ISO/IEC alpha2 country code in which the device is operating

country=us

# Giving configuration update rights to wpa_cli

ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=wheel
update_config=1

# According to Archlinux wiki, Intel WiFi 6 cards may need sae_pwe=1 in the main (non network) section of the config file

sae_pwe=1


# NETWORK section

network={
    ssid="MYSSID"
    key_mgmt=SAE
    sae_password="the.literal.wifi.password"
        ieee80211w=1
}

group=CCMP
pairwise=CCMP

问题:

(1)我应该将ieee80211w的值设置为1还是2?

(2)是否需要group=CCMP和pairwise=CCMP?

PS: 除了 Archlinux 的 wiki 标题wpa_supplicant其中有一小节专门介绍了 WPA3-SAE,以下在线文章未提供采用 WPA3-Personal 身份验证的 wpa_supplicant.conf 的示例:

wpa_supplicant.conf(5) - Linux 手册页

wpa_supplicant.conf

感谢您的帮助。

为了清晰起见,进行了编辑:我的所有硬件和软件都支持 WPA3-Personal 和 Wi-Fi 6。我的电脑有一个支持 WPA3-Personal 的英特尔 Wi-Fi 6 芯片组。

相关内容