1## Generic config to test internals
2
3# Assume snmp ports are available
4listen on 127.0.0.1 snmpv1 snmpv2c snmpv3
5listen on tcp 127.0.0.1 snmpv1 snmpv2c snmpv3
6
7agentx path "/tmp/agentx" mode 222
8
9system contact "regress@openbsd.org"
10
11# SNMPv1/SNMPv2c
12read-only community public
13trap community private
14
15# SNMPv3
16seclevel none
17user noauthpriv
18user auth_md5 authkey testpass auth hmac-md5
19user auth_sha1 authkey testpass auth hmac-sha1
20user auth_sha224 authkey testpass auth hmac-sha224
21user auth_sha256 authkey testpass auth hmac-sha256
22user auth_sha384 authkey testpass auth hmac-sha384
23user auth_sha512 authkey testpass auth hmac-sha512
24user authpriv_md5_des authkey testpass auth hmac-md5 enckey testpass enc des
25user authpriv_md5_aes authkey testpass auth hmac-md5 enckey testpass enc aes
26user authpriv_sha1_des authkey testpass auth hmac-sha1 enckey testpass enc des
27user authpriv_sha1_aes authkey testpass auth hmac-sha1 enckey testpass enc aes
28user authpriv_sha224_des authkey testpass auth hmac-sha224 enckey testpass enc des
29user authpriv_sha224_aes authkey testpass auth hmac-sha224 enckey testpass enc aes
30user authpriv_sha256_des authkey testpass auth hmac-sha256 enckey testpass enc des
31user authpriv_sha256_aes authkey testpass auth hmac-sha256 enckey testpass enc aes
32user authpriv_sha384_des authkey testpass auth hmac-sha384 enckey testpass enc des
33user authpriv_sha384_aes authkey testpass auth hmac-sha384 enckey testpass enc aes
34user authpriv_sha512_des authkey testpass auth hmac-sha512 enckey testpass enc des
35user authpriv_sha512_aes authkey testpass auth hmac-sha512 enckey testpass enc aes
36