Revert "Revert "and added files""
[bcm963xx.git] / userapps / opensource / net-snmp / testing / tests / T112agentxsetfail
1 #!/bin/sh
2
3 . ../eval_tools.sh
4
5 HEADER AgentX illegal SET handling 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 system.sysContact.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   STARTAGENT
37
38   # test to see that the agent now supports the system mib
39   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"
40
41   # we don't know the real value, unfortunately, so we test for what
42   # we should *not* get back.
43   CHECK ".1.3.6.1.2.1.1.4.0 = No Such Object"
44
45   if test "$snmp_last_test_result" = 0; then
46
47     # test to see that the agent now supports setting the system mib
48     CAPTURE "snmpset -On -Ir $SNMP_FLAGS -t 5 -v 3 -a MD5 -A initial_test_pass_auth -l anp -u initial udp:localhost:$SNMP_SNMPD_PORT sysContact.0 i 4"
49
50     CHECK "wrongType"
51
52   fi
53
54   # stop the subagent
55   STOPAGENT
56
57   SNMP_SNMPD_PID_FILE=$SNMP_SNMPD_PID_FILE_ORIG
58   SNMP_SNMPD_LOG_FILE=$SNMP_SNMPD_LOG_FILE_ORIG
59 fi
60
61 # stop the master agent
62 STOPAGENT
63
64 # all done (whew)
65 FINISHED