From Patrick vd Lageweg:
[obnox/wireshark/wip.git] / example_snmp_users_file
1 # this is an example snmp_users_file
2
3 # comments start with a # and finish at the end of line
4 # empty lines are ignored 
5
6 # each record has the following fileds
7 # engine-id username auth_pass priv_pass auth_proto priv_proto
8 # fileds are separated by whitespace
9 # engine-id, username and passwds can be either "double quoted" or hex
10 # double quoted strings are c-style strings and take escape chars
11 # a '*' as engine-id matches any any given engine-id
12 # auth_proto can be either MD5 or SHA1.
13 # priv_proto can be either DES or AES Defaults to DES if not given
14 # protocols are case-insensitive (md5 == MD5)
15 # first match wins (place localized entries before those for any engine)
16
17 80001F888059DC486145A26322 "pippo" "plutoxxx" "PLUTOxxx" MD5 DES
18
19 # pippo for any engine will use DES and MD5
20 * "pippo" "plutoxxx" "PLUTOxxx"
21
22
23 # SHA + DES
24 80001F888059DC486145A26322 "pippo2" "plutoxxx" "PLUTOxxx" SHA
25
26 # SHA + AES
27 80001F888059DC486145A26322 "pippo3" "plutoxxx" "PLUTOxxx" SHA AES
28
29 # MD5 + AES
30 80001F888059DC486145A26322 "pippo4" "plutoxxx" "PLUTOxxx" AES
31
32 # example passwords from RFC3414
33 000000000000000000000002 "RFC3414_hd5" "maplesyrup" "XXX" MD5
34 000000000000000000000002 "RFC3414_sha" "maplesyrup" "XXX" SHA1