Skip to main content

Proxmox management interface on Opnsense LAN

·1 min

Opnsense runs as a VM on my Proxmox server. So, to access Proxmox’s management interface on my LAN, I had to modify the /etc/network/interfaces file.

This is how it looks after the change:

auto lo
iface lo inet loopback

iface eno1 inet manual

auto vmbr0.20
iface vmbr0.20 inet static
        address 10.0.1.105/24
        gateway 10.0.1.1

auto vmbr0
iface vmbr0 inet manual
        bridge-ports eno1
        bridge-stp off
        bridge-fd 0
        bridge-vlan-aware yes
        bridge-vids 2-4094