返回列表 发帖

Ping 命令讲解

对于ping指令相信大家已经再熟悉不过了,但是能把ping的功能发挥到最大的人却并不是很多,当然我也并不是说我可以让ping发挥最大的功能,我也只不过经常用ping这个工具,也总结了一些小经验,现在和大家分享一下。   现在我就参照ping指令的辅助说明来给大家讲我使用ping时会用到的技巧,ping只有在安装了tcp/ip通讯协议以后才可以使用:   ping [-t] [-a] [-n count] [-l length] [-f] [-i ttl] [-v tos] [-r count] [-s count] [[-j computer-list] | [-k computer-list]] [-w timeout] destination-list   options:   -t ping the specified host until stopped.to see statistics and continue - type control-break;to stop - type control-c.   不停的ping地方主机,直到你按下control-c。   此功能?有什么特别的技巧,不过可以配合其它参数使用,将在下面提到。   -a resolve addresses to hostnames.   解析计算机netbios名。   例:c:\>ping -a 192.168.1.21   pinging iceblood.yofor.com [192.168.1.21] with 32 bytes of data:   reply from 192.168.1.21: bytes=32 time<10ms ttl=254   reply from 192.168.1.21: bytes=32 time<10ms ttl=254   reply from 192.168.1.21: bytes=32 time<10ms ttl=254   reply from 192.168.1.21: bytes=32 time<10ms ttl=254   ping statistics for 192.168.1.21:   packets: sent = 4, received = 4, lost = 0 (0% loss),approximate round trip times in milli-seconds:   minimum = 0ms, maximum = 0ms, average = 0ms   从上面就可以知道ip为192.168.1.21的计算机netbios名为iceblood.yofor.com。   -n count number of echo requests to send.   发送count指定的echo数据包数。   在默认情况下,一般都只发送四个数据包,通过这个命令可以自己定义发送的个数,对衡量网络速度很有帮助,比如我想测试发送50个数据包的返回的平均时间为多少,最快时间为多少,最慢时间为多少就可以通过以下?知:   c:\>ping -n 50 202.103.96.68   pinging 202.103.96.68 with 32 bytes of data:   reply from 202.103.96.68: bytes=32 time=50ms ttl=241   reply from 202.103.96.68: bytes=32 time=50ms ttl=241   reply from 202.103.96.68: bytes=32 time=50ms ttl=241   request timed out.   ………………   reply from 202.103.96.68: bytes=32 time=50ms ttl=241   reply from 202.103.96.68: bytes=32 time=50ms ttl=241   ping statistics for 202.103.96.68:   packets: sent = 50, received = 48, lost = 2 (4% loss),approximate round trip times in milli-seconds:   minimum = 40ms, maximum = 51ms, average = 46ms   从以上我就可以知道在给202.103.96.68发送50个数据包的过程当中,返回了48个,其中有两个由于未知原因丢失,这48个数据包当中返回速度最快为40ms,最慢为51ms,平均速度为46ms。   -l size send buffer size.   定义echo数据包大小。   在默认的情?下windows的ping发送的数据包大小为32byt,我们也可以自己定义它的大小,但有一个大小的限制,就是最大只能发送65500byt,也许有人会问为什么要限制到65500byt,因为windows系列的系统都有一个安全漏洞(也许还包括其它系统)就是当向对方一次发送的数据包大于或等于65532时,对方就很有可能当机,所以微软公司为了解决这一安全漏洞于是限制了ping的数据包大小。虽然微软公司已经做了此限制,但这个参数配合其它参数以后危害依然非常强大,比如我们就可以通过配合-t参数来实现一个带有攻击性的指令:(以下介绍带有危险性,只用于试验,请勿轻易施于别人计算机上,否?后果自负)   c:\>ping -l 65500 -t 192.168.1.21   pinging 192.168.1.21 with 65500 bytes of data:   reply from 192.168.1.21: bytes=65500 time<10ms ttl=254   reply from 192.168.1.21: bytes=65500 time<10ms ttl=254   ………………   这样它就会不停的向192.168.1.21计算机发送大小为65500byt的数据包,如果你只有一台计算机也许?有什么效果,但如果有很多台计算机那么就可以使对方完全瘫痪,我曾经就做过这样的试验,当我同时使用10台以上计算机ping一台win2000pro系统的计算机时,不到5分钟对方的网络就已经完全瘫痪,网络严重堵塞,http和ftp服务完全停止,由此可见威力非同小可。   -f set don't fragment flag in packet.   在数据包中发送“不要分段”标志。   在一般你所发送的数据包都会通过路由分段再发送给对方,加上此参数以后路由就不会再分段处理。   -i ttl time to live.   指定ttl值在对方的系统里停留的时间。   此参数同样是帮助你检查网络运转情况的。   -v tos type of service.   将“服务类型”字段设置为tos指定的值。   -r count record route for count hops.   在“记录路由”字段中记录伝出和返回数据包的路由。   在一般情况下你发送的数据包是通过一个个路由才到达对方的,但到底是经过了哪些路由呢?通过此参数就可以设定你想探测经过的路由的个数,不过限制在了9个,也就是说你只能跟踪到9个路由,如果想探测更多,可以通过其它命令实现,我将在以后的文章中给大家讲解。以下为筥例:   c:\>ping -n 1 -r 9 202.96.105.101(发送一个数据包,最多记录9个路由)   pinging 202.96.105.101 with 32 bytes of data:   reply from 202.96.105.101: bytes=32 time=10ms ttl=249   route: 202.107.208.187 ->   202.107.210.214 ->   61.153.112.70 ->   61.153.112.89 ->   202.96.105.149 ->   202.96.105.97 ->   202.96.105.101 ->   202.96.105.150 ->   61.153.112.90   ping statistics for 202.96.105.101:   packets: sent = 1, received = 1, lost = 0 (0% loss),   approximate round trip times in milli-seconds:   minimum = 10ms, maximum = 10ms, average = 10ms   从上面我就可以知道从我的计算机到202.96.105.101一共通过了202.107.208.187,202.107.210.214 , 61.153.112.70 , 61.153.112.89 , 202.96.105.149 , 202.96.105.97这几个路由。   -s count timestamp for count hops.   指定count指定的?点数的时间戳。   此参数和-r差不多,只是这个参数不记录数据包返回所经过的路由,最多也只记录4个。   -j host-list loose source route along host-list.   利用computer-list指定的计算机列表路由数据包。连续计算机可以被中间关网?分隔(路由稀疏源)ip允许的最大?量为9。   -k host-list strict source route along host-list.   利用computer-list指定的计算机列表路由数据包。连续计算机不能被中间网?分隔(路由?格源)ip允许的最大数量为9。   -w timeout timeout in milliseconds to wait for each reply.   指定超时间隔,单位为毫秒。   此参数?有什么其它技巧。   ping指令的其它技巧:在一般情况下还可以通过ping对方让对方返回给你的ttl值大小,粗略的判断目标主机的系统类型是windows系列还是unix/linux系列,一般情况下windows系列的系?返回的ttl值在100-130之间,而unix/linux系列的系统返回的ttl值在240-255之间,当然ttl的值在对方的主机里是可以修改的,windows系列的系?可以通过修改注?表以下键值实现:   [hkey_local_machine\system\currentcontrolset\services\tcpip\parameters]   "defaultttl"=dword:000000ff   255---ff   128---80   64----40   32----20 c:\>ping /? usage: ping [-t] [-a] [-n count] [-l size] [-f] [-i ttl] [-v tos] [-r count] [-s count] [[-j host-list] | [-k host-list]] [-w timeout] destination-list options: -t ping the specified host until stopped. to see statistics and continue - type control-break; to stop - type control-c. -a resolve addresses to hostnames. -n count number of echo requests to send. -l size send buffer size. -f set don't fragment flag in packet. -i ttl time to live. -v tos type of service. -r count record route for count hops. -s count timestamp for count hops. -j host-list loose source route along host-list. -k host-list strict source route along host-list. -w timeout timeout in milliseconds to wait for each 由于时间上的关系..其它功能请自行试用. . .TKS

Ping 命令讲解

关于介绍Ping命令的帖子已经有不少了,我还发过一篇比较简练点的

TOP

Ping 命令讲解

我没看到!

TOP

Ping 命令讲解

是吗,我没看到!

TOP

Ping 命令讲解

这个好象有过一篇了

TOP

返回列表 回复 发帖