Hi everyone,
I have two dedicated servers at OVH, and I’m trying to switch an additional IP (used for my PRI) from one server to the other.
The target server is running Debian 12 with Netplan, and it hosts several Docker stacks behind a Traefik reverse proxy.
Based on the following two OVH documentation pages:
- Configure an Additional IP on Public Cloud / Debian 12 – OVH
- Proxmox Network Setup on Dedicated Servers – OVH
…I came up with this Netplan configuration:
network:
version: 2
ethernets:
enp8s0f0:
match:
macaddress: d8:43:ae:8a:df:a6
set-name: enp8s0f0
addresses:
- 192.168.0.3/24
- xx.xxx.xx.xx/32 # Main IP
- yy.yy.yyy.yy/32 # Additional IP to switch
dhcp4: true
routes:
- to: default
via: 192.168.0.1
Problem: with this setup, my Docker containers lose access to the Internet.
Does anyone have a clue or suggestion to restore Docker’s network access in this configuration?
Thanks in advance!