Raritan PX2/PX3 JSON-RPC API
SnmpV3.idl
1 
2 module um {
3 
5  interface SnmpV3 {
6 
8  enumeration SecurityLevel {
11  AUTH_PRIV
12  };
13 
15  enumeration AuthProtocol {
16  MD5,
17  SHA1
18  };
19 
21  enumeration PrivProtocol {
22  DES,
23  AES128
24  };
25  };
26 }
PrivProtocol
SNMP v3 privacy protocol.
Definition: SnmpV3.idl:21
Use authentication but no privacy protocol.
Definition: SnmpV3.idl:10
SNMPv3 interface.
Definition: SnmpV3.idl:5
Use MD5 for authentication.
Definition: SnmpV3.idl:16
AuthProtocol
SNMP v3 authentication protocol.
Definition: SnmpV3.idl:15
SecurityLevel
SNMP v3 security level.
Definition: SnmpV3.idl:8
User Management.
Definition: SnmpV3.idl:2
Use DES encryption for privacy.
Definition: SnmpV3.idl:22
No authentication and no privacy protocol.
Definition: SnmpV3.idl:9