Perl指令碼實現檢測主機心跳訊號功能_perl

來源:互聯網
上載者:User

使用串口通訊,在備機端使用如下指令碼檢測來自主機的心跳訊號,一旦未接受次數超過指定記數,備機認為主機DOWN機,自動化佈建為主機的網路參數,頂替主機提供服務。

# ! perl -w   use strict; use Win32 :: SerialPort; my  $port  =  ' COM2 ' ; # serail port name registried in OS  my  $count  =  0 ; # count number of heartbeat-receiving failture  my  $max_count  =  5 ; # max fail count to be tolerated  my  $interface  =  '  # ---------------------------------- # 介面 IP 配置     # ---------------------------------- pushd interface ip# "local" 的介面 IP 配置set address name="local" source=static addr=192.168.6.185 mask=255.255.255.0set address name="local" gateway=192.168.6.65 gwmetric=0set dns name="local" source=static addr=192.168.6.112 register=PRIMARYadd dns name="local" addr=192.168.6.201 index=2set wins name="local" source=static addr=nonepopd# 介面 IP 配置結束 ' ; # net inetrface config information   sub errlog {   # log the failtrue occuring time       open ERR ,  ' >>err.log ' ;   my  @time  =  localtime ();   my  $time  =  sprintf ( " %d " ,  $time [ 5 ] +  1900 )              .  ' - '              .  sprintf ( " %d " ,  $time [ 4 ] +  1 )             .  ' - '              .  " $time[3] "              .  '  '              .  sprintf ( " %.2d " ,  $time [ 2 ])             .  ' : '              .  sprintf ( " %.2d " ,  $time [ 1 ])             .  ' : '              .  sprintf ( " %.2d " ,  $time [ 0 ]);   print ERR $time . " \n " ;   close ERR;} sub ipchange {   # change ip addrress       open TMP ,  ' >tmp ' ;   print TMP $interface ;   close TMP;     eval {     system  ' netsh -f tmp ' ;     unlink  ' tmp ' ;  };     if ($@) { return  0 ;}   return  1 ;} my  $ob  = Win32 :: SerialPort -> new( $port ) or die  " CANNOT OPEN $port " ; # open serial port   eval {   # set serial port properties       $ob -> baudrate( 9600 );   $ob -> parity( ' none ' );   $ob -> databits( 8 );   $ob -> stopbits( 1 );   $ob -> handshake( ' none ' );};   if ($@) { die  ' SET FAILED ' ;} $ob -> write_settings or die  " CANNOT WRITE $port DRIVER " ; # write to port driver to make it active   while ( 1 ) {   # loop receiving heartbeat from remote machine  # change ip address after designated count of failture       my ( $length ,  $result ) =  $ob -> read ( 10 );     if ( $result ) {      $count  =  0 ;  } elsif ( $count  ==  $max_count ) {    errlog();     if (not ipchange()) { print  ' IP CHANGE FAILED ' ; }     last ;  }   else {      $count ++ ;  }     sleep ( 1 );} undef  $ob ;

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.