Passphrase

SCPI Command :

CONFigure:WLAN:SIGNaling<instance>:CONNection:SECurity:PASSphrase
class PassphraseCls[source]

Passphrase commands group definition. 1 total commands, 0 Subgroups, 1 group commands

class PassphraseStruct[source]

Response structure. Fields:

  • Security_Type: enums.SecurityType: DISabled | AUTO | WPERsonal | WENTerprise | W2Personal | W2ENterprise | OWE | W3Personal | W3ENterprise DISabled: no security (only for the 2.4 and 5 GHz bands) AUTO: automatic selection of any supported security type WPERsonal: WPA personal WENTerprise: WPA enterprise W2Personal: WPA2 personal W2ENterprise: WPA2 enterprise OWE: opportunistic wireless encryption with protected management frames (PMF) W3Personal: WPA3 personal W3ENterprise: WPA3 enterprise

  • Passphrase: str: string Passphrase for AP operation mode as a string, 1 to 63 characters

get() PassphraseStruct[source]
# SCPI: CONFigure:WLAN:SIGNaling<instance>:CONNection:SECurity:PASSphrase
value: PassphraseStruct = driver.configure.connection.security.passphrase.get()

Selects the WLAN security mechanism to be used and defines the passphrase for WPA/WPA2/WPA3 personal. For supported values depending on operation mode, see Table ‘Supported security mechanisms’.

return:

structure: for return value, see the help for PassphraseStruct structure arguments.

set(security_type: SecurityType, passphrase: str = None) None[source]
# SCPI: CONFigure:WLAN:SIGNaling<instance>:CONNection:SECurity:PASSphrase
driver.configure.connection.security.passphrase.set(security_type = enums.SecurityType.AUTO, passphrase = 'abc')

Selects the WLAN security mechanism to be used and defines the passphrase for WPA/WPA2/WPA3 personal. For supported values depending on operation mode, see Table ‘Supported security mechanisms’.

param security_type:

DISabled | AUTO | WPERsonal | WENTerprise | W2Personal | W2ENterprise | OWE | W3Personal | W3ENterprise DISabled: no security (only for the 2.4 and 5 GHz bands) AUTO: automatic selection of any supported security type WPERsonal: WPA personal WENTerprise: WPA enterprise W2Personal: WPA2 personal W2ENterprise: WPA2 enterprise OWE: opportunistic wireless encryption with protected management frames (PMF) W3Personal: WPA3 personal W3ENterprise: WPA3 enterprise

param passphrase:

string Passphrase for AP operation mode as a string, 1 to 63 characters