Hi,
I have installed Proxmox on a Hetzner dedicated Server. Basically I want run multiple web servers in Linux Containers (LXC). Right now all the continuers are Ubuntu 19.04 Containers.
In sum I have three public IPs.
IP1: 88.198.38.xxx (root IP)
IP2: 88.198.165.1xx (additional IP1)
IP3: 88.198.165.2xx (additional IP2)
I feel like I have read nearly every single how to on the internet which is related to the network configuration of Proxmox for Hetzner. Although I have tried many different attempts, none of these are working right now. This means the container can't reach the Internet und I can't reach the container from the outside.
Here is my
I have configured the Containers network using the GUI. Here I have set the Containers IP to one of the additional IPs (88.198.165.1xx/32), for the Gateway I set the root IP (88.198.38.xxx) and I have added the corresponding MAC Adress from Hetzner.
Does somebody have an idea or tipp what the problem could be?
I have installed Proxmox on a Hetzner dedicated Server. Basically I want run multiple web servers in Linux Containers (LXC). Right now all the continuers are Ubuntu 19.04 Containers.
In sum I have three public IPs.
IP1: 88.198.38.xxx (root IP)
IP2: 88.198.165.1xx (additional IP1)
IP3: 88.198.165.2xx (additional IP2)
I feel like I have read nearly every single how to on the internet which is related to the network configuration of Proxmox for Hetzner. Although I have tried many different attempts, none of these are working right now. This means the container can't reach the Internet und I can't reach the container from the outside.
Here is my
/etc/network/interfaces
Code:
source /etc/network/interfaces.d/*
auto lo
iface lo inet loopback
iface lo inet6 loopback
auto enp2s0
iface enp2s0 inet static
address 88.198.38.xxx
netmask 255.255.255.224
gateway 88.198.38.97
up route add -net 88.198.38.96 netmask 255.255.255.224 gw 88.198.38.97 dev enp2s0
# route 88.198.38.96/27 via 88.198.38.97
iface enp2s0 inet6 static
address 2a01:4f8:a0:1397::2
netmask 64
gateway fe80::1
auto vmbr0
iface vmbr0 inet static
address 88.198.38.xxx
netmask 255.255.255.255
bridge-ports none
bridge-stp off
bridge-fd 0
up ip route add 88.198.165.1xx/32 dev vmbr0
up ip route add 88.198.165.2xx/32 dev vmbr0
I have configured the Containers network using the GUI. Here I have set the Containers IP to one of the additional IPs (88.198.165.1xx/32), for the Gateway I set the root IP (88.198.38.xxx) and I have added the corresponding MAC Adress from Hetzner.
Does somebody have an idea or tipp what the problem could be?