summaryrefslogtreecommitdiff
path: root/testing/fulltests/default/T049snmpv3inform_simple
blob: 99cb5eba1bb451f2a0e591624608710d806a3368 (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
#!/bin/sh

. ../support/simple_eval_tools.sh

SKIPIFNOT NETSNMP_SECMOD_USM

DEFSECURITYLEVEL=noAuthNoPriv

HEADER "SNMPv3 informs (noAuthNoPriv) received and sent by tools"

#
# Begin test
#

CONFIGTRAPD createUser testuser
CONFIGTRAPD authuser log testuser $DEFSECURITYLEVEL
CONFIGTRAPD agentxsocket /dev/null

STARTTRAPD

CAPTURE "snmptrap -Ci -t $SNMP_SLEEP -d -v 3 -u testuser -l nanp $SNMP_TRANSPORT_SPEC:$SNMP_TEST_DEST$SNMP_SNMPTRAPD_PORT 0 .1.3.6.1.6.3.1.1.5.1 .1.3.6.1.2.1.1.4.0 s received_inform_$DEFSECURITYLEVEL"

STOPTRAPD

CHECKTRAPD "received_inform_$DEFSECURITYLEVEL"

FINISHED