次の方法で共有


TeapConfig 複合型

TeapConfig 複合型は、RFC7170 で指定されている EAP-TEAP に必要な EAP 構成を指定します。

<xs:complexType name="TeapConfig">
    <xs:sequence>
        <xs:element name="ServerValidation" type="ServerValidationParameters" minOccurs="0"/>
        <xs:element name="Phase2Authentication" type="Phase2AuthenticationParameters" minOccurs="0"/>
        <xs:element name="Phase1Identity"  type="Phase1IdentityParameters" minOccurs="0"/>
        <xs:any processContents="lax" minOccurs="0" maxOccurs="unbounded" namespace="##other"/>
    </xs:sequence>
</xs:complexType>

解説

TeapConfig 要素が必要です。

ServerValidation は、 ServerValidationParameters 型の省略可能な要素です。

Phase2Authentication は、 Phase2AuthenticationParameters 型の省略可能な要素です。

Phase1Identity は、 Phase1IdentityParameters 型の省略可能な要素です。

関連項目