Linux里面iptables怎么实现负载均衡?
1 iptables实现负载均衡的方式:
在Linux中使用iptables完成tcp的负载均衡有两种模式:随机、轮询
The statistic module support two different modes:
random:(随机)
the rule is skipped based on a probability
nth:(轮询)
the rule is skipped based on a round robin algorithm
2 example
LVS集群有三种IP负载均衡技术:VS/NAT、VS/TUN和VS/DR
其中VS/DR要求调度器和实际服务器连在同一物理网段
另外的VS/NAT和VS/TUN允许你所说的“LVS服务器上的IP与VIP不同网段”
0条评论