Hotspot2 (WLANProfile) 元素

扩展 WLAN 配置文件架构 v1 以支持热点 2.0 网络。 Hotspot 2.0 允许使用服务提供商网络中的现有凭据和成员身份自动连接到公共Wi-Fi服务。 服务提供商指定如何使用新的架构元素建立连接,以描述要使用的网络以及如何向它们进行身份验证。

<xs:element name="Hotspot2"
    minOccurs="0"
 >
    <xs:complexType>
        <xs:sequence>
            <xs:element name="DomainName"
                minOccurs="0"
             >
                <xs:simpleType>
                    <xs:restriction base="xs:string">
                        <xs:minLength value="1">
                        <xs:maxLength value="255">
                    </xs:restriction>
                </xs:simpleType>
            </xs:element>
            <xs:element name="NAIRealm"
                minOccurs="0"
                ...
             />
            <xs:element name="Network3GPP"
                minOccurs="0"
                ...
             />
            <xs:element name="RoamingConsortium"
                minOccurs="0"
                ...
             />
        </xs:sequence>
    </xs:complexType>
</xs:element>

父元素

子元素

元素 类型 说明
DomainName 设备的“家庭网络提供商”的域名,标识网络的运营商。
NAIRealm 网络访问标识符列表 (NAI) 领域标识符。
Network3GPP 公共土地移动网络列表 (PLMN) ID。
RoamingConsortium IEEE) 分配的 OUI (组织唯一标识符的列表。

DomainName

设备的“家庭网络提供商”的域名,标识网络的运营商。

示例

<Hotspot2>
  <DomainName>contoso.com</DomainName>
  <NAIRealm>
    <name>test1@contoso.com</name>
    <name>test2@contoso.com</name>
  </NAIRealm>
  <Network3GPP>
    <PLMNID>12345</PLMNID>
    <PLMNID>123456</PLMNID>
  </Network3GPP>
  <RoamingConsortium>
    <OUI>00AABB</OUI>
    <OUI>001122</OUI>
  </RoamingConsortium>
</Hotspot2>

要求

TBD