网卡ucarp使用可以桥接?

我已经使用这个 howto安装了ucarp故障转移,并且它工作的很好。

# /etc/network/interfaces auto eth0 iface eth0 inet static address 10.200.0.102 netmask 255.255.255.0 ucarp-vid 3 ucarp-vip 10.200.0.200 ucarp-password ourpassword ucarp-advskew 10 ucarp-advbase 1 ucarp-master yes iface eth0:ucarp inet static address 10.200.0.200 netmask 255.255.255.255 

某处告诉我,我不应该(在这种情况下)使用10.200.0.102 ,因为它可能会影响到ucarp的故障转移能力。

是否有可能桥接eth0 ,所以我可以得到一个额外的IP用于SSH,rsync和类似的东西,而不会影响ucarp?

尝试添加:

 auto eth0:1 iface eth0:1 inet static address 10.200.0.103 netmask 255.255.255.0 ucarp-vid 3 ucarp-vip 10.200.0.200 ucarp-password ourpassword ucarp-advskew 10 ucarp-advbase 1 ucarp-master yes iface eth0:1:ucarp inet static address 10.200.0.201 netmask 255.255.255.255 

否则在这里更完整的howto:

http://ajohnstone.com/achives/running-several-vips-on-the-same-interface-with-ucarp-and-haproxy/