返回列表 发帖

教你正确使用Windows的Ping命令

  对于Windows下ping命令相信大家已经再熟悉不过了,但是能把ping的功能发挥到最大的人却并不是很多,当然我也并不是说我可以让ping发挥最大的功能,我也只不过经常用ping这个工具,也总结了一些小经验,现在和大家分享一下。 # q8 V: c4 k9 n7 x) q
  
" x# w( z6 S1 }: h# a  现在我就参照ping命令的帮助说明来给大家说说我使用ping时会用到的技巧,ping只有在安装了TCP/IP协议以后才可以使用:
7 L) V$ _& s7 B6 Q  
& [3 b: c; R, A, [* ]  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 6 l" j5 f6 k' k
   : R! z5 c, |: A- X/ N% D
  Options: 2 l9 k3 t# \" p+ O, s2 r
  
) T" a  r6 n6 K0 i8 e  -t Ping the specified host until stopped.To see statistics and continue - type Control-Break;To stop - type Control-C.
% M+ L, O0 q+ U9 S; H   / r/ Y# @" N- r% Z( @1 a
  不停的ping地方主机,直到你按下Control-C。
8 x) l! I- t: D% J  
% `% w. s0 Z+ J. D3 [  j: o  此功能没有什么特别的技巧,不过可以配合其他参数使用,将在下面提到。 3 D  j$ z9 L8 V
  
. \3 l$ e  f' V/ {+ y( U% V3 o+ E  -a Resolve addresses to hostnames.
% t  j8 k4 w; d. G     x. i( W! c$ W+ }) F+ h
  解析计算机NetBios名。
$ j* |% m- R2 p% Z; X* t; B  
0 }4 w& V; [4 b/ S5 x& h; H) J  示例:C:\>ping -a 192.168.1.21 / a6 b& p1 {; e: m7 r/ q% ~- e  `+ C) p
  
& s2 f1 u9 w/ O+ r  Pinging iceblood.yofor.com [192.168.1.21] with 32 bytes of data: ( N7 `% u9 {, N7 ]& s* \4 N
   8 p9 n* _4 X$ b& _
  Reply from 192.168.1.21: bytes=32 time<10ms TTL=254   n( N  K4 @, A( {" ]( j& y. \
     J7 X3 Z& `' q/ N' q& A8 ?; R
  Reply from 192.168.1.21: bytes=32 time<10ms TTL=254
" t2 W- k" n; G9 T  
8 X/ H' {! W" N# B) c  Reply from 192.168.1.21: bytes=32 time<10ms TTL=254 6 Z. @6 P% W0 A0 k; L
+ J' J- z2 a+ S& p  H
  
- c: \# ~7 r* R7 [0 F6 s3 T  Reply from 192.168.1.21: bytes=32 time<10ms TTL=254
/ _$ ~* ~3 }; {" F& X: o2 h% y   . M+ a$ P" D+ V8 s6 @7 r
  Ping statistics for 192.168.1.21: : y5 X  F! t% I
   6 Y/ w2 W6 [6 B( l5 Z/ v2 y
  Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),Approximate round trip times in milli-seconds:
& ?) Z- Q) ?5 s/ h6 L1 \% i  
  {, I; t9 M2 D4 }/ K' {  |  Minimum = 0ms, Maximum = 0ms, Average = 0ms 8 l5 w: ]9 U$ L, b6 n. E7 T3 e4 \
     `1 \1 i* t6 d
  从上面就可以知道IP为192.168.1.21的计算机NetBios名为iceblood.yofor.com。 " L7 a  q6 O8 N) T% p4 U
  
5 w- u5 U# t8 K8 i5 y4 D- y8 h8 M6 ?" v  -n count Number of echo requests to send.
( P$ \+ _/ q- O3 E! |8 u  
3 p! n" E/ J' ~; f7 k+ a  发送count指定的Echo数据包数。
4 |! N' n! b) z  
' w1 e6 u: j4 T* ~& N3 w  在默认情况下,一般都只发送四个数据包,通过这个命令可以自己定义发送的个数,对衡量网络速度很有帮助,比如我想测试发送50个数据包的返回的平均时间为多少,最快时间为多少,最慢时间为多少就可以通过以下获知:
, v# G& G' ]1 b: h' ?) }7 F, m  
5 H. a4 ^7 C0 \: D  C:\>ping -n 50 202.103.96.68 9 R1 J/ |. U% Z7 X. A) Y
   7 G$ @' E6 a" [- I( S- b
  Pinging 202.103.96.68 with 32 bytes of data:
* E! K7 R$ F% {2 M" c  
( H# a3 _% r; D0 U# D# \$ i  Reply from 202.103.96.68: bytes=32 time=50ms TTL=241 ! Q: H+ p9 I; _& z
   9 C: [. i8 n8 k4 D' }5 F4 ~+ e9 w
  Reply from 202.103.96.68: bytes=32 time=50ms TTL=241
: j% a) ~, e6 z' Z/ @, [   % D1 L# E8 w1 _
  Reply from 202.103.96.68: bytes=32 time=50ms TTL=241
; A2 K9 B* ]& e/ [* Q8 Z   $ h3 k8 j$ l" k
  Request timed out.
2 `; _5 I: a) t! z- u0 x  
3 ^! x8 `. S7 T0 r. ]+ d9 S  ………………
' \2 W" w/ {% @+ B   2 O7 L1 f4 F2 j  ?9 M% o, ^
  Reply from 202.103.96.68: bytes=32 time=50ms TTL=241
, @% F* a3 S$ d, B  
0 a8 z! O3 @3 y5 p  Reply from 202.103.96.68: bytes=32 time=50ms TTL=241
: J( W9 ]  c) _. K   9 u6 n* ]- z; G7 `
  Ping statistics for 202.103.96.68: 5 z2 f9 \% G. J1 U" C  N
  
  x, h# q( G' P. ~6 d4 N1 |: F  Packets: Sent = 50, Received = 48, Lost = 2 (4% loss),Approximate round trip times in milli-seconds: / F2 W; S8 m$ `( J' u$ @" m' A
  
0 G& C+ }, A  l6 X7 O- u2 \  Minimum = 40ms, Maximum = 51ms, Average = 46ms 1 d) O  n# A+ u7 T
   . s* Z9 J% ]( }: g! n% [8 L
  从以上我就可以知道在给202.103.96.68发送50个数据包的过程当中,返回了48个,其中有两个由于未知原因丢失,这48个数据包当中返回速度最快为40ms,最慢为51ms,平均速度为46ms。
9 K9 r& r% \- q- O8 ^* z  
4 a3 s7 J/ U2 a' m  -l size Send buffer size. + U  s+ S) a  x* o8 m- R" h
   0 h5 z" {4 j1 u
  定义echo数据包大小。
89w.org捌玖网络

强大,但是我看得不是很懂!

TOP

返回列表
【捌玖网络】已经运行: