IpAddress<IpAddress>

RepCap Settings

# Range: Addr1 .. Addr3
rc = driver.configure.mmonitor.ipAddress.repcap_ipAddress_get()
driver.configure.mmonitor.ipAddress.repcap_ipAddress_set(repcap.IpAddress.Addr1)

SCPI Command :

CONFigure:BASE:MMONitor:IPADdress<n>
class IpAddressCls[source]

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

class IpAddressStruct[source]

Response structure. Fields:

  • First_Segment: int: numeric First octet of the IP address, not configurable Range: 0 to 255

  • Second_Segment: int: numeric Second octet of the IP address, not configurable Range: 0 to 255

  • System_Id: int: numeric Third octet of the IP address Range: 5 to 255

  • Local_Id: int: numeric Fourth octet of the IP address Range: 1 to 254

get(ipAddress=IpAddress.Default) IpAddressStruct[source]
# SCPI: CONFigure:BASE:MMONitor:IPADdress<n>
value: IpAddressStruct = driver.configure.mmonitor.ipAddress.get(ipAddress = repcap.IpAddress.Default)

Configures the IP address pool for logging of signaling messages via an external PC. The pool contains three IP addresses of external logging PCs. The first two octets cannot be configured. For a setting command, you can specify any values within the allowed range - they are ignored. A query returns the active values resulting from the subnet configuration, see CONFigure:BASE:IPSet:SNODe.

param ipAddress:

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

return:

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

set(first_segment: int, second_segment: int, system_id: int, local_id: int, ipAddress=IpAddress.Default) None[source]
# SCPI: CONFigure:BASE:MMONitor:IPADdress<n>
driver.configure.mmonitor.ipAddress.set(first_segment = 1, second_segment = 1, system_id = 1, local_id = 1, ipAddress = repcap.IpAddress.Default)

Configures the IP address pool for logging of signaling messages via an external PC. The pool contains three IP addresses of external logging PCs. The first two octets cannot be configured. For a setting command, you can specify any values within the allowed range - they are ignored. A query returns the active values resulting from the subnet configuration, see CONFigure:BASE:IPSet:SNODe.

param first_segment:

numeric First octet of the IP address, not configurable Range: 0 to 255

param second_segment:

numeric Second octet of the IP address, not configurable Range: 0 to 255

param system_id:

numeric Third octet of the IP address Range: 5 to 255

param local_id:

numeric Fourth octet of the IP address Range: 1 to 254

param ipAddress:

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

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.configure.mmonitor.ipAddress.clone()