I'm trying to setup VLANs on proxmox, and many tutorials start by creating a management VLAN.
My default interface is:
And this works fine, I can connect to
My understanding is that I can create VLAN 50 to separate the management IP from the default bridge:
But when I save and reboot the server, I can no longer reach it at
Additional info if it matters:
Router:
- Asus AX86U PRO
- The port is set to
Server:
- Proxmox is running on a single NIC Intel NUC
- Connected via ethernet cable to router port 1
My default interface is:
Code:
auto vmbr0
iface vmbr0 inet static
address 192.168.50.50/24
gateway 192.168.50.1
bridge-ports eno1
bridge-stp off
bridge-fd 0
bridge-vlan-aware yes
bridge-vids 2-4094
And this works fine, I can connect to
192.168.50.50:8006 and see the proxmox GUI.My understanding is that I can create VLAN 50 to separate the management IP from the default bridge:
Code:
auto vmbr0.50
iface vmbr0.50 inet static
address 192.168.50.50/24
gateway 192.168.50.1
auto vmbr0
iface vmbr0 inet static
bridge-ports eno1
bridge-stp off
bridge-fd 0
bridge-vlan-aware yes
bridge-vids 2-4094
But when I save and reboot the server, I can no longer reach it at
192.168.50.50:8006?Additional info if it matters:
Router:
- Asus AX86U PRO
- The port is set to
All(Default) NOT Trunk as I hear it works differently?Server:
- Proxmox is running on a single NIC Intel NUC
- Connected via ethernet cable to router port 1