arp

更新时间:
2024-01-09
下载文档

arp

添加、删除或查看 ARP 表。

格式

arp [-a] | [-s inet_address physical_address] | [-d inet_address]

说明

[root@sylixos:/root]# help arp            
display ro modifies ARP table.
-a      display the ARP table.
-s      add or set a static arp entry.
        eg. arp -s 192.168.1.100 00:11:22:33:44:55
-d      delete a STATIC arp entry.
        eg. arp -d 192.168.1.100
arp [-a | -s inet_address physical_address | -d inet_address]
[root@sylixos:/root]# 

此命令有 3 种用法:

  • arp – a 用于查看 ARP 表。
  • arp -s inet_address physical_address 用于增加一个地址到 ARP 表中。
  • arp -d inet_address 用于删除一个存在 ARP 表中的地址。

备注:
ARP 表信息存放在/proc/net/arp 文件下。

样例

[root@sylixos:/root]# arp -a
FACE INET ADDRESS     PHYSICAL ADDRESS  TYPE
[root@sylixos:/root]# arp -s 192.168.7.60 00:11:22:33:44:55
[root@sylixos:/root]# arp -a
FACE INET ADDRESS     PHYSICAL ADDRESS  TYPE
en1  192.168.7.60     00:11:22:33:44:55 static
[root@sylixos:/root]# arp -d 192.168.60
[root@sylixos:/root]# arp -a
FACE INET ADDRESS     PHYSICAL ADDRESS  TYPE
[root@sylixos:/root]#

字段说明:

字段说明
FACE网络接口名称
INET ADDRESSARP 表项 IP 地址
PHYSICAL ADDRESSARP 表项 MAC 地址
TYPEARP 表项类型(static / dynamic)
文档内容是否对您有所帮助?
有帮助
没帮助