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

SNMP编程

开发平台:

Unix_Linux

  1. #!/bin/sh
  2. . ../eval_tools.sh
  3. HEADER AgentX SET support
  4. SKIPIFNOT USING_AGENTX_MASTER_MODULE
  5. SKIPIFNOT USING_AGENTX_SUBAGENT_MODULE
  6. SKIPIFNOT USING_MIBII_SYSTEM_MIB_MODULE
  7. #
  8. # Begin test
  9. #
  10. # standard V3 configuration for initial user
  11. . ./Sv3config
  12. # Start the agent without initializing the system mib.
  13. if [ "x$SNMP_TRANSPORT_SPEC" = "xunix" ];then
  14. ORIG_AGENT_FLAGS="$AGENT_FLAGS -x $SNMP_TMPDIR/agentx_socket"
  15. else
  16. ORIG_AGENT_FLAGS="$AGENT_FLAGS -x tcp:${SNMP_TEST_DEST}7676"
  17. fi
  18. AGENT_FLAGS="$ORIG_AGENT_FLAGS -I -system_mib -DAgentX"
  19. STARTAGENT
  20. # test to see that the current agent doesn't support the system mib
  21. CAPTURE "snmpget -On -t 3 $SNMP_FLAGS $AUTHTESTARGS $SNMP_TRANSPORT_SPEC:$SNMP_TEST_DEST$SNMP_SNMPD_PORT .1.3.6.1.2.1.1.4.0"
  22. CHECK ".1.3.6.1.2.1.1.4.0 = No Such Object"
  23. if test "$snmp_last_test_result" = 1; then
  24.   # test the AgentX subagent by first running it...
  25.   SNMP_SNMPD_PID_FILE_ORIG=$SNMP_SNMPD_PID_FILE
  26.   SNMP_SNMPD_LOG_FILE_ORIG=$SNMP_SNMPD_LOG_FILE
  27.   SNMP_SNMPD_PID_FILE=$SNMP_SNMPD_PID_FILE.num2
  28.   SNMP_SNMPD_LOG_FILE=$SNMP_SNMPD_LOG_FILE.num2
  29.   AGENT_FLAGS="$ORIG_AGENT_FLAGS -X -I system_mib"
  30.   SNMP_CONFIG_FILE="$SNMP_TMPDIR/bogus.conf"
  31.   echo "psyscontact testcontact" >> $SNMP_CONFIG_FILE
  32.   STARTAGENT
  33.   # test to see that the agent now supports the system mib
  34.   CAPTURE "snmpget -On $SNMP_FLAGS -t 5 $AUTHTESTARGS $SNMP_TRANSPORT_SPEC:$SNMP_TEST_DEST$SNMP_SNMPD_PORT sysContact.0"
  35.   CHECK ".1.3.6.1.2.1.1.4.0 = STRING: testcontact"
  36.   if test "$snmp_last_test_result" = 1; then
  37.     # test to see that the agent now supports setting the system mib
  38.     CAPTURE "snmpset -On $SNMP_FLAGS -t 5 $AUTHTESTARGS $SNMP_TRANSPORT_SPEC:$SNMP_TEST_DEST$SNMP_SNMPD_PORT sysContact.0 s newtestcontact"
  39.     CHECK ".1.3.6.1.2.1.1.4.0 = STRING: newtestcontact"
  40.     if test "$snmp_last_test_result" = 1; then
  41. # test to see that the agent now supports the system mib
  42. CAPTURE "snmpget -On $SNMP_FLAGS -t 5 $AUTHTESTARGS $SNMP_TRANSPORT_SPEC:$SNMP_TEST_DEST$SNMP_SNMPD_PORT sysContact.0"
  43. CHECK ".1.3.6.1.2.1.1.4.0 = STRING: newtestcontact"
  44.     fi
  45.   fi
  46.   # stop the subagent
  47.   STOPAGENT
  48.   SNMP_SNMPD_PID_FILE=$SNMP_SNMPD_PID_FILE_ORIG
  49.   SNMP_SNMPD_LOG_FILE=$SNMP_SNMPD_LOG_FILE_ORIG
  50. fi
  51. # stop the master agent
  52. STOPAGENT
  53. # all done (whew)
  54. FINISHED