Phase2AuthenticationParameters 複合型

Phase2AuthenticationParameters 複合型は、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>

注釈

Phase2AuthenticationParameters 要素は省略可能です。

Eap は、内部 EAP メソッドのパラメーターを含む BaseEap 型の要素です。

PAPAuthentication は、フェーズ 1 トンネルが確立された後に TTLS が PAP 認証プロトコルを試行することを示す空の文字列です。

CHAPAuthentication は、フェーズ 1 トンネルが確立された後に TTLS が CHAP 認証プロトコルを試行することを示す空の文字列です。

MSCHAPAuthentication は、フェーズ 1 トンネルが確立された後に TTLS が MSCHAP 認証プロトコルを試行することを示す空の文字列です。

MSCHAPv2Authentication は、フェーズ 1 トンネルが確立された後に TTLS が MSCHAPv2 認証プロトコルを試行することを示す MSCHAPv2AuthenticationParameters 型の要素です。 MSCHAPv2AuthenticationParameters 型は複合要素です。

関連項目