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

SNMP编程

开发平台:

Unix_Linux

  1. #!/bin/sh
  2. . ../eval_tools.sh
  3. HEADER 1st CPU on Solaris using HOST-RESOURCES
  4. if test `uname -s` != "SunOS" ; then
  5.     # a bogus skip for !suns
  6.     SKIPIFNOT XXXYYYZZZ
  7. fi
  8. SKIPIF DISABLE_SNMPV2C
  9. SKIPIFNOT USING_HOST_MODULE
  10. #
  11. # Begin test
  12. #
  13. # standard V1 configuration: testcomunnity
  14. . ./Sv1config
  15. STARTAGENT
  16. # ask for the description of the first CPU in the system
  17. CAPTURE "snmpget -On $SNMP_FLAGS -c testcommunity -v 1 $SNMP_TRANSPORT_SPEC:$SNMP_TEST_DEST$SNMP_SNMPD_PORT .1.3.6.1.2.1.25.3.2.1.3.768"
  18. CHECKORDIE "^.1.3.6.1.2.1.25.3.2.1.3.768 = STRING: CPU"
  19. STOPAGENT
  20.   
  21. FINISHED