Hi,
I am trying to configure Proxmox to properly connect through a managed switch.
The switch only has access ports (vlan10, vlan100)
From my PC linked to a vlan100 port I can ping other devices (the switch, the server idracs, the pbs machine, ...)
If I try to set up proxmox network with vlans, it can only talk to himself and to its VMs
This is my actual config:
What's wrong with it?
I am trying to configure Proxmox to properly connect through a managed switch.
The switch only has access ports (vlan10, vlan100)
From my PC linked to a vlan100 port I can ping other devices (the switch, the server idracs, the pbs machine, ...)
If I try to set up proxmox network with vlans, it can only talk to himself and to its VMs
This is my actual config:
Code:
auto lo
iface lo inet loopback
iface eno1 inet manual
iface eno2 inet manual
auto vmbr0
iface vmbr0 inet static
bridge-ports eno1
bridge-stp off
bridge-fd 0
bridge-vlan-aware yes
bridge-vids 10
auto vmbr1
iface vmbr1 inet static
bridge-ports eno2
bridge-stp off
bridge-fd 0
bridge-vlan-aware yes
bridge-vids 100
auto vlan10
iface vlan10 inet static
address 10.0.10.11/24
vlan-raw-device vmbr0
auto vlan100
iface vlan100 inet static
address 10.0.100.11/24
gateway 10.0.100.1
vlan-raw-device vmbr1
What's wrong with it?