Skip to Content.
Sympa Menu

sm-discuss - Re: [SM-Discuss] Wireless Bridge

sm-discuss AT lists.ibiblio.org

Subject: Public SourceMage Discussion List

List archive

Chronological Thread  
  • From: Thomas Orgis <thomas-forum AT orgis.org>
  • To: sm-discuss AT lists.ibiblio.org
  • Subject: Re: [SM-Discuss] Wireless Bridge
  • Date: Wed, 14 Nov 2007 23:45:15 +0100

Am Wed, 14 Nov 2007 12:50:14 -0600
schrieb Matthew Clark <matthewclark AT inlesserterms.net>:

> I wanted to see if there's anyone out there who's been successful at
> getting SMGL to run as a wireless bridge. And to make myself clear,
> what I mean is to join a wired segment to another wired segment using
> 802.11.

In the danger of being irrelevant: I didn't bridge two LAN segments, I
made a bridge on my laptop to bring the Wii console into our local LAN,
and hence then being routed to the internet.
I used hostapd - and I guess you are referring to this one, too, as the
thing that supports mainly prism chips.
It happens to support Atheros (madwifi) chips, too - that's what I have
in my Thinkpad.
I build the bridge with this script:

rmmod ath_pci
modprobe ath_pci rfkill=0
wlanconfig ath0 destroy
wlanconfig ath0 create wlandev wifi0 wlanmode ap
iwpriv ath0 mode 2
ifconfig eth0 0.0.0.0 up
ifconfig ath0 0.0.0.0 up
brctl addbr br0
brctl addif br0 eth0
brctl addif br0 ath0
ifconfig br0 192.168.0.34
route add default gw 192.168.0.100
echo enter to stop...
read bla
ifconfig br0 down
ifconfig eth0 0.0.0.0 down
ifconfig ath0 0.0.0.0 down
brctl delif br0 eth0
brctl delif br0 ath0
brctl delbr br0

and then start hostapd, which does the WPA2 stuff and actually manages
the connection from the Wii.
Not quite sure what would be different in your setup.


Alrighty then,

Thomas.

Attachment: signature.asc
Description: PGP signature




Archive powered by MHonArc 2.6.24.

Top of Page