Dname<DomainName>

RepCap Settings

# Range: Nr1 .. Nr5
rc = driver.configure.connection.hotspot.dname.repcap_domainName_get()
driver.configure.connection.hotspot.dname.repcap_domainName_set(repcap.DomainName.Nr1)

SCPI Command :

CONFigure:WLAN:SIGNaling<instance>:CONNection:HOTSpot:DNAMe<nr>
class DnameCls[source]

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

class DnameStruct[source]

Response structure. Fields:

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

  • Name: str: string Domain name as string

get(domainName=DomainName.Default) DnameStruct[source]
# SCPI: CONFigure:WLAN:SIGNaling<instance>:CONNection:HOTSpot:DNAMe<nr>
value: DnameStruct = driver.configure.connection.hotspot.dname.get(domainName = repcap.DomainName.Default)

Defines a list of domain names of the entity operating the IEEE 802.11 access network. The first domain name can also be defined via method RsCmwWlanSig.Configure.Connection.Hotspot.hspar.

param domainName:

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

return:

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

set(state: bool, name: str, domainName=DomainName.Default) None[source]
# SCPI: CONFigure:WLAN:SIGNaling<instance>:CONNection:HOTSpot:DNAMe<nr>
driver.configure.connection.hotspot.dname.set(state = False, name = 'abc', domainName = repcap.DomainName.Default)

Defines a list of domain names of the entity operating the IEEE 802.11 access network. The first domain name can also be defined via method RsCmwWlanSig.Configure.Connection.Hotspot.hspar.

param state:

OFF | ON Disables/enables the list entry

param name:

string Domain name as string

param domainName:

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

Cloning the Group

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