| ! Configuration File for keepalived |
| ! This example demonstrates MISC_CHECK, a component of LVS configuration. |
| |
| global_defs { |
| notification_email { |
| acassen |
| } |
| notification_email_from Alexandre.Cassen@firewall.loc |
| smtp_server 192.168.200.1 |
| smtp_connect_timeout 30 |
| router_id LVS_DEVEL |
| } |
| |
| virtual_server 10.10.10.2 1358 { |
| delay_loop 6 |
| lb_algo rr |
| lb_kind NAT |
| persistence_timeout 50 |
| protocol TCP |
| |
| real_server 192.168.200.6 1358 { |
| weight 1 |
| MISC_CHECK { |
| misc_path /usr/local/bin/script.sh |
| ! misc_dynamic |
| } |
| } |
| |
| } |
| |