IpAddress
SCPI Commands :
SYSTem:COMMunicate:BB<HW>:NETWork:IPADdress:MODE
SYSTem:COMMunicate:BB<HW>:NETWork:[IPADdress]:GATeway
SYSTem:COMMunicate:BB<HW>:NETWork:IPADdress
- Commands in total: 4Subgroups: 1Direct child commands: 3
- get_gateway() str[source]
# 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.
- Returns:
gateway: string Range: 0.0.0.0 to ff.ff.ff.ff
- get_mode() NetMode[source]
# 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.
- Returns:
mode: AUTO | STATic
- get_value() str[source]
# SYSTem:COMMunicate:BB<HW>:NETWork:IPADdress value: str = driver.system.communicate.bb.network.ipAddress.get_value()
Sets the IP address.
- Returns:
ip_address: string Range: 0.0.0.0. to ff.ff.ff.ff
- set_gateway(gateway: str) None[source]
# 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.
- Parameters:
gateway – string Range: 0.0.0.0 to ff.ff.ff.ff
- set_mode(mode: NetMode) None[source]
# 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.
- Parameters:
mode – AUTO | STATic
- set_value(ip_address: str) None[source]
# SYSTem:COMMunicate:BB<HW>:NETWork:IPADdress driver.system.communicate.bb.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.network.ipAddress.clone()
Subgroups