当前位置: > Linux教程 > 系统运维 >

Linux下ARP相关操作

时间:2015-12-20 00:58来源:未知 作者:IT
1.基本原理

地址解析协议,即ARP(Address Resolution Protocol),是根据IP地址获取物理地址的一个TCP/IP协议。主机发送信息时将包含目标IP地址的ARP请求广播到网络上的所有主机,并接收返回消息,以此确定目标的物理地址;收到返回消息后将该IP地址和物理地址存入本机ARP缓存中并保留一定时间,下次请求时直接查询ARP缓存以节约资源。地址解析协议是建立在网络中各个主机互相信任的基础上的,网络上的主机可以自主发送ARP应答消息,其他主机收到应答报文时不会检测该报文的真实性就会将其记入本机ARP缓存;由此攻击者就可以向某一主机发送伪ARP应答报文,使其发送的信息无法到达预期的主机或到达错误的主机,这就构成了一个ARP欺骗。ARP命令可用于查询本机ARP缓存中IP地址和MAC地址的对应关系、添加或删除静态对应关系等。相关协议有RARP、代理ARP。NDP用于在IPv6中代替地址解析协议。


2.arp命令
arp命令用来管理ARP缓存

arp -v 详细模式

1
2
3
4
5
6
$ arp -v
Address                  HWtype  HWaddress           Flags Mask            Iface
xxxxx                    ether   00:12:da:46:34:00   C                     eth0
10.1.1.17                ether   00:16:3e:f2:38:33   C                     eth1
10.1.1.12                ether   00:16:3e:f2:37:6b   C                     eth1
Entries: 3 Skipped: 0 Found: 3
 




arp -n 显示数字地址
1
2
3
4
5
$ arp -n
Address                  HWtype  HWaddress           Flags Mask            Iface
xxxxxxxx                 ether   00:12:da:46:34:00   C                     eth0
10.1.1.13                ether   00:16:3e:f2:37:7d   C                     eth1
10.1.1.18                ether   00:16:3e:f2:38:35   C                     eth1
 




arp  -a 查看指定主机的IP和MAC对应关系,默认显示全部
1
2
3
4
5
6
$ arp -a
? (xxxxxxxxx) at 00:12:da:46:34:00 [ether] on eth0
? (10.1.1.13) at 00:16:3e:f2:37:7d [ether] on eth1
? (10.1.1.18) at 00:16:3e:f2:38:35 [ether] on eth1
[gintama@gintama-taiwan-lb1 ~]$ arp -a 10.1.1.18
? (10.1.1.18) at 00:16:3e:f2:38:35 [ether] on eth1
 


arp -d 删除指定主机的IP和MAC对应关系

1 $ sudo arp -d 10.1.1.18
 




arp -i 只显示指定网卡的IP和MAC对应关系
1
2
3
4
5
6
7
$ arp -i eth0
Address                  HWtype  HWaddress           Flags Mask            Iface
xxxxxxxxxxxxx            ether   00:12:da:46:34:00   C                     eth0
$ arp -i eth1
Address                  HWtype  HWaddress           Flags Mask            Iface
10.1.1.13                ether   00:16:3e:f2:37:7d   C                     eth1
10.1.1.18                ether   00:16:3e:f2:38:35   C
 




arp -s hostname hw_addr, --set hostname    手动设置IP和MAC的对应关系
1 $ sudo arp -s 10.1.1.18 00:16:3e:f2:38:35
 




3.arping命令
arping [ -AbDfhqUV]  [ -c count]  [ -w deadline]  [ -s source]  -I interface destination
想目标主机发送ARP请求


-A 使用ARP REPLAY替代ARP REQUEST报文
1
2
3
4
5
6
7
$ sudo arping -A  -I eth1  -s 10.1.1.12  10.1.1.19
ARPING 10.1.1.19 from 10.1.1.12 eth1
Unicast reply from 10.1.1.19 [00:16:3E:F2:38:3B]  627.781ms
Unicast reply from 10.1.1.19 [00:16:3E:F2:38:3B]  988.125ms
Unicast reply from 10.1.1.19 [00:16:3E:F2:38:3B]  827.356ms
Unicast reply from 10.1.1.19 [00:16:3E:F2:38:3B]  837.510ms
Unicast reply from 10.1.1.19 [00:16:3E:F2:38:3B]  303.940ms
 




-b 只发送MAC层面的ARP广播报文,正常情况下,arping先以发送ARP广播报文方式启动,当收到ARP REPLY报文后就转成单播

1
2
3
4
5
$ sudo arping -b  -I eth1  -s 10.1.1.12  10.1.1.19
ARPING 10.1.1.19 from 10.1.1.12 eth1
Unicast reply from 10.1.1.19 [00:16:3E:F2:38:3B]  0.764ms
Unicast reply from 10.1.1.19 [00:16:3E:F2:38:3B]  0.843ms
Unicast reply from 10.1.1.19 [00:16:3E:F2:38:3B]  0.744ms
 




-c 指定发送ARP REQUEST报文个数.如果再指定-w参数,arping将一直等待ARP REPLY报文,直到超时时间截止

1
2
3
4
5
6
7
8
9
$ sudo arping -c 5  -I eth1  -s 10.1.1.12  10.1.1.19
ARPING 10.1.1.19 from 10.1.1.12 eth1
Unicast reply from 10.1.1.19 [00:16:3E:F2:38:3B]  0.771ms
Unicast reply from 10.1.1.19 [00:16:3E:F2:38:3B]  0.744ms
Unicast reply from 10.1.1.19 [00:16:3E:F2:38:3B]  0.741ms
Unicast reply from 10.1.1.19 [00:16:3E:F2:38:3B]  0.806ms
Unicast reply from 10.1.1.19 [00:16:3E:F2:38:3B]  0.731ms
Sent 5 probes (1 broadcast(s))
Received 5 response(s)
 



-w deadline
以秒为单位指定超时时间。



(责任编辑:IT)
------分隔线----------------------------
栏目列表
推荐内容