“How to perform ping test”的版本间的差异

来自百问网嵌入式Linux wiki
 
(未显示同一用户的1个中间版本)
第1行: 第1行:
 
== Purpose ==
 
== Purpose ==
This article describes how to configure the Ethernet interface using the [[Network_tools#ping| PING]] tool.
+
本文介绍如何使用 [[Network_tools#ping| PING]] 工具。
  
 
=== Perform ping test ===
 
=== Perform ping test ===
To test the Ethernet connection, it is useful to know how to perform a “PING” between the PC and the board. The PING command exchanges a short message between the two devices to verify that the Ethernet connection is working.
+
要测试以太网连接,了解如何在PC和电路板之间执行“ping”命令非常有用。 PING命令在两个设备之间交换一条短消息,以验证以太网连接是否正常。
  
To test the communication between the PC to the board controller, one can execute the PING command from the PC:<br />
+
要测试PC与板控制器之间的通信,可以从PC执行PING命令:<br />
  
For example, to PING a board at IP address 10.48.1.172, type:
+
例如,要对IP地址为10.48.1.172的单板执行PING操作,请输入:
  
 
   {{PC$}}ping 10.48.1.172
 
   {{PC$}}ping 10.48.1.172
  
If the PING is successful, a message similar to the following is displayed:
+
如果PING成功,则会显示类似以下消息:
 
 
 
     {{PC$}}Pinging 10.48.1.172 with 32 bytes of data:
 
     {{PC$}}Pinging 10.48.1.172 with 32 bytes of data:
 
     {{PC$}}Reply from 10.48.1.172: bytes=32 time=39ms TTL=15
 
     {{PC$}}Reply from 10.48.1.172: bytes=32 time=39ms TTL=15
第20行: 第19行:
 
==References==
 
==References==
 
<references />
 
<references />
 
<noinclude>
 
[[Category:Ethernet]]
 
{{PublicationRequestId | 10179 | 2019-01-07 | Brunob}}
 
</noinclude>
 

2020年11月6日 (五) 14:31的最新版本

Purpose

本文介绍如何使用 PING 工具。

Perform ping test

要测试以太网连接,了解如何在PC和电路板之间执行“ping”命令非常有用。 PING命令在两个设备之间交换一条短消息,以验证以太网连接是否正常。

要测试PC与板控制器之间的通信,可以从PC执行PING命令:

例如,要对IP地址为10.48.1.172的单板执行PING操作,请输入:

 PC $>ping 10.48.1.172

如果PING成功,则会显示类似以下消息:

   PC $>Pinging 10.48.1.172 with 32 bytes of data:
   PC $>Reply from 10.48.1.172: bytes=32 time=39ms TTL=15
   PC $>Reply from 10.48.1.172: bytes=32 time=39ms TTL=15
   PC $>Reply from 10.48.1.172: bytes=32 time=39ms TTL=15

References