aboutsummaryrefslogtreecommitdiffstats
path: root/example_snmp_users_file
blob: 553b5321d1dfb3e926942a7ad2a2564f23b8d510 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# this is an example snmp_users_file
#
# This can be used to enable the snmp dissector to authenticate and decrypt 
# SNMPv3 packets.
#
# Its location should be specified in the preferences of the SNMP protocol.
#
# comments start with a # and finish at the end of line
# empty lines are ignored 
#
# records are separated by whitespace
# engine-id username auth_pass priv_pass auth_proto priv_proto
# fileds are separated by whitespace
# engine-id, username and passwds can be either "double quoted" or hex
# double quoted strings are c-style strings and take escape chars
# a '*' as engine-id matches any any given engine-id
# auth_proto can be either MD5 or SHA1 (SHA works too), defaults to MD5.
# priv_proto can be either DES or AES Defaults to DES if not given
# protocols are case-insensitive (md5 == MD5)
# first match wins (i.e. have localized entries before those for * )

80001F888059DC486145A26322 "pippo" "pippoxxx" "PIPPOxxx" MD5 DES

# pippo for any engine will use DES and MD5
* "pippo" "pippoyyy" "PIPPOyyy"

# SHA + DES
80001F888059DC486145A26322 "pluto" "plutoxxx" "PLUTOxxx" SHA

# SHA + AES
80001F888059DC486145A26322 "topolino" "topolino" "TOPOLINO" SHA AES

# MD5 + AES
80001F888059DC486145A26322 "paperino" "paperino" "PAPERINO" AES