User
SCPI Commands :
SYSTem:COMMunicate:SNMP:USM:USER
SYSTem:COMMunicate:SNMP:USM:USER:DELete
- Commands in total: 2Subgroups: 0Direct child commands: 2
- delete(name: str) None[source]
# SYSTem:COMMunicate:SNMP:USM:USER:DELete driver.system.communicate.snmp.usm.user.delete(name = 'abc')
Deletes a specific SNMP user profile.
- Parameters:
name – String containing name of SNMP user profile to be deleted.
- set(name: str, access: AccessType, level: UserLevel, auth_pwd: str = None, priv_pwd: str = None) None[source]
# SYSTem:COMMunicate:SNMP:USM:USER driver.system.communicate.snmp.usm.user.set(name = 'abc', access = enums.AccessType.RO, level = enums.UserLevel.AUTH, auth_pwd = 'abc', priv_pwd = 'abc')
Defines an SNMP user profile. Prerequisites for this command:
Select SNMPv3 (method
RsFsw.system.communicate.snmp.version.set()) .
- Parameters:
name – String containing name of the user.
access – RO | RW Defines the access right a user can have.
level – NOAuth | AUTH | PRIVacy Defines the security level.
auth_pwd – String containing the authentication password.
priv_pwd – String containing the privacy password.