OESF Portables Forum

Model Specific Forums => Sharp Zaurus => Zaurus - pdaXrom => Topic started by: Capn_Fish on January 22, 2007, 02:32:37 pm

Title: Set Essid To 'any' With R121?
Post by: Capn_Fish on January 22, 2007, 02:32:37 pm
How can I use the startup scripts for networking found at pdaxrom.org to set the SSID to 'any'? In the script, can I just say "essid any"?

Sorry if there is an obvious answer, but thanks in advance!
Title: Set Essid To 'any' With R121?
Post by: Chero on January 22, 2007, 02:55:09 pm
I'm using this :

Code: [Select]
ifconfig wlan0 down
rm /var/run/dhcpcd-wlan0.pid
iwconfig wlan0 essid any mode managed
ifconfig wlan0 up
dhcpcd wlan0
sleep 3
ifconfig wlan0
Title: Set Essid To 'any' With R121?
Post by: Capn_Fish on January 22, 2007, 03:31:50 pm
Quote
I'm using this :

Code: [Select]
ifconfig wlan0 down
rm /var/run/dhcpcd-wlan0.pid
iwconfig wlan0 essid any mode managed
ifconfig wlan0 up
dhcpcd wlan0
sleep 3
ifconfig wlan0
[div align=\"right\"][a href=\"index.php?act=findpost&pid=152079\"][{POST_SNAPBACK}][/a][/div]

Thanks for clearing that up.