Has anyone had any problems trying to use Proxmox on a Hetzner dedi, with SW Rai1 and an IP range? Proxmox downloads etc etc but struggling to bridge IPs. Hetzner don't do virtual MACs on ip ranges.
on the hostnode you need to create a bridge for you subnet like so:
# for a subnet
auto vmbr1
iface vmbr1 inet static
address < A usable IP address from the additional subnet >
netmask < Netmask of the additional subnet >
bridge_ports none
bridge_stp off
bridge_fd 0
and the guest/client you have to configure with the IP of that bridge as gateway:
# device: eth0
auto eth0
iface eth0 inet static
address < A usable IP address from the subnet >
netmask < Netmask of the subnet >
gateway < IP from the subnet configured in the Host system >
PS: no need for virtual macs anyway. and if I remember correctly you can add the bridge with the necessary settings from proxmox cp itself...
Comments
have a look into their wiki: https://wiki.hetzner.de/index.php/Proxmox_VE/en#Network_configuration_KVM.2FBridged
on the hostnode you need to create a bridge for you subnet like so:
and the guest/client you have to configure with the IP of that bridge as gateway:
PS: no need for virtual macs anyway. and if I remember correctly you can add the bridge with the necessary settings from proxmox cp itself...