keepalived.conf

! Configuration File for keepalived

global_defs {
   notification_email {
   }
}

vrrp_instance VI_1 {
    state MASTER
    interface eth0
    virtual_router_id 51
    priority 100
    advert_int 1
    authentication {
        auth_type PASS
        auth_pass passworddayo
    }
    virtual_ipaddress {
        192.168.10.200
    }
    notify_master "/etc/keepalived/checkStart.sh"
    notify_backup "/etc/keepalived/checkStart.sh"
}