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

keepalived+lvs

时间:2021-04-27 14:56:45      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:bsp   ddr   global   ace   ack   timeout   alived   persist   time   

配置lvs-dr环境

master配置文件

global_defs {
   notification_email {
     root@localhost
      }
   notification_email_from keeplived@localhost
   smtp_server 127.0.0.1
   smtp_connect_timeout 30
   router_id test1
   vrrp_skip_check_adv_addr
   vrrp_garp_interval 0
   vrrp_gna_interval 0
   vrrp_mcast_group4 224.0.0.18
}
vrrp_instance VI_1 {
    state BACKUP
    interface eth0
    virtual_router_id 51
    priority 100
    advert_int 1
    authentication {
        auth_type PASS
        auth_pass 1111
    }
    virtual_ipaddress {
            10.211.55.99
    }
}




virtual_server 10.211.55.99 80 {
                delay_loop 3
                lb_algo rr
                lb_kind DR
                #persistence_timeout 50
                protocol TCP
                  real_server 10.211.55.32 80 {
            inhibit_on_failure
                    weight 1
                    TCP_CHECK {
                        connect_timeout 2
                        nb_get_retry 3
                        delay_before_retry 1
                                      }
                                             }

            real_server 10.211.55.33 80 {
                    weight 1
                    HTTP_GET {
                            url {
                              path /
                    status_code 200
                                }
                        connect_timeout 3
                       nb_get_retry 3
                        delay_before_retry 3
        }
    }

                            }

 

backup配置文件

global_defs {
   notification_email {
     root@localhost
      }
   notification_email_from keeplived@localhost
   smtp_server 127.0.0.1
   smtp_connect_timeout 30
   router_id test1
   vrrp_skip_check_adv_addr
   vrrp_garp_interval 0
   vrrp_gna_interval 0
   vrrp_mcast_group4 224.0.0.18
}
vrrp_instance VI_1 {
    state BACKUP
    interface eth0
    virtual_router_id 51
    priority 50
    advert_int 1
    authentication {
        auth_type PASS
        auth_pass 1111
    }
    virtual_ipaddress {
    10.211.55.99
    }
}


virtual_server 10.211.55.99 80 {
                delay_loop 3
                lb_algo rr
                lb_kind DR
                #persistence_timeout 50
                protocol TCP
                  real_server 10.211.55.32 80 {
            inhibit_on_failure
                    weight 1
                    TCP_CHECK {
                        connect_timeout 2
                        nb_get_retry 3
                        delay_before_retry 1
                                      }
                                             }

            real_server 10.211.55.33 80 {
                    weight 1
                    HTTP_GET {
                            url {
                              path /
                    status_code 200
                                }
                        connect_timeout 3
                       nb_get_retry 3
                        delay_before_retry 3
        }
    }

                            }

 

keepalived+lvs

标签:bsp   ddr   global   ace   ack   timeout   alived   persist   time   

原文地址:https://www.cnblogs.com/huakai201/p/14705937.html

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