Muy bien, a ver, primeramente, si haces un dmesg debería devolverte los ultimos datos, si no es así, utiliza el comando tail:
sudo dmesg | tail -n 50
Por otro lado, los pasos a seguir para conectar con una red inalámbrica protegida por wep son los siguientes (reemplazar <interface> con el nombre del dispositivo que corresponda):
sudo ifconfig <interface> down
sudo dhclient -r <interface>
sudo ifconfig <interface> up
sudo iwconfig <interface> essid "ESSID_IN_QUOTES"
sudo iwconfig <interface> key HEX_KEY <<<-------- If using ASCII Equivalent, this is s:ASCII_KEY (please make note of the prefix s:)
****Additional Comand that may be needed -- sudo iwconfig <interface> key open <<<----See note below
sudo iwconfig <interface> mode Managed
sudo dhclient <interface>
Orígen:
http://ubuntuforums.org/showthread.php?t=571188Con esos comandos la tarjeta de red debería pillar IP, sino ya es otro asunto.
Pruebalo y nos cuentas.
Salu2