I've seen a lot online for a solution to make raspberry Pi 3 into a wireless bridge. But many are old articles to suit the Pi 1 and 2.
This is the last article I have seen, and tried: http://blog.slor.net/2013/09/turning-your-raspberri-pi-into-wireless.html
I use RASPBIAN JESSIE, Kernel version: 4.4.
I want the Pi to connect to a wireless router with the built-in wireless device (wlan0) to provide access to device(s)that are connected to the built-in Ethernet connector (eth0).
I want the router (192.168.1.1) to provide IP's to devices connected to RPi3, making it possible for the PC to communicate with devices connected to RPi3.
The problem is when I try to follow the article linked above is that when I run this command:
sudo brctl addif br0 wlan0 eth0
I get this error message:
can't add wlan0 to bridge br0: Operation not supported...
Does anyone have any idea how to solve this?
br0
before that?brctl addbr br0
. – ott-- Jul 10 '16 at 20:58can't add wlan0 to bridge br0: Operation not supported
– privateFunction Jul 10 '16 at 21:07brctl show
? Maybe a.module is missing. – ott-- Jul 10 '16 at 21:25brctl addif br0 wlan0
and thenbrctl addif br0 eth0
, – ott-- Jul 10 '16 at 22:09brctl addif br0 wlan0
i still get: "can't add wlan0 to bridge br0: Operation not supported". But the last commandbrctl addif br0 eth0
works. – privateFunction Jul 10 '16 at 22:29iw dev wlan0 set 4addr on
beforebrctl addif br0 wlan0 eth0
help? for my pi2 I had this setting in /etc/network/interfaces but it should be the same for the pi3:auto lo iface lo inet loopback iface eth0 inet manual auto wlan0 iface wlan0 inet manual auto br0 iface br0 inet dhcp bridge_ports wlan0 eth0 bridge_stp off bridge_maxwait 5 wpa-iface wlan0 wpa-bridge br0 wpa-driver wext wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
hope it is still readable due missing linebreaks, google this and you will find a formated interfaces snipplet – Joe Platano Jul 16 '16 at 03:57There seems to be a solution, with help of OpenVPN. – iTake Jun 03 '19 at 11:29