I currently am trying to create a setup with N servers where 1 server is the master for a Virtual IP, and the (N-1) servers act as backups, presumably controlled by keepalived
. However, one issue I see with keepalived
is that its intention is to bind the Virtual IP address (1.2.3.4
) to whatever interface I specified (let's call it eth0
).
What I intend to do, instead, is to create a Proxy-ARP entry on eth0
for 1.2.3.4
. This way, traffic headed to 1.2.3.4
comes to eth0
, and since ip_forwarding
is permitted on my host, routing table entries on the host will forward them to a virtual interface for further processing.
Is this use case supported within keepalived
? I did get this setup working properly with ucarp
, but this is mainly due to the fact that ucarp
has the concept of vip-up
and vip-down
scripts, where I can insert custom commands to create Proxy-ARP entries and send a GARP.