共用方式為


WPA2-Personal設定檔範例

此範例設定檔會使用預先共用金鑰進行網路驗證。 金鑰會與用戶端和存取點共用。 此範例設定檔設定為使用在個人模式中執行的 Wi-Fi Protected Access 2 安全性, (WPA2-Personal) 。 進階加密標準 (AES) 加密類型用於加密。

已安裝無線區域網路 服務的 Windows 7 和 Windows Server 2008 R2: Windows 7 和 Windows Server 2008 R2 上會實作變更,並已安裝無線區域網路 服務以優化無線網路效能。 未在無線區域網路 設定檔中設定這個專案時 ,autoSwitch 的預設設定已變更。 預設設定會在已安裝無線區域網路 服務的 Windows 7 和 Windows Server 2008 R2 上變更為 「false」。 Windows Server 2008 和 Windows Vista 上的預設設定為 「true」。 如需詳細資訊,請參閱 autoSwitch 架構元素描述。

Windows XP with SP3 和 Wireless LAN API for Windows XP with SP2:會忽略 WLANProfile專案的名稱子系。 設定檔的名稱,如同儲存在設定檔存放區中,衍生自SSID元素的名稱子系。

<?xml version="1.0" encoding="US-ASCII"?>
<WLANProfile xmlns="https://www.microsoft.com/networking/WLAN/profile/v1">
    <name>SampleWPA2PSK</name>
    <SSIDConfig>
        <SSID>
            <name>SampleWPA2PSK</name>
        </SSID>
    </SSIDConfig>
    <connectionType>ESS</connectionType>
    <connectionMode>auto</connectionMode>
    <autoSwitch>false</autoSwitch>
    <MSM>
        <security>
            <authEncryption>
                <authentication>WPA2PSK</authentication>
                <encryption>AES</encryption>
                <useOneX>false</useOneX>
            </authEncryption>
        </security>
    </MSM>
</WLANProfile>

此範例設定檔已省略共用金鑰。 如果您嘗試使用此範例設定檔來連線到網路,系統會提示您輸入共用金鑰。 您可以將sharedKey子項目新增至緊接在authEncryption元素之後的安全性元素,以避免出現此提示。

下列程式碼片段顯示包含未加密金鑰的 sharedKey 元素。 您必須先將批註 <!-- insert key here --> 取代為實際的未加密金鑰,才能在設定檔中使用此程式碼片段。

<sharedKey>
    <keyType>passPhrase</keyType>
    <protected>false</protected>
    <keyMaterial> <!-- insert key here --> </keyMaterial>
</sharedKey>

無線設定檔範例