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

keepalived纯部署

时间:2019-03-11 14:55:05      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:conf   sla   alived   3.1   广播   def   ace   stat   port   

主配置

! Configuration File for keepalived

global_defs {
   router_id  master_2
}

vrrp_instance ARPP {
    state MASTER
    interface bond0
    garp_master_delay 10
    virtual_router_id 7                        主备统一
    priority 180                                   数字越大,优先级越高
    advert_int 2                                  多长时间广播一次自己的优先级
    authentication {
        auth_type PASS
        auth_pass 1111
    }
#    track_script {
#        chk_http_port
#    }
    virtual_ipaddress {
        192.168.3.100
    }
}

从配置

global_defs {
   router_id slave_3
}

vrrp_instance ARPP {
    state BACKUP
    interface bond0
    garp_master_delay 10
    virtual_router_id 7
    priority 60
    advert_int 2
    authentication {
        auth_type PASS
        auth_pass 1111
    }
    virtual_ipaddress {
       192.168.3.100
    }
}

keepalived纯部署

标签:conf   sla   alived   3.1   广播   def   ace   stat   port   

原文地址:https://blog.51cto.com/xiaoahehe/2361211

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