testleak.pl
上传用户:wxp200602
上传日期:2007-10-30
资源大小:4028k
文件大小:0k
源码类别:

SNMP编程

开发平台:

Unix_Linux

  1. use SNMP 1.6;
  2. $host = shift;
  3. unless ($host) {
  4.   $| = 1;  print "enter SNMP host address: "; $| = 0;
  5.   chomp($host = <STDIN>);
  6. }
  7. $obj = new SNMP::Session DestHost, $host;
  8. while (){
  9. print $obj->get(["ifNumber",0]);
  10.   open(COM,"ps -u$$|") || die;
  11.   @bar = <COM>; 
  12.   $siz = (split(' ',$bar[1]))[4];
  13.   $rss = (split(' ',$bar[1]))[5];
  14.   close(COM);
  15.   print "siz = $siz, rss = $rssn";
  16. }