Hello everyone,
I just recently set up two Proxmox-Servers (Intel NUC) and joined them into a cluster. Now I want to take the next step and separate my network into VLANs.
I plan to set up a pfSense or OPNsense box (in Proxmox of course) which will service the VLANs.
Both systems run the latest pve-manager/8.0.3/bbf3993334bfa916 (running kernel: 6.2.16-3-pve).
The Plan is:
VLAN10 = Management
VLAN20 = (Web-)Servers
VLAN30 = Computers
VLAN40 = IoT
My Proxmox-Servers have only one NIC so the Proxmox-Management Website has to be reachable either over VLAN1 or VLAN10.
Since I'm pretty new to networking I'm not sure how to configure this in Proxmox. I've seen a few YouTube Tutorials but to be completely honest they confused me more than further my goal.
I somehow ended up with this config. Will this do for my use-case or will this even work in a Cluster set-up?
Any feedback is greatly appreciated!
I just recently set up two Proxmox-Servers (Intel NUC) and joined them into a cluster. Now I want to take the next step and separate my network into VLANs.
I plan to set up a pfSense or OPNsense box (in Proxmox of course) which will service the VLANs.
Both systems run the latest pve-manager/8.0.3/bbf3993334bfa916 (running kernel: 6.2.16-3-pve).
The Plan is:
VLAN10 = Management
VLAN20 = (Web-)Servers
VLAN30 = Computers
VLAN40 = IoT
My Proxmox-Servers have only one NIC so the Proxmox-Management Website has to be reachable either over VLAN1 or VLAN10.
Since I'm pretty new to networking I'm not sure how to configure this in Proxmox. I've seen a few YouTube Tutorials but to be completely honest they confused me more than further my goal.
I somehow ended up with this config. Will this do for my use-case or will this even work in a Cluster set-up?
Code:
auto lo
iface lo inet loopback
auto eno1
iface eno1 inet manual
auto vmbr0
iface vmbr0 inet static
address 10.10.10.3
gateway 10.10.10.1
netmask 255.255.255.0
bridge_ports eno1
bridge_stp off
bridge_fd 0
auto eno1.1
iface eno1.1 inet manual
vlan-raw-device eno1
auto eno1.2
iface eno1.2 inet manual
vlan-raw-device eno1
auto eno1.3
iface eno1.3 inet manual
vlan-raw-device eno1
auto eno1.4
iface eno1.4 inet manual
vlan-raw-device eno1
auto vmbr0.1
iface vmbr0.1 inet static
address 192.168.10.2
gateway 192.168.10.1
netmask 255.255.255.0
bridge_ports eno1.1
bridge_stp off
bridge_fd 0
auto vmbr0.2
iface vmbr0.2 inet static
address 192.168.20.2
gateway 192.168.20.1
netmask 255.255.255.0
bridge_ports eno1.2
bridge_stp off
bridge_fd 0
auto vmbr0.3
iface vmbr0.3 inet static
address 192.168.30.2
gateway 192.168.30.1
netmask 255.255.255.0
bridge_ports eno1.3
bridge_stp off
bridge_fd 0
auto vmbr0.4
iface vmbr0.4 inet static
address 192.168.40.2
gateway 192.168.40.1
netmask 255.255.255.0
bridge_ports eno1.4
bridge_stp off
bridge_fd 0
Any feedback is greatly appreciated!