PVE on Strato Root-Server with one NIC and 3 Public IP-Adresses

piepmax

Member
Dec 15, 2022
11
0
6
Hi alltogether,

I've installed PVE successful on my strato root-server.
But now I'm struggling with the proper network configuration.
I have one NIC with 3 public ip-addresses and like to assign my virtual machines to those ip-adressses. Any hint?

Kindly regards
Max
 
That really depends on weather or not you are planning on sharing a single IP with multiple VMs (since this requires NAT and thus Routed Configuration) or youplan on asigning a single IP to a single VM. (And tthus can just use Default Configuration.)
Thank you that much! I'll try the default configuration :)

Code:
auto vmbr0
iface vmbr0 inet static
        address 81.169.xxx.xx/32
        gateway 81.169.xx.x
        bridge-ports enp2s0
        bridge-stp off
        bridge-fd 0

Do i have to enter all 3 ip adresses here?
 
Last edited:
No, just put the IP address that you want your Proxmox VE host be accessible on.
When adding a VM, add the vmbr0 as network bridge and configure a different IP. (Since the host and VMs cannot share one IP without NATing.)
Thanks! Unfortunately I'm currently not that familiar with networking... But this is a very good help!