IpAddress
SCPI Commands :
SYSTem:COMMunicate:BB<HW>:NETWork:IPADdress:MODE
SYSTem:COMMunicate:BB<HW>:NETWork:[IPADdress]:GATeway
SYSTem:COMMunicate:BB<HW>:NETWork:IPADdress
- class IpAddressCls[source]
IpAddress commands group definition. 4 total commands, 1 Subgroups, 3 group commands
- get_gateway() str [source]
# SCPI: SYSTem:COMMunicate:BB<HW>:NETWork:[IPADdress]:GATeway value: str = driver.system.communicate.bb.network.ipAddress.get_gateway()
Sets the IP address of the default gateway.
- return:
gateway: string Range: 0.0.0.0 to ff.ff.ff.ff
- get_mode() NetMode [source]
# SCPI: SYSTem:COMMunicate:BB<HW>:NETWork:IPADdress:MODE value: enums.NetMode = driver.system.communicate.bb.network.ipAddress.get_mode()
Selects manual or automatic setting of the IP address.
- return:
mode: AUTO| STATic
- get_value() str [source]
# SCPI: SYSTem:COMMunicate:BB<HW>:NETWork:IPADdress value: str = driver.system.communicate.bb.network.ipAddress.get_value()
Sets the IP address.
- return:
ip_address: string Range: 0.0.0.0. to ff.ff.ff.ff
- set_gateway(gateway: str) None [source]
# SCPI: SYSTem:COMMunicate:BB<HW>:NETWork:[IPADdress]:GATeway driver.system.communicate.bb.network.ipAddress.set_gateway(gateway = 'abc')
Sets the IP address of the default gateway.
- param gateway:
string Range: 0.0.0.0 to ff.ff.ff.ff
- set_mode(mode: NetMode) None [source]
# SCPI: SYSTem:COMMunicate:BB<HW>:NETWork:IPADdress:MODE driver.system.communicate.bb.network.ipAddress.set_mode(mode = enums.NetMode.AUTO)
Selects manual or automatic setting of the IP address.
- param mode:
AUTO| STATic
- set_value(ip_address: str) None [source]
# SCPI: SYSTem:COMMunicate:BB<HW>:NETWork:IPADdress driver.system.communicate.bb.network.ipAddress.set_value(ip_address = 'abc')
Sets the IP address.
- param ip_address:
string Range: 0.0.0.0. to ff.ff.ff.ff
Cloning the Group
# Create a clone of the original group, that exists independently
group2 = driver.system.communicate.bb.network.ipAddress.clone()
Subgroups