arp_announce和arp_ignore 详细解说

版本V1.0
时间2012-06-16
版权GPL
作者itnihao
说明,本文档来自网络整理和个人理解综合整理
原文地址http://itnihao.blog.51cto.com/1741976/75247


lvs在DR模式下需要关闭arp,设置参数的意思可以参考下文

arp_announce和arp_ignore

用来屏蔽arp请求,比较难理解,先看看linux核心2.6的定义:

==============================arp_announce=============================

arp_announce - INTEGER Define different restriction levels for announcing the local source IP address from IP packets in ARP requests sent on interface:

0 - (default) Use any local address, configured on any interface

1 - Try to avoid local addresses that are not in the target's subnet for this interface. This mode is useful when target hosts reachable via this interface require the source IP address in ARP requests to be part of their logical network configured on the receiving interface. When we generate the request we will check all our subnets  that include the target IP and will preserve the source address if it is from such subnet. If there is no such subnet we select source address according to the rules for level

2 - Always use the best local address for this target. In this mode we ignore the source address in the IP packet and try to select local address that we prefer for talks with the target host. Such local address is selected by looking for primary IP addresses on all our subnets on the outgoing interface that include the target IP address. If no suitable local address is found we select the first local address we have on the outgoing interface or on all other interfaces, with the hope we will receive reply for our request and even sometimes no matter the source IP address we announce. The max value from conf/{all,interface}/arp_announce is used. Increasing the restriction level gives more chance for receiving answer from the resolved target while decreasing the level announces more valid sender's information.

#对网络接口上,本地IP地址的发出的,ARP回应,作出相应级别的限制: 确定不同程度的限制,宣布对来自本地源IP地址发出Arp请求的接口

0 - (默认) 在任意网络接口(eth0,eth1,lo)上的任何本地地址

1 -尽量避免不在该网络接口子网段的本地地址做出arp回应. 当发起ARP请求的源IP地址是被设置应该经由路由达到此网络接口的时候很有用.此时会检查来访IP是否为所有接口上的子网段内ip之一.如果改来访IP不属于各个网络接口上的子网段内,那么将采用级别2的方式来进行处理.

2 - 对查询目标使用最适当的本地地址.在此模式下将忽略这个IP数据包的源地址并尝试选择与能与该地址通信的本地地址.首要是选择所有的网络接口的子网中外出访问子网中包含该目标IP地址的本地地址. 如果没有合适的地址被发现,将选择当前的发送网络接口或其他的有可能接受到该ARP回应的网络接口来进行发送.

===========================arp_ignore============================

arp_ignore - INTEGER Define different modes for sending replies in response to received ARP requests that resolve local target IP addresses:

0 - (default): reply for any local target IP address, configured on any interface

1 - reply only if the target IP address is local address configured on the incoming interface

2 - reply only if the target IP address is local address configured on the incoming interface and both with the sender's IP address arepart from same subnet on this interface

3 - do not reply for local addresses configured with scope host,only resolutions for global and link addresses are replied

4-7 - reserved

8 - do not reply for all local addresses

The max value from conf/{all,interface}/arp_ignore is used when ARP request is received on the {interface}  
定义对目标地址为本地IP的ARP询问不同的应答模式0

0 - (默认值): 回应任何网络接口上对任何本地IP地址的arp查询请求

1 - 只回答目标IP地址是来访网络接口本地地址的ARP查询请求

2 -只回答目标IP地址是来访网络接口本地地址的ARP查询请求,且来访IP必须在该网络接口的子网段内

3 - 不回应该网络界面的arp请求,而只对设置的唯一和连接地址做出回应

4-7 - 保留未使用

8 -不回应所有(本地地址)的arp查询

arp_ignore 设置为1,这个比较好理解,当别人的arp请求过来的时候,如果接收的设备上面没有这个ip,就不响应,默认是0,只要这台机器上面任何一个设备上面有这个ip,就响应arp请求,并发送mac地址应答。

arp_announce 这个就比较难解释了,先看一段英文的:

