Um das FailOver IP vom Hetzner in eine VM benutzen zu können, muss man erstmal das FailOver IP bridgen, d.h. in die /etc/network/interfaces Datei die route eintragen, das ganze sieht dann auf dem Host Server so aus:
### Hetzner Online GmbH - installimage # Loopback device: auto lo iface lo inet loopback # device: eth0 auto eth0 iface eth0 inet static address xxx.xxx.xxx.xxx netmask 255.255.255.192 gateway xxx.xxx.xxx.xxx pointopoint xxx.xxx.xxx.xxx auto br0 iface br0 inet static address xxx.xxx.xxx.xxx netmask 255.255.255.255 bridge_ports none bridge_stp off bridge_fd 0 bridge_maxwait 0 # Einzlne IPs/Subnetz einfuegen up route add -host xxx.xxx.xxx.xxx dev br0 # Fail Over IP up route add -host yyy.yyy.yyy.yyy dev br0
Danach muss man in die VM in /etc/network/interfaces noch das FailOver IP eintragen, das ganze sieht dann so aus:
auto eth0 iface eth0 inet static address xxx.xxx.xxx.xxx netmask 255.255.255.255 gateway xxx.xxx.xxx.xxx pointopoint xxx.xxx.xxx.xxx # FailOver IP auto eth0:0 iface eth0:0 inet static address yyy.yyy.yyy.yyy netmask 255.255.255.255
natürlich nicht vergessen den Host einmal neu zu starten, damit die neu Konfiguration wirksam werden. That’s it.