IPWorks Auth 2020 Python Edition

Questions / Feedback?

eap_anonymous_identity Property

The identity to use when using PEAP or EAP-TLS.

Syntax

def get_eap_anonymous_identity() -> str: ...
def set_eap_anonymous_identity(value: str) -> None: ...

eap_anonymous_identity = property(get_eap_anonymous_identity, set_eap_anonymous_identity)

Default Value

"anonymous"

Remarks

This property specifies the initital identity to use when establishing a secure connection using PEAP. When auth_mechanism is set to amPEAPv0 or emEAPTLS the connection begins in plaintext. This property specifies the user name (if any) that is sent in the initial plaintext request. This allows the true identity of the user to be hidden.

If set, the value will be sent in the plaintext connection request. If not set (empty string) the user will be sent. Authentication servers may make use of a value that includes the domain to which the user will authenticate, such as anonymous@example.com. In that case the user's identity is still hidden, however the authentication server will have knowledge of the domain for the user which it may make use of.

Once a secure connection is established the user's true identity is sent to the authentication server over the TLS encrypted connection. This property specifies only the identity sent in the initial plaintext request.

The default value is anonymous.

This setting is only applicable when auth_mechanism is set to amPEAPv0 or amEAPTLS.

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks Auth 2020 Python Edition - Version 20.0 [Build 8155]