Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!


In this Discussion

Proxmox in Hetzner with SW Raid1 and IP Range
New on LowEndTalk? Please Register and read our Community Rules.

All new Registrations are manually reviewed and approved, so a short delay after registration may occur before your account becomes active.

Proxmox in Hetzner with SW Raid1 and IP Range

PhilGPhilG Member

Hi.

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.

Would appreciate some pointers/tips. :)

Thank you.

Comments

  • FalzoFalzo Member
    edited April 2016

    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:

    # 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...

Sign In or Register to comment.