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

SNMP编程

开发平台:

Unix_Linux

  1. #!/bin/sh
  2. . ../eval_tools.sh
  3. HEADER authentication failure traps are sent by snmpd
  4. SKIPIF DISABLE_SNMPV2C
  5. #
  6. # Begin test
  7. #
  8. # standard V1 configuration: testcomunnity
  9. . ./Sv1config
  10. # add in a v1 trap sink
  11. CONFIGAGENT trapsink localhost public $SNMP_SNMPTRAPD_PORT
  12. CONFIGAGENT authtrapenable 1
  13. STARTTRAPD
  14. STARTAGENT
  15. # give the agent more time to start up.  We only want to fire one
  16. # request (retries = 0) to make sure only one trap is sent.
  17. #DELAY
  18. CAPTURE "snmpget -On -r 0 -t 5 $SNMP_FLAGS -v 1 -c wrongcommunity $SNMP_TRANSPORT_SPEC:$SNMP_TEST_DEST$SNMP_SNMPD_PORT .1.3.6.1.2.1.1.3.0"
  19. STOPAGENT
  20. STOPTRAPD
  21. CHECKTRAPD "Authentication Failure Trap"
  22. FINISHED