Realm<Realm>

RepCap Settings

# Range: Nr1 .. Nr5
rc = driver.configure.connection.hotspot.realm.repcap_realm_get()
driver.configure.connection.hotspot.realm.repcap_realm_set(repcap.Realm.Nr1)

SCPI Command :

CONFigure:WLAN:SIGNaling<instance>:CONNection:HOTSpot:REALm<nr>
class RealmCls[source]

Realm commands group definition. 1 total commands, 0 Subgroups, 1 group commands Repeated Capability: Realm, default value after init: Realm.Nr1

class RealmStruct[source]

Structure for setting input parameters. Fields:

  • State: bool: OFF | ON Disables/enables the list entry

  • Name: str: string Realm name as string

  • Sim: bool: OFF | ON Realm supports EAP-SIM

  • Tls: bool: OFF | ON Realm supports EAP-TLS

  • Ttls: bool: OFF | ON Realm supports EAP-TTLS

  • Aka: bool: OFF | ON Realm supports EAP-AKA

  • Aka_Prime: bool: OFF | ON Realm supports EAP-AKA’

get(realm=Realm.Default) RealmStruct[source]
# SCPI: CONFigure:WLAN:SIGNaling<instance>:CONNection:HOTSpot:REALm<nr>
value: RealmStruct = driver.configure.connection.hotspot.realm.get(realm = repcap.Realm.Default)

Defines a list of NAI realms that are reachable via the hotspot. The first realm can also be defined via method RsCmwWlanSig.Configure.Connection.Hotspot.hsspar.

param realm:

optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Realm’)

return:

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

set(structure: RealmStruct, realm=Realm.Default) None[source]
# SCPI: CONFigure:WLAN:SIGNaling<instance>:CONNection:HOTSpot:REALm<nr>
structure = driver.configure.connection.hotspot.realm.RealmStruct()
structure.State: bool = False
structure.Name: str = 'abc'
structure.Sim: bool = False
structure.Tls: bool = False
structure.Ttls: bool = False
structure.Aka: bool = False
structure.Aka_Prime: bool = False
driver.configure.connection.hotspot.realm.set(structure, realm = repcap.Realm.Default)

Defines a list of NAI realms that are reachable via the hotspot. The first realm can also be defined via method RsCmwWlanSig.Configure.Connection.Hotspot.hsspar.

param structure:

for set value, see the help for RealmStruct structure arguments.

param realm:

optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Realm’)

Cloning the Group

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