Hi All,
New to Proxmox here. I've read through the Network Configuration doc and have even successfully implemented Proxmox VE management IP with VLAN aware Linux bridge as per the docs. I'm simply trying to understand how this works 'behind the scenes'
In the example above, is the vmbr0.5 simply being mapped to the vmbr0 bridge interface based on the 0.X format? Is this effectively creating a 'sub-interface' on the virtual bridge to be use by VLAN 5 (in this case)? What exactly is happening here?
Also, how does the Proxmox host know that the IP address and DG entered in the vmbr0.5 configuration is intended for it? If I were create another Linux VLAN, say vmbr0.10 for example, and entered an IP address and DG what would happen?
New to Proxmox here. I've read through the Network Configuration doc and have even successfully implemented Proxmox VE management IP with VLAN aware Linux bridge as per the docs. I'm simply trying to understand how this works 'behind the scenes'
Code:
auto lo
iface lo inet loopback
iface eno1 inet manual
auto vmbr0.5
iface vmbr0.5 inet static
address 10.10.10.2
netmask 255.255.255.0
gateway 10.10.10.1
auto vmbr0
iface vmbr0 inet manual
bridge_ports eno1
bridge_stp off
bridge_fd 0
bridge_vlan_aware yes
In the example above, is the vmbr0.5 simply being mapped to the vmbr0 bridge interface based on the 0.X format? Is this effectively creating a 'sub-interface' on the virtual bridge to be use by VLAN 5 (in this case)? What exactly is happening here?
Also, how does the Proxmox host know that the IP address and DG entered in the vmbr0.5 configuration is intended for it? If I were create another Linux VLAN, say vmbr0.10 for example, and entered an IP address and DG what would happen?