centos arp命令
时间: 2023-06-30 19:26:00 浏览: 149
ARP命令说明
在 CentOS 中,`arp` 命令可以用于查看和操作系统的 ARP 缓存。
查看 ARP 缓存:
```
arp -a
```
清空 ARP 缓存:
```
sudo arp -d *
```
添加静态 ARP 条目:
```
sudo arp -s <ip_address> <mac_address>
```
删除静态 ARP 条目:
```
sudo arp -d <ip_address>
```
注意:`arp` 命令需要使用管理员权限才能执行某些操作。
阅读全文