免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12下一页
最近访问板块 发新帖
查看: 7041 | 回复: 11
打印 上一主题 下一主题

[SOCKET] PHP 中如何使用ICMP? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2005-12-03 16:58 |只看该作者 |倒序浏览
只知道用socket_create创建一个,用socket_connect尝试连接。

使用TCP的80可以了,但是使用ICMP的方法却不会。

在php.net上看了手册了没有找到,朋友们帮忙呀。

[ 本帖最后由 HonestQiao 于 2005-12-3 19:11 编辑 ]

论坛徽章:
0
2 [报告]
发表于 2005-12-03 18:54 |只看该作者
只能exec("ping")吧

论坛徽章:
1
技术图书徽章
日期:2013-12-05 23:25:45
3 [报告]
发表于 2005-12-03 19:10 |只看该作者
http://www.php.net/manual/zh/ref.sockets.php

  1. <?php

  2. class Net_Ping
  3. {
  4.   var $icmp_socket;
  5.   var $request;
  6.   var $request_len;
  7.   var $reply;
  8.   var $errstr;
  9.   var $time;
  10.   var $timer_start_time;
  11.   function Net_Ping()
  12.   {
  13.    $this->icmp_socket = socket_create(AF_INET, SOCK_RAW, 1);
  14.    socket_set_block($this->icmp_socket);
  15.   }

  16.   function ip_checksum($data)
  17.   {
  18.      for($i=0;$i<strlen($data);$i += 2)
  19.      {
  20.          if($data[$i+1]) $bits = unpack('n*',$data[$i].$data[$i+1]);
  21.          else $bits = unpack('C*',$data[$i]);
  22.          $sum += $bits[1];
  23.      }
  24.    
  25.      while ($sum>>16) $sum = ($sum & 0xffff) + ($sum >> 16);
  26.      $checksum = pack('n1',~$sum);
  27.      return $checksum;
  28.   }

  29.   function start_time()
  30.   {
  31.    $this->timer_start_time = microtime();
  32.   }

  33.   function get_time($acc=2)
  34.   {
  35.    // format start time
  36.    $start_time = explode (" ", $this->timer_start_time);
  37.    $start_time = $start_time[1] + $start_time[0];
  38.    // get and format end time
  39.    $end_time = explode (" ", microtime());
  40.    $end_time = $end_time[1] + $end_time[0];
  41.    return number_format ($end_time - $start_time, $acc);
  42.   }

  43.   function Build_Packet()
  44.   {
  45.    $data = "abcdefghijklmnopqrstuvwabcdefghi"; // the actual test data
  46.    $type = "\x08"; // 8 echo message; 0 echo reply message
  47.    $code = "\x00"; // always 0 for this program
  48.    $chksm = "\x00\x00"; // generate checksum for icmp request
  49.    $id = "\x00\x00"; // we will have to work with this later
  50.    $sqn = "\x00\x00"; // we will have to work with this later

  51.    // now we need to change the checksum to the real checksum
  52.    $chksm = $this->ip_checksum($type.$code.$chksm.$id.$sqn.$data);

  53.    // now lets build the actual icmp packet
  54.    $this->request = $type.$code.$chksm.$id.$sqn.$data;
  55.    $this->request_len = strlen($this->request);
  56.   }

  57.   function Ping($dst_addr,$timeout=5,$percision=3)
  58.   {
  59.    // lets catch dumb people
  60.    if ((int)$timeout <= 0) $timeout=5;
  61.    if ((int)$percision <= 0) $percision=3;
  62.   
  63.    // set the timeout
  64.    socket_set_option($this->icmp_socket,
  65.      SOL_SOCKET,  // socket level
  66.      SO_RCVTIMEO, // timeout option
  67.      array(
  68.        "sec"=>$timeout, // Timeout in seconds
  69.        "usec"=>0  // I assume timeout in microseconds
  70.        )
  71.      );

  72.    if ($dst_addr)
  73.    {
  74.      if (@socket_connect($this->icmp_socket, $dst_addr, NULL))
  75.      {
  76.    
  77.      } else {
  78.        $this->errstr = "Cannot connect to $dst_addr";
  79.        return FALSE;
  80.      }
  81.      $this->Build_Packet();
  82.      $this->start_time();
  83.      socket_write($this->icmp_socket, $this->request, $this->request_len);
  84.      if (@socket_recv($this->icmp_socket, &$this->reply, 256, 0))
  85.      {
  86.        $this->time = $this->get_time($percision);
  87.        return $this->time;
  88.      } else {
  89.        $this->errstr = "Timed out";
  90.        return FALSE;
  91.      }
  92.    } else {
  93.      $this->errstr = "Destination address not specified";
  94.      return FALSE;
  95.    }
  96.   }
  97. }

  98. $ping = new Net_Ping;
  99. $ping->ping("www.google.ca");

  100. if ($ping->time)
  101.   echo "Time: ".$ping->time;
  102. else
  103.   echo $ping->errstr;

  104. ?>
复制代码

论坛徽章:
0
4 [报告]
发表于 2005-12-05 09:25 |只看该作者
版主的方法我试过了。
有错误报告:
[function.socket-create]: Unable to create socket [0]: 以一种访问权限不允许的方式做了一个访问套接字的尝试。


CU没有人做过这事吗?

论坛徽章:
1
技术图书徽章
日期:2013-12-05 23:25:45
5 [报告]
发表于 2005-12-05 09:44 |只看该作者
原帖由 78020281 于 2005-12-5 09:25 发表
版主的方法我试过了。
有错误报告:
[function.socket-create]: Unable to create socket [0]: 以一种访问权限不允许的方式做了一个访问套接字的尝试。


CU没有人做过这事吗?



我在Windows测试都可以的啊。

你在最开头加上error_reporting(E_ALL);

记住,如果是windows,需要在php.ini把socket的dll打开的哦。

论坛徽章:
0
6 [报告]
发表于 2005-12-05 15:50 |只看该作者
我是直接复制过去运行的,不知道行不行?


sockets.dll 是打开的。

论坛徽章:
1
技术图书徽章
日期:2013-12-05 23:25:45
7 [报告]
发表于 2005-12-05 15:52 |只看该作者
原帖由 78020281 于 2005-12-5 15:50 发表
我是直接复制过去运行的,不知道行不行?


sockets.dll 是打开的。



我一开始也是出现立的错误。

后来我加了最开投的那句话,看到了错误提示说不支持,我就打开socket,他就好了的。

论坛徽章:
0
8 [报告]
发表于 2005-12-07 16:06 |只看该作者
我试上面代码.

php.ini中已经 sockets.use_system_read = On

执行页面时出现错误提示:
Warning: socket_create() Unable to create socket [1]: Operation not permitted in /www/test/Net_Ping.php on line 14

Warning: socket_set_block() expects parameter 1 to be resource, boolean given in /www/test/Net_Ping.php on line 15

Warning: socket_set_option() expects parameter 1 to be resource, boolean given in /www/test/Net_Ping.php on line 79
Cannot connect to www.google.com

论坛徽章:
0
9 [报告]
发表于 2005-12-07 16:13 |只看该作者
呵呵, 因为 SOCKET_RAW 也就是原始套接字必须 root 才能建立的.

所以 web 运行的话并不一定是 root (管理员权限), 版主可能是在 cli 模式下测试

论坛徽章:
0
10 [报告]
发表于 2005-12-07 16:23 |只看该作者
如果我不提升web的权限有没有办法解决这个问题 .?
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP