TeapConfig Complex Type

The TeapConfig complex type specifies the EAP configuration required for EAP-TEAP as specified in RFC7170.

<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>

Remarks

The TeapConfig element is required.

ServerValidation is an optional element of type ServerValidationParameters.

Phase2Authentication is an optional element of the Phase2AuthenticationParameters type.

Phase1Identity is an optional element of Phase1IdentityParameters type.

See also