ascendget
上传用户:shbosideng
上传日期:2013-05-04
资源大小:1555k
文件大小:1k
源码类别:

SNMP编程

开发平台:

C/C++

  1. #!/bin/csh
  2. # You will need to use the included snmpwalk program, which has been
  3. # modified from the original version supplied with the SCOTTY Tcl
  4. # Extensions for Network Management:
  5. #           (http://wwwsnmp.cs.utwente.nl/~schoenw/scotty)
  6. # If you don't already have TCL, you will need tcl 7.5 too.
  7. #
  8. # IF YOU DON'T ALREADY HAVE IT, you will also need to download the
  9. # ASCEND.MIB file from Ascend's FTP site (ftp.ascend.com) and
  10. # autoload it in your tnm-2.1.X/library/init.tcl library file.
  11. # change bank1name to the domain name or IP address of your first Ascend
  12. # change bank2name to the domain name or IP address of your second Ascend 
  13. # change bank1community to the SNMP community string of bank1
  14. # change bank2community to the SNMP community string of bank2
  15. set bank1name="bank1.domain.com"
  16. set bank2name="bank2.domain.com"
  17. set bank1community="bank1community"
  18. set bank2community="bank2community"
  19. set MODEMS1=`snmpwalk $bank1name $bank2name mdmLineState|grep -i
  20. connect|
  21. wc -l`
  22. set MODEMS2=`snmpwalk mso2 ism2MARS mdmLineState|grep -i
  23. connect|
  24. wc -l`
  25. set UPTIME=`/usr/local/bin/snmpwalk mso1 ism2MARS system.sysUpTime|cut -c
  26. 20-80`
  27. set DESCRIP=`/usr/local/bin/snmpwalk mso1 ism2MARS system.sysDescr|cut -c
  28. 20-80`
  29. set MODEMS=`calc $MODEMS1 + $MODEMS2`
  30. echo $MODEMS
  31. echo $MODEMS
  32. echo $UPTIME
  33. echo $DESCRIP