Hello,
I am near the end of configuring my home network with Promox and OPNSense.
The last thing I need to do is to change the management IP of Promox from the vmbr0 interfact (which is on the WAN side of my setup) to a sub interface tagged with VLAN 66.
I tried few configurations but nothing seems to work so far. When I check the "ip address" CLI output, I can see that no IP address has been attached to the sub interface.
The last configuration that I tried is the following, which is part of the official Proxmox doc : https://pve.proxmox.com/wiki/Network_Configuration
I am using SDN with VLAN integration, I don't know if it could be an issue. Since SDN is creating VLANs, we can already find some configuration file for vmbr0.66
I don't know if it coud cause a conflict within the conf.
Thanks.
I am near the end of configuring my home network with Promox and OPNSense.
The last thing I need to do is to change the management IP of Promox from the vmbr0 interfact (which is on the WAN side of my setup) to a sub interface tagged with VLAN 66.
I tried few configurations but nothing seems to work so far. When I check the "ip address" CLI output, I can see that no IP address has been attached to the sub interface.
The last configuration that I tried is the following, which is part of the official Proxmox doc : https://pve.proxmox.com/wiki/Network_Configuration
Code:
auto lo
iface lo inet loopback
iface enp1s0 inet manual
auto vmbr0
iface vmbr0 inet manual
bridge-ports enp1s0
bridge-stp off
bridge-fd 0
bridge-vlan-aware yes
bridge-vids 2-126
auto vmbr0.66
iface vmbr0.66 inet static
address 192.168.21.250/24
gateway 192.168.21.1
iface wlp2s0 inet manual
source /etc/network/interfaces.d/*
I am using SDN with VLAN integration, I don't know if it could be an issue. Since SDN is creating VLANs, we can already find some configuration file for vmbr0.66
Code:
ls /proc/net/vlan/
config vmbr0.66
I don't know if it coud cause a conflict within the conf.
Thanks.