From the beginning:
Gigafast USB wireless adapter using the zd1211rw driver.
Already a pain to have to connect the device after bootup finishes (and manually start things such as sshd), but I can live with that (fortunately, this machine will not get rebooted often).
Recompiled kernel and emerged zd1211-firmware.
Apparently recognized:
Code: Select all
Jun 10 00:00:00 system usb 1-1: new full speed USB device using uhci_hcd and address 4
Jun 10 00:00:00 system usb 1-1: configuration #1 chosen from 1 choice
Jun 10 00:00:00 system zd1211rw 1-1:1.0: firmware version 4725
Jun 10 00:00:00 system zd1211rw 1-1:1.0: zd1211b chip 0ace:1215 v4810 full 00-02-72 AL2230_RF pa0 g--N
Jun 10 00:00:00 system zd1211rw 1-1:1.0: eth1
Jun 10 00:00:05 system ADDRCONF(NETDEV_UP): eth1: link is not readyCode: Select all
config_eth0=("192.168.0.2 broadcast 192.168.0.255 netmask 255.255.255.0")
config_eth1=("192.168.0.2 broadcast 192.168.0.255 netmask 255.255.255.0")
routes_eth0=("default via 192.168.0.1")
routes_eth1=("default via 192.168.0.1")
essid_eth1="hiddenssid"
wpa_supplicant_eth1='-Dwext'Code: Select all
ap_scan=1
network={
ssid="hiddenssid"
scan_ssid=1
psk="mypsk"
}Code: Select all
This line repeats every ten seconds:
Jun 10 00:01:00 system SoftMAC: Open Authentication completed with 00:00:00:00:00:01
When starting, I also see the following:
Jun 10 00:02:00 system ADDRCONF(NETDEV_UP): eth1: link is not ready
Jun 10 00:02:01 system SoftMAC: Open Authentication completed with 00:00:00:00:00:01
Jun 10 00:02:01 system ADDRCONF(NETDEV_CHANGE): eth1: link becomes ready
Jun 10 00:02:12 system SoftMAC: Open Authentication completed with 00:00:00:00:00:01
Jun 10 00:02:12 system eth1: no IPv6 routers present
With this thrown in occasionally, as well:
Jun 10 00:03:00 system SoftMAC: wx_set_mlme: we should know the net here...
Jun 10 00:04:36 system SoftMAC: Open Authentication completed with 00:00:00:00:00:01
Jun 10 00:04:47 system eth1: no IPv6 routers presentCode: Select all
# /sbin/ifconfig
eth1 Link encap:Ethernet HWaddr 00:00:00:00:00:00
inet6 addr: fe80::202:72ff:fe5a:4759/64 Scope:Link
UP BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)And finally, attempting to debug using wpa_cli:
Code: Select all
# /bin/wpa_cli
wpa_cli v0.5.7
Copyright (c) 2004-2006, Jouni Malinen <jkmaline@cc.hut.fi> and contributors
This program is free software. You can distribute it and/or modify it
under the terms of the GNU General Public License version 2.
Alternatively, this software may be distributed under the terms of the
BSD license. See README and COPYING for more details.
Selected interface 'eth1'
Interactive mode
These five lines repeat every ten seconds:
<2>Authentication with 00:00:00:00:00:01 timed out.
<2>CTRL-EVENT-DISCONNECTED - Disconnect event - remove keys
<2>Trying to associate with 00:00:00:00:00:01 (SSID='hiddenssid' freq=2462 MHz)
<2>Association request to the driver failed
<2>Associated with 00:00:00:00:00:01
Lowering the debug level ("level 1"), gives some additional details:
<2>Authentication with 00:00:00:00:00:01 timed out.
<1>Setting scan request: 0 sec 0 usec
<2>CTRL-EVENT-DISCONNECTED - Disconnect event - remove keys
<2>Trying to associate with 00:00:00:00:00:01 (SSID='hiddenssid' freq=2462 MHz)
<1>Cancelling scan request
<1>WPA: using IEEE 802.11i/D3.0
<1>WPA: using GTK TKIP
<1>WPA: using PTK TKIP
<1>WPA: using KEY_MGMT WPA-PSK
<2>Association request to the driver failed
<1>Setting authentication timeout: 5 sec 0 usec
<1>Associated to a new BSS: BSSID=00:00:00:00:00:01
<2>Associated with 00:00:00:00:00:01
<1>Setting authentication timeout: 10 sec 0 usec
<1>Cancelling scan request
<1>Setting authentication timeout: 10 sec 0 usec1. How do I associate with the router?
2. Why doesn't the interface get configured with the IP address?



