IprAddress<IpRouteAddress>

RepCap Settings

# Range: Nr1 .. Nr5
rc = driver.configure.etoe.irList.iprAddress.repcap_ipRouteAddress_get()
driver.configure.etoe.irList.iprAddress.repcap_ipRouteAddress_set(repcap.IpRouteAddress.Nr1)

SCPI Command :

CONFigure:WLAN:SIGNaling<instance>:ETOE:IRList:IPRaddress<n>
class IprAddressCls[source]

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

class IprAddressStruct[source]

Structure for setting input parameters. Fields:

  • State: bool: OFF | ON Entry disabled or enabled

  • Ip_41: int: integer First octet of the IPv4 destination address Range: 0 to 255

  • Ip_42: int: integer Second octet Range: 0 to 255

  • Ip_43: int: integer Third octet Range: 0 to 255

  • Ip_44: int: integer Fourth octet Range: 0 to 255

  • Ip_4_Netmask: int: integer Number of subnet bits for the IPv4 address Range: 1 to 32

  • Ip_6_Prefix: str: string IPv6 prefix as string, for example ‘fc01:abab:cdcd:efe0::’

  • Ip_6_Netmask: int: integer Number of subnet bits for the IPv6 address Range: 1 to 128

get(ipRouteAddress=IpRouteAddress.Default) IprAddressStruct[source]
# SCPI: CONFigure:WLAN:SIGNaling<instance>:ETOE:IRList:IPRaddress<n>
value: IprAddressStruct = driver.configure.etoe.irList.iprAddress.get(ipRouteAddress = repcap.IpRouteAddress.Default)

Configures an entry of the routes list. The routes list defines destination addresses for which the DAU routes packets to the DUT.

param ipRouteAddress:

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

return:

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

set(structure: IprAddressStruct, ipRouteAddress=IpRouteAddress.Default) None[source]
# SCPI: CONFigure:WLAN:SIGNaling<instance>:ETOE:IRList:IPRaddress<n>
structure = driver.configure.etoe.irList.iprAddress.IprAddressStruct()
structure.State: bool = False
structure.Ip_41: int = 1
structure.Ip_42: int = 1
structure.Ip_43: int = 1
structure.Ip_44: int = 1
structure.Ip_4_Netmask: int = 1
structure.Ip_6_Prefix: str = 'abc'
structure.Ip_6_Netmask: int = 1
driver.configure.etoe.irList.iprAddress.set(structure, ipRouteAddress = repcap.IpRouteAddress.Default)

Configures an entry of the routes list. The routes list defines destination addresses for which the DAU routes packets to the DUT.

param structure:

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

param ipRouteAddress:

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

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.configure.etoe.irList.iprAddress.clone()