IpAddress
SCPI Commands :
SYSTem:COMMunicate:BB<HW>:QSFP:NETWork:IPADdress:MODE
SYSTem:COMMunicate:BB<HW>:QSFP:NETWork:IPADdress
- Commands in total: 3Subgroups: 1Direct child commands: 2
- get_mode() NetModeStaticOnly[source]
# SYSTem:COMMunicate:BB<HW>:QSFP:NETWork:IPADdress:MODE value: enums.NetModeStaticOnly = driver.system.communicate.bb.qsfp.network.ipAddress.get_mode()
Displays the mode of the IP address.
- Returns:
ip_address_mode: STATic
- get_value() str[source]
# SYSTem:COMMunicate:BB<HW>:QSFP:NETWork:IPADdress value: str = driver.system.communicate.bb.qsfp.network.ipAddress.get_value()
Sets the IP address.
- Returns:
ip_address: String Range: 0.0.0.0 to ff.ff.ff.ff
- set_mode(ip_address_mode: NetModeStaticOnly) None[source]
# SYSTem:COMMunicate:BB<HW>:QSFP:NETWork:IPADdress:MODE driver.system.communicate.bb.qsfp.network.ipAddress.set_mode(ip_address_mode = enums.NetModeStaticOnly.STATic)
Displays the mode of the IP address.
- Parameters:
ip_address_mode – STATic
- set_value(ip_address: str) None[source]
# SYSTem:COMMunicate:BB<HW>:QSFP:NETWork:IPADdress driver.system.communicate.bb.qsfp.network.ipAddress.set_value(ip_address = 'abc')
Sets the IP address.
- Parameters:
ip_address – String Range: 0.0.0.0 to ff.ff.ff.ff
Cloning the Group
# Create a copy of the original group, that exists independently
ipAddress_copy = driver.system.communicate.bb.qsfp.network.ipAddress.clone()
Subgroups