RPi 4 as WiFi bridge for Philips Hue Bridge V2 but it needs to stay on the same LAN as all other devices connected to the main router?
Hello guys, I need to use my RPi4 as a WiFi bridge for my Philips Hue Bridge V2, which only has Ethernet, so Router -> WiFi -> RPi4 -> Ethernet -> Philips Hue Bridge V2.
I looked up a few guides and most use Network Manager. Since Network Manager came installed, the guide is easy, consists of 2 commands and a 3rd one to check if the bridge is active:
sudo nmcli c add con-name wifibridge type ethernet ifname eth0 ipv4.method shared ipv6.method ignore
sudo nmcli con up wifibridge
nmcli con show
It did work, but the problem is that with shared method, the Pi creates a sub LAN, meaning that the bridge won’t communicate with stuff like Alexa or any devices that control the Philips Hue over LAN.
I need it to make it so it stays on the same LAN as every other device connected to my router. I tried to do it with AI but it didn’t work. Anyone can help?