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

SNMP编程

开发平台:

Unix_Linux

  1. #!/bin/sh
  2. # generically set up the user "initial1" and "initial2"  for snmp v3
  3. # access to the agent.
  4. # Configuration:
  5. #initial1 can access .1.3.6.1.2.1.1.1, deny others
  6. #initial2 can access all except .1.3.6.1.2.1.1.1 
  7. # XXX: do autoselection of supported algorithms
  8. SKIPIF DISABLE_MD5
  9. SKIPIF DISABLE_DES
  10. CONFIGAGENT createUser initial1 MD5 initial_test_pass_auth DES
  11. CONFIGAGENT createUser initial2 MD5 initial_test_pass_auth DES
  12. CONFIGAGENT group   testcommunitygroup1  usm     initial1
  13. CONFIGAGENT group   testcommunitygroup2  usm     initial2
  14. CONFIGAGENT view    system1     included .1.3.6.1.2.1.1.1 
  15. CONFIGAGENT view    system2     included .1
  16. CONFIGAGENT view    system2     excluded .1.3.6.1.2.1.1.1 
  17. CONFIGAGENT 'access  testcommunitygroup1  "" any auth exact system1 none none'
  18. CONFIGAGENT 'access  testcommunitygroup2  "" any auth exact system2 none none'