You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
796 B

5 years ago
# arping
7 years ago
6 years ago
## 说明
7 years ago
5 years ago
**arping命令** 是用于发送arp请求到一个相邻主机的工具arping使用arp数据包通过ping命令检查设备上的硬件地址。能够测试一个ip地址是否
在网络上已经被使用并能够获取更多设备信息。功能类似于ping
## 选项
```markdown
-f : quit on first reply
-q : be quiet
-b : keep broadcasting, don't go unicast
-D : duplicate address detection mode
-U : Unsolicited ARP mode, update your neighbours
-A : ARP answer mode, update your neighbours
-V : print version and exit
-c count : how many packets to send
-w timeout : how long to wait for a reply
-I device : which ethernet device to use
-s source : source ip address
destination : ask for what ip address
7 years ago
```
5 years ago
## 实例
7 years ago
5 years ago
```bash
arping www.baidu.com
7 years ago
```