On 10/08/13 19:16, Bruno Melo wrote: > my steps: > sudo ifconfig wlan0 create wlandev ath0 > sudo ifconfig wlan0 ssid WALUBAME wepkey 0x20719E2C5E639DDB04F79F7AE8 up
Looks correct for WEP. > sudo ifconfig wlan0 > wlan0: [...] > status: no carrier Strange; that means it did not associate with the access point (yet). Maybe check the status again after waiting ~10 seconds. Maybe you should be using wpa_supplicant after all. > sudo dhclient -v wlan0 > [...] > Can't bind to dhcp address: Address already in use dhclient was already running for wlan0, so kill it first: $ sudo kill `cat /var/run/dhclient.wlan0.pid` Then try to start it again: $ 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]

