Network

SCPI Commands :

SYSTem:COMMunicate:BB<HW>:QSFP:NETWork:APPLication
SYSTem:COMMunicate:BB<HW>:QSFP:NETWork:MACaddress
SYSTem:COMMunicate:BB<HW>:QSFP:NETWork:PORT
SYSTem:COMMunicate:BB<HW>:QSFP:NETWork:PROTocol
SYSTem:COMMunicate:BB<HW>:QSFP:NETWork:STATus
Commands in total: 14
Subgroups: 3
Direct child commands: 5
get_application() str[source]
# SYSTem:COMMunicate:BB<HW>:QSFP:NETWork:APPLication
value: str = driver.system.communicate.bb.qsfp.network.get_application()

Queries a running application.

Returns:

running_app: string Returns the name of the running application. ExtSeq (10GbE) Extended sequencer at 10 Gbit Ethernet ARB Upload (10/40GbE) ARB Ethernet upload at 10 Gbit or 40 Gbit Ethernet ARB Stream (40GbE) ARB Ethernet streaming at 40 Gbit Ethernet

get_mac_address() str[source]
# SYSTem:COMMunicate:BB<HW>:QSFP:NETWork:MACaddress
value: str = driver.system.communicate.bb.qsfp.network.get_mac_address()

Queries the MAC address of the network adapter. This is a password-protected function. Unlock the protection level 1 to access it, see method RsSmw.system.protect.state.set() in the R&S SMW200A user manual.

Returns:

mac_address: string

get_port() int[source]
# SYSTem:COMMunicate:BB<HW>:QSFP:NETWork:PORT
value: int = driver.system.communicate.bb.qsfp.network.get_port()

Sets the port address used for network traffic.

Returns:

port_number: integer Range: 0 to 65536

get_protocol() NetProtocolUdpOnly[source]
# SYSTem:COMMunicate:BB<HW>:QSFP:NETWork:PROTocol
value: enums.NetProtocolUdpOnly = driver.system.communicate.bb.qsfp.network.get_protocol()

Displays the communication protocol for the network traffic.

Returns:

protocol: UDP

get_status() bool[source]
# SYSTem:COMMunicate:BB<HW>:QSFP:NETWork:STATus
value: bool = driver.system.communicate.bb.qsfp.network.get_status()

Queries the network configuration state.

Returns:

network_status: 1 | ON | 0| OFF

set_port(port_number: int) None[source]
# SYSTem:COMMunicate:BB<HW>:QSFP:NETWork:PORT
driver.system.communicate.bb.qsfp.network.set_port(port_number = 1)

Sets the port address used for network traffic.

Parameters:

port_number – integer Range: 0 to 65536

set_protocol(protocol: NetProtocolUdpOnly) None[source]
# SYSTem:COMMunicate:BB<HW>:QSFP:NETWork:PROTocol
driver.system.communicate.bb.qsfp.network.set_protocol(protocol = enums.NetProtocolUdpOnly.UDP)

Displays the communication protocol for the network traffic.

Parameters:

protocol – UDP

Cloning the Group

# Create a copy of the original group, that exists independently
network_copy = driver.system.communicate.bb.qsfp.network.clone()

Subgroups