Http

SCPI Commands

CONFigure:DATA:CONTrol:HTTP:ENConnection
CONFigure:DATA:CONTrol:HTTP:IPVSix
class Http[source]

Http commands group definition. 3 total commands, 1 Sub-groups, 2 group commands

get_en_connection()bool[source]
# SCPI: CONFigure:DATA:CONTrol:HTTP:ENConnection
value: bool = driver.configure.data.control.http.get_en_connection()

Specifies whether access to the internal web server is allowed from an external network (via LAN DAU) .

return

ext_net_conn: OFF | ON OFF: not allowed ON: allowed

get_ipv_six()bool[source]
# SCPI: CONFigure:DATA:CONTrol:HTTP:IPVSix
value: bool = driver.configure.data.control.http.get_ipv_six()

Specifies whether the internal web server supports IPv6.

return

ip_v_6_enable: OFF | ON OFF: IPv4 support only ON: support of IPv4 and IPv6

set_en_connection(ext_net_conn: bool)None[source]
# SCPI: CONFigure:DATA:CONTrol:HTTP:ENConnection
driver.configure.data.control.http.set_en_connection(ext_net_conn = False)

Specifies whether access to the internal web server is allowed from an external network (via LAN DAU) .

param ext_net_conn

OFF | ON OFF: not allowed ON: allowed

set_ipv_six(ip_v_6_enable: bool)None[source]
# SCPI: CONFigure:DATA:CONTrol:HTTP:IPVSix
driver.configure.data.control.http.set_ipv_six(ip_v_6_enable = False)

Specifies whether the internal web server supports IPv6.

param ip_v_6_enable

OFF | ON OFF: IPv4 support only ON: support of IPv4 and IPv6

Cloning the Group

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

Subgroups