Kalgo

SCPI Command :

CONFigure:WLAN:SIGNaling<instance>:CONNection:SECurity:EAKA:KALGo
class KalgoCls[source]

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

class KalgoStruct[source]

Response structure. Fields:

  • Ki: str: string Secret key as string with 32 hexadecimal digits

  • Opc: str: string Operator variant key as string with 32 hexadecimal digits

  • Rand: str: string Random number as string with 32 hexadecimal digits

  • Algorithm: enums.AuthAlgorithm: MILenage | XOR Authentication algorithm to be used

get() KalgoStruct[source]
# SCPI: CONFigure:WLAN:SIGNaling<instance>:CONNection:SECurity:EAKA:KALGo
value: KalgoStruct = driver.configure.connection.security.eaka.kalgo.get()

Configures EAP-AKA on the internal RADIUS server.

return:

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

set(ki: str, opc: str, rand: str, algorithm: AuthAlgorithm) None[source]
# SCPI: CONFigure:WLAN:SIGNaling<instance>:CONNection:SECurity:EAKA:KALGo
driver.configure.connection.security.eaka.kalgo.set(ki = 'abc', opc = 'abc', rand = 'abc', algorithm = enums.AuthAlgorithm.MILenage)

Configures EAP-AKA on the internal RADIUS server.

param ki:

string Secret key as string with 32 hexadecimal digits

param opc:

string Operator variant key as string with 32 hexadecimal digits

param rand:

string Random number as string with 32 hexadecimal digits

param algorithm:

MILenage | XOR Authentication algorithm to be used