# interfaces(5) file used by ifup(8) and ifdown(8)# Include files from /etc/network/interfaces.d:# ip -c a, for interface details.# loopback device.auto loiface lo inet loopback# WAN port (NIC1, top of case with I/O shield stuff).auto enp3s0iface enp3s0 inet manual# LAN port (NIC2, bottom of case at PCIe slot).auto enp2s0iface enp2s0 inet manual# WAN bridge OPNsense is connected with veth0. Veth0 is the FreeBSD Network Interface Name for virtio Network devices.auto virbr0iface virbr0 inet static bridge_ports enp3s0 bridge_stp off bridge-fd 0# LAN bridge OPNsense is connected with veth1.# Gateway is OPNsense.auto virbr1iface virbr1 inet static address 192.168.1.120/24 gateway 192.168.1.170 bridge_ports enp2s0 bridge-stp off bridge-fd 0 bridge-pvid 4095 bridge-vlan-aware yes bridge-vids 1-4044# Save, exit and restart networking service:~$ sudo systemctl restart NetworkManager > Enter.