Hello all, I've recently rewired my home network and have set up an OpenWRT VM on PVE to act as the main router. It would dial directly PPPoE to my ISP via a modem in bridge mode to provide internet access to all of my LAN devices. This has worked rather well actually, except that the PVE host couldn't get any connection. I've searched quite a bit and found this: https://forum.proxmox.com/threads/map-all-the-traffic-to-a-router-vm.26952/. But as I'm quite a newbie in this area and doesn't have much (if any) networking or administrative experience, it's all rather difficult for me to understand.
I tried my best to draw out a diagram to illustrate how my set up is:
The red-shaded and cross indicates what doesn't work at the moment.
And here's the content of /etc/network/interface:
I know that this part
shouldn't be there and these are not correct values. But everything breaks down as soon as I take them out.
As I said, I'm very new to this. Any help on how I can get my PVE host online is very much appreciated.
Thank you all in advance.
I tried my best to draw out a diagram to illustrate how my set up is:
The red-shaded and cross indicates what doesn't work at the moment.
And here's the content of /etc/network/interface:
Code:
auto lo
iface lo inet loopback
iface eno2 inet manual
iface eno1 inet manual
auto vmbr0
iface vmbr0 inet static
address 192.168.1.2
netmask 255.255.255.0
gateway 192.168.1.1
bridge-ports eno2
bridge-stp off
bridge-fd 0
#WAN
auto vmbr1
iface vmbr1 inet static
address 192.168.72.2
netmask 255.255.255.0
bridge-ports eno1
bridge-stp off
bridge-fd 0
#LAN
I know that this part
Code:
address 192.168.1.2
netmask 255.255.255.0
gateway 192.168.1.1
As I said, I'm very new to this. Any help on how I can get my PVE host online is very much appreciated.
Thank you all in advance.