Static

SCPI Commands

CONFigure:DATA:CONTrol:IPVSix:STATic:ADDRess
CONFigure:DATA:CONTrol:IPVSix:STATic:DROuter
class Static[source]

Static commands group definition. 4 total commands, 1 Sub-groups, 2 group commands

get_address()str[source]
# SCPI: CONFigure:DATA:CONTrol:IPVSix:STATic:ADDRess
value: str = driver.configure.data.control.ipvSix.static.get_address()

Sets the IP address of the DAU to be used for static IPv6 configuration.

return

ip_address: IPv6 address as string

get_drouter()str[source]
# SCPI: CONFigure:DATA:CONTrol:IPVSix:STATic:DROuter
value: str = driver.configure.data.control.ipvSix.static.get_drouter()

Sets the IP address of the external default router to be used for static IPv6 configuration.

return

router: IPv6 address as string

set_address(ip_address: str)None[source]
# SCPI: CONFigure:DATA:CONTrol:IPVSix:STATic:ADDRess
driver.configure.data.control.ipvSix.static.set_address(ip_address = '1')

Sets the IP address of the DAU to be used for static IPv6 configuration.

param ip_address

IPv6 address as string

set_drouter(router: str)None[source]
# SCPI: CONFigure:DATA:CONTrol:IPVSix:STATic:DROuter
driver.configure.data.control.ipvSix.static.set_drouter(router = '1')

Sets the IP address of the external default router to be used for static IPv6 configuration.

param router

IPv6 address as string

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.configure.data.control.ipvSix.static.clone()

Subgroups