Rserver

SCPI Commands :

CONFigure:WLAN:SIGNaling<instance>:CONNection:SECurity:RSERver:MODE
CONFigure:WLAN:SIGNaling<instance>:CONNection:SECurity:RSERver:SKEY
CONFigure:WLAN:SIGNaling<instance>:CONNection:SECurity:RSERver:PNUMber
class RserverCls[source]

Rserver commands group definition. 4 total commands, 1 Subgroups, 3 group commands

get_mode() SourceInt[source]
# SCPI: CONFigure:WLAN:SIGNaling<instance>:CONNection:SECurity:RSERver:MODE
value: enums.SourceInt = driver.configure.connection.security.rserver.get_mode()

Selects the RADIUS server mode for WPA/WPA2 enterprise.

return:

mode: INTernal | EXTernal

get_pnumber() int[source]
# SCPI: CONFigure:WLAN:SIGNaling<instance>:CONNection:SECurity:RSERver:PNUMber
value: int = driver.configure.connection.security.rserver.get_pnumber()

Sets the UDP port number of an external RADIUS server.

return:

number: integer Range: 1 to 65535

get_skey() str[source]
# SCPI: CONFigure:WLAN:SIGNaling<instance>:CONNection:SECurity:RSERver:SKEY
value: str = driver.configure.connection.security.rserver.get_skey()

Sets the shared key of an external RADIUS server.

return:

string: string Shared key as string

set_mode(mode: SourceInt) None[source]
# SCPI: CONFigure:WLAN:SIGNaling<instance>:CONNection:SECurity:RSERver:MODE
driver.configure.connection.security.rserver.set_mode(mode = enums.SourceInt.EXTernal)

Selects the RADIUS server mode for WPA/WPA2 enterprise.

param mode:

INTernal | EXTernal

set_pnumber(number: int) None[source]
# SCPI: CONFigure:WLAN:SIGNaling<instance>:CONNection:SECurity:RSERver:PNUMber
driver.configure.connection.security.rserver.set_pnumber(number = 1)

Sets the UDP port number of an external RADIUS server.

param number:

integer Range: 1 to 65535

set_skey(string: str) None[source]
# SCPI: CONFigure:WLAN:SIGNaling<instance>:CONNection:SECurity:RSERver:SKEY
driver.configure.connection.security.rserver.set_skey(string = 'abc')

Sets the shared key of an external RADIUS server.

param string:

string Shared key as string

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.configure.connection.security.rserver.clone()

Subgroups