![]() |
2008-08-22
, 14:30
|
|
Posts: 716 |
Thanked: 236 times |
Joined on Dec 2007
|
#2
|
![]() |
2008-08-22
, 18:08
|
Banned |
Posts: 57 |
Thanked: 2 times |
Joined on Jul 2008
|
#3
|
Generally in the shell, do "iwlist scan" (or "iwlist wlan0 scan" to avoid messages about unsupported interfaces). It will print out a table of found ESSIDs with all the details.
![]() |
2008-08-27
, 04:51
|
|
Posts: 900 |
Thanked: 273 times |
Joined on Aug 2008
@ Fresno CA USA
|
#4
|
![]() |
2008-08-27
, 11:09
|
Posts: 3,841 |
Thanked: 1,079 times |
Joined on Nov 2006
|
#5
|
The Following 2 Users Say Thank You to TA-t3 For This Useful Post: | ||
![]() |
2008-08-27
, 12:40
|
Posts: 42 |
Thanked: 16 times |
Joined on Oct 2007
@ Nottingham
|
#6
|
It works fine now.
Run today shell scripts and got what I wanted.
Full emulation of "Select connection " by maemo.
Thanks.
Darius
#!/bin/sh ifconfig wlan0 down ifconfig wlan0 up iwlist wlan0 scan | while read p1 p2 p3 do if [[ "$p1" == "Cell" ]] then SSID="" Mode="" BSSID=${p3#*: } fi if [[ "${p1%%:*}" == "ESSID" ]] then SSID=${p1##*:\"} SSID=${SSID%%\"} fi [[ "${p1}" == "Mode:Master" ]] && Mode="Master" if [[ "${p2}" == "key:off" ]] then if [[ "${Mode}" == "Master" ]] then echo $Mode $BSSID $SSID iwconfig wlan0 essid $SSID ap $BSSID if udhcpc -n -q -i wlan0 -s /etc/udhcpc/libicd_network_ipv4.script then echo Yay, on $SSID exit fi fi fi done ifconfig wlan0 down
![]() |
2008-08-27
, 16:58
|
Banned |
Posts: 57 |
Thanked: 2 times |
Joined on Jul 2008
|
#7
|
![]() |
2008-08-30
, 16:28
|
Banned |
Posts: 57 |
Thanked: 2 times |
Joined on Jul 2008
|
#8
|
![]() |
2008-08-30
, 17:18
|
Posts: 5,335 |
Thanked: 8,187 times |
Joined on Mar 2007
@ Pennsylvania, USA
|
#9
|
I want my n800 (os2008) to connect to any open infrastructure wifi, why isn't this a built-in setting?
![]() |
2008-08-30
, 20:11
|
|
Posts: 900 |
Thanked: 273 times |
Joined on Aug 2008
@ Fresno CA USA
|
#10
|
installed wirelesstools trying for use to scan for wifi networks, APs
unfortunately wirelesstools don't work like
Selection connection in maemo.
You have to be already connected to run wirelesstools.
But Select connections in memo works exactly to get connected to a selected network and what I get is essid and signal level.
What is an implementation of shell code (wirelesstools)
for scanning wifi networks (essid + signal level) ?
Darius