upsdata01.pl
上传用户:shbosideng
上传日期:2013-05-04
资源大小:1555k
文件大小:0k
源码类别:

SNMP编程

开发平台:

C/C++

  1. #!/usr/bin/perl
  2. #
  3. # Script to convert runtime MIB variable for UPS into minutes
  4. $a=`/usr/bin/snmpget <SERVERNAME> <COMMUNITY> .1.3.6.1.4.1.318.1.1.1.2.2.3.0`;
  5. chomp $a;
  6. @b=split(/ /,$a);
  7. @c=split(/:/,$b[4]);
  8. @d=split(/ /,`/usr/bin/snmpget <SERVERNAME> <COMMUNITY> .1.3.6.1.4.1.318.1.1.1.4.2.3.0`);
  9. chomp $d;
  10. print eval($c[0] * 60 + $c[1]),"n";
  11. print $d[3];