diff options
author | Erlang/OTP <[email protected]> | 2009-11-20 14:54:40 +0000 |
---|---|---|
committer | Erlang/OTP <[email protected]> | 2009-11-20 14:54:40 +0000 |
commit | 84adefa331c4159d432d22840663c38f155cd4c1 (patch) | |
tree | bff9a9c66adda4df2106dfd0e5c053ab182a12bd /lib/snmp/priv/conf/manager/usm.conf | |
download | otp-84adefa331c4159d432d22840663c38f155cd4c1.tar.gz otp-84adefa331c4159d432d22840663c38f155cd4c1.tar.bz2 otp-84adefa331c4159d432d22840663c38f155cd4c1.zip |
The R13B03 release.OTP_R13B03
Diffstat (limited to 'lib/snmp/priv/conf/manager/usm.conf')
-rw-r--r-- | lib/snmp/priv/conf/manager/usm.conf | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/lib/snmp/priv/conf/manager/usm.conf b/lib/snmp/priv/conf/manager/usm.conf new file mode 100644 index 0000000000..5eb78791ca --- /dev/null +++ b/lib/snmp/priv/conf/manager/usm.conf @@ -0,0 +1,30 @@ +%% usm.conf +%% The data corresponds to the relevant parts of the usmUserTable +%% defined in SNMP-USER-BASED-SM-MIB. +%% +%% {EngineID, UserName, AuthP, AuthKey, PrivP, PrivKey}. +%% {EngineID, UserName, SecName, AuthP, AuthKey, PrivP, PrivKey}. +%% +%% The first case is when we have the identity-function (SecName = UserName)! +%% +%% EngineID -> string() +%% UserName -> string() +%% SecName -> string() +%% AuthP -> usmNoAuthProtocol | usmHMACSHAAuthProtocol | +%% usmHMACMD5AuthProtocol +%% AuthKey -> string() (The user's secret localized authentication key) +%% length depends on AuthP: +%% usmNoAuthProtocol - any +%% usmHMACSHAAuthProtocol - 16 +%% usmHMACMD5AuthProtocol - 20 +%% PrivP -> usmNoPrivProtocol | usmDESPrivProtocol +%% PrivKey -> string() (The user's secret localized encryption key) +%% length depends on PrivP: +%% usmNoPrivProtocol - any +%% usmDESPrivProtocol - 16 +%% + +%% example +{"manager engine", "initial", "initial", + usmNoAuthProtocol, "", + usmNoPrivProtocol, ""}. |