dongmisa4779 2019-03-30 20:56
浏览 66
已采纳

在线,间歇,离线php ping脚本

Fairly new to server-side scripting in php here, so please bear w/ me:

Question:

  1. How would I implement an Intermittent call?

For Question 1:

I've got things to work in terms of Online / Offline, however, I'm needing to implement an Intermittent call where if a 2nd device is down, the page will show an Intermittent status globally for the main device as well as showing that the 2nd device is offline but I'm not exactly sure how to go about doing this...

Here is the working online/offline script but has no Intermittent call below...

// CHECK CONNECTIVITY
class CheckDevice {

  // CHECK END USERS OS (Linux or Windows)
  public function myOS(){
    if (strtoupper(substr(PHP_OS, 0, 3)) === (chr(87).chr(73).chr(78)))
      return true;

      return false;
    }

    public function ping($device_ip){
      if ($this->myOS()){
        if (!exec("ping -n 2 -w 1 ".$device_ip." 2>NUL > NUL && (echo 0) || (echo 1)"))
          return true;
        } else {
          if (!exec("ping -q -c2 ".$device_ip." >/dev/null 2>&1 ; echo $?"))
            return true;
          }

        return false;
    }
}

// IP of Device
$device_ip  = 'xxx.xxx.xxx.xxx';

// DEVICE CHECK
if ((new CheckDevice())->ping($device_ip))
  echo '<div class="status_wrapper">
                        <div class="status_oo_wrapper">
                            <div class="pic_bg"></div>
                        </div>
                        <p><b>DEVICE NAME</b></p>
                        <div class="status_online">Online</div>
                        <p class="span">No issues or outages to report...</p>';
else
  echo '<div class="status_wrapper">
                        <div class="status_oo_wrapper">
                            <div class="pic_bg"></div>
                        </div>
                        <p><b>DEVICE NAME</b></p>
                        <div class="status_offline">Offline</div>
                        <div class="status_offline_extended"></div>
                        <p class="span">Please be patient...</p>';

Script w/ more than 1 device where I'd like to have an Intermittent call whereas if device 2 goes down (or is offline), then device 1 would change it's state to Intermittent:

// CHECK CONNECTIVITY
    class CheckDevice {

      // CHECK END USERS OS (Linux or Windows)
      public function myOS(){
        if (strtoupper(substr(PHP_OS, 0, 3)) === (chr(87).chr(73).chr(78)))
          return true;

          return false;
        }

        public function ping($device_ip){
          if ($this->myOS()){
            if (!exec("ping -n 2 -w 1 ".$device_ip." 2>NUL > NUL && (echo 0) || (echo 1)"))
              return true;
            } else {
              if (!exec("ping -q -c2 ".$device_ip." >/dev/null 2>&1 ; echo $?"))
                return true;
              }

            return false;
        }
    }

    // CHECK CONNECTIVITY
    class CheckDevice2 {

      // CHECK END USERS OS (Linux or Windows)
      public function myOS(){
        if (strtoupper(substr(PHP_OS, 0, 3)) === (chr(87).chr(73).chr(78)))
          return true;

          return false;
        }

        public function ping($device2_ip){
          if ($this->myOS()){
            if (!exec("ping -n 2 -w 1 ".$device2_ip." 2>NUL > NUL && (echo 0) || (echo 1)"))
              return true;
            } else {
              if (!exec("ping -q -c2 ".$device2_ip." >/dev/null 2>&1 ; echo $?"))
                return true;
              }

            return false;
        }
    }

    // IP of Device
    $device_ip  = 'xxx.xxx.xxx.xxx';
    $device2_ip = 'xxx.xxx.xxx.xxx';

    // DEVICE CHECK
    if ((new CheckDevice())->ping($device_ip))
      echo '<div class="status_wrapper">
                            <div class="status_oo_wrapper">
                                <div class="pic_bg"></div>
                            </div>
                            <p><b>DEVICE NAME</b></p>
                            <div class="status_online">Online</div>
                            <p class="span">No issues or outages to report...</p>';
    else
      echo '<div class="status_wrapper">
                            <div class="status_oo_wrapper">
                                <div class="pic_bg"></div>
                            </div>
                            <p><b>DEVICE NAME</b></p>
                            <div class="status_offline">Offline</div>
                            <div class="status_offline_extended"></div>
                            <p class="span">Please be patient...</p>';

// DEVICE2 CHECK
        if ((new CheckDevice2())->ping($device2_ip))
          echo '<div class="status_wrapper">
                                <div class="status_oo_wrapper">
                                    <div class="pic_bg"></div>
                                </div>
                                <p><b>DEVICE2 NAME</b></p>
                                <div class="status_online">Online</div>
                                <p class="span">No issues or outages to report...</p>';
        else
          echo '<div class="status_wrapper">
                                <div class="status_oo_wrapper">
                                    <div class="pic_bg"></div>
                                </div>
                                <p><b>DEVICE2 NAME</b></p>
                                <div class="status_offline">Offline</div>
                                <div class="status_offline_extended"></div>
                                <p class="span">Please be patient...</p>';
  • 写回答

1条回答 默认 最新

  • duanlinzhen7235 2019-03-30 22:26
    关注

    I feel like this should work for you:

    
     if ((new CheckDevice2())->ping($device2_ip))
        if ((new CheckDevice())->ping($device_ip))
    
            echo '<div class="status_wrapper">
            <div class="status_oo_wrapper">
                <div class="pic_bg"></div>
            </div>
            <p><b>DEVICE NAME</b></p>
            <div class="status_online">Online</div>
            <p class="span">No issues or outages to report...</p>';
            echo '<div class="status_wrapper">
            <div class="status_oo_wrapper">
                <div class="pic_bg"></div>
            </div>
            <p><b>DEVICE2 NAME</b></p>
            <div class="status_online">Online</div>
            <p class="span">No issues or outages to report...</p>';
    
        else
    
            echo '<div class="status_wrapper">
            <div class="status_oo_wrapper">
                <div class="pic_bg"></div>
            </div>
            <p><b>DEVICE NAME</b></p>
            <div class="status_offline">Offline</div>
            <div class="status_offline_extended"></div>
            <p class="span">Please be patient...</p>';
            echo '<div class="status_wrapper">
            <div class="status_oo_wrapper">
                <div class="pic_bg"></div>
            </div>
            <p><b>DEVICE2 NAME</b></p>
            <div class="status_online">Online</div>
            <p class="span">No issues or outages to report...</p>';
    
    else
        echo "INTERMITENT";
    
        echo '<div class="status_wrapper">
        <div class="status_oo_wrapper">
            <div class="pic_bg"></div>
        </div>
        <p><b>DEVICE2 NAME</b></p>
        <div class="status_offline">Offline</div>
        <div class="status_offline_extended"></div>
        <p class="span">Please be patient...</p>';
    
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 关于#MATLAB#的问题,如何解决?(相关搜索:信噪比,系统容量)
  • ¥500 52810做蓝牙接受端
  • ¥15 基于PLC的三轴机械手程序
  • ¥15 多址通信方式的抗噪声性能和系统容量对比
  • ¥15 winform的chart曲线生成时有凸起
  • ¥15 msix packaging tool打包问题
  • ¥15 finalshell节点的搭建代码和那个端口代码教程
  • ¥15 Centos / PETSc / PETGEM
  • ¥15 centos7.9 IPv6端口telnet和端口监控问题
  • ¥20 完全没有学习过GAN,看了CSDN的一篇文章,里面有代码但是完全不知道如何操作