TypePy

SCPI Command :

CONFigure:WLAN:SIGNaling<instance>:CONNection:SECurity:TYPE
class TypePyCls[source]

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

class TypePyStruct[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 GHz and 5 GHz bands) AUTO: automatic selection of any supported security type (station mode only) WPERsonal: WPA personal (only for the 2.4 GHz and 5 GHz bands) WENTerprise: WPA enterprise (only for the 2.4 GHz and 5 GHz bands) W2Personal: WPA2 personal (only for the 2.4 GHz and 5 GHz bands) W2ENterprise: WPA2 enterprise (only for the 2.4 GHz and 5 GHz bands) OWE: opportunistic wireless encryption (only for 6 GHz band) W3Personal: WPA3 personal (all bands) W3ENterprise: WPA3 enterprise (all bands)

  • End_Part: str: string Last passphrase character as string

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

Selects the WLAN security mechanism to be used and defines the last character of 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 TypePyStruct structure arguments.

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

Selects the WLAN security mechanism to be used and defines the last character of 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 GHz and 5 GHz bands) AUTO: automatic selection of any supported security type (station mode only) WPERsonal: WPA personal (only for the 2.4 GHz and 5 GHz bands) WENTerprise: WPA enterprise (only for the 2.4 GHz and 5 GHz bands) W2Personal: WPA2 personal (only for the 2.4 GHz and 5 GHz bands) W2ENterprise: WPA2 enterprise (only for the 2.4 GHz and 5 GHz bands) OWE: opportunistic wireless encryption (only for 6 GHz band) W3Personal: WPA3 personal (all bands) W3ENterprise: WPA3 enterprise (all bands)

param end_part:

string Last passphrase character as string