Hey all i have an issue that probably gets asked here 100 times in 100 different ways.
i am able to get the network to pass correctly to vlans however as soon as i start messing with subnets vlans seem to break.
i have tried to follow the config guide on the documentation and read a variety of posts and followed thier advice but none seem to work in my particular situation. so hopefully someone can help me.
right now my hardware topology looks like this
in this host the interfaces config looks like this.
what im trying to do is isolate vm traffic to vlan 10, proxmox gui traffic to vlan 1 and 20. any help on what im doing wrong to get this setup would be greatly appreciated.
i am able to get the network to pass correctly to vlans however as soon as i start messing with subnets vlans seem to break.
i have tried to follow the config guide on the documentation and read a variety of posts and followed thier advice but none seem to work in my particular situation. so hopefully someone can help me.
right now my hardware topology looks like this
Code:
OPNsense ---{trunk all}---> arista 7050t ---{trunk 1, 10, 20 eno1}---> proxmox host
---{trunk 10, 20 eno2} ---> proxmox host
Code:
/etc/network/interfaces
auto lo
iface lo inet loopback
auto eno1
iface eno1 inet static
address 192.168.1.2/24
gateway 192.168.1.1
auto eno2
iface eno2 inet static
address 192.168.10.2/24
gateway 192.168.10.1
auto eno2.20
iface eno2.20 inet static
address 192.168.20.2/24
gateway 192.168.20.1
iface eno3 inet manual
iface eno4 inet manual
auto vmbr0
iface vmbr0 inet static
address 192.168.1.2/24
gateway 192.168.1.1
bridge-ports eno1
bridge-stp off
bridge-fd 0
auto vmbr1
iface vmbr0 inet static
address 192.168.10.2/24
gateway 192.168.10.1
bridge-ports eno2
bridge-stp off
bridge-fd 0
auto vmbr2
iface vmbr0 inet static
address 192.168.20.2/24
gateway 192.168.20.1
bridge-ports eno2
bridge-stp off
bridge-fd 0
what im trying to do is isolate vm traffic to vlan 10, proxmox gui traffic to vlan 1 and 20. any help on what im doing wrong to get this setup would be greatly appreciated.