T122proxysetfail
上传用户:wxp200602
上传日期:2007-10-30
资源大小:4028k
文件大小:2k
源码类别:

SNMP编程

开发平台:

Unix_Linux

  1. #!/bin/sh
  2. . ../eval_tools.sh
  3. HEADER Proxy illegal SET handling support
  4. SKIPIFNOT USING_UCD_SNMP_PROXY_MODULE
  5. SKIPIFNOT USING_MIBII_SYSTEM_MIB_MODULE
  6. SKIPIF DISABLE_SNMPV2C
  7. #
  8. # Begin test
  9. #
  10. # standard V3 configuration for initial user
  11. . ./Sv3config
  12. # config the proxy
  13. CONFIGAGENT proxy -t 2 -r 1 -v 2c -c testcommunity $SNMP_TRANSPORT_SPEC:${SNMP_TEST_DEST}7676 system
  14. # Start the agent without initializing the system mib.
  15. ORIG_AGENT_FLAGS="$AGENT_FLAGS"
  16. AGENT_FLAGS="$ORIG_AGENT_FLAGS -I -system_mib -Dproxy"
  17. STARTAGENT
  18. # test to see that the current agent doesn't support the system mib
  19. #CAPTURE "snmpget -On -t 3 $SNMP_FLAGS $AUTHTESTARGS $SNMP_TRANSPORT_SPEC:$SNMP_TEST_DEST$SNMP_SNMPD_PORT .1.3.6.1.2.1.1.3.0"
  20. #CHECK ".1.3.6.1.2.1.1.3.0 = No Such Object"
  21. #if test "$snmp_last_test_result" = 1; then
  22.   # test the proxy subagent by first running it...
  23.   SNMP_SNMPD_PID_FILE_ORIG=$SNMP_SNMPD_PID_FILE
  24.   SNMP_SNMPD_LOG_FILE_ORIG=$SNMP_SNMPD_LOG_FILE
  25.   SNMP_SNMPD_PID_FILE=$SNMP_SNMPD_PID_FILE.num2
  26.   SNMP_SNMPD_LOG_FILE=$SNMP_SNMPD_LOG_FILE.num2
  27.   SNMP_CONFIG_FILE="$SNMP_TMPDIR/proxy.conf"
  28.   echo "rwcommunity testcommunity" >> $SNMP_CONFIG_FILE
  29. #  echo "syscontact testcontact" >> $SNMP_CONFIG_FILE
  30.   AGENT_FLAGS="$ORIG_AGENT_FLAGS -Dmib_init"
  31.   ORIG_SNMP_SNMPD_PORT=$SNMP_SNMPD_PORT
  32.   SNMP_SNMPD_PORT="7676"
  33.   STARTAGENT
  34.   SNMP_SNMPD_PORT=$ORIG_SNMP_SNMPD_PORT
  35.   # test to see that the agent now supports the system mib
  36.   CAPTURE "snmpget -On $SNMP_FLAGS -t 5 $AUTHTESTARGS $SNMP_TRANSPORT_SPEC:$SNMP_TEST_DEST$SNMP_SNMPD_PORT sysContact.0"
  37.   
  38.   # we don't know the real value, unfortunately, so we test for what
  39.   # we should *not* get back.
  40.   CHECK ".1.3.6.1.2.1.1.4.0 = No Such Object"
  41.   if test "$snmp_last_test_result" = 0; then
  42.     # test to see that the agent now supports the system mib
  43.     CAPTURE "snmpset -On -Ir $SNMP_FLAGS -t 5 $AUTHTESTARGS $SNMP_TRANSPORT_SPEC:$SNMP_TEST_DEST$SNMP_SNMPD_PORT sysContact.0 i 42"
  44.     # 5.0.x snmpset shows error on single line
  45.     #CHECK ".1.3.6.1.2.1.1.4.0 = Wrong Type"
  46.     # 5.1.x snmpset shows error on multiple lines
  47.     CHECK "Reason: wrongType"
  48.     CHECK "Failed object: .1.3.6.1.2.1.1.4.0"
  49.   fi
  50.   # stop the subagent
  51.   STOPAGENT
  52.   SNMP_SNMPD_PID_FILE=$SNMP_SNMPD_PID_FILE_ORIG
  53.   SNMP_SNMPD_LOG_FILE=$SNMP_SNMPD_LOG_FILE_ORIG
  54. #fi
  55. # stop the master agent
  56. STOPAGENT
  57. # all done (whew)
  58. FINISHED