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

SNMP编程

开发平台:

Unix_Linux

  1. #!/bin/sh
  2. . ../eval_tools.sh
  3. HEADER SNMPv2 vacm acceptance support
  4. SKIPIF DISABLE_SNMPV2C
  5. #
  6. # Begin test
  7. #
  8. # standard V1 configuration: testcommunity1 testcommunity2
  9. # testcommunity1 can access .1.3.6.1.2.1.1.1, others are denied
  10. # testcommunity2 can access all except .1.3.6.1.2.1.1.1
  11. # This case test for successful access
  12. snmp_version=v2c
  13. . ./Svacmconfig
  14. STARTAGENT
  15. CAPTURE "snmpget -On $SNMP_FLAGS -c testcommunity1 -v 2c $SNMP_TRANSPORT_SPEC:$SNMP_TEST_DEST$SNMP_SNMPD_PORT .1.3.6.1.2.1.1.1.0" 
  16. CHECKORDIE ".1.3.6.1.2.1.1.1.0 = STRING:"
  17. CAPTURE "snmpget -On $SNMP_FLAGS -c testcommunity2 -v 2c $SNMP_TRANSPORT_SPEC:$SNMP_TEST_DEST$SNMP_SNMPD_PORT .1.3.6.1.2.1.1.3.0"
  18. CHECK ".1.3.6.1.2.1.1.3.0 = Timeticks: "
  19. STOPAGENT
  20. FINISHED