Multiple public ips Ionos

doctick

New Member
Nov 2, 2024
12
2
3
Hello,

I have a server with Ionos, they use a public network with public IPs to get around MAC address issues with their firewall.

I have 3 IPs in their public network which is on vlan 1002. All 3 IPs have the same gateway.

I have the machine Proxmox server up and running with one of the IPs in the public network. I have created it like this.

auto eth0
iface eth0 inet manual

auto eth0.1002
iface etho.1002 inet manual

auto vmbr0
iface vmbr0 inet static
address 10.10.10.1/24
bridge-ports none
bridge-stp off
bridge-fd 0

auto vmbr1
iface vmbr1 inet static
address x.x.x.161
gateway 10.255.255.1
bridge-ports eth0.1002
bridge-stp off
bridge-fd 0

This gets me started my server up and running, I can see it from the world and everything is fine.

When I create a VM (Ubuntu 22.04) i get to the network screen on install and enter one of the other public network IPs x.x.x.228 with the default gatweway of 10.255.255.1 and I do not get a connection. I can ping the ip and the machine 127.0.0.1. The gateway is not pingable. ip route is a blank line. I have the network as vmbr1 and firewall turned off.

This should be working.. Right??

Any suggestions??

Thanks

K