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

SNMP编程

开发平台:

Unix_Linux

  1. #!/bin/sh
  2. # standard V1 configuration: testcommunity1 testcommunity2
  3. # testcommunity1 can access .1.3.6.1.2.1.1.1, others are denied
  4. # generically set up the community "testcommunity1 and testcommunity2" for various snmp
  5. # version access to the agent.
  6. if [ "x$snmp_version" = "x" ]; then
  7.   snmp_version="any"
  8. fi
  9. CONFIGAGENT com2sec testcommunitysec1  default testcommunity1
  10. CONFIGAGENT com2sec testcommunitysec2  default testcommunity2
  11. if [ "$SNMP_TRANSPORT_SPEC" = "udp6" -o "$SNMP_TRANSPORT_SPEC" = "tcp6" ];then 
  12. CONFIGAGENT com2sec6 testcommunitysec1  default testcommunity1
  13. CONFIGAGENT com2sec6 testcommunitysec2  default testcommunity2
  14. fi
  15. if [ "$SNMP_TRANSPORT_SPEC" = "unix" ];then 
  16. CONFIGAGENT com2secunix testcommunitysec1  testcommunity1
  17. CONFIGAGENT com2secunix testcommunitysec2  testcommunity2
  18. fi
  19. CONFIGAGENT group   testcommunitygroup1  $snmp_version     testcommunitysec1
  20. CONFIGAGENT group   testcommunitygroup2  $snmp_version     testcommunitysec2
  21. CONFIGAGENT view    system1     included .1.3.6.1.2.1.1.1 
  22. CONFIGAGENT view    system2     included .1
  23. CONFIGAGENT view    system2     excluded .1.3.6.1.2.1.1.1 
  24. CONFIGAGENT 'access  testcommunitygroup1  "" any noauth exact system1 none none'
  25. CONFIGAGENT 'access  testcommunitygroup2  "" any noauth exact system2 none none'