Exactly what I need.
So I should rent a third public ip (additional to one of my node, say, node1, with no machine behind it) to be the shared one, right ?
3rd public shared ip : 222.333.111
So I will put this ip in the configuration to be listen on ? Like that :
Code:
# /etc/network/interfaces
# ..
# The primary network interface
auto eth0
iface eth0 inet static
address ..
netmask ..
gateway ..
#######################
# ucarp configuration
#######################
ucarp-vid 1
ucarp-vip 222.333.111
ucarp-password mypass32
ucarp-advskew 1
ucarp-advbase 1
ucarp-master no
# The carp network interface, on top of eth0
iface eth0:ucarp inet static
address 222.333.111
netmask 255.255.255.255
Right ?
Thanks,
Larry