大部分人用ping命令只是作为查看另一个系统的网络连接是否正常的一种简单方法。在这篇文章中,作者将介绍如何用C语言编写一个模拟ping命令功能的程序。 ping命令是用来查看网络上另一个主机系统的网络连接是否正常的一个工具。ping命令的工作原理是:向网络上的另一个主机系统发送ICMP报文,如果指定系统得到了报文,它将把报文一模一样地传回给发送者,这有点象潜水艇声纳系统中使用的发声装置。 例如,在Linux终端上执行ping l...
static void* rcv_msg(void *ptr) { int sd,ret; struct pong_msg_st rmsg; time_t time2; struct sigaction sa,osa; pthread_detach(pthread_self()); sa.sa_sigaction=int_handler; sigemptyset(&sa.sa_mask); sa.sa_flag...
大部分人用ping命令只是作为查看另一个系统的网络连接是否正常的一种简单方法。在这篇文章中,作者将介绍如何用C语言编写一个模拟ping命令功能的程序。 ping命令是用来查看网络上另一个主机系统的网络连接是否正常的一个工具。ping命令的工作原理是:向网络上的另一个主机系统发送ICMP报文,如果指定系统得到了报文,它将把报文一模一样地传回给发送者,这有点象潜水艇声纳系统中使用的发声装置。 例如,在Linux终端上执行ping lo...
不是我自己写的,在学Python,所以对源码很感兴趣. 贴出来给同样有兴趣的朋友看看. #!/usr/bin/env python # -*- coding: iso-8859-1 -*- """ping.py ping.py uses the ICMP protocol's mandatory ECHO_REQUEST datagram to elicit an ICMP ECHO_RESPONSE from a host or gateway. Copyright (C) 2004 - Lars Strand ; This program is free software; you can redistribute it and/or modify it under the terms of the...
发信人: matrix (矩阵), 信区: NetPrg 标 题: ping程序源代码 发信站: 牡丹园 (Mon Jul 22 09:33:59 2002) , 站内信件 // Module Name: ping.c // // Description: // This sample illustrates how an ICMP ping app can be written // using the SOCK_RAW socket type and IPPROTO_ICMP protocol. // By creating a raw socket, the underlying layer does not change // the protocol header so that when we submi...
我写了个ping程序,在unix下面只能用root才能运行,是因为使用了原始套接字SOCK_RAW,请问还有没有别的方法实现ping程序,不需要root就能运行的啊~,有的话怎么实现呢?
我写了个ping程序,在unix下面只能用root才能运行,是因为使用了原始套接字SOCK_RAW,请问还有没有别的方法实现ping程序,不需要root就能运行的啊~,有的话怎么实现呢?
在永远的UNIX上,下的ping源码在linux编译通过后(http://fanqiang.chinaunix.net/program/netpro/2001-05-12/1979.shtml),可以ping本机,为什么ping其他机器时,就会有问题。似乎是组塞在size = recvfrom(sock, buf, sizeof(buf), 0, (struct sockaddr *)&it, &namelen); 这句上了,请高手指教。
// Module Name: ping.c // // Description: // This sample illustrates how an ICMP ping app can be written // using the SOCK_RAW socket type and IPPROTO_ICMP protocol. // By creating a raw socket, the underlying layer does not change // the protocol header so that when we submit the ICMP header // nothing is changed so that the receiving end will see an // ICMP packet. Additionally, we use the reco...
/************关于本文档******************************************** *filename: ping.c *purpose: 实现简单的ping程序目的 *wrote by: fanyunfei(yinshulei5211314@yahoo.com.cn) *date time:2007-01-30 20:03 *********************************************************************/ #include #include #include #include #include #include #include #include #include #include #include #include #define...