Sophie

Sophie

distrib > Fedora > 20 > x86_64 > by-pkgid > a73a667cd9078bd2773a96d1c3aca16b > files > 34

keepalived-1.2.15-3.fc20.x86_64.rpm

! Configuration File for keepalived
! extra script call demonstration
! scripts are supported in Instance and groupes
! declarations.

vrrp_sync_group G1 {
  group {
    VI_2
    VI_3
  }
  notify_backup "/usr/local/bin/vrrp.back arg1 arg2"
  notify_master "/usr/local/bin/vrrp.mast arg1 arg2"
  notify_fault "/usr/local/bin/vrrp.fault arg1 arg2"
}

vrrp_instance VI_1 {
    state MASTER
    interface eth0
    smtp_alert
    virtual_router_id 51
    priority 100
    advert_int 1
    authentication {
        auth_type PASS
        auth_pass 1111
    }
    virtual_ipaddress {
        192.168.200.16
        192.168.200.17
        192.168.200.18
    }
    notify_backup "/usr/local/bin/vrrp.sh  BACKUP   VI_1"
    notify_master "/usr/local/bin/vrrp.sh  MASTER  VI_1"
    notify_fault  "/usr/local/bin/vrrp.sh  FAULT  VI_1"
}


vrrp_instance VI_2 {
    interface eth0
    state MASTER
    virtual_router_id 52
    priority 150
    virtual_ipaddress {
        192.168.200.100/27
    }
}

vrrp_instance VI_3 {
    interface eth0
    state MASTER
    virtual_router_id 53
    priority 150
    virtual_ipaddress {
        192.168.200.101/27
    }
}