Proxmox Standard-Bridge (vmbr0)
# /etc/network/interfaces (standard nach Installation)
# auto lo
# iface lo inet loopback
#
# auto eno1
# iface eno1 inet manual
#
# auto vmbr0
# iface vmbr0 inet static
# address 192.168.1.100/24
# gateway 192.168.1.1
# bridge-ports eno1
# bridge-stp off
# bridge-fd 0
# Bridge-Status
brctl show vmbr0
ip link show vmbr0
VLAN-aware Bridge (empfohlen)
# /etc/network/interfaces
auto eno1
iface eno1 inet manual
auto vmbr0
iface vmbr0 inet static
address 192.168.1.100/24
gateway 192.168.1.1
bridge-ports eno1
bridge-stp off
bridge-fd 0
bridge-vlan-aware yes # VLAN-aware aktivieren!
bridge-vids 2-4094 # Erlaubte VLAN-IDs
# Netzwerk neu laden
ifreload -a
# VLAN-aware VMs konfigurieren:
# Proxmox GUI → VM → Hardware → Network Device
# VLAN Tag: 20 (für VLAN 20)
Bonding (LACP für 2x Netzwerk-Port)
# /etc/network/interfaces
auto eno1
iface eno1 inet manual
auto eno2
iface eno2 inet manual
# Bond (LACP 802.3ad)
auto bond0
iface bond0 inet manual
bond-slaves eno1 eno2
bond-miimon 100
bond-mode 802.3ad
bond-xmit-hash-policy layer2+3
# Bridge auf Bond
auto vmbr0
iface vmbr0 inet static
address 192.168.1.100/24
gateway 192.168.1.1
bridge-ports bond0
bridge-stp off
bridge-fd 0
bridge-vlan-aware yes
bridge-vids 2-4094
# Bond-Status
cat /proc/net/bonding/bond0
Mehrere Bridges für verschiedene Zonen
# /etc/network/interfaces
# Bridge 1: WAN-Zone (externe IPs)
auto vmbr0
iface vmbr0 inet static
address 192.168.1.100/24
gateway 192.168.1.1
bridge-ports eno1
bridge-stp off
# Bridge 2: LAN-Zone (intern)
auto vmbr1
iface vmbr1 inet static
address 10.0.0.1/24
bridge-ports eno2
bridge-stp off
# Bridge 3: Isoliertes Testnetz (kein physisches Interface!)
auto vmbr2
iface vmbr2 inet static
address 172.16.0.1/24
bridge-ports none
bridge-stp off
# Firewall-VM (OPNsense) verbindet WAN, LAN und Test:
# Interface WAN: vmbr0
# Interface LAN: vmbr1
# Interface OPT1: vmbr2
SDN (Software-Defined Networking)
Proxmox VE 8+ bietet SDN:
Datacenter → SDN → Zones
Zones:
- Simple: Einfaches VLAN-Overlay
- VLAN: 802.1Q VLANs
- VXLAN: Layer-3-Overlay (Multi-Node)
Vorteil: VMs können über Cluster-Nodes
kommunizieren ohne physische VLAN-Konfiguration!
FAQ
Was passiert wenn ich bridge-vlan-aware aktiviere bei laufenden VMs?
VMs müssen dann einen VLAN-Tag bekommen (oder VLAN 1 für untagged). Ohne Tag keine Netzwerkverbindung! Immer in Testumgebung zuerst.
Fazit
Proxmox-Netzwerkkonfiguration mit VLAN-aware Bridges und Bonding ist die Basis für flexible, hochverfügbare VM-Netzwerke.
Proxmox-Netzwerk-Konfiguration für KMU in Heidelberg, Mannheim und der Rhein-Neckar-Region. Anfragen.