Here's the situation:
We have a bare metal server from Hetzner with one IP4 address. We manage to install Proxmox easily, but when we install virtual machines (Ubuntu), we cannot get them online.
Here is the current configuration:
source /etc/network/interfaces.d/*
auto lo
iface lo inet loopback
iface lo inet6 loopback
auto enp41s0
iface enp41s0 inet static
address 65.108.239.183/26
gateway 65.108.239.129
up route add -net 65.108.239.128 netmask 255.255.255.192 gw 65.108.239.129 dev enp41s0
route 65.108.239.128/26 via 65.108.239.129
iface enp41s0 inet6 static
address 2a01:4f9:1a:b387::2/64
gateway fe80::1
iface eth0 inet manual
auto vmbr0
iface vmbr0 inet manual
bridge-ports none
bridge-stp off
bridge-fd 0
Can anyone advise how this configuration should be done to get the virtual machine to connect to the network?
We have a bare metal server from Hetzner with one IP4 address. We manage to install Proxmox easily, but when we install virtual machines (Ubuntu), we cannot get them online.
Here is the current configuration:
source /etc/network/interfaces.d/*
auto lo
iface lo inet loopback
iface lo inet6 loopback
auto enp41s0
iface enp41s0 inet static
address 65.108.239.183/26
gateway 65.108.239.129
up route add -net 65.108.239.128 netmask 255.255.255.192 gw 65.108.239.129 dev enp41s0
route 65.108.239.128/26 via 65.108.239.129
iface enp41s0 inet6 static
address 2a01:4f9:1a:b387::2/64
gateway fe80::1
iface eth0 inet manual
auto vmbr0
iface vmbr0 inet manual
bridge-ports none
bridge-stp off
bridge-fd 0
Can anyone advise how this configuration should be done to get the virtual machine to connect to the network?