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

SNMP编程

开发平台:

Unix_Linux

  1. #!/bin/sh
  2. # generically set up the community "testcommunity" for various snmp
  3. # version access to the agent.
  4. if [ "x$snmp_version" = "x" ]; then
  5.   snmp_version="any"
  6. fi
  7. CONFIGAGENT com2sec testcommunitysec  default testcommunity
  8. if [ "$SNMP_TRANSPORT_SPEC" = "udp6" -o "$SNMP_TRANSPORT_SPEC" = "tcp6" ];then 
  9. CONFIGAGENT com2sec6 testcommunitysec  default testcommunity
  10. fi
  11. if [ "$SNMP_TRANSPORT_SPEC" = "unix" ];then 
  12. CONFIGAGENT com2secunix testcommunitysec  testcommunity
  13. fi
  14. CONFIGAGENT group   testcommunitygroup  $snmp_version     testcommunitysec
  15. CONFIGAGENT view    all     included .1 80
  16. CONFIGAGENT 'access  testcommunitygroup  "" any noauth exact all none none'