Files
homelab/proxmox/etc/network/interfaces
T
2026-07-15 18:51:58 -05:00

36 lines
786 B
Plaintext

auto lo
iface lo inet loopback
# =======================================================
# VIRTUALIZED OPNSENSE BELOW
# =======================================================
# LAN
iface nic0 inet manual
# WAN
iface nic1 inet manual
# opnsense LAN
auto vmbr0
iface vmbr0 inet static
address 192.168.100.50/24
gateway 192.168.100.1
bridge-ports nic0
bridge-stp off
bridge-fd 0
bridge-mcsnoop 0
# opnsense WAN
auto vmbr1
iface vmbr1 inet dhcp
bridge-ports nic1
bridge-stp off
bridge-fd 0
bridge-mcsnoop 0
# =======================================================
# =======================================================
# ALWAYS LEAVE THIS
# =======================================================
source /etc/network/interfaces.d/*