Version

SCPI Command :

SYSTem:COMMunicate:SNMP:VERSion
Commands in total: 1
Subgroups: 0
Direct child commands: 1
get() SnmpVersion[source]
# SYSTem:COMMunicate:SNMP:VERSion
value: enums.SnmpVersion = driver.system.communicate.snmp.version.get()

Selects the SNMP version.

Returns:

snmp_version: OFF | V12 | V123 | V3 | DEFault OFF SNMP communication is off. V12 SNMP communication with SNMPv2 or lower. V123 SNMP communication with SNMPv2 and SNMPv3. V3 SNMP communication with SNMPv3.

set(snmp_version: SnmpVersion) None[source]
# SYSTem:COMMunicate:SNMP:VERSion
driver.system.communicate.snmp.version.set(snmp_version = enums.SnmpVersion.DEFault)

Selects the SNMP version.

Parameters:

snmp_version – OFF | V12 | V123 | V3 | DEFault OFF SNMP communication is off. V12 SNMP communication with SNMPv2 or lower. V123 SNMP communication with SNMPv2 and SNMPv3. V3 SNMP communication with SNMPv3.