Phase2AuthenticationParameters Complex Type

The Phase2AuthenticationParameters complex type specifies the authentication information for EAP-TTLS.

<xs:complexType name="Phase2AuthenticationParameters">
    <xs:sequence>
        <xs:choice>
            <xs:element ref="baseEap:Eap" minOccurs="0" maxOccurs="unbounded"/>
            <xs:element name="PAPAuthentication" type="emptyString" minOccurs="0"/>
            <xs:element name="CHAPAuthentication" type="emptyString" minOccurs="0"/>
            <xs:element name="MSCHAPAuthentication" type="emptyString" minOccurs="0"/>
            <xs:element name="MSCHAPv2Authentication" type="MSCHAPv2AuthenticationParameters" minOccurs="0"/>
        </xs:choice>
    </xs:sequence>
</xs:complexType>

Remarks

The Phase2AuthenticationParameters element is optional.

Eap is an element of type BaseEap containing parameters for the inner EAP method.

PAPAuthentication is an empty string whose presence indicates that TTLS will attempt PAP authentication protocol after the phase 1 tunnel is established.

CHAPAuthentication is an empty string whose presence indicates that TTLS will attempt CHAP authentication protocol after the phase 1 tunnel is established.

MSCHAPAuthentication is an empty string whose presence indicates that TTLS will attempt MSCHAP authentication protocol after the phase 1 tunnel is established.

MSCHAPv2Authentication is an element of MSCHAPv2AuthenticationParameters type whose presence indicates that TTLS will attempt MSCHAPv2 authentication protocol after the phase 1 tunnel is established. The MSCHAPv2AuthenticationParameters type is a complex element.

See also