Is there a way for a keepalived to send gratuitous ARP periodically?
We had following situation:
- switch failure (VLAN setup)
- keepalived failovered to backup instance
- backup instance sent gratuitous ARP but Cisco ASA device didn't got it (because of switch failure)
- when switch was recovered (few minutes later) VIPs were unaccessible cause ASA did not refresh the ARP table (ARP table expiry is set to 4h)
- as ASA already had the MACs from previously active node it didn't sent ARP request
- VIP were unaccessible until we restarted the keepalived instance what initiated new GARP
So, we think that we could avoid this situation with periodical GARPs. Is this a good approach and is there a way to do it within keepalived?
Any other suggestions to avoid this kind of issues?
Keepalived config:
global_defs {
notification_email {
[email protected]
}
notification_email_from SERVER_1
smtp_server smtp.server.local
smtp_connect_timeout 30
router_id SERVER_1
}
vrrp_instance V1 {
state BACKUP
nopreempt
interface eth0
lvs_sync_daemon_interface eth0
virtual_router_id 150
priority 120
advert_int 1
persistence_timeout 0
smtp_alert
authentication {
auth_type PASS
auth_pass xxx
}
virtual_ipaddress {
10.xxx.xxx.xxx
}
}