Advertisement
Guest User

Untitled

a guest
Nov 7th, 2018
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.49 KB | None | 0 0
  1. ! Configuration File for keepalived
  2.  
  3. global_defs {
  4.    notification_email {
  5.      sysadmin@mydomain.com
  6.      support@mydomain.com
  7.    }
  8.    notification_email_from lb2@mydomain.com
  9.    smtp_server localhost
  10.    smtp_connect_timeout 30
  11. }
  12.  
  13. vrrp_instance VI_1 {
  14.     state MASTER
  15.     interface eth1
  16.     virtual_router_id 51
  17.     priority 100
  18.     advert_int 1
  19.     authentication {
  20.         auth_type PASS
  21.         auth_pass 1111
  22.     }
  23.     virtual_ipaddress {
  24.         192.168.11.111
  25.     }
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement