
Originally Posted by
adri_ht_
You have posted on the wrong forum but anyways are you sure the DHCP server is working in the first place? In other words, are other nodes in the same network able to get dynamic IPs? Secondly I would try wpa_supplicant w/ the verbose option to make sure it is really associated:
Code:
wpa_supplicant -d -D wext -i wlan0 -c /etc/wpa/ertech_supplicant.conf
Lastly configure the network yourself:
Code:
bt ~ # ifconfig wlan0 up
bt ~ # ifconfig wlan0 192.168.1.24 netmask 255.255.255.0
bt ~ # route add default gw 192.168.1.1
bt ~ # echo "nameserver 192.168.1.1" > /etc/resolv.conf
Modify the above to your respective network settings. Hope it helps!
Hey thanks for your response.
I'm certain that atleast with Layer2 I'm associated to my router because I can see MAC address connected via my dd-wrt's web page.
Code:
root@bt:~# wpa_supplicant -D wext -i wlan0 -c /etc/wpa_supplicant.conf
CTRL-EVENT-SCAN-RESULTS
Trying to associate with 00:16:01:ed:xx:xx (SSID='ssid' freq=2437 MHz)
Associated with 00:16:01:ed:xx:xx
WPA: Key negotiation completed with 00:16:01:ed:xx:xx[PTK=CCMP GTK=TKIP]
CTRL-EVENT-CONNECTED - Connection to 00:16:01:ed:xx:xx completed (auth) [id=0 id_str=]
WPA: Key negotiation completed with 00:16:01:ed:xx:xx [PTK=CCMP GTK=TKIP]
DHCP still times out
Setting it manually works but I can't ping the gateway (192.168.1.1)
Code:
root@bt:~# ping 192.168.1.1
PING 192.168.1.1 (192.168.1.1) 56(84) bytes of data.
From 192.168.1.24 icmp_seq=1 Destination Host Unreachable
From 192.168.1.24 icmp_seq=3 Destination Host Unreachable
From 192.168.1.24 icmp_seq=4 Destination Host Unreachable
From 192.168.1.24 icmp_seq=5 Destination Host Unreachable
I'm stumped. I have no problems using this card in a monitor mode but it just can't associate.
I'm also running this inside vmware but since it's a USB card then the hardware device is available directly so I don't see how this can make a diff.
Thank you