Assume that a linux box X has three interfaces - eth0, eth1 and eth2. Each interface has an IP address IP0, IP1 and IP2. When a local application tries to send an IP packet with IP0 through the eth2.  Unfortunately, the target node’s mac address is not resolved. Thelinux box X will send the ARP request to know the mac address of the target(or the gateway). In this case what is the IP source address of the “ARP request message”? The IP0- the IP source address of the transmitting IP or IP2 - the outgoing interface?  Until now(actually just 3 hours before) ARP request uses the IP address assigned to the outgoing interface(IP2 in the above example) However the linux’s behavior is a little bit different. Actually the selection of source address in ARP request is totally configurable bythe proc variable “arp_announce”

If we want to use the IP2 not the IP0 in the ARP request, we should change the value to 1 or 2. The default value is 0 - allow IP0 is used for ARP request.

其实就是路由器的问题,因为路由器一般是动态学习ARP包的(一般动态配置DHCP的话),当内网的机器要发送一个到外部的ip包,那么它就会请求 路由器的Mac地址,发送一个arp请求,这个arp请求里面包括了自己的ip地址和Mac地址,而linux默认是使用ip的源ip地址作为arp里面 的源ip地址,而不是使用发送设备上面的 ,这样在lvs这样的架构下,所有发送包都是同一个VIP地址,那么arp请求就会包括VIP地址和设备 Mac,而路由器收到这个arp请求就会更新自己的arp缓存,这样就会造成ip欺骗了,VIP被抢夺,所以就会有问题。

arp缓存为什么会更新了,什么时候会更新呢,为了减少arp请求的次数,当主机接收到询问自己的arp请求的时候,就会把源ip和源Mac放入自 己的arp表里面,方便接下来的通讯。如果收到不是询问自己的包(arp是广播的,所有人都收到),就会丢掉,这样不会造成arp表里面无用数据太多导致 有用的记录被删除。

What happens when a host receives an ARP request packet?  The ARP request is received and processed by all the hosts in the network,since it is a broadcast packet. The following steps are carried out when a ARP request packet is received by a host:  If the IP address to be resolved is for this host, then the ARP module sends an ARP reply packet with its Ethernet MAC address.  If the IP address to be resolved is for this host, then the ARP module updates its ARP cache with the source Ethernet MAC address to source IP address mapping present in the ARP request packet. If the entry is already present in the cache, it is overwritten. If it is not present, it is added.  If the IP address to be resolved is not for this host, then the ARP module discards the ARP request packet.  Will a host update its ARP cache upon receiving any ARP request?  A host will update its ARP cache, only if the ARP request is for its IP address. Otherwise, it will discard the ARP request.  What is the disadvantage if a host updates its ARP cache upon receiving any ARP request?  The host will exhaust the ARP cache with a lot of unused ARP entries, if it updates the ARP cache for any ARP request.

如果路由器使用静态ARP表,客户端也使用静态网关ARP的话,基本就不用管这两个值了。  也看了一下***,用了pppoe协议,也是不需要处理arp请求的。

查看某个设备上面绑定了多少个ip:>ip addr show dev eth0

绑定多个ip(临时,看操作系统不同加在不同的地方):>ip addr add x.x.x.x/32 dev eth0

临时修改arp_announce和arp_ignore:

echo 1 > /proc/sys/net/ipv4/conf/eth0/arp_ignore

echo 2 > /proc/sys/net/ipv4/conf/eth0/arp_announce

永久修改:

if  /etc/sysctl.conf is used in the system, we have this config in /etc/sysctl.conf

net.ipv4.conf.eth0.arp_ignore = 1

net.ipv4.conf.eth0.arp_announce = 2

在lvs环境中,需要设定以下的参数

echo"1">/proc/sys/net/ipv4/conf/all/arp_ignore

echo"1">/proc/sys/net/ipv4/conf/lo/arp_ignore

echo"2">/proc/sys/net/ipv4/conf/lo/arp_announce

echo"2">/proc/sys/net/ipv4/conf/all/arp_announce

参考文档

http://blog.sina.com.cn/s/blog_6caddb500100qp5v.html

http://hi.baidu.com/li32768/blog/item/83bb13cb803be198c81768d3.html

转载于:https://blog.51cto.com/itnihao/752472

