共用方式為


過渡模式配置範本 WPA3-Personal

此範例配置檔會使用密碼型安全密鑰交換通訊協定 (SAE) 進行網路驗證。 此範例配置檔已設定為使用 WPA3-Personal。 它也包含轉換模式,允許僅支援 WPA2-PSK 的用戶端使用相同的配置檔連線到網路(假設網路已設定為也支援 WPA3 轉換模式)。

共用金鑰 (TestPassword1!) 會以純文字格式包含在此範例設定檔中,因此不會提示用戶端在第一次連線時輸入金鑰。 您可以省略安全性元素的 sharedKey 子元素,以改為要求提示。

<?xml version="1.0"?>
<WLANProfile xmlns="http://www.microsoft.com/networking/WLAN/profile/v1">
    <name>SampleWpa3TransitionProfile</name>
    <SSIDConfig>
        <SSID>
            <name>SampleWpa3TransitionProfile</name>
        </SSID>
    </SSIDConfig>
    <connectionType>ESS</connectionType>
    <connectionMode>auto</connectionMode>
    <MSM>
        <security>
            <authEncryption>
                <authentication>WPA3SAE</authentication>
                <encryption>AES</encryption>
                <useOneX>false</useOneX>
                <transitionMode xmlns="http://www.microsoft.com/networking/WLAN/profile/v4">true</transitionMode>
            </authEncryption>
            <sharedKey>
                <keyType>passPhrase</keyType>
                <protected>false</protected>
                <keyMaterial>TestPassword1!</keyMaterial>
            </sharedKey>
        </security>
    </MSM>
</WLANProfile>