On 10/08/13 19:41, Bruno Melo wrote: > ok, dhclient.re0.pid was running That's for your wired LAN? You may want to keep that running.
You should be able to start separate instance of dhclient for wlan0. > DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 5 > send_packet: Network is down That's because it has not associated with your access point (status: no carrier). Maybe you should use wpa_supplicant like you did before, and then try dhclient. I think this simplifies to: $ sudo kill `cat /var/run/dhclient.wlan0.pid` # if already running $ sudo ifconfig wlan0 create wlandev ath0 $ sudo ifconfig wlan0 ssid WALUBAME up $ sudo wpa_supplicant -i wlan0 -c /etc/wpa_supplicant.conf $ sudo dhclient -v -1 wlan0 Regards, -- Steven Chamberlain [email protected] -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected] Archive: http://lists.debian.org/[email protected]

