How to bridge two WiFi interfaces on raspbian

bridgeraspbianwifi

How can I bridge two WiFi interfaces (wlan0 and wlan1) on raspbian? I tried using brctl but i get the following message can't add wlan1 to bridge br0 operation not supported.
Is there any other way to do it?

Let's say that wlan0 is the client that connects to an existing wifi network and that wlan1 is the device that creates a new wifi network. The new wifi network should be a separate network from the one to which is connected wlan0.

Best Answer

It doesn't sound like 'bridging' is what you're looking for, it sounds like you want your Pi to act as an access point and share the internet it sees on wlan0 via a new SSID on wlan1.

See this guide for details on how to set that up: http://www.maketecheasier.com/set-up-raspberry-pi-as-wireless-access-point/

Related Question