高可用性keepalived全部采用外网IP的问题
高可用性keepalived全部采用外网IP的问题
我的2台服务器各自有一个外网IP,然后我通过keepalived虚拟出另一个外网IP,keepalived的服务可以正常启动,当vip在master上的时候,我在backup上ping那个vip(外网IP),很不稳定(一般是keepalived刚刚启动的时候可以ping通,之后就不能ping通,然后过个半个小时又可以ping通,再过10秒左右,又不能ping通了,很诡异)
配置文件如下:
keepalived.conf
- ! Configuration File for keepalived
- global_defs {
- notification_email {
- acassen@firewall.loc
- failover@firewall.loc
- sysadmin@firewall.loc
- }
- notification_email_from
- Alexandre.Cassen@firewall.loc
- smtp_server 127.0.0.1
- smtp_connect_timeout 30
- router_id LVS_DEVEL
- }
- vrrp_instance VI_1 {
- state MASTER
- interface eth0
- virtual_router_id 17
- priority 180
- advert_int 1
- authentication {
- auth_type PASS
- auth_pass 1111
- }
- virtual_ipaddress {
- 外网ip1/27 dev eth0
- }
- }
- virtual_server 外网ip1 80 {
- delay_loop 6
- lb_algo wrr
- lb_kind DR
- persistence_timeout 60
- protocol TCP
- real_server 外网ip2 80 {
- weight 3
- TCP_CHECK {
- connect_timeout 10
- nb_get_retry 3
- delay_before_retry 3
- connect_port 80
- }
- }
- }
复制代码
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论