on using
iwlist wlan0 scan
i can see wifi networks in my area including my home wifi.. so i am guessing that the problem is not with drivers. the following is a snippet of my home network information from iwlist
- Code: Select all
Cell 03 - Address: 00:1F:33:48:DD:76
Channel:6
Frequency:2.437 GHz (Channel 6)
Quality=41/70 Signal level=-69 dBm
Encryption key:on
ESSID:"cs_unwired"
Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 6 Mb/s; 9 Mb/s
11 Mb/s; 12 Mb/s; 18 Mb/s
Bit Rates:24 Mb/s; 36 Mb/s; 48 Mb/s; 54 Mb/s
Mode:Master
Extra:tsf=000000495ed96181
Extra: Last beacon: 3090ms ago
IE: Unknown: 000A63735F756E7769726564
IE: Unknown: 010882848B0C12961824
IE: Unknown: 030106
IE: Unknown: 0706534720010D14
IE: Unknown: 200100
IE: WPA Version 1
Group Cipher : TKIP
Pairwise Ciphers (1) : TKIP
Authentication Suites (1) : PSK
IE: Unknown: 2A0100
the following is what i get when i try to start wireless using
/etc/init.d/networking start
- Code: Select all
Rpi@raspberrypi /etc/network $ sudo /etc/init.d/networking restart > /home/pi/a.log
wpa_supplicant: wpa_action is managing ifup/ifdown state of wlan0
wpa_supplicant: execute `ifdown --force wlan0' to stop wpa_action
run-parts: /etc/network/if-pre-up.d/wpasupplicant exited with return code 1
Internet Systems Consortium DHCP Client 4.2.2
Copyright 2004-2011 Internet Systems Consortium.
All rights reserved.
For info, please visit https://www.isc.org/software/dhcp/
Listening on LPF/wlan0/bc:f6:85:e8:51:54
Sending on LPF/wlan0/bc:f6:85:e8:51:54
Sending on Socket/fallback
DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 4
DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 5
DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 7
DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 17
DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 12
DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 9
DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 7
No DHCPOFFERS received.
this is what i have in /etc/network/interfaces
- Code: Select all
auto wlan0
iface wlan0 inet dhcp
wpa-ssid "cs_unwired"
wpa-psk "*******"
this is what i have in /etc/wpa.conf
- Code: Select all
netwok={
ssid="cs_unwired"
proto=RSN
key_mgmt=WPA-PSK
pairwise=CCMP TKIP
group=CCMP TKIP
psk="********"
}
I have tried multiple combinations of entries in these files based on inputs from various forums.. nothing seems to work..
have been at it for 2 days now and have read almost all posts .. need some help ..
thanks ..