and added files
[bcm963xx.git] / userapps / opensource / net-snmp / testing / tests / T111agentxset
1 #!/bin/sh
2
3 . ../eval_tools.sh
4
5 HEADER AgentX SET support
6
7 SKIPIFNOT USING_AGENTX_MODULE
8 SKIPIFNOT USING_MIBII_SYSTEM_MIB_MODULE
9
10 #
11 # Begin test
12 #
13
14 # standard V3 configuration for initial user
15 . ./Sv3config
16
17 # Start the agent without initializing the system mib.
18 ORIG_AGENT_FLAGS="$AGENT_FLAGS -x $SNMP_TMPDIR/agentx_socket"
19 AGENT_FLAGS="$ORIG_AGENT_FLAGS -I -system_mib -DAgentX"
20 STARTAGENT
21
22 # test to see that the current agent doesn't support the system mib
23 CAPTURE "snmpget -On -t 3 $SNMP_FLAGS -v 3 -a MD5 -A initial_test_pass_auth -l anp -u initial udp:localhost:$SNMP_SNMPD_PORT .1.3.6.1.2.1.1.4.0"
24
25 CHECK ".1.3.6.1.2.1.1.4.0 = No Such Object"
26
27 if test "$snmp_last_test_result" = 1; then
28   # test the AgentX subagent by first running it...
29
30   SNMP_SNMPD_PID_FILE_ORIG=$SNMP_SNMPD_PID_FILE
31   SNMP_SNMPD_LOG_FILE_ORIG=$SNMP_SNMPD_LOG_FILE
32   SNMP_SNMPD_PID_FILE=$SNMP_SNMPD_PID_FILE.num2
33   SNMP_SNMPD_LOG_FILE=$SNMP_SNMPD_LOG_FILE.num2
34   AGENT_FLAGS="$ORIG_AGENT_FLAGS -X -I system_mib"
35   SNMP_CONFIG_FILE="$SNMP_TMPDIR/bogus.conf"
36   echo "psyscontact testcontact" >> $SNMP_CONFIG_FILE
37   STARTAGENT
38
39   # test to see that the agent now supports the system mib
40   CAPTURE "snmpget -On $SNMP_FLAGS -t 5 -v 3 -a MD5 -A initial_test_pass_auth -l anp -u initial udp:localhost:$SNMP_SNMPD_PORT sysContact.0"
41
42   CHECK ".1.3.6.1.2.1.1.4.0 = STRING: testcontact"
43
44   if test "$snmp_last_test_result" = 1; then
45
46     # test to see that the agent now supports setting the system mib
47     CAPTURE "snmpset -On $SNMP_FLAGS -t 5 -v 3 -a MD5 -A initial_test_pass_auth -l anp -u initial udp:localhost:$SNMP_SNMPD_PORT sysContact.0 s newtestcontact"
48
49     CHECK ".1.3.6.1.2.1.1.4.0 = STRING: newtestcontact"
50
51     if test "$snmp_last_test_result" = 1; then
52
53         # test to see that the agent now supports the system mib
54         CAPTURE "snmpget -On $SNMP_FLAGS -t 5 -v 3 -a MD5 -A initial_test_pass_auth -l anp -u initial udp:localhost:$SNMP_SNMPD_PORT sysContact.0"
55         
56         CHECK ".1.3.6.1.2.1.1.4.0 = STRING: newtestcontact"
57     fi
58   fi
59
60   # stop the subagent
61   STOPAGENT
62
63   SNMP_SNMPD_PID_FILE=$SNMP_SNMPD_PID_FILE_ORIG
64   SNMP_SNMPD_LOG_FILE=$SNMP_SNMPD_LOG_FILE_ORIG
65 fi
66
67 # stop the master agent
68 STOPAGENT
69
70 # all done (whew)
71 FINISHED