mirror of
https://git.proxmox.com/git/pve-docs
synced 2025-05-29 13:51:41 +00:00
add vlanaware bridge management vlan configuration
This commit is contained in:
parent
22a5acc858
commit
038dc7df35
@ -407,7 +407,7 @@ function of VLAN 5 in the guest network, but in combination with VLAN anwareness
|
|||||||
bridge this it will not work for guest network VLAN 5.
|
bridge this it will not work for guest network VLAN 5.
|
||||||
The downside of this setup is more CPU usage.
|
The downside of this setup is more CPU usage.
|
||||||
|
|
||||||
.Example: Use VLAN 5 for the {pve} management IP
|
.Example: Use VLAN 5 for the {pve} management IP with traditional Linux bridge
|
||||||
----
|
----
|
||||||
auto lo
|
auto lo
|
||||||
iface lo inet loopback
|
iface lo inet loopback
|
||||||
@ -433,10 +433,32 @@ iface vmbr0 inet manual
|
|||||||
|
|
||||||
----
|
----
|
||||||
|
|
||||||
|
.Example: Use VLAN 5 for the {pve} management IP with VLAN aware Linux bridge
|
||||||
|
----
|
||||||
|
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
|
||||||
|
----
|
||||||
|
|
||||||
The next example is the same setup but a bond is used to
|
The next example is the same setup but a bond is used to
|
||||||
make this network fail-safe.
|
make this network fail-safe.
|
||||||
|
|
||||||
.Example: Use VLAN 5 with bond0 for the {pve} management IP
|
.Example: Use VLAN 5 with bond0 for the {pve} management IP with traditional Linux bridge
|
||||||
----
|
----
|
||||||
auto lo
|
auto lo
|
||||||
iface lo inet loopback
|
iface lo inet loopback
|
||||||
|
Loading…
Reference in New Issue
Block a user