====== Ajouter un subnet IPs privées sur un host public ====== {{tag>virtualisation Proxmox}} Afin de pouvoir utiliser un réseau privé au sein d'un serveur Proxmox hébergé chez OVH, Online ou autre, nous mettons en place la configuration suivante dans le fichier /etc/network/interfaces # The loopback network interface auto lo iface lo inet loopback iface eno1 inet manual auto vmbr0 iface vmbr0 inet static address xxx.xxx.xxx.xxx netmask 255.255.255.0 gateway xxx.xxx.xxx.xxx bridge_ports eno1 bridge_stp off bridge_fd 0 auto vmbr1 #private sub network iface vmbr1 inet static address 192.168.100.1 netmask 255.255.255.0 bridge_ports none bridge_stp off bridge_fd 0 post-up echo 1 > /proc/sys/net/ipv4/ip_forward post-up iptables -t nat -A POSTROUTING -s '192.168.100.0/24' -o vmbr0 -j MASQUERADE post-down iptables -t nat -D POSTROUTING -s '192.168.100.0/24' -o vmbr0 -j MASQUERADE ===== Liens ===== * [[https://mondedie.fr/d/10459-hetzner-proxmox-et-reseau-le-retour/|Proxmox Ip publique + réseau interne : configurer le masquerade]] * [[https://pve.proxmox.com/wiki/Network_Configuration|Proxmox network configuration]] * [[http://mcamuzat.github.io/blog/2016/02/28/installation-dun-proxmox-4-dot-0/|installation d'un proxmox 4]] * [[https://www.guyatic.net/2017/04/10/configuring-proxmox-ovh-kimsufi-server-single-public-ip/|configuring containers with Proxmox on OVH Kimsufi server behind a single public IP with NAT]]