如何理解lvs中DR模型的arp请求-arp_announce和arp_ignore相关推荐

  1. 详解LVS配置DR模型

    详解LVS配置DR模型 准备: 三台服务器,一台LVS,两台RS 操作 LVS: 8是随便写的 新配置一个虚拟网卡,作为LVS的VIP,之后的访问就用这个"192.168.28.150&qu ...

  2. lvs中dr模式配置脚本

    1 dr模式介绍 1.1 lvs的安装 安装具体解释:http://blog.csdn.net/CleverCode/article/details/50586957. 1.2 lvs模式 lvs有三 ...

  3. LVS的DR模型的实现

    知识储备:防止RS上vip被arp解析到的解决方法: 1.VIP: MAC(DVIP)(MAC和DR的vip进行绑定) 2.arptables(定义规则): 3.kernel parameter(内核 ...

  4. LVS DR模型及LVS持久连接

    LVS之DR模型以及持久连接 LVS的简单介绍 linux virtual server 简单来讲lvs是一段内核代码 类似于netfilter本身是一框架但不提供任何功能,但是在这框架上提供了能够根 ...

  5. 高并发负载均衡(二):LVS 的 DR,TUN,NAT 网络模型推导

    上节回顾 路由器就是要连接不同的网段,它是用来选择路线的.它里面有路由表,可以进行路由转发的判定. 交换机是负责同一个网络中转发,他只要转发就行了. ARP协议 发送端必须获取到目的MAC地址,MAC ...

  6. LVS DR模型配置示例

    要让路由知道哪台主机是Director,进行选择: 1.VIP:MAC(Director VIP) -- MAC绑定,但未必可行,例如路由是运营商的. 2.arptables 3.kernel par ...

  7. LVS DR模型详解

    DR模型的特点: 1.director必须与realserver位于同一个网络. 2.realserver可以使用公网ip地址,便于远程管理与配置. 3.director只负责处理入站请求.而响应报文 ...

  8. lvs dr 模型配置详解

    lvs dr 模型配置详解 [学习笔记] 前期准备: 两台服务器 note01(lvs服务器) note02(real sever) 1 首先在note01配置子网卡: ifconfig eth0:2 ...

  9. 负载均衡集群LVS模式之DR模型

    在NAT模型下,director的工作能力是很有限的,每个用户访问服务器时,都要先访问director,在一定的范围内director可以承受,但超出这个范围director就无能为力,在较大规模应用 ...

最新文章

  1. 解决mysql-5.5导入数据报错
  2. HLS视频协议第一弹--centos下面配置ffmpeg,segmenter以适应hls切片需要
  3. java 克隆对象工具类_关于dorado-core源码包中CloneUtils克隆工具类对对象进行克隆复制操作...
  4. windows MySQL 5+ 服务手动安装
  5. 历久弥新 - 微软万亿市值背后的文化支撑(上)|DevOps案例研究
  6. P1131-[ZJOI2007]时态同步【树形dp】
  7. cad通过钢筋大样生成钢筋明细表插件_各位做室内外设计的朋友,告别CAD单线画图,用天正建筑更方便...
  8. 北京理工大学计算机课答案,北京理工大学计算机专业考研课程模拟试题.doc
  9. 10 python 扩展
  10. 相辅相成的知识图谱与预训练语言模型
  11. hive: size与spilt连用
  12. 激荡的2020过后,物流江湖下个十年谁主沉浮?
  13. Java程序设计——随机点名器
  14. linux netstat命令:网络状态查看命令
  15. 2019NOIP算法复健+学习
  16. windows下nodejs下载及环境变量配置,运行vue项目
  17. apache ii评分和死亡率_APACHEⅢ、SAPSⅡ与APACHEⅡ评分系统对急诊内科危重患者病情评估的临床意义...
  18. 解决 shopnc b2b2c 版权问题 修改路经ULR及目录文件夹思路及教程
  19. 试试smartdraw
  20. 什么是流通股(亿)?

热门文章

  1. 在Unity3D项目中接入ShareSDK实现安卓平台微信分享功能(可使用ShareSDK默认UI或自定义UI)...
  2. 数据库之SqlDataAdapter
  3. 企业资源计划软件 业务知识点汇编整理
  4. YEAH!!距离拿回touch4倒计时:7days
  5. OpenSSL的托管项目
  6. JSP语法(JSP动作)
  7. Java笔记(二)抽象类,接口,完全解耦,多重继承,内部类,静态类,匿名内部类
  8. 从概念到落地,中台可以解决哪些问题?怎么做?(附PPT)
  9. 资源 | 想进行数据科学项目却没有数据集?26个数据集网站汇总
  10. 麦肯锡70页特辑报告论述《人工智能的未来之路》(完整版PPT)