So my curret issue is that my isp's modem does not allow me to open ports, so I though about installing opnsense,
https://community-scripts.github.io/ProxmoxVE/scripts?id=opnsense-vm
and put the isp's router under a bridge with proxmox.
and as my board has only one ethernet port, I need to make a virtual nic
So edited the proxmox /etc/network/interfaces as:
But currently proxmox fails to connect to the internet, I cannot reach the web interface (and then set up the opnsense vm), nor it can connect to the internet, it fails pings to 1.1.1.1 or whatever. But I can see some of mmy Vms up on the network, as I can reach em , although I cannot tell if they can connect to the inteernet, as ssh/other akin services are not active, but I guess not
https://community-scripts.github.io/ProxmoxVE/scripts?id=opnsense-vm
and put the isp's router under a bridge with proxmox.
and as my board has only one ethernet port, I need to make a virtual nic
So edited the proxmox /etc/network/interfaces as:
Code:
auto lo
iface lo inet loopback
# Physical interface
auto enp3s0
iface enp3s0 inet manual
# Main bridge (WAN side) - it should be used by Proxmox host and OPNsense WAN
auto vmbr0
iface vmbr0 inet static
address 192.168.1.100/24 # ← change to a static IP in your LAN
gateway 192.168.1.1 # ← your router's IP
bridge-ports enp3s0
bridge-stp off
bridge-fd 0
# virtual lan bridge2, should be used by OPNsense LAN and other VMs
auto vmbr1
iface vmbr1 inet manual
bridge-ports none
bridge-stp off
bridge-fd 0
But currently proxmox fails to connect to the internet, I cannot reach the web interface (and then set up the opnsense vm), nor it can connect to the internet, it fails pings to 1.1.1.1 or whatever. But I can see some of mmy Vms up on the network, as I can reach em , although I cannot tell if they can connect to the inteernet, as ssh/other akin services are not active, but I guess not