PING网络通不通的指令,应该怎么写啊?
的有关信息介绍如下:用ping /?可以查看ping命令的信息,如下:
ping [-t] [-a] [-n count] [-l size] [-f] [-i TTL] [-v TOS] [-r count] [-s count] [[-j host-list] | [-k host-list]] [-w timeout] target_name
-t // Ping the specified host until stopped. To see statistics and continue - type Control-Break; To stop - type Control-C. //-t 校验与指定计算机的接,直到用户中断。
-a Resolve addresses to hostnames. //-a 将地址解析为计算机名。
-n //count Number of echo requests to send. //-n 发送由 count 指定数量的 ECHO 报文 -l 发送包含由 length 指定数据长度的 ECHO 报文
-l //size Send buffer size.
-f // Set Don't Fragment flag in packet. //-f 在包中发送“不分段”标志。该包将不被路由上的网关分段。
-i //TTL Time To Live.
-v //TOS Type Of Service. //-v 将“服务类型”字段设置为 tos 指定的数值
-r //count Record route for count hops. //-r 在“记录路由”字段中记录发出报文和返回报文的路由
-s // count Timestamp for count hops. //-s 指定由 count 指定的转发次数的时间邮票。
-j //host-list Loose source route along host-list. -j 经过由 computer-list 指定的计算机列表的路由报文。中间网关可能分隔连续的计算机松散的源路由)。
-k //host-list Strict source route along host-list. //-k 经过由 computer-list 指定的计算机列表的路由报文。中间网关可能分隔连续的计算机 (严格源路由)。
-w // timeout Timeout in milliseconds to wait for each reply. //-w 以毫秒为单位指定超时间隔。
例如:ping 192.168.1.1 -t