EAP (Extensible Authentication Protocol) configuration

interface EapConfiguration {
    anonymousIdentity?: string;
    cert?: string;
    identity: string;
    password: string;
    phaseOneMethod: null | EapPhaseOneMethod;
    phaseTwoMethod: null | EapPhaseTwoMethod;
}

Properties

anonymousIdentity?: string
cert?: string
identity: string
password: string
phaseOneMethod: null | EapPhaseOneMethod
phaseTwoMethod: null | EapPhaseTwoMethod