Does anyone know if the Raspberry Pi is capable of bridging WiFi connection (using AirLink101 AWLL5088) and the ethernet port? I've been using my computer to bridge my XBox 360 to the internet and I want to shift that responsibility over to the Pi.
Thanks,
Mo
Re: Bridging WiFi to Ethernet
I will always assume you are running Raspbian for desktop and Raspbmc for XMBC !
Re: Bridging WiFi to Ethernet
Thanks.
Just to make it easier for anyone who want to find this post, ill tell you the steps I did.
First install bridge-utils
Then I open up my interfaces file...
and edited it to contain this
And thats all it took! Good luck!
Just to make it easier for anyone who want to find this post, ill tell you the steps I did.
First install bridge-utils
Code: Select all
sudo apt-get bridge-utils
Code: Select all
sudo nano /etc/network/interfaces
Code: Select all
auto lo
iface lo inet loopback
auto ehto0
iface eth0 inet manual
auto wlan0
iface wlan0 inet dhcp
wpa-ssid "(your SSID here)"
wpa-psk "(your password here)"
auto br0
iface br0 inet dhcp
bridge_ports wlan0 eth0
Re: Bridging WiFi to Ethernet
I will always assume you are running Raspbian for desktop and Raspbmc for XMBC !
Re: Bridging WiFi to Ethernet
Doesnt work for me, i always get
can't add wlan0 to bridge br0: Operation not supported...
Some advice?
Background:
To install bridge-utils i use wpa_GUI to get connected to my WLan to install bridge-utils.
Afterwards ive done the steps mentioned above.
can't add wlan0 to bridge br0: Operation not supported...
Some advice?
Background:
To install bridge-utils i use wpa_GUI to get connected to my WLan to install bridge-utils.
Afterwards ive done the steps mentioned above.
Re: Bridging WiFi to Ethernet
addition:
if i call
are there some other prerequisites?
any suggestions?
if i call
iam able to add wlan0 to br0 but, doesn't work anyway.iw dev wlan0 set 4addr on
are there some other prerequisites?
any suggestions?
Re: Bridging WiFi to Ethernet
I was having issues doing this as well and the above did not work for me. I was finally able to get it working and created a tutorial on how to get it setup. You can view it here.
Re: Bridging WiFi to Ethernet
That's not actually bridging, but routing...philc wrote:I was having issues doing this as well and the above did not work for me. I was finally able to get it working and created a tutorial on how to get it setup. You can view it here.
Just thought I'd point that out.
My Blog - http://www.sirlagz.net
Visit my blog for Tips, Tricks, Guides and More !
WiFi Issues ? Have a look at this post ! http://www.raspberrypi.org/phpBB3/viewtopic.php?f=28&t=44044
Visit my blog for Tips, Tricks, Guides and More !
WiFi Issues ? Have a look at this post ! http://www.raspberrypi.org/phpBB3/viewtopic.php?f=28&t=44044
Re: Bridging WiFi to Ethernet
I followed this guide:
http://rbnrpi.wordpress.com/project-lis ... t-ready-tv
My Tv receives ip but still complains about DNS.
What could be wrong?
I only want to use the eth0 to provide internet access (through wlan0) to my TV
http://rbnrpi.wordpress.com/project-lis ... t-ready-tv
My Tv receives ip but still complains about DNS.
What could be wrong?
I only want to use the eth0 to provide internet access (through wlan0) to my TV