With a routed setup the vmbr0 is not connected with the physical interface. IP forwarding needs to be activated on the host system. This can be done automatically through /etc/sysctl.conf at boot time. (Please note that forwarding is disabled for the default Hetzner installation. This setting can be found in either /etc/sysctl.conf or in /etc/sysctl.d/99-hetzner.conf)
sysctl -w net.ipv4.ip_forward=1
Forwarding for IPv6 needs to be activated as well. This is also available in the Hetzner standard installation and only needs to be activated:
sysctl -w net.ipv6.conf.all.forwarding=1
After a successful installation the virtual machines can be administered at https://server-IP:8006.
以下是官方给出的建议配置
# /etc/network/interfaces
### Hetzner Online GmbH - installimage
# Loopback device:
auto lo
iface lo inet loopback
# device: enp1s0
auto enp1s0
iface enp1s0 inet static
address <main IP>
netmask 255.255.255.255
pointopoint <gateway IP>
gateway <gateway IP>
iface enp1s0 inet6 static
address <address from the IPv6 subnet> #e.g. 2001:db8::2
netmask 128
gateway fe80::1
up sysctl -p
# for single IPs
auto vmbr0
iface vmbr0 inet static
address <main IP>
netmask 255.255.255.255
bridge_ports none
bridge_stp off
bridge_fd 0
up ip route add <first additional IP>/32 dev vmbr0
up ip route add <second additional IP>/32 dev vmbr0
iface vmbr0 inet6 static
address <address from the IPv6 subnet>
#e.g. 2001:db8::3, should not be the same as on enp1s0/eth0