码迷,mamicode.com
首页 > 其他好文 > 详细

基于lvs(DR模式)的keepalived部署

时间:2018-01-16 10:21:08      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:文件   配置文件   prot   pre   模式   oop   冲突   config   not   

  • 服务器列表:
        角色             内网ip                外网ip
        路由器         192.168.8.82     192.168.8.253
        lvs1服务器   192.168.8.81     192.168.8.252
        lvs2服务器   192.168.8.83     192.168.8.252
        web服务器   192.168.8.84     192.168.8.252
  • 路由器配置:
    a. 内网配置:
    技术分享图片
    b. 外网配置:
    技术分享图片
    c. 开启路由转发:
    技术分享图片
    d. 防火墙设置路由转发规则(可选):
    技术分享图片
  • lvs1服务器配置:
    a. 内网ip:
    技术分享图片
    b. 外网ip:
    技术分享图片
    c. keepalived配置文件:
    技术分享图片
    d. 配置文件源代码:
        ! Configuration File for keepalived`
        global_defs {
             notification_email {
                     complet@163.com
             }
             notification_email_from root@localhost.com
             smtp_server 127.0.0.1
             smtp_connect_timeout 30
             router_id lvs_1
        }
        vrrp_instance LVS_HA {
                state MASTER
                interface eth0
                virtual_router_id 51
                priority 100
                advert_int 1
                authentication {
                        auth_type PASS
                        auth_pass 1111
                }
                virtual_ipaddress {
                        192.168.8.252/32
                }
        }
        virtual_server 192.168.8.252 80 {
                delay_loop 6
                lb_algo rr 
                lb_kind DR
                nat_mask 255.255.255.255
                persistence_timeout 50
                protocol TCP
                real_server 192.168.8.84 80 {
                        weight 1
                        TCP_CHECK {
                                connect_timeout 20
                                connect_port 80
                                nb_get_retry 3
                        }
                }
  • lvs2服务器配置(参照lvs1)
  • web服务器配置:
    a. 内网ip:
    技术分享图片
    b. 外网ip:
    技术分享图片
    c. 避免地址冲突:
    技术分享图片
  • 浏览器访问(192.168.8.252):
    技术分享图片
  • 基于lvs(DR模式)的keepalived部署

    标签:文件   配置文件   prot   pre   模式   oop   冲突   config   not   

    原文地址:http://blog.51cto.com/12173069/2061359

    (0)
    (0)
       
    举报
    评论 一句话评论(0
    登录后才能评论!
    © 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
    迷上了代码!