We are able to get ad-hoc and ap with atheros chipsets working. Had some trouble, but the following works for us reliably. Not sure yet if it was forcing the cards to 802.11b mode only or hiding the ssid... <br><br>============
<br>        insmod ath_pci autocreate=none<br><br>        wlanconfig ath0 create wlandev wifi0 wlanmode adhoc <br>        wlanconfig ath1 create wlandev wifi0 wlanmode ap<br><br>        iwconfig ath0 channel 3<br>        iwconfig ath0 rts 250  frag 500
<br><br>        iwpriv ath1 bintval 400<br>        iwpriv ath0 bintval 400<br><br>        APSSID=$( ip link sho ath1 | tail -n 1 | \<br>                awk '{ split($2, ar, ":"); printf ("mesh-%s%s", ar[5], ar[6]) }' )  
<br>        AHADDR=$( ip link sho ath0 | tail -n 1 | \<br>                awk '{ split($2, ar, ":"); printf ("10.%d\.%d\.%d", "0x" ar[4], "0x" ar[5], "0x" ar[6]) }' )
<br><br>        iwconfig ath0 essid "Mesh"<br>        iwconfig ath1 essid "$APSSID"<br>        ip addr add ${AHADDR}/8 dev ath0<br>        ip addr add <a href="http://192.168.2.1/24">192.168.2.1/24</a>
 dev ath1<br><br>        # 802.11b only<br>        iwpriv ath0 mode 2<br>        iwpriv ath1 mode 2<br><br>        # hide the mesh side ssid<br>        iwpriv ath0 hide_ssid 1<br>        iwpriv ath0 turbo 0<br><br>        ip link set ath0 up
<br>        ip link set ath1 up<br><br>        iwpriv ath0 authmode 2<br>        iwpriv ath0 bintval 400<br>        iwpriv ath1 bintval 400<br><br>        iwconfig ath0 channel 3 <br>        iwconfig ath1 channel 3<br>============ 
<br><br><br><div><span class="gmail_quote">On 2/12/07, <b class="gmail_sendername">Ignacio García Pérez</b> <<a href="mailto:iggarpe@terra.es">iggarpe@terra.es</a>> wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Jon Smirl escribió:<br>> Do my wireless mesh nodes have to be running in ad hoc mode? Note that<br>> in my case they are in fixed locations.<br>Yes you need adhoc mode.<br>><br>> If the wireless mesh nodes are running in adhoc, how does a normal
<br>> laptop running in Infrastructure mode attach to the adhoc network?<br>It has to run also in ad-hoc mode and run olsrd. Definitely not for the<br>average joe user.<br><br>A two radio setup would obviously solve the problem, but is more expensive.
<br><br>And a third option would be having a radio that can simultaneously run<br>in ad-hoc and ap mode. Checkout the atheros based minipci radios. I'm<br>sure (because I've succesfully done it) you can setup a radio
<br>simultaneously as ap and client (in the same channel, of course). In<br>fact, you can set it up as several virtual acces points and one client.<br>I haven't been able to setup ap and ad-hoc simultaneously though.<br>
<br><br>><br>> Could I run my mesh nodes in Master mode and then use OLSR to set up<br>> WDS links between them?<br>><br>Mmm... don't know enough about WDS as to respond, but seem to recall<br>that WDS was a really really dumb mechanism.
<br><br>_______________________________________________<br>olsr-users mailing list<br><a href="mailto:olsr-users@olsr.org">olsr-users@olsr.org</a><br><a href="https://www.olsr.org/mailman/listinfo/olsr-users">https://www.olsr.org/mailman/listinfo/olsr-users
</a><br></blockquote></div><br><br clear="all"><br>-- <br><br>Thanks!<br>Michael Oh