Topic: [UNSOLVED] Multiple wireless networks

OK, so I am truly ashamed because the answer to this is probably very obvious, and I'll gladly wear the dunce cap while I ask this.

A couple of weeks ago -- I think after an update -- the internal wireless card in this ThinkPad T30 stopped working the way it had until that point and gave me several choices of networks from which to choose, without connecting to any of them. The workaround was, of course, to use a PC-MCIA card, which I'm using now.

But now it's a.) kind of bugging me to have this thing sticking out of the side of the ThinkPad, and b.) I have another old laptop with no internal wireless card (a MicroPC) that needs the PC-MCIA card.

[It should be noted that I have a lot of older hardware because, well, I'm poor, but that's not really related to the problem.]

Here's what the drop-down menu looks like (with the PC-MCIA card in operation, and connected to the Linksys router):

http://ompldr.org/tY201bg

I'd prefer not to go the ndiswrapper route, but I can if I have to. Any suggestions as to why this list is so, um, long?

Last edited by lcafiero (2012-02-10 00:15:07)

Res publica non dominetur

Re: [UNSOLVED] Multiple wireless networks

Well without more to go on, clearly the wireless card initially stopped working because either it physically died (somewhat laughably unlikely) or no long was supported/detected properly after the update. Just about every *nix out there tries to be very friendly about continuing support for whatever has been previously covered by a given package. It could be you've fallen prey to one of the pitfalls of Debian based distros and you need to tell it you're totally alright with using a given propitiatory driver.

But based solely on the screen dump I'd say that you just have more than you need as far as ifconfig is concerned. Like you updated, and it just appended to the config without bothering to check for redundancy so you got a duplicate for a particular (your onboard) interface that is keeping it from working. More importantly, who is running an unprotected router called "linksys" and why haven't you told them how bad an idea that is!?

Forums are boring, drinking is awesome.

Re: [UNSOLVED] Multiple wireless networks

Linksys, I think, is just a network for those visiting this office to use the wireless while they wait for appointments, etc., as opposed to giving them a password for the paper's other networks (normally I use DSL-net, but I was too lazy to sign in when I got in today).

It's pretty odd, though, that when I take out the PCMCIA out, I still have two Wireless Network (Intersil Prism 2.5 Wavelan) listings. But never mind -- I'll just find another PCMCIA card.

Res publica non dominetur

Re: [UNSOLVED] Multiple wireless networks

Oh don't worry about that, just run ifconfig and see if you have a duplicate entry. If you do we can go and remove the extra line from /etc/rc.conf (that's probably not right for #!, but I'm coming from far to many years of BSD to know the Linux equivalent off hand).

Forums are boring, drinking is awesome.

Re: [UNSOLVED] Multiple wireless networks

What's the driver? Atheros?

Re: [UNSOLVED] Multiple wireless networks

The OS tries to make your wireless device names persistant over reboots.
Inserting cards is remembered over reboots, but can create problems.
It does this by recording info in

/etc/udev/rules.d/70-persistent-net.rules

Please post output of

cat /etc/udev/rules.d/70-persistent-net.rules

Then

sudo rm /etc/udev/rules.d/70-persistent-net.rules

and reboot.
The file will be recreated with the current config.

If that does not help, post following info
Post output of following commands:
(copy/paste the commands into a terminal window, press enter for the last command)

    uname -a
    lspci -knn | grep -i net -A2 
    lsusb
    egrep -v "^$|^#" /etc/network/interfaces
    egrep -v "^$|^#" /etc/resolv.conf
    egrep -v "^$|^#" /etc/hosts
    cat /etc/udev/rules.d/70-persistent-net.rules
    ip addr
    ip route
    ip n
    rfkill list
    lsmod
    dmesg | egrep 'net|eth|sky|sis|via|3c3|3c5|e100|8139|8169|acx|air|ath|atl|ar9|carl|atme|at7|herm|iwl|ipw|rtl8|r81|rt2|rt3|rt6|rt7|tg3|ssb|wl|b43|b44|ori|pri|p5|zd|ndis|wmi|ns8|FW'
    cat /var/lib/NetworkManager/NetworkManager.state
    cat /etc/NetworkManager/NetworkManager.conf
    nm-tool
    iwconfig
    iwlist chan
    iwlist scan
    cat /var/log/syslog | egrep 'rtl|firmware|wlan|wpa|eth' | tail -n75

hth

If you poke the bear it is going to come after you.

Re: [UNSOLVED] Multiple wireless networks

xaos52 -- Here's the output for cat /etc/udev/rules.d/70-persistent-net.rules

lcafiero@crunchbang:/etc/udev/rules.d$ cat 70-persistent-net.rules 
# This file was automatically generated by the /lib/udev/write_net_rules
# program, run by the persistent-net-generator.rules rules file.
#
# You can modify it, as long as you keep each rule on a single
# line, and change only the value of the NAME= key.

# PCI device 0x8086:0x1031 (e100)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:09:6b:cd:2c:e5", ATTR{dev_id}=="0x0", ATTR{type}=="1", KERNEL=="eth*", NAME="eth0"

# PCI device 0x168c:0x0013 (ath5k)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:1b:11:ea:6b:7c", ATTR{dev_id}=="0x0", ATTR{type}=="1", KERNEL=="wlan*", NAME="wlan0"

# PCI device 0x1260:0x3873 (orinoco_pci)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:05:3c:08:82:42", ATTR{dev_id}=="0x0", ATTR{type}=="1", KERNEL=="eth*", NAME="eth1"

# PCI device 0x1260:0x3873 (hostap_pci)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:05:3c:08:82:42", ATTR{dev_id}=="0x0", ATTR{type}=="1", KERNEL=="wlan*", NAME="wlan1" 

I've put this in the pastebin as well, if you want to check it there, too.

I've removed the file and now I'm rebooting, meaning that I'll be back with the rest of the info in a minute. BRB

Res publica non dominetur

Re: [UNSOLVED] Multiple wireless networks

There's a lot here and it won't let me put it in one post. But I have it all in its entirety in the pastebin

http://crunchbanglinux.org/pastebin/1480

lcafiero@crunchbang:~$ uname -a
Linux crunchbang 3.2.0-0.bpo.1-486 #1 Thu Jan 26 00:51:35 UTC 2012 i686 GNU/Linux

lcafiero@crunchbang:~$ lspci -knn | grep -i net -A2
02:02.0 Network controller [0280]: Intersil Corporation Prism 2.5 Wavelan chipset [1260:3873] (rev 01)
    Subsystem: Intel Corporation Wireless 802.11b MiniPCI Adapter [8086:2513]
    Kernel driver in use: hostap_pci
02:08.0 Ethernet controller [0200]: Intel Corporation 82801CAM (ICH3) PRO/100 VE (LOM) Ethernet Controller [8086:1031] (rev 42)
    Subsystem: IBM ThinkPad A/T/X Series [1014:0209]
    Kernel driver in use: e100

lcafiero@crunchbang:~$ lsusb
Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 001 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub

lcafiero@crunchbang:~$ egrep -v "^$|^#" /etc/network/interfaces
auto lo
iface lo inet loopback

lcafiero@crunchbang:~$ egrep -v "^$|^#" /etc/resolv.conf
lcafiero@crunchbang:~$ 

lcafiero@crunchbang:~$ egrep -v "^$|^#" /etc/hosts
127.0.0.1    localhost
127.0.1.1    crunchbang
::1     ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters

lcafiero@crunchbang:~$ cat /etc/udev/rules.d/70-persistent-net.rules 
# This file was automatically generated by the /lib/udev/write_net_rules
# program, run by the persistent-net-generator.rules rules file.
#
# You can modify it, as long as you keep each rule on a single
# line, and change only the value of the NAME= key.

# PCI device 0x8086:0x1031 (e100)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:09:6b:cd:2c:e5", ATTR{dev_id}=="0x0", ATTR{type}=="1", KERNEL=="eth*", NAME="eth0"

# PCI device 0x1260:0x3873 (hostap_pci)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:05:3c:08:82:42", ATTR{dev_id}=="0x0", ATTR{type}=="1", KERNEL=="wlan*", NAME="wlan0"

lcafiero@crunchbang:~$ ip addr
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 16436 qdisc noqueue state UNKNOWN 
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    inet 127.0.0.1/8 scope host lo
    inet6 ::1/128 scope host 
       valid_lft forever preferred_lft forever
2: eth0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc pfifo_fast state DOWN qlen 1000
    link/ether 00:09:6b:cd:2c:e5 brd ff:ff:ff:ff:ff:ff
3: irda0: <NOARP> mtu 2048 qdisc noop state DOWN qlen 8
    link/irda 00:00:00:00 brd ff:ff:ff:ff
4: wifi0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc pfifo_fast state DOWN qlen 1000
    link/ieee802.11 00:05:3c:08:82:42 brd ff:ff:ff:ff:ff:ff
5: wlan0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN 
    link/ether 00:05:3c:08:82:42 brd ff:ff:ff:ff:ff:ff
    inet6 fe80::205:3cff:fe08:8242/64 scope link 
       valid_lft forever preferred_lft forever
6: pan0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN 
    link/ether ae:53:52:ba:81:8f brd ff:ff:ff:ff:ff:ff

lcafiero@crunchbang:~$ ip route
lcafiero@crunchbang:~$

lcafiero@crunchbang:~$ ip n
lcafiero@crunchbang:~$ 

lcafiero@crunchbang:~$ rfkill list
bash: rfkill: command not found

lcafiero@crunchbang:~$ lsmod
Module                  Size  Used by
arc4                   12418  0 
ecb                    12649  0 
lib80211_crypt_wep     12636  0 
speedstep_ich          12669  0 
speedstep_lib          12463  1 speedstep_ich
cpufreq_stats          12550  0 
cpufreq_userspace      12520  0 
cpufreq_conservative    12987  0 
cpufreq_powersave      12422  0 
ppdev                  12621  0 
lp                     12858  0 
bridge                 59470  0 
stp                    12368  1 bridge
bnep                   17147  2 
rfcomm                 27833  0 
bluetooth             102578  10 bnep,rfcomm
fuse                   51455  3 
loop                   22023  0 
radeon                581793  2 
snd_intel8x0           26383  1 
snd_intel8x0m          17412  0 
snd_ac97_codec         83728  2 snd_intel8x0,snd_intel8x0m
ac97_bus               12462  1 snd_ac97_codec
ttm                    42532  1 radeon
drm_kms_helper         22454  1 radeon
thinkpad_acpi          46976  0 
rfkill                 18440  3 bluetooth,thinkpad_acpi
joydev                 16869  0 
pcmcia                 32024  0 
drm                   133697  4 radeon,ttm,drm_kms_helper
snd_pcm                52832  3 snd_intel8x0,snd_intel8x0m,snd_ac97_codec
snd_seq                39027  0 
i2c_algo_bit           12706  1 radeon
parport_pc             21895  1 
snd_timer              22133  2 snd_pcm,snd_seq
hostap_pci             43159  2 
hostap                 79871  1 hostap_pci
nsc_ircc               17332  0 
yenta_socket           22152  0 
i2c_i801               12670  0 
pcmcia_rsrc            17314  1 yenta_socket
pcmcia_core            17973  3 pcmcia,yenta_socket,pcmcia_rsrc
rng_core               12550  0 
lib80211               12829  3 lib80211_crypt_wep,hostap_pci,hostap
parport                26994  3 ppdev,lp,parport_pc
i2c_core               19022  5 radeon,drm_kms_helper,drm,i2c_algo_bit,i2c_i801
snd_seq_device         12995  1 snd_seq
snd                    42354  10 snd_intel8x0,snd_intel8x0m,snd_ac97_codec,thinkpad_acpi,snd_pcm,snd_seq,snd_timer,snd_seq_device
tpm_tis                13027  0 
nvram                  12853  1 thinkpad_acpi
tpm                    17545  1 tpm_tis
psmouse                59474  0 
tpm_bios               12799  1 tpm
soundcore              12878  1 snd
snd_page_alloc         12841  3 snd_intel8x0,snd_intel8x0m,snd_pcm
shpchp                 26653  0 
pci_hotplug            26309  1 shpchp
pcspkr                 12515  0 
serio_raw              12755  0 
irda                   78083  1 nsc_ircc
evdev                  13077  13 
processor              22770  1 
video                  17345  0 
battery                12957  0 
button                 12783  0 
ac                     12552  0 
crc_ccitt              12331  1 irda
ext4                  300227  1 
mbcache                12810  1 ext4
jbd2                   51388  1 ext4
crc16                  12327  2 bluetooth,ext4
sg                     21324  0 
sr_mod                 17418  0 
sd_mod                 35060  3 
cdrom                  34629  1 sr_mod
crc_t10dif             12332  1 sd_mod
ata_generic            12439  0 
ata_piix               21144  2 
libata                124073  2 ata_generic,ata_piix
uhci_hcd               22057  0 
ehci_hcd               34912  0 
scsi_mod              134523  4 sg,sr_mod,sd_mod,libata
usbcore               103418  3 uhci_hcd,ehci_hcd
e100                   31290  0 
mii                    12595  1 e100
thermal                13058  0 
thermal_sys            17712  3 video,processor,thermal
floppy                 47855  0 
usb_common             12338  1 usbcore 
Res publica non dominetur

Re: [UNSOLVED] Multiple wireless networks

More:

 lcafiero@crunchbang:~$ dmesg | egrep 'net|eth|sky|sis|via|3c3|3c5|e100|8139|8169|acx|air|ath|atl|ar9|carl|atme|at7|herm|iwl|ipw|rtl8|' > dmesg.txt
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 3.2.0-0.bpo.1-486 (Debian 3.2.1-2~bpo60+1) (ben@decadent.org.uk) (gcc version 4.4.5 (Debian 4.4.5-8) ) #1 Thu Jan 26 00:51:35 UTC 2012
[    0.000000] BIOS-provided physical RAM map:
[    0.000000]  BIOS-e820: 0000000000000000 - 000000000009f000 (usable)
[    0.000000]  BIOS-e820: 000000000009f000 - 00000000000a0000 (reserved)
[    0.000000]  BIOS-e820: 00000000000d2000 - 00000000000d4000 (reserved)
[    0.000000]  BIOS-e820: 00000000000dc000 - 0000000000100000 (reserved)
[    0.000000]  BIOS-e820: 0000000000100000 - 000000003ff70000 (usable)
[    0.000000]  BIOS-e820: 000000003ff70000 - 000000003ff7e000 (ACPI data)
[    0.000000]  BIOS-e820: 000000003ff7e000 - 000000003ff80000 (ACPI NVS)
[    0.000000]  BIOS-e820: 000000003ff80000 - 0000000040000000 (reserved)
[    0.000000]  BIOS-e820: 00000000ff800000 - 0000000100000000 (reserved)
[    0.000000] Notice: NX (Execute Disable) protection missing in CPU!
[    0.000000] DMI present.
[    0.000000] DMI: IBM 236697U/236697U, BIOS 1IET71WW (2.10 ) 06/16/2006
[    0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
[    0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
[    0.000000] last_pfn = 0x3ff70 max_arch_pfn = 0x100000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-CFFFF write-protect
[    0.000000]   D0000-DBFFF uncachable
[    0.000000]   DC000-DFFFF write-back
[    0.000000]   E0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000 mask FC0000000 write-back
[    0.000000]   1 base 03FF80000 mask FFFF80000 uncachable
[    0.000000]   2 disabled
[    0.000000]   3 disabled
[    0.000000]   4 disabled
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[    0.000000] initial memory mapped : 0 - 01800000
[    0.000000] Base memory trampoline at [c009c000] 9c000 size 12288
[    0.000000] init_memory_mapping: 0000000000000000-00000000377fe000
[    0.000000]  0000000000 - 0000400000 page 4k
[    0.000000]  0000400000 - 0037400000 page 2M
[    0.000000]  0037400000 - 00377fe000 page 4k
[    0.000000] kernel direct mapping tables up to 377fe000 @ 17fb000-1800000
[    0.000000] RAMDISK: 2f687000 - 2ffd4000
[    0.000000] ACPI: RSDP 000f7010 00024 (v02 IBM   )
[    0.000000] ACPI: XSDT 3ff731cd 0004C (v01 IBM    TP-1I    00002100  LTP 00000000)
[    0.000000] ACPI: FACP 3ff73300 00081 (v01 IBM    TP-1I    00002100 IBM  00000001)
[    0.000000] ACPI: DSDT 3ff733e7 0AAD5 (v01 IBM    TP-1I    00002100 MSFT 0100000D)
[    0.000000] ACPI: FACS 3ff7f000 00040
[    0.000000] ACPI: SSDT 3ff733b4 00033 (v01 IBM    TP-1I    00002100 MSFT 0100000D)
[    0.000000] ACPI: ECDT 3ff7debc 00052 (v01 IBM    TP-1I    00002100 IBM  00000001)
[    0.000000] ACPI: TCPA 3ff7df0e 00032 (v01 IBM    TP-1I    00002100 PTL  00000001)
[    0.000000] ACPI: BOOT 3ff7dfd8 00028 (v01 IBM    TP-1I    00002100  LTP 00000001)
[    0.000000] 135MB HIGHMEM available.
[    0.000000] 887MB LOWMEM available.
[    0.000000]   mapped low ram: 0 - 377fe000
[    0.000000]   low ram: 0 - 377fe000
[    0.000000] Zone PFN ranges:
[    0.000000]   DMA      0x00000010 -> 0x00001000
[    0.000000]   Normal   0x00001000 -> 0x000377fe
[    0.000000]   HighMem  0x000377fe -> 0x0003ff70
[    0.000000] Movable zone start PFN for each node
[    0.000000] early_node_map[2] active PFN ranges
[    0.000000]     0: 0x00000010 -> 0x0000009f
[    0.000000]     0: 0x00000100 -> 0x0003ff70
[    0.000000] On node 0 totalpages: 261887
[    0.000000] free_area_init_node: node 0, pgdat c13cb538, node_mem_map f6ffd200
[    0.000000]   DMA zone: 32 pages used for memmap
[    0.000000]   DMA zone: 0 pages reserved
[    0.000000]   DMA zone: 3951 pages, LIFO batch:0
[    0.000000]   Normal zone: 1744 pages used for memmap
[    0.000000]   Normal zone: 221486 pages, LIFO batch:31
[    0.000000]   HighMem zone: 271 pages used for memmap
[    0.000000]   HighMem zone: 34403 pages, LIFO batch:7
[    0.000000] Using APIC driver default
[    0.000000] ACPI: PM-Timer IO Port: 0x1008
[    0.000000] Local APIC disabled by BIOS -- you can enable it with "lapic"
[    0.000000] APIC: disable apic facility
[    0.000000] APIC: switched to apic NOOP
[    0.000000] nr_irqs_gsi: 16
[    0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
[    0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000d2000
[    0.000000] PM: Registered nosave memory: 00000000000d2000 - 00000000000d4000
[    0.000000] PM: Registered nosave memory: 00000000000d4000 - 00000000000dc000
[    0.000000] PM: Registered nosave memory: 00000000000dc000 - 0000000000100000
[    0.000000] Allocating PCI resources starting at 40000000 (gap: 40000000:bf800000)
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] pcpu-alloc: s0 r0 d32768 u32768 alloc=1*32768
[    0.000000] pcpu-alloc: [0] 0 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 259840
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.2.0-0.bpo.1-486 root=UUID=4230ff2f-c592-4e4b-9073-b9b70079351a ro quiet splash
[    0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
[    0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
[    0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
[    0.000000] Initializing CPU#0
[    0.000000] Initializing HighMem for node 0 (000377fe:0003ff70)
[    0.000000] Memory: 1024052k/1048000k available (2634k kernel code, 23496k reserved, 1280k data, 484k init, 138696k highmem)
[    0.000000] virtual kernel memory layout:
[    0.000000]     fixmap  : 0xfffa1000 - 0xfffff000   ( 376 kB)
[    0.000000]     pkmap   : 0xff800000 - 0xffc00000   (4096 kB)
[    0.000000]     vmalloc : 0xf7ffe000 - 0xff7fe000   ( 120 MB)
[    0.000000]     lowmem  : 0xc0000000 - 0xf77fe000   ( 887 MB)
[    0.000000]       .init : 0xc13d3000 - 0xc144c000   ( 484 kB)
[    0.000000]       .data : 0xc1292a2d - 0xc13d2dc0   (1280 kB)
[    0.000000]       .text : 0xc1000000 - 0xc1292a2d   (2634 kB)
[    0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
[    0.000000] NR_IRQS:2304 nr_irqs:256 16
[    0.000000] CPU 0 irqstacks, hard=f6806000 soft=f6808000
[    0.000000] Console: colour VGA+ 80x25
[    0.000000] console [tty0] enabled
[    0.000000] Fast TSC calibration using PIT
[    0.000000] Detected 1998.074 MHz processor.
[    0.008005] Calibrating delay loop (skipped), value calculated using timer frequency.. 3996.14 BogoMIPS (lpj=7992296)
[    0.008013] pid_max: default: 32768 minimum: 301
[    0.008072] Security Framework initialized
[    0.008086] AppArmor: AppArmor disabled by boot time parameter
[    0.008107] Mount-cache hash table entries: 512
[    0.008296] Initializing cgroup subsys cpuacct
[    0.008303] Initializing cgroup subsys memory
[    0.008316] Initializing cgroup subsys devices
[    0.008320] Initializing cgroup subsys freezer
[    0.008324] Initializing cgroup subsys net_cls
[    0.008328] Initializing cgroup subsys blkio
[    0.008397] CPU: Mobile Intel(R) Pentium(R) 4 - M CPU 2.00GHz stepping 07
[    0.013182] ACPI: Core revision 20110623
[    0.019856] ACPI: setting ELCR to 0200 (from 0800)
[    0.020106] Performance Events: Netburst events, 
[    0.020114] no APIC, boot with the "lapic" boot parameter to force-enable it.
[    0.020117] no hardware sampling interrupt available.
[    0.020124] Netburst P4/Xeon PMU driver.
[    0.020129] ... version:                0
[    0.020132] ... bit width:              40
[    0.020135] ... generic registers:      18
[    0.020138] ... value mask:             000000ffffffffff
[    0.020141] ... max period:             0000007fffffffff
[    0.020143] ... fixed-purpose events:   0
[    0.020146] ... event mask:             000000000003ffff
[    0.020435] NMI watchdog disabled (cpu0): not supported (no LAPIC?)
[    0.020664] devtmpfs: initialized
[    0.020850] PM: Registering ACPI NVS region at 3ff7e000 (8192 bytes)
[    0.021150] print_constraints: dummy: 
[    0.021230] NET: Registered protocol family 16
[    0.021389] EISA bus registered
[    0.021450] ACPI: bus type pci registered
[    0.021655] PCI: PCI BIOS revision 2.10 entry at 0xfd8fe, last bus=8
[    0.021660] PCI: Using configuration type 1 for base access
[    0.024364] bio: create slab <bio-0> at 0
[    0.024479] ACPI: Added _OSI(Module Device)
[    0.024484] ACPI: Added _OSI(Processor Device)
[    0.024487] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.024491] ACPI: Added _OSI(Processor Aggregator Device)
[    0.026331] ACPI: EC: EC description table is found, configuring boot EC
[    0.036652] ACPI: Interpreter enabled
[    0.036663] ACPI: (supports S0 S3 S4 S5)
[    0.036703] ACPI: Using PIC for interrupt routing
[    0.040838] ACPI: Power Resource [PUBS] (on)
[    0.044776] ACPI: EC: GPE = 0x1c, I/O: command/status = 0x66, data = 0x62
[    0.045419] ACPI: ACPI Dock Station Driver: 3 docks/bays found
[    0.045419] HEST: Table not found.
[    0.045419] PCI: Ignoring host bridge windows from ACPI; if necessary, use "pci=use_crs" and report a bug
[    0.045419] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.048086] pci_root PNP0A03:00: host bridge window [io  0x0000-0x0cf7] (ignored)
[    0.048092] pci_root PNP0A03:00: host bridge window [io  0x0d00-0xffff] (ignored)
[    0.048097] pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff] (ignored)
[    0.048103] pci_root PNP0A03:00: host bridge window [mem 0x000d4000-0x000d7fff] (ignored)
[    0.048107] pci_root PNP0A03:00: host bridge window [mem 0x000d8000-0x000dbfff] (ignored)
[    0.048113] pci_root PNP0A03:00: host bridge window [mem 0x40000000-0xfebfffff] (ignored)
[    0.048136] pci 0000:00:00.0: [8086:1a30] type 0 class 0x000600
[    0.048148] pci 0000:00:00.0: reg 10: [mem 0xe0000000-0xe3ffffff pref]
[    0.048211] pci 0000:00:01.0: [8086:1a31] type 1 class 0x000604
[    0.048290] pci 0000:00:1d.0: [8086:2482] type 0 class 0x000c03
[    0.048348] pci 0000:00:1d.0: reg 20: [io  0x1800-0x181f]
[    0.048395] pci 0000:00:1d.1: [8086:2484] type 0 class 0x000c03
[    0.048451] pci 0000:00:1d.1: reg 20: [io  0x1820-0x183f]
[    0.048497] pci 0000:00:1d.2: [8086:2487] type 0 class 0x000c03
[    0.048554] pci 0000:00:1d.2: reg 20: [io  0x1840-0x185f]
[    0.048608] pci 0000:00:1e.0: [8086:2448] type 1 class 0x000604
[    0.048664] pci 0000:00:1f.0: [8086:248c] type 0 class 0x000601
[    0.048749] pci 0000:00:1f.0: quirk: [io  0x1000-0x107f] claimed by ICH4 ACPI/GPIO/TCO
[    0.048757] pci 0000:00:1f.0: quirk: [io  0x1180-0x11bf] claimed by ICH4 GPIO
[    0.048779] pci 0000:00:1f.1: [8086:248a] type 0 class 0x000101
[    0.048800] pci 0000:00:1f.1: reg 10: [io  0x01f0-0x01f7]
[    0.048815] pci 0000:00:1f.1: reg 14: [io  0x03f4-0x03f7]
[    0.048829] pci 0000:00:1f.1: reg 18: [io  0x0170-0x0177]
[    0.048842] pci 0000:00:1f.1: reg 1c: [io  0x0374-0x0377]
[    0.048856] pci 0000:00:1f.1: reg 20: [io  0x1860-0x186f]
[    0.048870] pci 0000:00:1f.1: reg 24: [mem 0x00000000-0x000003ff]
[    0.048908] pci 0000:00:1f.3: [8086:2483] type 0 class 0x000c05
[    0.048964] pci 0000:00:1f.3: reg 20: [io  0x1880-0x189f]
[    0.049013] pci 0000:00:1f.5: [8086:2485] type 0 class 0x000401
[    0.049032] pci 0000:00:1f.5: reg 10: [io  0x1c00-0x1cff]
[    0.049047] pci 0000:00:1f.5: reg 14: [io  0x18c0-0x18ff]
[    0.049120] pci 0000:00:1f.6: [8086:2486] type 0 class 0x000703
[    0.049139] pci 0000:00:1f.6: reg 10: [io  0x2400-0x24ff]
[    0.049153] pci 0000:00:1f.6: reg 14: [io  0x2000-0x207f]
[    0.049248] pci 0000:01:00.0: [1002:4c57] type 0 class 0x000300
[    0.049269] pci 0000:01:00.0: reg 10: [mem 0xe8000000-0xefffffff pref]
[    0.049280] pci 0000:01:00.0: reg 14: [io  0x3000-0x30ff]
[    0.049291] pci 0000:01:00.0: reg 18: [mem 0xd0100000-0xd010ffff]
[    0.049323] pci 0000:01:00.0: reg 30: [mem 0x00000000-0x0001ffff pref]
[    0.049350] pci 0000:01:00.0: supports D1 D2
[    0.049395] pci 0000:00:01.0: PCI bridge to [bus 01-01]
[    0.049401] pci 0000:00:01.0:   bridge window [io  0x3000-0x3fff]
[    0.049407] pci 0000:00:01.0:   bridge window [mem 0xd0100000-0xd01fffff]
[    0.049413] pci 0000:00:01.0:   bridge window [mem 0xe8000000-0xefffffff pref]
[    0.049449] pci 0000:02:00.0: [104c:ac55] type 2 class 0x000607
[    0.049472] pci 0000:02:00.0: reg 10: [mem 0x50000000-0x50000fff]
[    0.049497] pci 0000:02:00.0: supports D1 D2
[    0.049501] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.049508] pci 0000:02:00.0: PME# disabled
[    0.049535] pci 0000:02:00.1: [104c:ac55] type 2 class 0x000607
[    0.049557] pci 0000:02:00.1: reg 10: [mem 0x51000000-0x51000fff]
[    0.049582] pci 0000:02:00.1: supports D1 D2
[    0.049586] pci 0000:02:00.1: PME# supported from D0 D1 D2 D3hot D3cold
[    0.049592] pci 0000:02:00.1: PME# disabled
[    0.049627] pci 0000:02:02.0: [1260:3873] type 0 class 0x000280
[    0.049650] pci 0000:02:02.0: reg 10: [mem 0xf8000000-0xf8000fff pref]
[    0.049728] pci 0000:02:02.0: supports D1 D2
[    0.049732] pci 0000:02:02.0: PME# supported from D0 D1 D2 D3hot
[    0.049738] pci 0000:02:02.0: PME# disabled
[    0.049770] pci 0000:02:08.0: [8086:1031] type 0 class 0x000200
[    0.049792] pci 0000:02:08.0: reg 10: [mem 0xd0200000-0xd0200fff]
[    0.049805] pci 0000:02:08.0: reg 14: [io  0x8000-0x803f]
[    0.049873] pci 0000:02:08.0: supports D1 D2
[    0.049877] pci 0000:02:08.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.049884] pci 0000:02:08.0: PME# disabled
[    0.049927] pci 0000:00:1e.0: PCI bridge to [bus 02-08] (subtractive decode)
[    0.049934] pci 0000:00:1e.0:   bridge window [io  0x4000-0x8fff]
[    0.049941] pci 0000:00:1e.0:   bridge window [mem 0xd0200000-0xdfffffff]
[    0.049948] pci 0000:00:1e.0:   bridge window [mem 0xf0000000-0xf80fffff pref]
[    0.049953] pci 0000:00:1e.0:   bridge window [io  0x0000-0xffff] (subtractive decode)
[    0.049958] pci 0000:00:1e.0:   bridge window [mem 0x00000000-0xffffffff] (subtractive decode)
[    0.050056] pci_bus 0000:00: on NUMA node 0
[    0.050062] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[    0.050131] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.AGP_._PRT]
[    0.050172] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCI1._PRT]
[    0.050304]  pci0000:00: Unable to request _OSC control (_OSC support mask: 0x1e)
[    0.054153] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 *11)
[    0.054287] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 *11)
[    0.054417] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 10 *11)
[    0.054548] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 *11)
[    0.054678] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 10 *11)
[    0.054786] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
[    0.054899] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
[    0.055007] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
[    0.055205] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
[    0.055212] vgaarb: loaded
[    0.055215] vgaarb: bridge control possible 0000:01:00.0
[    0.055297] PCI: Using ACPI for IRQ routing
[    0.055473] PCI: pci_cache_line_size set to 64 bytes
[    0.055557] reserve RAM buffer: 000000000009f000 - 000000000009ffff 
[    0.055562] reserve RAM buffer: 000000003ff70000 - 000000003fffffff 
[    0.055748] Switching to clocksource pit
[    0.055748] pnp: PnP ACPI init
[    0.055748] ACPI: bus type pnp registered
[    0.055748] pnp 00:00: [mem 0x00000000-0x0009ffff]
[    0.055748] pnp 00:00: [mem 0x000c0000-0x000c3fff]
[    0.055748] pnp 00:00: [mem 0x000c4000-0x000c7fff]
[    0.055748] pnp 00:00: [mem 0x000c8000-0x000cbfff]
[    0.055748] pnp 00:00: [mem 0x000cc000-0x000cffff]
[    0.055748] pnp 00:00: [mem 0x000d0000-0x000d3fff]
[    0.055748] pnp 00:00: [mem 0x000d4000-0x000d3fff disabled]
[    0.055748] pnp 00:00: [mem 0x000d8000-0x000d7fff disabled]
[    0.055748] pnp 00:00: [mem 0x000dc000-0x000dffff]
[    0.055748] pnp 00:00: [mem 0x000e0000-0x000e3fff]
[    0.055748] pnp 00:00: [mem 0x000e4000-0x000e7fff]
[    0.055748] pnp 00:00: [mem 0x000e8000-0x000ebfff]
[    0.055748] pnp 00:00: [mem 0x000ec000-0x000effff]
[    0.055748] pnp 00:00: [mem 0x000f0000-0x000fffff]
[    0.055748] pnp 00:00: [mem 0x00100000-0x3fffffff]
[    0.055748] pnp 00:00: [mem 0xfec00000-0xffffffff]
[    0.055748] system 00:00: [mem 0x00000000-0x0009ffff] could not be reserved
[    0.055748] system 00:00: [mem 0x000c0000-0x000c3fff] could not be reserved
[    0.055748] system 00:00: [mem 0x000c4000-0x000c7fff] could not be reserved
[    0.055748] system 00:00: [mem 0x000c8000-0x000cbfff] could not be reserved
[    0.055748] system 00:00: [mem 0x000cc000-0x000cffff] could not be reserved
[    0.055748] system 00:00: [mem 0x000d0000-0x000d3fff] could not be reserved
[    0.055748] system 00:00: [mem 0x000dc000-0x000dffff] could not be reserved
[    0.055748] system 00:00: [mem 0x000e0000-0x000e3fff] could not be reserved
[    0.055748] system 00:00: [mem 0x000e4000-0x000e7fff] could not be reserved
[    0.055748] system 00:00: [mem 0x000e8000-0x000ebfff] could not be reserved
[    0.055748] system 00:00: [mem 0x000ec000-0x000effff] could not be reserved
[    0.055748] system 00:00: [mem 0x000f0000-0x000fffff] could not be reserved
[    0.055748] system 00:00: [mem 0x00100000-0x3fffffff] could not be reserved
[    0.055748] system 00:00: [mem 0xfec00000-0xffffffff] could not be reserved
[    0.055748] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.055748] pnp 00:01: [bus 00-ff]
[    0.055748] pnp 00:01: [io  0x0cf8-0x0cff]
[    0.055748] pnp 00:01: [io  0x0000-0x0cf7 window]
[    0.055748] pnp 00:01: [io  0x0d00-0xffff window]
[    0.055748] pnp 00:01: [mem 0x000a0000-0x000bffff window]
[    0.055748] pnp 00:01: [mem 0x000c0000-0x000c3fff window]
[    0.055748] pnp 00:01: [mem 0x000c4000-0x000c7fff window]
[    0.055748] pnp 00:01: [mem 0x000c8000-0x000cbfff window]
[    0.055748] pnp 00:01: [mem 0x000cc000-0x000cffff window]
[    0.055748] pnp 00:01: [mem 0x000d0000-0x000d3fff window]
[    0.055748] pnp 00:01: [mem 0x000d4000-0x000d7fff window]
[    0.055748] pnp 00:01: [mem 0x000d8000-0x000dbfff window]
[    0.055748] pnp 00:01: [mem 0x000dc000-0x000dffff window]
[    0.055748] pnp 00:01: [mem 0x000e0000-0x000e3fff window]
[    0.055748] pnp 00:01: [mem 0x000e4000-0x000e7fff window]
[    0.055748] pnp 00:01: [mem 0x000e8000-0x000ebfff window]
[    0.055748] pnp 00:01: [mem 0x000ec000-0x000effff window]
[    0.055748] pnp 00:01: [mem 0x40000000-0xfebfffff window]
[    0.055748] pnp 00:01: Plug and Play ACPI device, IDs PNP0a03 (active)
[    0.055748] pnp 00:02: [io  0x0010-0x001f]
[    0.055748] pnp 00:02: [io  0x0090-0x009f]
[    0.055748] pnp 00:02: [io  0x0024-0x0025]
[    0.055748] pnp 00:02: [io  0x0028-0x0029]
[    0.055748] pnp 00:02: [io  0x002c-0x002d]
[    0.055748] pnp 00:02: [io  0x0030-0x0031]
[    0.055748] pnp 00:02: [io  0x0034-0x0035]
[    0.055748] pnp 00:02: [io  0x0038-0x0039]
[    0.055748] pnp 00:02: [io  0x003c-0x003d]
[    0.055748] pnp 00:02: [io  0x00a4-0x00a5]
[    0.055748] pnp 00:02: [io  0x00a8-0x00a9]
[    0.055748] pnp 00:02: [io  0x00ac-0x00ad]
[    0.055748] pnp 00:02: [io  0x00b0-0x00b5]
[    0.055748] pnp 00:02: [io  0x00b8-0x00b9]
[    0.055748] pnp 00:02: [io  0x00bc-0x00bd]
[    0.055748] pnp 00:02: [io  0x004e-0x004f]
[    0.055748] pnp 00:02: [io  0x0050-0x0053]
[    0.055748] pnp 00:02: [io  0x0072-0x0077]
[    0.055748] pnp 00:02: [io  0x002e-0x002f]
[    0.055748] pnp 00:02: [io  0x1000-0x107f]
[    0.055748] pnp 00:02: [io  0x1180-0x11bf]
[    0.055748] pnp 00:02: [io  0x15e0-0x15ef]
[    0.055748] pnp 00:02: [io  0x1600-0x167f]
[    0.055799] system 00:02: [io  0x1000-0x107f] has been reserved
[    0.055805] system 00:02: [io  0x1180-0x11bf] has been reserved
[    0.055811] system 00:02: [io  0x15e0-0x15ef] has been reserved
[    0.055816] system 00:02: [io  0x1600-0x167f] has been reserved
[    0.055822] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.055846] pnp 00:03: [io  0x0000-0x000f]
[    0.055850] pnp 00:03: [io  0x0080-0x008f]
[    0.055854] pnp 00:03: [io  0x00c0-0x00df]
[    0.055860] pnp 00:03: [dma 4]
[    0.055910] pnp 00:03: Plug and Play ACPI device, IDs PNP0200 (active)
[    0.055928] pnp 00:04: [io  0x0061]
[    0.055975] pnp 00:04: Plug and Play ACPI device, IDs PNP0800 (active)
[    0.055994] pnp 00:05: [io  0x00f0]
[    0.056001] pnp 00:05: [irq 13]
[    0.056049] pnp 00:05: Plug and Play ACPI device, IDs PNP0c04 (active)
[    0.056067] pnp 00:06: [io  0x0070-0x0071]
[    0.056071] pnp 00:06: [irq 8]
[    0.056122] pnp 00:06: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.056140] pnp 00:07: [io  0x0060]
[    0.056144] pnp 00:07: [io  0x0064]
[    0.056148] pnp 00:07: [irq 1]
[    0.056196] pnp 00:07: Plug and Play ACPI device, IDs PNP0303 (active)
[    0.056214] pnp 00:08: [irq 12]
[    0.056320] pnp 00:08: Plug and Play ACPI device, IDs IBM0057 PNP0f13 (active)
[    0.056374] pnp 00:09: [io  0x03f0-0x03f5]
[    0.056378] pnp 00:09: [io  0x03f7]
[    0.056382] pnp 00:09: [irq 6]
[    0.056385] pnp 00:09: [dma 2]
[    0.056459] pnp 00:09: Plug and Play ACPI device, IDs PNP0700 (active)
[    0.056626] pnp 00:0a: Plug and Play ACPI device, IDs PNP0501 (disabled)
[    0.056780] pnp 00:0b: [io  0x03bc-0x03be]
[    0.056785] pnp 00:0b: [irq 7]
[    0.056911] pnp 00:0b: Plug and Play ACPI device, IDs PNP0400 (active)
[    0.057115] pnp 00:0c: Plug and Play ACPI device, IDs IBM0071 PNP0511 (disabled)
[    0.057902] pnp: PnP ACPI: found 13 devices
[    0.057906] ACPI: ACPI bus type pnp unregistered
[    0.057912] PnPBIOS: Disabled by ACPI PNP
[    0.095848] Switching to clocksource acpi_pm
[    0.095880] PCI: max bus depth: 2 pci_try_num: 3
[    0.095916] pci 0000:00:1f.1: BAR 5: assigned [mem 0x40000000-0x400003ff]
[    0.095927] pci 0000:00:1f.1: BAR 5: set to [mem 0x40000000-0x400003ff] (PCI address [0x40000000-0x400003ff])
[    0.095936] pci 0000:01:00.0: BAR 6: assigned [mem 0xd0120000-0xd013ffff pref]
[    0.095942] pci 0000:00:01.0: PCI bridge to [bus 01-01]
[    0.095947] pci 0000:00:01.0:   bridge window [io  0x3000-0x3fff]
[    0.095954] pci 0000:00:01.0:   bridge window [mem 0xd0100000-0xd01fffff]
[    0.095960] pci 0000:00:01.0:   bridge window [mem 0xe8000000-0xefffffff pref]
[    0.095974] pci 0000:02:00.1: BAR 16: assigned [mem 0xd4000000-0xd7ffffff]
[    0.095979] pci 0000:02:00.1: BAR 15: assigned [mem 0xf0000000-0xf3ffffff pref]
[    0.095984] pci 0000:02:00.1: BAR 14: assigned [io  0x4000-0x40ff]
[    0.095989] pci 0000:02:00.1: BAR 13: assigned [io  0x4400-0x44ff]
[    0.095994] pci 0000:02:00.0: BAR 16: assigned [mem 0xd8000000-0xdbffffff]
[    0.095999] pci 0000:02:00.0: BAR 15: assigned [mem 0xf4000000-0xf7ffffff pref]
[    0.096004] pci 0000:02:00.0: BAR 14: assigned [io  0x4800-0x48ff]
[    0.096009] pci 0000:02:00.0: BAR 13: assigned [io  0x4c00-0x4cff]
[    0.096014] pci 0000:02:00.0: CardBus bridge to [bus 03-06]
[    0.096017] pci 0000:02:00.0:   bridge window [io  0x4c00-0x4cff]
[    0.096024] pci 0000:02:00.0:   bridge window [io  0x4800-0x48ff]
[    0.096031] pci 0000:02:00.0:   bridge window [mem 0xf4000000-0xf7ffffff pref]
[    0.096038] pci 0000:02:00.0:   bridge window [mem 0xd8000000-0xdbffffff]
[    0.096044] pci 0000:02:00.1: CardBus bridge to [bus 07-07]
[    0.096048] pci 0000:02:00.1:   bridge window [io  0x4400-0x44ff]
[    0.096055] pci 0000:02:00.1:   bridge window [io  0x4000-0x40ff]
[    0.096061] pci 0000:02:00.1:   bridge window [mem 0xf0000000-0xf3ffffff pref]
[    0.096068] pci 0000:02:00.1:   bridge window [mem 0xd4000000-0xd7ffffff]
[    0.096074] pci 0000:00:1e.0: PCI bridge to [bus 02-08]
[    0.096080] pci 0000:00:1e.0:   bridge window [io  0x4000-0x8fff]
[    0.096088] pci 0000:00:1e.0:   bridge window [mem 0xd0200000-0xdfffffff]
[    0.096095] pci 0000:00:1e.0:   bridge window [mem 0xf0000000-0xf80fffff pref]
[    0.096124] pci 0000:00:1e.0: setting latency timer to 64
[    0.096440] ACPI: PCI Interrupt Link [LNKA] enabled at IRQ 11
[    0.096445] PCI: setting IRQ 11 as level-triggered
[    0.096454] pci 0000:02:00.0: PCI INT A -> Link[LNKA] -> GSI 11 (level, low) -> IRQ 11
[    0.096684] ACPI: PCI Interrupt Link [LNKB] enabled at IRQ 11
[    0.096690] pci 0000:02:00.1: PCI INT B -> Link[LNKB] -> GSI 11 (level, low) -> IRQ 11
[    0.096700] pci_bus 0000:00: resource 0 [io  0x0000-0xffff]
[    0.096704] pci_bus 0000:00: resource 1 [mem 0x00000000-0xffffffff]
[    0.096709] pci_bus 0000:01: resource 0 [io  0x3000-0x3fff]
[    0.096713] pci_bus 0000:01: resource 1 [mem 0xd0100000-0xd01fffff]
[    0.096718] pci_bus 0000:01: resource 2 [mem 0xe8000000-0xefffffff pref]
[    0.096722] pci_bus 0000:02: resource 0 [io  0x4000-0x8fff]
[    0.096727] pci_bus 0000:02: resource 1 [mem 0xd0200000-0xdfffffff]
[    0.096731] pci_bus 0000:02: resource 2 [mem 0xf0000000-0xf80fffff pref]
[    0.096735] pci_bus 0000:02: resource 4 [io  0x0000-0xffff]
[    0.096740] pci_bus 0000:02: resource 5 [mem 0x00000000-0xffffffff]
[    0.096744] pci_bus 0000:03: resource 0 [io  0x4c00-0x4cff]
[    0.096748] pci_bus 0000:03: resource 1 [io  0x4800-0x48ff]
[    0.096752] pci_bus 0000:03: resource 2 [mem 0xf4000000-0xf7ffffff pref]
[    0.096757] pci_bus 0000:03: resource 3 [mem 0xd8000000-0xdbffffff]
[    0.096761] pci_bus 0000:07: resource 0 [io  0x4400-0x44ff]
[    0.096765] pci_bus 0000:07: resource 1 [io  0x4000-0x40ff]
[    0.096770] pci_bus 0000:07: resource 2 [mem 0xf0000000-0xf3ffffff pref]
[    0.096774] pci_bus 0000:07: resource 3 [mem 0xd4000000-0xd7ffffff]
[    0.096862] NET: Registered protocol family 2
[    0.096967] IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
[    0.097449] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
[    0.098948] TCP bind hash table entries: 65536 (order: 6, 262144 bytes)
[    0.099432] TCP: Hash tables configured (established 131072 bind 65536)
[    0.099436] TCP reno registered
[    0.099444] UDP hash table entries: 512 (order: 1, 8192 bytes)
[    0.099465] UDP-Lite hash table entries: 512 (order: 1, 8192 bytes)
[    0.099678] NET: Registered protocol family 1
[    0.099793] pci 0000:01:00.0: Boot video device
[    0.099847] pci 0000:02:08.0: Firmware left e100 interrupts enabled; disabling
[    0.099860] PCI: CLS 32 bytes, default 64
[    0.099983] Unpacking initramfs...
[    0.617094] Freeing initrd memory: 9524k freed
[    0.635532] Simple Boot Flag at 0x35 set to 0x1
[    0.636640] audit: initializing netlink socket (disabled)
[    0.636664] type=2000 audit(1328404067.635:1): initialized
[    0.664110] highmem bounce pool size: 64 pages
[    0.664121] HugeTLB registered 4 MB page size, pre-allocated 0 pages
[    0.664275] VFS: Disk quotas dquot_6.5.2
[    0.664311] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    0.664400] msgmni has been set to 1747
[    0.664655] alg: No test for stdrng (krng)
[    0.664699] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[    0.664706] io scheduler noop registered
[    0.664709] io scheduler deadline registered
[    0.664721] io scheduler cfq registered (default)
[    0.665145] ERST: Table is not found!
[    0.665149] GHES: HEST is not enabled!
[    0.665176] isapnp: Scanning for PnP cards...
[    1.018628] isapnp: No Plug & Play device found
[    1.018741] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    1.019254] serial 00:0a: [io  0x03f8-0x03ff]
[    1.019310] serial 00:0a: [irq 4]
[    1.019766] serial 00:0a: activated
[    1.019917] 00:0a: ttyS0 at I/O 0x3f8 (irq = 4) is a NS16550A
[    1.020109] serial 0000:00:1f.6: PCI INT B -> Link[LNKB] -> GSI 11 (level, low) -> IRQ 11
[    1.020146] serial 0000:00:1f.6: PCI INT B disabled
[    1.020329] Linux agpgart interface v0.103
[    1.020505] agpgart-intel 0000:00:00.0: Intel i845 Chipset
[    1.024407] agpgart-intel 0000:00:00.0: AGP aperture is 64M @ 0xe0000000
[    1.024663] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
[    1.029731] serio: i8042 KBD port at 0x60,0x64 irq 1
[    1.029743] serio: i8042 AUX port at 0x60,0x64 irq 12
[    1.029960] mousedev: PS/2 mouse device common for all mice
[    1.030038] rtc_cmos 00:06: RTC can wake from S4
[    1.030183] rtc_cmos 00:06: rtc core: registered rtc_cmos as rtc0
[    1.030208] rtc0: alarms up to one month, y3k, 114 bytes nvram
[    1.030294] EISA: Probing bus 0 at eisa.0
[    1.030304] Cannot allocate resource for EISA slot 1
[    1.030309] Cannot allocate resource for EISA slot 2
[    1.030313] Cannot allocate resource for EISA slot 3
[    1.030317] Cannot allocate resource for EISA slot 4
[    1.030320] Cannot allocate resource for EISA slot 5
[    1.030324] Cannot allocate resource for EISA slot 6
[    1.030327] Cannot allocate resource for EISA slot 7
[    1.030331] Cannot allocate resource for EISA slot 8
[    1.030334] EISA: Detected 0 cards.
[    1.030339] cpuidle: using governor ladder
[    1.030343] cpuidle: using governor menu
[    1.030734] TCP cubic registered
[    1.030773] NET: Registered protocol family 10
[    1.031627] Mobile IPv6
[    1.031632] NET: Registered protocol family 17
[    1.031641] Registering the dns_resolver key type
[    1.031661] Using IPI Shortcut mode
[    1.031861] PM: Hibernation image not present or could not be loaded.
[    1.031879] registered taskstats version 1
[    1.032284] rtc_cmos 00:06: setting system clock to 2012-02-05 01:07:48 UTC (1328404068)
[    1.032352] Initializing network drop monitor service
[    1.032528] Freeing unused kernel memory: 484k freed
[    1.033305] Write protecting the kernel text: 2636k
[    1.033324] Write protecting the kernel read-only data: 1020k
[    1.033500] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
[    1.068314] udev[42]: starting version 164
[    1.300361] thermal LNXTHERM:00: registered as thermal_zone0
[    1.300367] ACPI: Thermal Zone [THM0] (48 C)
[    1.302739] e100: Intel(R) PRO/100 Network Driver, 3.5.24-k2-NAPI
[    1.302746] e100: Copyright(c) 1999-2006 Intel Corporation
[    1.303087] ACPI: PCI Interrupt Link [LNKE] enabled at IRQ 11
[    1.303097] e100 0000:02:08.0: PCI INT A -> Link[LNKE] -> GSI 11 (level, low) -> IRQ 11
[    1.328198] Floppy drive(s): fd0 is 1.44M
[    1.347410] FDC 0 is a National Semiconductor PC87306
[    1.361126] usbcore: registered new interface driver usbfs
[    1.361176] usbcore: registered new interface driver hub
[    1.366611] SCSI subsystem initialized
[    1.370281] usbcore: registered new device driver usb
[    1.371377] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.389539] uhci_hcd: USB Universal Host Controller Interface driver
[    1.389626] uhci_hcd 0000:00:1d.0: power state changed by ACPI to D0
[    1.389633] uhci_hcd 0000:00:1d.0: power state changed by ACPI to D0
[    1.389649] uhci_hcd 0000:00:1d.0: PCI INT A -> Link[LNKA] -> GSI 11 (level, low) -> IRQ 11
[    1.389667] uhci_hcd 0000:00:1d.0: setting latency timer to 64
[    1.389672] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[    1.389707] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 1
[    1.389751] uhci_hcd 0000:00:1d.0: irq 11, io base 0x00001800
[    1.389812] usb usb1: New USB device found, idVendor=1d6b, idProduct=0001
[    1.389818] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.389821] usb usb1: Product: UHCI Host Controller
[    1.389825] usb usb1: Manufacturer: Linux 3.2.0-0.bpo.1-486 uhci_hcd
[    1.389829] usb usb1: SerialNumber: 0000:00:1d.0
[    1.400751] hub 1-0:1.0: USB hub found
[    1.400764] hub 1-0:1.0: 2 ports detected
[    1.400904] uhci_hcd 0000:00:1d.1: power state changed by ACPI to D0
[    1.400911] uhci_hcd 0000:00:1d.1: power state changed by ACPI to D0
[    1.401202] ACPI: PCI Interrupt Link [LNKD] enabled at IRQ 11
[    1.401211] uhci_hcd 0000:00:1d.1: PCI INT B -> Link[LNKD] -> GSI 11 (level, low) -> IRQ 11
[    1.401227] uhci_hcd 0000:00:1d.1: setting latency timer to 64
[    1.401233] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[    1.401253] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 2
[    1.401289] uhci_hcd 0000:00:1d.1: irq 11, io base 0x00001820
[    1.401350] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
[    1.401355] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.401359] usb usb2: Product: UHCI Host Controller
[    1.401362] usb usb2: Manufacturer: Linux 3.2.0-0.bpo.1-486 uhci_hcd
[    1.401366] usb usb2: SerialNumber: 0000:00:1d.1
[    1.407345] hub 2-0:1.0: USB hub found
[    1.407356] hub 2-0:1.0: 2 ports detected
[    1.407779] ACPI: PCI Interrupt Link [LNKC] enabled at IRQ 11
[    1.407788] uhci_hcd 0000:00:1d.2: PCI INT C -> Link[LNKC] -> GSI 11 (level, low) -> IRQ 11
[    1.407806] uhci_hcd 0000:00:1d.2: setting latency timer to 64
[    1.407812] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[    1.407829] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 3
[    1.407868] uhci_hcd 0000:00:1d.2: irq 11, io base 0x00001840
[    1.407928] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
[    1.407934] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.407938] usb usb3: Product: UHCI Host Controller
[    1.407941] usb usb3: Manufacturer: Linux 3.2.0-0.bpo.1-486 uhci_hcd
[    1.407945] usb usb3: SerialNumber: 0000:00:1d.2
[    1.412735] hub 3-0:1.0: USB hub found
[    1.412747] hub 3-0:1.0: 2 ports detected
[    1.426023] libata version 3.00 loaded.
[    1.427140] ata_piix 0000:00:1f.1: version 2.13
[    1.427165] ata_piix 0000:00:1f.1: enabling device (0005 -> 0007)
[    1.427178] ata_piix 0000:00:1f.1: PCI INT A -> Link[LNKC] -> GSI 11 (level, low) -> IRQ 11
[    1.427252] ata_piix 0000:00:1f.1: setting latency timer to 64
[    1.428278] scsi0 : ata_piix
[    1.428537] scsi1 : ata_piix
[    1.429469] ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0x1860 irq 14
[    1.429475] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0x1868 irq 15
[    1.430211] e100 0000:02:08.0: PME# disabled
[    1.431035] e100 0000:02:08.0: eth0: addr 0xd0200000, irq 11, MAC addr 00:09:6b:cd:2c:e5
[    1.584438] ata2.01: NODEV after polling detection
[    1.593031] ata2.00: ATAPI: UJDA730 DVD/CDRW, 1.04, max UDMA/33
[    1.593156] ata1.00: ATA-5: TOSHIBA MK3021GAS, GA129D, max UDMA/100
[    1.593162] ata1.00: 58605120 sectors, multi 16: LBA 
[    1.600487] ata1.00: configured for UDMA/100
[    1.600667] scsi 0:0:0:0: Direct-Access     ATA      TOSHIBA MK3021GA GA12 PQ: 0 ANSI: 5
[    1.608589] ata2.00: configured for UDMA/33
[    1.611984] scsi 1:0:0:0: CD-ROM            MATSHITA UJDA730 DVD/CDRW 1.04 PQ: 0 ANSI: 5
[    1.628818] sd 0:0:0:0: [sda] 58605120 512-byte logical blocks: (30.0 GB/27.9 GiB)
[    1.628902] sd 0:0:0:0: [sda] Write Protect is off
[    1.628908] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    1.628944] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.633076] sr0: scsi3-mmc drive: 24x/24x writer cd/rw xa/form2 cdda tray
[    1.633084] cdrom: Uniform CD-ROM driver Revision: 3.20
[    1.633780] sr 1:0:0:0: Attached scsi CD-ROM sr0
[    1.656051] Refined TSC clocksource calibration: 1998.302 MHz.
[    1.656061] Switching to clocksource tsc
[    1.729435]  sda: sda1 sda2 < sda5 >
[    1.730256] sd 0:0:0:0: [sda] Attached SCSI disk
[    1.745675] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    1.746658] sr 1:0:0:0: Attached scsi generic sg1 type 5
[    2.538876] PM: Starting manual resume from disk
[    2.538885] PM: Hibernation image partition 8:5 present
[    2.538889] PM: Looking for hibernation image.
[    2.539331] PM: Image not found (code -22)
[    2.539335] PM: Hibernation image not present or could not be loaded.
[    2.604212] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
[    4.983938] udev[252]: starting version 164
[    6.040108] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input1
[    6.043099] ACPI: AC Adapter [AC] (on-line)
[    6.046725] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A03:00/device:03/LNXVIDEO:00/input/input2
[    6.046739] ACPI: Video Device [VID] (multi-head: yes  rom: no  post: no)
[    6.046857] ACPI: Lid Switch [LID]
[    6.046968] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input3
[    6.046976] ACPI: Sleep Button [SLPB]
[    6.047088] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
[    6.047095] ACPI: Power Button [PWRF]
[    6.048145] Marking TSC unstable due to TSC halts in idle
[    6.048162] ACPI: acpi_idle registered with cpuidle
[    6.050611] Switching to clocksource acpi_pm
[    6.066590] ACPI: Battery Slot [BAT0] (battery present)
[    6.178617] NET: Registered protocol family 23
[    6.209469] input: PC Speaker as /devices/platform/pcspkr/input/input5
[    6.228088] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    6.259626] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    6.603000] Non-volatile memory driver v1.3
[    6.859009] lib80211: common routines for IEEE802.11 drivers
[    6.859015] lib80211_crypt: registered algorithm 'NULL'
[    6.891242] intel_rng: FWH not detected
[    6.921304] i801_smbus 0000:00:1f.3: PCI INT B -> Link[LNKB] -> GSI 11 (level, low) -> IRQ 11
[    6.939993] yenta_cardbus 0000:02:00.0: CardBus bridge found [1014:0512]
[    6.940056] yenta_cardbus 0000:02:00.0: Using INTVAL to route CSC interrupts to PCI
[    6.940061] yenta_cardbus 0000:02:00.0: Routing CardBus interrupts to PCI
[    6.940069] yenta_cardbus 0000:02:00.0: TI: mfunc 0x01d21022, devctl 0x64
[    6.945544] nsc-ircc 00:0c: [io  0x02f8-0x02ff]
[    6.945607] nsc-ircc 00:0c: [irq 3]
[    6.945615] nsc-ircc 00:0c: [dma 1]
[    6.946153] nsc-ircc 00:0c: activated
[    6.946330] nsc-ircc, chip->init
[    6.946341] nsc-ircc, Found chip at base=0x02e
[    6.946367] nsc-ircc, driver loaded (Dag Brattli)
[    6.947224] IrDA: Registered device irda0
[    6.947229] nsc-ircc, Using dongle: IBM31T1100 or Temic TFDS6000/TFDS6500
[    7.172577] yenta_cardbus 0000:02:00.0: ISA IRQ mask 0x04b8, PCI irq 11
[    7.172584] yenta_cardbus 0000:02:00.0: Socket status: 30000006
[    7.172598] yenta_cardbus 0000:02:00.0: pcmcia: parent PCI bridge window: [io  0x4000-0x8fff]
[    7.172605] pcmcia_socket pcmcia_socket0: cs: IO port probe 0x4000-0x8fff: excluding 0x4000-0x40ff 0x4400-0x44ff 0x4800-0x48ff 0x4c00-0x4cff 0x8000-0x803f
[    7.191698] yenta_cardbus 0000:02:00.0: pcmcia: parent PCI bridge window: [mem 0xd0200000-0xdfffffff]
[    7.191705] pcmcia_socket pcmcia_socket0: cs: memory probe 0xd0200000-0xdfffffff: excluding 0xd0200000-0xd09fffff 0xd3a00000-0xdc1fffff 0xdfa00000-0xe01fffff
[    7.191741] yenta_cardbus 0000:02:00.0: pcmcia: parent PCI bridge window: [mem 0xf0000000-0xf80fffff pref]
[    7.191747] pcmcia_socket pcmcia_socket0: cs: memory probe 0xf0000000-0xf80fffff: excluding 0xf0000000-0xf87fffff
[    7.192363] yenta_cardbus 0000:02:00.1: CardBus bridge found [1014:0512]
[    7.192385] yenta_cardbus 0000:02:00.1: Using INTVAL to route CSC interrupts to PCI
[    7.192404] yenta_cardbus 0000:02:00.1: Routing CardBus interrupts to PCI
[    7.192412] yenta_cardbus 0000:02:00.1: TI: mfunc 0x01d21022, devctl 0x64
[    7.221920] psmouse serio1: synaptics: Touchpad model: 1, fw: 5.9, id: 0x2c6ab1, caps: 0x884793/0x0/0x0
[    7.221935] psmouse serio1: synaptics: serio: Synaptics pass-through port at isa0060/serio1/input0
[    7.260578] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input6
[    7.408707] parport_pc 00:0b: reported by Plug and Play ACPI
[    7.408759] parport0: PC-style at 0x3bc, irq 7 [PCSPP,TRISTATE]
[    7.424469] yenta_cardbus 0000:02:00.1: ISA IRQ mask 0x0438, PCI irq 11
[    7.424475] yenta_cardbus 0000:02:00.1: Socket status: 30000006
[    7.424489] yenta_cardbus 0000:02:00.1: pcmcia: parent PCI bridge window: [io  0x4000-0x8fff]
[    7.424496] pcmcia_socket pcmcia_socket1: cs: IO port probe 0x4000-0x8fff: excluding 0x4000-0x40ff 0x4400-0x44ff 0x4800-0x48ff 0x4c00-0x4cff 0x8000-0x803f
[    7.454080] yenta_cardbus 0000:02:00.1: pcmcia: parent PCI bridge window: [mem 0xd0200000-0xdfffffff]
[    7.454088] pcmcia_socket pcmcia_socket1: cs: memory probe 0xd0200000-0xdfffffff: excluding 0xd0200000-0xd09fffff 0xd3a00000-0xdc1fffff 0xdfa00000-0xe01fffff
[    7.454126] yenta_cardbus 0000:02:00.1: pcmcia: parent PCI bridge window: [mem 0xf0000000-0xf80fffff pref]
[    7.454131] pcmcia_socket pcmcia_socket1: cs: memory probe 0xf0000000-0xf80fffff: excluding 0xf0000000-0xf87fffff
[    7.455208] hostap_pci 0000:02:02.0: PCI INT A -> Link[LNKC] -> GSI 11 (level, low) -> IRQ 11
[    7.459666] hostap_pci: Registered netdevice wifi0
[    7.459680] wifi0: Original COR value: 0x0
[    7.527356] [drm] Initialized drm 1.1.0 20060810
[    7.665558] prism2_hw_init: initialized in 200 ms
[    7.676090] wifi0: NIC: id=0x8013 v1.0.0
[    7.676267] wifi0: PRI: id=0x15 v1.1.0
[    7.676419] wifi0: STA: id=0x1f v1.4.9
[    7.677467] wifi0: defaulting to bogus WDS frame as a workaround for firmware bug in Host AP mode WDS
[    7.679898] wifi0: Intersil Prism2.5 PCI: mem=0xf8000000, irq=11
[    7.680948] wifi0: registered netdevice wlan0
[    7.778716] thinkpad_acpi: ThinkPad ACPI Extras v0.24
[    7.778723] thinkpad_acpi: http://ibm-acpi.sf.net/
[    7.778727] thinkpad_acpi: ThinkPad BIOS 1IET71WW (2.10 ), EC 1IHT20WW-1.07
[    7.781527] thinkpad_acpi: detected a 8-level brightness capable ThinkPad
[    7.790297] thinkpad_acpi: rfkill switch tpacpi_bluetooth_sw: radio is blocked
[    7.790842] Registered led device: tpacpi::thinklight
[    7.790955] Registered led device: tpacpi::power
[    7.791044] Registered led device: tpacpi::standby
[    7.799916] thinkpad_acpi: Console audio control enabled, mode: monitor (read only)
[    7.804564] input: ThinkPad Extra Buttons as /devices/platform/thinkpad_acpi/input/input7
[    8.106243] snd_intel8x0m 0000:00:1f.6: PCI INT B -> Link[LNKB] -> GSI 11 (level, low) -> IRQ 11
[    8.106277] snd_intel8x0m 0000:00:1f.6: setting latency timer to 64
[    8.122450] snd_intel8x0 0000:00:1f.5: PCI INT B -> Link[LNKB] -> GSI 11 (level, low) -> IRQ 11
[    8.122479] snd_intel8x0 0000:00:1f.5: setting latency timer to 64
[    8.305140] [drm] radeon kernel modesetting enabled.
[    8.305283] radeon 0000:01:00.0: power state changed by ACPI to D0
[    8.305292] radeon 0000:01:00.0: power state changed by ACPI to D0
[    8.305307] radeon 0000:01:00.0: PCI INT A -> Link[LNKA] -> GSI 11 (level, low) -> IRQ 11
[    8.306039] [drm] initializing kernel modesetting (RV200 0x1002:0x4C57 0x1014:0x0517).
[    8.306084] [drm] register mmio base: 0xD0100000
[    8.306088] [drm] register mmio size: 65536
[    8.306499] agpgart-intel 0000:00:00.0: AGP 2.0 bridge
[    8.306519] agpgart-intel 0000:00:00.0: putting AGP V2 device into 4x mode
[    8.306575] radeon 0000:01:00.0: putting AGP V2 device into 4x mode
[    8.306609] radeon 0000:01:00.0: GTT: 64M 0xE0000000 - 0xE3FFFFFF
[    8.306620] radeon 0000:01:00.0: VRAM: 128M 0x00000000E8000000 - 0x00000000EFFFFFFF (16M used)
[    8.306641] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
[    8.306644] [drm] Driver supports precise vblank timestamp query.
[    8.306662] [drm] radeon: irq initialized.
[    8.306858] [drm] Detected VRAM RAM=128M, BAR=128M
[    8.306864] [drm] RAM width 64bits DDR
[    8.306972] [TTM] Zone  kernel: Available graphics memory: 447682 kiB.
[    8.306976] [TTM] Zone highmem: Available graphics memory: 517030 kiB.
[    8.306980] [TTM] Initializing pool allocator.
[    8.307026] [drm] radeon: 16M of VRAM memory ready
[    8.307031] [drm] radeon: 64M of GTT memory ready.
[    8.308949] radeon 0000:01:00.0: WB disabled
[    8.309779] [drm] Loading R100 Microcode
[    8.540050] intel8x0_measure_ac97_clock: measured 54121 usecs (2600 samples)
[    8.540057] intel8x0: clocking to 48000
[    8.592079] [drm] radeon: ring at 0x00000000E0001000
[    8.592103] [drm] ring test succeeded in 1 usecs
[    8.592552] [drm] radeon: ib pool ready.
[    8.592666] [drm] ib test succeeded in 0 usecs
[    8.593061] [drm] Panel ID String: SXGA+ Single (85MHz)    
[    8.593065] [drm] Panel Size 1400x1050
[    8.604083] [drm] radeon legacy LVDS backlight initialized
[    8.607145] [drm] Radeon Display Connectors
[    8.607151] [drm] Connector 0:
[    8.607154] [drm]   VGA
[    8.607159] [drm]   DDC: 0x60 0x60 0x60 0x60 0x60 0x60 0x60 0x60
[    8.607162] [drm]   Encoders:
[    8.607165] [drm]     CRT1: INTERNAL_DAC1
[    8.607168] [drm] Connector 1:
[    8.607170] [drm]   DVI-D
[    8.607173] [drm]   HPD1
[    8.607177] [drm]   DDC: 0x64 0x64 0x64 0x64 0x64 0x64 0x64 0x64
[    8.607180] [drm]   Encoders:
[    8.607183] [drm]     DFP1: INTERNAL_TMDS1
[    8.607186] [drm] Connector 2:
[    8.607188] [drm]   LVDS
[    8.607191] [drm]   Encoders:
[    8.607193] [drm]     LCD1: INTERNAL_LVDS
[    8.607196] [drm] Connector 3:
[    8.607199] [drm]   S-video
[    8.607201] [drm]   Encoders:
[    8.607204] [drm]     TV1: INTERNAL_DAC2
[    8.607287] [drm] radeon: power management initialized
[    8.648836] [drm] fb mappable at 0xE8040000
[    8.648841] [drm] vram apper at 0xE8000000
[    8.648844] [drm] size 1478656
[    8.648847] [drm] fb depth is 8
[    8.648850] [drm]    pitch is 1408
[    8.649100] fbcon: radeondrmfb (fb0) is primary device
[    8.697872] Console: switching to colour frame buffer device 175x65
[    8.714417] fb0: radeondrmfb frame buffer device
[    8.714421] drm: registered panic notifier
[    8.717041] [drm] Initialized radeon 2.12.0 20080528 for 0000:01:00.0 on minor 0
[    9.668576] psmouse serio2: hgpk: ID: 10 00 64
[   10.211074] Adding 1238012k swap on /dev/sda5.  Priority:-1 extents:1 across:1238012k 
[   10.218654] EXT4-fs (sda1): re-mounted. Opts: (null)
[   10.542890] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro
[   10.714149] loop: module loaded
[   12.162838] fuse init (API version 7.17)
[   12.885224] IBM TrackPoint firmware: 0x0e, buttons: 3/3
[   13.093222] input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio1/serio2/input/input8
[   25.386913] Bluetooth: Core ver 2.16
[   25.386973] NET: Registered protocol family 31
[   25.386977] Bluetooth: HCI device and connection manager initialized
[   25.386982] Bluetooth: HCI socket layer initialized
[   25.386986] Bluetooth: L2CAP socket layer initialized
[   25.387416] Bluetooth: SCO socket layer initialized
[   25.477676] Bluetooth: RFCOMM TTY layer initialized
[   25.477687] Bluetooth: RFCOMM socket layer initialized
[   25.477691] Bluetooth: RFCOMM ver 1.11
[   25.479451] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   25.479458] Bluetooth: BNEP filters: protocol multicast
[   25.535454] Bridge firewalling registered
[   25.643396] lp0: using parport0 (interrupt-driven).
[   25.684280] ppdev: user-space parallel port driver
[   31.239097] prism2: wifi0: operating mode changed 3 -> 2
[   31.247897] wifi0: LinkStatus=2 (Disconnected)
[   31.268734] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   31.275973] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[   31.310214] ADDRCONF(NETDEV_UP): eth0: link is not ready
[   32.124397] wifi0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[   32.125046] wifi0: LinkStatus=2 (Disconnected)
[   32.125257] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   32.295675] wlan0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[   32.296310] wifi0: LinkStatus=2 (Disconnected)
[   32.296584] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   37.068684] sshd (1942): /proc/1942/oom_adj is deprecated, please use /proc/1942/oom_score_adj instead.
[   50.420082] wifi0: CMD=0x0121 => res=0x7f, resp0=0x0004
[   50.420091] wifi0: hfa384x_set_rid: CMDCODE_ACCESS_WRITE failed (res=127, rid=fc48, len=2)
[   50.431434] wifi0: LinkStatus=2 (Disconnected)
[   50.431633] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   50.453385] wifi0: LinkStatus=2 (Disconnected)
[   50.453604] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   50.463982] wifi0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[   50.486752] wifi0: CMD=0x0121 => res=0x7f, resp0=0x0004
[   50.486760] wifi0: hfa384x_set_rid: CMDCODE_ACCESS_WRITE failed (res=127, rid=fc48, len=2)
[   50.491589] wifi0: LinkStatus=2 (Disconnected)
[   50.496434] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   50.518049] wifi0: LinkStatus=2 (Disconnected)
[   50.528489] wlan0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[   50.538833] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   51.009382] wifi0: LinkStatus=1 (Connected)
[   51.009595] wifi0: LinkStatus: BSSID=00:13:10:3e:52:6e
[   51.010251] ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[   51.277206] wifi0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[   51.279510] wifi0: LinkStatus=2 (Disconnected)
[   51.300333] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   51.824974] wifi0: TXEXC - status=0x0004 ([Discon]) tx_control=000c
[   51.824986]    retry_count=0 tx_rate=0 fc=0x0108 (Data::0 ToDS)
[   51.824996]    A1=44:44:44:44:44:44 A2=00:05:3c:08:82:42 A3=33:33:ff:08:82:42 A4=00:00:00:00:00:00
[   52.284668] wifi0: CMD=0x0121 => res=0x7f, resp0=0x0004
[   52.284681] wifi0: hfa384x_set_rid: CMDCODE_ACCESS_WRITE failed (res=127, rid=fc48, len=2)
[   52.285243] wifi0: LinkStatus=2 (Disconnected)
[   52.285459] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   52.306983] wifi0: LinkStatus=2 (Disconnected)
[   52.307180] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   52.317562] wlan0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[   53.457368] wifi0: LinkStatus=1 (Connected)
[   53.457578] wifi0: LinkStatus: BSSID=00:13:10:3e:52:6e
[   53.459596] wifi0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[   53.461968] wifi0: LinkStatus=2 (Disconnected)
[   53.484239] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   53.649578] wifi0: TXEXC - status=0x0004 ([Discon]) tx_control=000c
[   53.649591]    retry_count=0 tx_rate=0 fc=0x0108 (Data::0 ToDS)
[   53.649601]    A1=44:44:44:44:44:44 A2=00:05:3c:08:82:42 A3=33:33:00:00:00:fb A4=00:00:00:00:00:00
[   54.029274] wifi0: TXEXC - status=0x0004 ([Discon]) tx_control=000c
[   54.029286]    retry_count=0 tx_rate=0 fc=0x0108 (Data::0 ToDS)
[   54.029296]    A1=44:44:44:44:44:44 A2=00:05:3c:08:82:42 A3=33:33:00:00:00:fb A4=00:00:00:00:00:00
[   54.040100] wifi0: TXEXC - status=0x0004 ([Discon]) tx_control=000c
[   54.040110]    retry_count=0 tx_rate=0 fc=0x0108 (Data::0 ToDS)
[   54.040119]    A1=44:44:44:44:44:44 A2=00:05:3c:08:82:42 A3=33:33:00:00:00:16 A4=00:00:00:00:00:00
[   54.284645] wifi0: CMD=0x0121 => res=0x7f, resp0=0x0004
[   54.284659] wifi0: hfa384x_set_rid: CMDCODE_ACCESS_WRITE failed (res=127, rid=fc48, len=2)
[   54.285238] wifi0: LinkStatus=2 (Disconnected)
[   54.285453] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   54.307503] wifi0: LinkStatus=2 (Disconnected)
[   54.307695] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   54.318152] wlan0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[   55.226457] wifi0: LinkStatus=1 (Connected)
[   55.226669] wifi0: LinkStatus: BSSID=00:13:10:3e:52:6e
[   55.239748] lib80211_crypt: registered algorithm 'WEP'
[   55.306683] wifi0: CMD=0x0121 => res=0x7f, resp0=0x0004
[   55.306696] wifi0: hfa384x_set_rid: CMDCODE_ACCESS_WRITE failed (res=127, rid=fc48, len=2)
[   55.308291] wifi0: LinkStatus=2 (Disconnected)
[   55.308575] wifi0: LinkStatus: BSSID=00:13:10:3e:52:6e
[   55.330564] wifi0: LinkStatus=2 (Disconnected)
[   55.330758] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   55.341206] wifi0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[   56.568151] wifi0: LinkStatus=1 (Connected)
[   56.568310] wifi0: CMD=0x0121 => res=0x7f, resp0=0x0004
[   56.568324] wifi0: hfa384x_set_rid: CMDCODE_ACCESS_WRITE failed (res=127, rid=fc48, len=2)
[   56.569610] wifi0: LinkStatus=2 (Disconnected)
[   56.569738] wifi0: LinkStatus: BSSID=00:30:bd:f0:b3:29
[   56.590530] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   56.591384] wifi0: LinkStatus=2 (Disconnected)
[   56.601857] wifi0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[   56.612208] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   56.612472] wifi0: CMD=0x0121 => res=0x7f, resp0=0x0004
[   56.612483] wifi0: hfa384x_set_rid: CMDCODE_ACCESS_WRITE failed (res=127, rid=fc48, len=2)
[   56.613136] wifi0: LinkStatus=2 (Disconnected)
[   56.613357] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   56.634801] wifi0: LinkStatus=2 (Disconnected)
[   56.645273] wlan0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[   56.655637] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   57.468810] wifi0: CMD=0x0121 => res=0x7f, resp0=0x0004
[   57.468818] wifi0: hfa384x_set_rid: CMDCODE_ACCESS_WRITE failed (res=127, rid=fc48, len=2)
[   57.469549] wifi0: LinkStatus=2 (Disconnected)
[   57.470023] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   57.492275] wifi0: LinkStatus=2 (Disconnected)
[   57.492493] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   57.502872] wlan0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[   57.985892] wifi0: LinkStatus=6 (Association failed)
[   57.986098] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   59.514722] wifi0: LinkStatus=6 (Association failed)
[   59.514930] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   61.046644] wifi0: LinkStatus=1 (Connected)
[   61.046859] wifi0: LinkStatus: BSSID=00:13:10:3e:52:6e
[   61.050142] wifi0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[   61.052342] wifi0: LinkStatus=2 (Disconnected)
[   61.073166] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   61.832126] wlan0: no IPv6 routers present
[   62.065318] wifi0: CMD=0x0121 => res=0x7f, resp0=0x0004
[   62.065331] wifi0: hfa384x_set_rid: CMDCODE_ACCESS_WRITE failed (res=127, rid=fc48, len=2)
[   62.067944] wifi0: LinkStatus=2 (Disconnected)
[   62.088961] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   62.089802] wifi0: LinkStatus=2 (Disconnected)
[   62.090020] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   62.100408] wlan0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[   62.585244] wifi0: LinkStatus=1 (Connected)
[   62.585441] wifi0: LinkStatus: BSSID=00:13:10:3e:52:6e
[   62.587579] wifi0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[   62.589945] wifi0: LinkStatus=2 (Disconnected)
[   62.610745] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   63.317461] wifi0: CMD=0x0121 => res=0x7f, resp0=0x0004
[   63.317475] wifi0: hfa384x_set_rid: CMDCODE_ACCESS_WRITE failed (res=127, rid=fc48, len=2)
[   63.318055] wifi0: LinkStatus=2 (Disconnected)
[   63.318273] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   63.340483] wifi0: LinkStatus=2 (Disconnected)
[   63.340714] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   63.351713] wlan0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[   63.788693] wifi0: LinkStatus=1 (Connected)
[   63.789219] wifi0: LinkStatus: BSSID=00:13:10:3e:52:6e
[   63.791979] wifi0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[   63.794110] wifi0: LinkStatus=2 (Disconnected)
[   63.815063] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   64.657714] wifi0: CMD=0x0121 => res=0x7f, resp0=0x0004
[   64.657727] wifi0: hfa384x_set_rid: CMDCODE_ACCESS_WRITE failed (res=127, rid=fc48, len=2)
[   64.658170] wifi0: LinkStatus=2 (Disconnected)
[   64.658391] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   64.679940] wifi0: LinkStatus=2 (Disconnected)
[   64.680162] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   64.690588] wlan0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[   65.221664] wifi0: LinkStatus=1 (Connected)
[   65.221852] wifi0: LinkStatus: BSSID=00:13:10:3e:52:6e
[   65.225244] wifi0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[   65.227187] wifi0: LinkStatus=2 (Disconnected)
[   65.248083] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   65.952395] wifi0: CMD=0x0121 => res=0x7f, resp0=0x0004
[   65.952408] wifi0: hfa384x_set_rid: CMDCODE_ACCESS_WRITE failed (res=127, rid=fc48, len=2)
[   65.952977] wifi0: LinkStatus=2 (Disconnected)
[   65.953193] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   65.975166] wifi0: LinkStatus=2 (Disconnected)
[   65.985688] wlan0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[   65.996182] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   66.421269] wifi0: LinkStatus=1 (Connected)
[   66.421574] wifi0: LinkStatus: BSSID=00:13:10:3e:52:6e
[   66.424999] wifi0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[   66.427153] wifi0: LinkStatus=2 (Disconnected)
[   66.447960] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   67.431211] wifi0: CMD=0x0121 => res=0x7f, resp0=0x0004
[   67.431225] wifi0: hfa384x_set_rid: CMDCODE_ACCESS_WRITE failed (res=127, rid=fc48, len=2)
[   67.431702] wifi0: LinkStatus=2 (Disconnected)
[   67.431937] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   67.453931] wifi0: LinkStatus=2 (Disconnected)
[   67.464364] wlan0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[   67.474845] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   67.992284] wifi0: LinkStatus=1 (Connected)
[   67.992482] wifi0: LinkStatus: BSSID=00:13:10:3e:52:6e
[   67.995483] wifi0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[   67.997840] wifi0: LinkStatus=2 (Disconnected)
[   68.018722] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   68.815967] wifi0: CMD=0x0121 => res=0x7f, resp0=0x0004
[   68.815981] wifi0: hfa384x_set_rid: CMDCODE_ACCESS_WRITE failed (res=127, rid=fc48, len=2)
[   68.816813] wifi0: LinkStatus=2 (Disconnected)
[   68.817028] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   68.838681] wifi0: LinkStatus=2 (Disconnected)
[   68.838876] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   68.849278] wlan0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[   69.523949] wifi0: LinkStatus=6 (Association failed)
[   69.524375] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   76.464076] wifi0: CMD=0x0121 => res=0x7f, resp0=0x0004
[   76.464089] wifi0: hfa384x_set_rid: CMDCODE_ACCESS_WRITE failed (res=127, rid=fc48, len=2)
[   76.465356] wifi0: LinkStatus=1 (Connected)
[   76.466588] wifi0: LinkStatus=2 (Disconnected)
[   76.466711] wifi0: LinkStatus: BSSID=00:13:10:3e:52:6e
[   76.487558] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   76.488345] wifi0: LinkStatus=2 (Disconnected)
[   76.488567] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   76.499029] wifi0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[   77.500164] wifi0: CMD=0x0121 => res=0x7f, resp0=0x0004
[   77.500177] wifi0: hfa384x_set_rid: CMDCODE_ACCESS_WRITE failed (res=127, rid=fc48, len=2)
[   77.501889] wifi0: LinkStatus=2 (Disconnected)
[   77.523024] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   77.523818] wifi0: LinkStatus=2 (Disconnected)
[   77.524083] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   77.534523] wlan0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[   78.017822] wifi0: LinkStatus=1 (Connected)
[   78.018035] wifi0: LinkStatus: BSSID=00:13:10:3e:52:6e
[   78.021178] wifi0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[   78.023688] wifi0: LinkStatus=2 (Disconnected)
[   78.044592] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   78.841794] wifi0: CMD=0x0121 => res=0x7f, resp0=0x0004
[   78.841807] wifi0: hfa384x_set_rid: CMDCODE_ACCESS_WRITE failed (res=127, rid=fc48, len=2)
[   78.842960] wifi0: LinkStatus=2 (Disconnected)
[   78.864159] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   78.864923] wifi0: LinkStatus=2 (Disconnected)
[   78.865157] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   78.875841] wlan0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[   79.357699] wifi0: LinkStatus=1 (Connected)
[   79.357905] wifi0: LinkStatus: BSSID=00:13:10:3e:52:6e
[   79.360174] wifi0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[   79.362264] wifi0: LinkStatus=2 (Disconnected)
[   79.362449] wifi0: LinkStatus: BSSID=00:13:10:3e:52:6e
Res publica non dominetur

Re: [UNSOLVED] Multiple wireless networks

More from the previous post

[   80.088094] wifi0: CMD=0x0121 => res=0x7f, resp0=0x0004
[   80.088108] wifi0: hfa384x_set_rid: CMDCODE_ACCESS_WRITE failed (res=127, rid=fc48, len=2)
[   80.088674] wifi0: LinkStatus=2 (Disconnected)
[   80.088891] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   80.110569] wifi0: LinkStatus=2 (Disconnected)
[   80.110765] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   80.121155] wlan0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[   80.695949] wifi0: LinkStatus=1 (Connected)
[   80.696356] wifi0: LinkStatus: BSSID=00:13:10:3e:52:6e
[   80.699293] wifi0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[   80.701252] wifi0: LinkStatus=2 (Disconnected)
[   80.722082] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   81.657356] wifi0: CMD=0x0121 => res=0x7f, resp0=0x0004
[   81.657370] wifi0: hfa384x_set_rid: CMDCODE_ACCESS_WRITE failed (res=127, rid=fc48, len=2)
[   81.657942] wifi0: LinkStatus=2 (Disconnected)
[   81.658161] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   81.679941] wifi0: LinkStatus=2 (Disconnected)
[   81.690390] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   81.690483] wlan0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[   82.126822] wifi0: LinkStatus=1 (Connected)
[   82.127013] wifi0: LinkStatus: BSSID=00:13:10:3e:52:6e
[   82.130254] wifi0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[   82.133095] wifi0: LinkStatus=2 (Disconnected)
[   82.154117] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   83.044650] wifi0: CMD=0x0121 => res=0x7f, resp0=0x0004
[   83.044664] wifi0: hfa384x_set_rid: CMDCODE_ACCESS_WRITE failed (res=127, rid=fc48, len=2)
[   83.045139] wifi0: LinkStatus=2 (Disconnected)
[   83.045352] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   83.066890] wifi0: LinkStatus=2 (Disconnected)
[   83.067089] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   83.077472] wlan0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[   83.605301] wifi0: LinkStatus=1 (Connected)
[   83.605522] wifi0: LinkStatus: BSSID=00:13:10:3e:52:6e
[   83.607116] wifi0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[   83.609206] wifi0: LinkStatus=2 (Disconnected)
[   83.630124] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   84.429336] wifi0: CMD=0x0121 => res=0x7f, resp0=0x0004
[   84.429350] wifi0: hfa384x_set_rid: CMDCODE_ACCESS_WRITE failed (res=127, rid=fc48, len=2)
[   84.429825] wifi0: LinkStatus=2 (Disconnected)
[   84.430040] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   84.451647] wifi0: LinkStatus=2 (Disconnected)
[   84.451847] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   84.462312] wlan0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[   84.945302] wifi0: LinkStatus=1 (Connected)
[   84.945495] wifi0: LinkStatus: BSSID=00:13:10:3e:52:6e
[   84.948611] wifi0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[   84.950957] wifi0: LinkStatus=2 (Disconnected)
[   84.971866] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   85.901446] wifi0: CMD=0x0121 => res=0x7f, resp0=0x0004
[   85.901460] wifi0: hfa384x_set_rid: CMDCODE_ACCESS_WRITE failed (res=127, rid=fc48, len=2)
[   85.901933] wifi0: LinkStatus=2 (Disconnected)
[   85.902172] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   85.923867] wifi0: LinkStatus=2 (Disconnected)
[   85.934363] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   85.934457] wlan0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[   86.415318] wifi0: LinkStatus=1 (Connected)
[   86.415516] wifi0: LinkStatus: BSSID=00:13:10:3e:52:6e
[   86.418800] wifi0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[   86.421020] wifi0: LinkStatus=2 (Disconnected)
[   86.442006] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   87.240368] wifi0: CMD=0x0121 => res=0x7f, resp0=0x0004
[   87.240381] wifi0: hfa384x_set_rid: CMDCODE_ACCESS_WRITE failed (res=127, rid=fc48, len=2)
[   87.240854] wifi0: LinkStatus=2 (Disconnected)
[   87.241193] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   87.264282] wifi0: LinkStatus=2 (Disconnected)
[   87.274790] wlan0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[   87.285151] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   87.852165] wifi0: LinkStatus=1 (Connected)
[   87.852356] wifi0: LinkStatus: BSSID=00:13:10:3e:52:6e
[   87.855459] wifi0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[   87.858070] wifi0: LinkStatus=2 (Disconnected)
[   87.878907] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   88.764380] wifi0: CMD=0x0121 => res=0x7f, resp0=0x0004
[   88.764394] wifi0: hfa384x_set_rid: CMDCODE_ACCESS_WRITE failed (res=127, rid=fc48, len=2)
[   88.766242] wifi0: LinkStatus=2 (Disconnected)
[   88.766431] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   88.788309] wifi0: LinkStatus=2 (Disconnected)
[   88.788502] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   88.798954] wlan0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[   89.281871] wifi0: LinkStatus=1 (Connected)
[   89.282060] wifi0: LinkStatus: BSSID=00:13:10:3e:52:6e
[   89.285214] wifi0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[   89.287700] wifi0: LinkStatus=2 (Disconnected)
[   89.308646] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   90.201192] wifi0: CMD=0x0121 => res=0x7f, resp0=0x0004
[   90.201205] wifi0: hfa384x_set_rid: CMDCODE_ACCESS_WRITE failed (res=127, rid=fc48, len=2)
[   90.201759] wifi0: LinkStatus=2 (Disconnected)
[   90.201981] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   90.223520] wifi0: LinkStatus=2 (Disconnected)
[   90.223715] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   90.234702] wlan0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[   90.670733] wifi0: LinkStatus=1 (Connected)
[   90.670965] wifi0: LinkStatus: BSSID=00:13:10:3e:52:6e
[   90.674201] wifi0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[   90.676802] wifi0: LinkStatus=2 (Disconnected)
[   90.697767] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   91.538091] wifi0: TXEXC - status=0x0004 ([Discon]) tx_control=000c
[   91.538099]    retry_count=0 tx_rate=0 fc=0x0108 (Data::0 ToDS)
[   91.538105]    A1=44:44:44:44:44:44 A2=00:05:3c:08:82:42 A3=ff:ff:ff:ff:ff:ff A4=00:00:00:00:00:00
[   91.540794] wifi0: CMD=0x0121 => res=0x7f, resp0=0x0004
[   91.540802] wifi0: hfa384x_set_rid: CMDCODE_ACCESS_WRITE failed (res=127, rid=fc48, len=2)
[   91.541242] wifi0: LinkStatus=2 (Disconnected)
[   91.541490] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   91.563084] wifi0: LinkStatus=2 (Disconnected)
[   91.563274] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   91.573625] wlan0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[   92.054739] wifi0: LinkStatus=1 (Connected)
[   92.054946] wifi0: LinkStatus: BSSID=00:13:10:3e:52:6e
[   92.058246] wifi0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[   92.060650] wifi0: LinkStatus=2 (Disconnected)
[   92.081607] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   93.014281] wifi0: CMD=0x0121 => res=0x7f, resp0=0x0004
[   93.014294] wifi0: hfa384x_set_rid: CMDCODE_ACCESS_WRITE failed (res=127, rid=fc48, len=2)
[   93.014859] wifi0: LinkStatus=2 (Disconnected)
[   93.015076] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   93.036714] wifi0: LinkStatus=2 (Disconnected)
[   93.036913] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   93.047357] wlan0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[   93.530123] wifi0: LinkStatus=1 (Connected)
[   93.530337] wifi0: LinkStatus: BSSID=00:13:10:3e:52:6e
[   93.533554] wifi0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[   93.535488] wifi0: LinkStatus=2 (Disconnected)
[   93.535679] wifi0: LinkStatus: BSSID=00:13:10:3e:52:6e
[   94.254328] wifi0: CMD=0x0121 => res=0x7f, resp0=0x0004
[   94.254342] wifi0: hfa384x_set_rid: CMDCODE_ACCESS_WRITE failed (res=127, rid=fc48, len=2)
[   94.254906] wifi0: LinkStatus=2 (Disconnected)
[   94.255122] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   94.276712] wifi0: LinkStatus=2 (Disconnected)
[   94.276912] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   94.287375] wlan0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[   94.814932] wifi0: LinkStatus=1 (Connected)
[   94.815140] wifi0: LinkStatus: BSSID=00:13:10:3e:52:6e
[   94.818387] wifi0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[   94.820705] wifi0: LinkStatus=2 (Disconnected)
[   94.841727] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   95.816650] wifi0: CMD=0x0121 => res=0x7f, resp0=0x0004
[   95.816663] wifi0: hfa384x_set_rid: CMDCODE_ACCESS_WRITE failed (res=127, rid=fc48, len=2)
[   95.817223] wifi0: LinkStatus=2 (Disconnected)
[   95.817436] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   95.838981] wifi0: LinkStatus=2 (Disconnected)
[   95.839179] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   95.850054] wlan0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[   96.379055] wifi0: LinkStatus=1 (Connected)
[   96.379269] wifi0: LinkStatus: BSSID=00:13:10:3e:52:6e
[   96.382661] wifi0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[   96.385457] wifi0: LinkStatus=2 (Disconnected)
[   96.406286] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   97.112697] wifi0: CMD=0x0121 => res=0x7f, resp0=0x0004
[   97.112711] wifi0: hfa384x_set_rid: CMDCODE_ACCESS_WRITE failed (res=127, rid=fc48, len=2)
[   97.113270] wifi0: LinkStatus=2 (Disconnected)
[   97.113484] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   97.135023] wifi0: LinkStatus=2 (Disconnected)
[   97.135265] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   97.145718] wlan0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[   97.626403] wifi0: LinkStatus=1 (Connected)
[   97.626603] wifi0: LinkStatus: BSSID=00:13:10:3e:52:6e
[   97.628745] wifi0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[   97.631072] wifi0: LinkStatus=2 (Disconnected)
[   97.652097] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   98.541929] wifi0: CMD=0x0121 => res=0x7f, resp0=0x0004
[   98.541942] wifi0: hfa384x_set_rid: CMDCODE_ACCESS_WRITE failed (res=127, rid=fc48, len=2)
[   98.542534] wifi0: LinkStatus=2 (Disconnected)
[   98.542819] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   98.566471] wifi0: LinkStatus=2 (Disconnected)
[   98.566692] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[   98.578864] wlan0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[   99.152867] wifi0: LinkStatus=1 (Connected)
[   99.153090] wifi0: LinkStatus: BSSID=00:13:10:3e:52:6e
[   99.156596] wifi0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[   99.158759] wifi0: LinkStatus=2 (Disconnected)
[   99.179584] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  100.050887] wifi0: CMD=0x0121 => res=0x7f, resp0=0x0004
[  100.050900] wifi0: hfa384x_set_rid: CMDCODE_ACCESS_WRITE failed (res=127, rid=fc48, len=2)
[  100.051493] wifi0: LinkStatus=2 (Disconnected)
[  100.051762] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  100.074533] wifi0: LinkStatus=2 (Disconnected)
[  100.074759] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  100.085757] wlan0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[  100.611618] wifi0: LinkStatus=1 (Connected)
[  100.611813] wifi0: LinkStatus: BSSID=00:13:10:3e:52:6e
[  100.614115] wifi0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[  100.616136] wifi0: LinkStatus=2 (Disconnected)
[  100.637461] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  101.617371] wifi0: CMD=0x0121 => res=0x7f, resp0=0x0004
[  101.617385] wifi0: hfa384x_set_rid: CMDCODE_ACCESS_WRITE failed (res=127, rid=fc48, len=2)
[  101.617961] wifi0: LinkStatus=2 (Disconnected)
[  101.618181] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  101.656108] wifi0: LinkStatus=2 (Disconnected)
[  101.666586] wlan0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[  101.676937] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  102.240692] wifi0: LinkStatus=1 (Connected)
[  102.240975] wifi0: LinkStatus: BSSID=00:13:10:3e:52:6e
[  102.243127] wifi0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[  102.245226] wifi0: LinkStatus=2 (Disconnected)
[  102.266128] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  103.061814] wifi0: CMD=0x0121 => res=0x7f, resp0=0x0004
[  103.061823] wifi0: hfa384x_set_rid: CMDCODE_ACCESS_WRITE failed (res=127, rid=fc48, len=2)
[  103.062264] wifi0: LinkStatus=2 (Disconnected)
[  103.062481] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  103.084231] wifi0: LinkStatus=2 (Disconnected)
[  103.094682] wlan0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[  103.105051] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  103.578647] wifi0: LinkStatus=1 (Connected)
[  103.578847] wifi0: LinkStatus: BSSID=00:13:10:3e:52:6e
[  103.581315] wifi0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[  103.583906] wifi0: LinkStatus=2 (Disconnected)
[  103.604914] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  104.538800] wifi0: CMD=0x0121 => res=0x7f, resp0=0x0004
[  104.538814] wifi0: hfa384x_set_rid: CMDCODE_ACCESS_WRITE failed (res=127, rid=fc48, len=2)
[  104.539924] wifi0: LinkStatus=2 (Disconnected)
[  104.540268] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  104.561985] wifi0: LinkStatus=2 (Disconnected)
[  104.562177] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  104.572629] wlan0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[  105.008445] wifi0: LinkStatus=1 (Connected)
[  105.008701] wifi0: LinkStatus: BSSID=00:13:10:3e:52:6e
[  105.011585] wifi0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[  105.013854] wifi0: LinkStatus=2 (Disconnected)
[  105.034762] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  105.785166] wifi0: CMD=0x0121 => res=0x7f, resp0=0x0004
[  105.785179] wifi0: hfa384x_set_rid: CMDCODE_ACCESS_WRITE failed (res=127, rid=fc48, len=2)
[  105.785749] wifi0: LinkStatus=2 (Disconnected)
[  105.785965] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  105.807718] wifi0: LinkStatus=2 (Disconnected)
[  105.807910] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  105.818360] wlan0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[  106.347299] wifi0: LinkStatus=1 (Connected)
[  106.347493] wifi0: LinkStatus: BSSID=00:13:10:3e:52:6e
[  106.350718] wifi0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[  106.353285] wifi0: LinkStatus=2 (Disconnected)
[  106.374234] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  107.353827] wifi0: CMD=0x0121 => res=0x7f, resp0=0x0004
[  107.353841] wifi0: hfa384x_set_rid: CMDCODE_ACCESS_WRITE failed (res=127, rid=fc48, len=2)
[  107.354411] wifi0: LinkStatus=2 (Disconnected)
[  107.354625] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  107.376184] wifi0: LinkStatus=2 (Disconnected)
[  107.376421] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  107.387089] wlan0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[  107.961184] wifi0: LinkStatus=1 (Connected)
[  107.961376] wifi0: LinkStatus: BSSID=00:13:10:3e:52:6e
[  107.964595] wifi0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[  107.967111] wifi0: LinkStatus=2 (Disconnected)
[  107.987956] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  108.882200] wifi0: CMD=0x0121 => res=0x7f, resp0=0x0004
[  108.882213] wifi0: hfa384x_set_rid: CMDCODE_ACCESS_WRITE failed (res=127, rid=fc48, len=2)
[  108.883593] wifi0: LinkStatus=2 (Disconnected)
[  108.883778] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  108.905389] wifi0: LinkStatus=2 (Disconnected)
[  108.905585] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  108.916570] wlan0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[  109.490617] wifi0: LinkStatus=1 (Connected)
[  109.490834] wifi0: LinkStatus: BSSID=00:13:10:3e:52:6e
[  109.494169] wifi0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[  109.496377] wifi0: LinkStatus=2 (Disconnected)
[  109.517217] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  110.363456] wifi0: CMD=0x0121 => res=0x7f, resp0=0x0004
[  110.363469] wifi0: hfa384x_set_rid: CMDCODE_ACCESS_WRITE failed (res=127, rid=fc48, len=2)
[  110.364212] wifi0: LinkStatus=2 (Disconnected)
[  110.364645] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  110.404149] wifi0: LinkStatus=2 (Disconnected)
[  110.404368] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  110.414768] wlan0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[  110.942421] wifi0: LinkStatus=1 (Connected)
[  110.942630] wifi0: LinkStatus: BSSID=00:13:10:3e:52:6e
[  110.945145] wifi0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[  110.947235] wifi0: LinkStatus=2 (Disconnected)
[  110.968105] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  111.717003] wifi0: CMD=0x0121 => res=0x7f, resp0=0x0004
[  111.717012] wifi0: hfa384x_set_rid: CMDCODE_ACCESS_WRITE failed (res=127, rid=fc48, len=2)
[  111.717455] wifi0: LinkStatus=2 (Disconnected)
[  111.717673] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  111.739299] wifi0: LinkStatus=2 (Disconnected)
[  111.749762] wlan0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[  111.760131] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  112.277691] wifi0: LinkStatus=1 (Connected)
[  112.278004] wifi0: LinkStatus: BSSID=00:13:10:3e:52:6e
[  112.280498] wifi0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[  112.282577] wifi0: LinkStatus=2 (Disconnected)
[  112.303396] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  113.240570] wifi0: CMD=0x0121 => res=0x7f, resp0=0x0004
[  113.240583] wifi0: hfa384x_set_rid: CMDCODE_ACCESS_WRITE failed (res=127, rid=fc48, len=2)
[  113.241164] wifi0: LinkStatus=2 (Disconnected)
[  113.241378] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  113.262958] wifi0: LinkStatus=2 (Disconnected)
[  113.263154] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  113.273517] wlan0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[  113.801516] wifi0: LinkStatus=1 (Connected)
[  113.801725] wifi0: LinkStatus: BSSID=00:13:10:3e:52:6e
[  113.804967] wifi0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[  113.807654] wifi0: LinkStatus=2 (Disconnected)
[  113.828665] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  114.619243] wifi0: CMD=0x0121 => res=0x7f, resp0=0x0004
[  114.619257] wifi0: hfa384x_set_rid: CMDCODE_ACCESS_WRITE failed (res=127, rid=fc48, len=2)
[  114.619815] wifi0: LinkStatus=2 (Disconnected)
[  114.620078] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  114.660398] wifi0: LinkStatus=2 (Disconnected)
[  114.670883] wifi0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[  114.681240] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  114.681458] wifi0: CMD=0x0121 => res=0x7f, resp0=0x0004
[  114.681464] wifi0: hfa384x_set_rid: CMDCODE_ACCESS_WRITE failed (res=127, rid=fc48, len=2)
[  114.682110] wifi0: LinkStatus=2 (Disconnected)
[  114.702946] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  114.703955] wifi0: LinkStatus=2 (Disconnected)
[  114.714422] wlan0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[  114.724805] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  115.887580] wifi0: CMD=0x0121 => res=0x7f, resp0=0x0004
[  115.887580] wifi0: hfa384x_set_rid: CMDCODE_ACCESS_WRITE failed (res=127, rid=fc48, len=2)
[  115.896552] wifi0: LinkStatus=2 (Disconnected)
[  115.896803] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  115.918697] wifi0: LinkStatus=2 (Disconnected)
[  115.918891] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  115.929260] wifi0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[  116.229254] wifi0: LinkStatus=1 (Connected)
[  116.229465] wifi0: LinkStatus: BSSID=00:13:10:3e:52:6e
[  116.407241] wifi0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[  116.409578] wifi0: LinkStatus=2 (Disconnected)
[  116.430410] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  117.322439] wifi0: CMD=0x0121 => res=0x7f, resp0=0x0004
[  117.322453] wifi0: hfa384x_set_rid: CMDCODE_ACCESS_WRITE failed (res=127, rid=fc48, len=2)
[  117.323011] wifi0: LinkStatus=2 (Disconnected)
[  117.323226] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  117.344974] wifi0: LinkStatus=2 (Disconnected)
[  117.345170] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  117.355549] wlan0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[  117.743915] wifi0: LinkStatus=1 (Connected)
[  117.744356] wifi0: LinkStatus: BSSID=00:13:10:3e:52:6e
[  117.747083] wifi0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[  117.750923] wifi0: LinkStatus=2 (Disconnected)
[  117.771947] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  118.434483] wifi0: CMD=0x0121 => res=0x7f, resp0=0x0004
[  118.434497] wifi0: hfa384x_set_rid: CMDCODE_ACCESS_WRITE failed (res=127, rid=fc48, len=2)
[  118.435062] wifi0: LinkStatus=2 (Disconnected)
[  118.435280] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  118.456922] wifi0: LinkStatus=2 (Disconnected)
[  118.467391] wlan0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[  118.477745] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  118.903782] wifi0: LinkStatus=1 (Connected)
[  118.903992] wifi0: LinkStatus: BSSID=00:13:10:3e:52:6e
[  118.911331] wifi0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[  118.915001] wifi0: LinkStatus=2 (Disconnected)
[  118.936053] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  119.776604] wifi0: CMD=0x0121 => res=0x7f, resp0=0x0004
[  119.776618] wifi0: hfa384x_set_rid: CMDCODE_ACCESS_WRITE failed (res=127, rid=fc48, len=2)
[  119.777175] wifi0: LinkStatus=2 (Disconnected)
[  119.777389] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  119.798979] wifi0: LinkStatus=2 (Disconnected)
[  119.799185] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  119.809577] wlan0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[  120.432445] wifi0: LinkStatus=1 (Connected)
[  120.432647] wifi0: LinkStatus: BSSID=00:13:10:3e:52:6e
[  120.435490] wifi0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[  120.437660] wifi0: LinkStatus=2 (Disconnected)
[  120.458589] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  121.301124] wifi0: CMD=0x0121 => res=0x7f, resp0=0x0004
[  121.301138] wifi0: hfa384x_set_rid: CMDCODE_ACCESS_WRITE failed (res=127, rid=fc48, len=2)
[  121.301694] wifi0: LinkStatus=2 (Disconnected)
[  121.301927] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  121.323473] wifi0: LinkStatus=2 (Disconnected)
[  121.323672] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  121.334121] wlan0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[  121.864703] wifi0: LinkStatus=1 (Connected)
[  121.864925] wifi0: LinkStatus: BSSID=00:13:10:3e:52:6e
[  121.867756] wifi0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[  121.870333] wifi0: LinkStatus=2 (Disconnected)
[  121.891165] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  122.874362] wifi0: CMD=0x0121 => res=0x7f, resp0=0x0004
[  122.874375] wifi0: hfa384x_set_rid: CMDCODE_ACCESS_WRITE failed (res=127, rid=fc48, len=2)
[  122.876730] wifi0: LinkStatus=2 (Disconnected)
[  122.897714] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  122.898809] wifi0: LinkStatus=2 (Disconnected)
[  122.899000] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  122.909390] wlan0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[  123.345442] wifi0: LinkStatus=1 (Connected)
[  123.345647] wifi0: LinkStatus: BSSID=00:13:10:3e:52:6e
[  123.348875] wifi0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[  123.351006] wifi0: LinkStatus=2 (Disconnected)
[  123.371842] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  124.349346] wifi0: CMD=0x0121 => res=0x7f, resp0=0x0004
[  124.349360] wifi0: hfa384x_set_rid: CMDCODE_ACCESS_WRITE failed (res=127, rid=fc48, len=2)
[  124.349927] wifi0: LinkStatus=2 (Disconnected)
[  124.350142] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  124.371652] wifi0: LinkStatus=2 (Disconnected)
[  124.371846] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  124.382807] wlan0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[  124.774866] wifi0: LinkStatus=1 (Connected)
[  124.775069] wifi0: LinkStatus: BSSID=00:13:10:3e:52:6e
[  124.778698] wifi0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[  124.780662] wifi0: LinkStatus=2 (Disconnected)
[  124.801501] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  125.738308] wifi0: CMD=0x0121 => res=0x7f, resp0=0x0004
[  125.738322] wifi0: hfa384x_set_rid: CMDCODE_ACCESS_WRITE failed (res=127, rid=fc48, len=2)
[  125.738897] wifi0: LinkStatus=2 (Disconnected)
[  125.739124] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  125.760666] wifi0: LinkStatus=2 (Disconnected)
[  125.760864] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  125.771241] wifi0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[  125.784214] wifi0: CMD=0x0121 => res=0x7f, resp0=0x0004
[  125.784227] wifi0: hfa384x_set_rid: CMDCODE_ACCESS_WRITE failed (res=127, rid=fc48, len=2)
[  125.786207] wifi0: LinkStatus=2 (Disconnected)
[  125.786421] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  125.807866] wifi0: LinkStatus=2 (Disconnected)
[  125.818369] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  125.818616] wlan0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[  126.253133] wifi0: LinkStatus=1 (Connected)
[  126.253328] wifi0: LinkStatus: BSSID=00:13:10:3e:52:6e
[  126.479512] wifi0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[  126.481779] wifi0: LinkStatus=2 (Disconnected)
[  126.502575] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  127.255225] wifi0: CMD=0x0121 => res=0x7f, resp0=0x0004
[  127.255239] wifi0: hfa384x_set_rid: CMDCODE_ACCESS_WRITE failed (res=127, rid=fc48, len=2)
[  127.255808] wifi0: LinkStatus=2 (Disconnected)
[  127.256162] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  127.277561] wifi0: LinkStatus=2 (Disconnected)
[  127.277802] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  127.288166] wlan0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[  127.773799] wifi0: LinkStatus=1 (Connected)
[  127.774002] wifi0: LinkStatus: BSSID=00:13:10:3e:52:6e
[  127.776678] wifi0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[  127.778892] wifi0: LinkStatus=2 (Disconnected)
[  127.800932] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  128.696078] wifi0: CMD=0x0121 => res=0x7f, resp0=0x0004
[  128.696092] wifi0: hfa384x_set_rid: CMDCODE_ACCESS_WRITE failed (res=127, rid=fc48, len=2)
[  128.696658] wifi0: LinkStatus=2 (Disconnected)
[  128.696873] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  128.718558] wifi0: LinkStatus=2 (Disconnected)
[  128.718752] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  128.729164] wlan0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[  129.073058] wifi0: LinkStatus=1 (Connected)
[  129.073253] wifi0: LinkStatus: BSSID=00:13:10:3e:52:6e
[  129.076121] wifi0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[  129.078466] wifi0: LinkStatus=2 (Disconnected)
[  129.099304] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  129.804654] wifi0: CMD=0x0121 => res=0x7f, resp0=0x0004
[  129.804667] wifi0: hfa384x_set_rid: CMDCODE_ACCESS_WRITE failed (res=127, rid=fc48, len=2)
[  129.805232] wifi0: LinkStatus=2 (Disconnected)
[  129.805447] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  129.830244] wifi0: LinkStatus=2 (Disconnected)
[  129.830443] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  129.840906] wlan0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[  130.188144] wifi0: LinkStatus=1 (Connected)
[  130.188340] wifi0: LinkStatus: BSSID=00:13:10:3e:52:6e
[  130.191148] wifi0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[  130.193103] wifi0: LinkStatus=2 (Disconnected)
[  130.214054] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  131.105794] wifi0: CMD=0x0121 => res=0x7f, resp0=0x0004
[  131.105807] wifi0: hfa384x_set_rid: CMDCODE_ACCESS_WRITE failed (res=127, rid=fc48, len=2)
[  131.106367] wifi0: LinkStatus=2 (Disconnected)
[  131.106582] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  131.128272] wifi0: LinkStatus=2 (Disconnected)
[  131.128466] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  131.138959] wlan0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[  131.574977] wifi0: LinkStatus=1 (Connected)
[  131.575188] wifi0: LinkStatus: BSSID=00:13:10:3e:52:6e
[  131.578814] wifi0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[  131.581165] wifi0: LinkStatus=2 (Disconnected)
[  131.601993] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  132.399376] wifi0: CMD=0x0121 => res=0x7f, resp0=0x0004
[  132.399389] wifi0: hfa384x_set_rid: CMDCODE_ACCESS_WRITE failed (res=127, rid=fc48, len=2)
[  132.399969] wifi0: LinkStatus=2 (Disconnected)
[  132.400510] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  132.422535] wifi0: LinkStatus=2 (Disconnected)
[  132.422730] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  132.433184] wlan0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[  132.869039] wifi0: LinkStatus=1 (Connected)
[  132.869246] wifi0: LinkStatus: BSSID=00:13:10:3e:52:6e
[  132.872087] wifi0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[  132.874830] wifi0: LinkStatus=2 (Disconnected)
[  132.895654] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  133.833022] wifi0: CMD=0x0121 => res=0x7f, resp0=0x0004
[  133.833036] wifi0: hfa384x_set_rid: CMDCODE_ACCESS_WRITE failed (res=127, rid=fc48, len=2)
[  133.833803] wifi0: LinkStatus=2 (Disconnected)
[  133.834018] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  133.856055] wifi0: LinkStatus=2 (Disconnected)
[  133.866502] wlan0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[  133.876838] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
[  134.350011] wifi0: LinkStatus=1 (Connected)
[  134.350213] wifi0: LinkStatus: BSSID=00:13:10:3e:52:6e
[  134.352538] wifi0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
[  134.354529] wifi0: LinkStatus=2 (Disconnected)
[  134.375378] wifi0: LinkStatus: BSSID=44:44:44:44:44:44
 
Res publica non dominetur

Re: [UNSOLVED] Multiple wireless networks

The end (thank God -- by the way, this entire doc was too long for the pastebin):

lcafiero@crunchbang:~$ cat /var/lib/NetworkManager/NetworkManager.state 

[main]
NetworkingEnabled=true
WirelessEnabled=true
WWANEnabled=true

lcafiero@crunchbang:~$ cat /etc/NetworkManager/NetworkManager.conf 
[main]
plugins=ifupdown,keyfile

[ifupdown]
managed=false

lcafiero@crunchbang:~$ nm-tool

NetworkManager Tool

State: disconnected

- Device: wifi0 ----------------------------------------------------------------
  Type:              802.11 WiFi
  Driver:            hostap_pci
  State:             disconnected
  Default:           no
  HW Address:        00:05:3C:08:82:42

  Capabilities:

  Wireless Properties
    WEP Encryption:  yes
    WPA Encryption:  yes
    WPA2 Encryption: yes

  Wireless Access Points 
    HP899F85:        Ad-Hoc, 02:2E:7E:05:6C:C2, Freq 2457 MHz, Rate 11 Mb/s, Strength 36
    Catbird:         Infra, 00:25:BC:8B:94:7D, Freq 2462 MHz, Rate 18 Mb/s, Strength 34 WEP
    linksys:         Infra, 00:13:10:3E:52:6E, Freq 2437 MHz, Rate 54 Mb/s, Strength 57
    DSL_net:         Infra, 00:30:BD:F0:B3:29, Freq 2462 MHz, Rate 54 Mb/s, Strength 56 WEP
    catbird-secure:  Infra, 00:16:01:D1:A6:9E, Freq 2437 MHz, Rate 54 Mb/s, Strength 41 WEP


- Device: wlan0 ----------------------------------------------------------------
  Type:              802.11 WiFi
  Driver:            hostap_pci
  State:             disconnected
  Default:           no
  HW Address:        00:05:3C:08:82:42

  Capabilities:

  Wireless Properties
    WEP Encryption:  yes
    WPA Encryption:  yes
    WPA2 Encryption: yes

  Wireless Access Points 
    HP899F85:        Ad-Hoc, 02:2E:7E:05:6C:C2, Freq 2457 MHz, Rate 11 Mb/s, Strength 36
    Catbird:         Infra, 00:25:BC:8B:94:7D, Freq 2462 MHz, Rate 18 Mb/s, Strength 34 WEP
    linksys:         Infra, 00:13:10:3E:52:6E, Freq 2437 MHz, Rate 54 Mb/s, Strength 57
    catbird-secure:  Infra, 00:16:01:D1:A6:9E, Freq 2437 MHz, Rate 54 Mb/s, Strength 41 WEP
    DSL_net:         Infra, 00:30:BD:F0:B3:29, Freq 2462 MHz, Rate 54 Mb/s, Strength 56 WEP


- Device: eth0 -----------------------------------------------------------------
  Type:              Wired
  Driver:            e100
  State:             unavailable
  Default:           no
  HW Address:        00:09:6B:CD:2C:E5

  Capabilities:
    Carrier Detect:  yes
    Speed:           10 Mb/s

  Wired Properties
    Carrier:         off

lcafiero@crunchbang:~$ iwconfig
wifi0     IEEE 802.11b  ESSID:"\xE2\x1C\x06\x8Au+\xBC<\xC5\x08\xB7N\xB0\xE4\xF8\x1A\xD6=\x12\x1B~\x9A\xEC\xCD&\x8F~\xB2p\xB6\xDFR"  
          Mode:Managed  Frequency:2.437 GHz  Access Point: None   
          Bit Rate:11 Mb/s   Sensitivity=1/3  
          Retry short limit:8   RTS thr:off   Fragment thr:off
          Power Management:off
          
lo        no wireless extensions.

pan0      no wireless extensions.

wlan0     IEEE 802.11b  ESSID:"\xE2\x1C\x06\x8Au+\xBC<\xC5\x08\xB7N\xB0\xE4\xF8\x1A\xD6=\x12\x1B~\x9A\xEC\xCD&\x8F~\xB2p\xB6\xDFR"  
          Mode:Managed  Frequency:2.437 GHz  Access Point: None   
          Bit Rate:11 Mb/s   Sensitivity=1/3  
          Retry short limit:8   RTS thr:off   Fragment thr:off
          Power Management:off
          Link Quality=26/70  Signal level=-67 dBm  Noise level=-93 dBm
          Rx invalid nwid:0  Rx invalid crypt:186  Rx invalid frag:0
          Tx excessive retries:0  Invalid misc:444   Missed beacon:0

irda0     no wireless extensions.

lcafiero@crunchbang:~$ iwlist chan
wifi0     14 channels in total; available frequencies :
          Channel 01 : 2.412 GHz
          Channel 02 : 2.417 GHz
          Channel 03 : 2.422 GHz
          Channel 04 : 2.427 GHz
          Channel 05 : 2.432 GHz
          Channel 06 : 2.437 GHz
          Channel 07 : 2.442 GHz
          Channel 08 : 2.447 GHz
          Channel 09 : 2.452 GHz
          Channel 10 : 2.457 GHz
          Channel 11 : 2.462 GHz
          Current Frequency=2.437 GHz (Channel 6)

lo        no frequency information.

pan0      no frequency information.

wlan0     14 channels in total; available frequencies :
          Channel 01 : 2.412 GHz
          Channel 02 : 2.417 GHz
          Channel 03 : 2.422 GHz
          Channel 04 : 2.427 GHz
          Channel 05 : 2.432 GHz
          Channel 06 : 2.437 GHz
          Channel 07 : 2.442 GHz
          Channel 08 : 2.447 GHz
          Channel 09 : 2.452 GHz
          Channel 10 : 2.457 GHz
          Channel 11 : 2.462 GHz
          Current Frequency=2.437 GHz (Channel 6)

irda0     no frequency information.

lcafiero@crunchbang:~$ iwlist scan
wifi0     Scan completed :
          Cell 01 - Address: 00:13:10:3E:52:6E
                    ESSID:"linksys"
                    Mode:Master
                    Frequency:2.437 GHz (Channel 6)
                    Signal level=-67 dBm  Noise level=-97 dBm
                    Encryption key:off
                    Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 18 Mb/s
                              24 Mb/s; 36 Mb/s; 54 Mb/s
                    Extra:bcn_int=100
                    Extra:resp_rate=10
          Cell 02 - Address: 00:16:01:D1:A6:9E
                    ESSID:"catbird-secure"
                    Mode:Master
                    Frequency:2.437 GHz (Channel 6)
                    Signal level=-79 dBm  Noise level=-97 dBm
                    Encryption key:on
                    Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 18 Mb/s
                              24 Mb/s; 36 Mb/s; 54 Mb/s
                    Extra:bcn_int=100
                    Extra:resp_rate=10
          Cell 03 - Address: 02:2E:7E:05:6C:C2
                    ESSID:"HP899F85"
                    Mode:Ad-Hoc
                    Frequency:2.457 GHz (Channel 10)
                    Signal level=-84 dBm  Noise level=-95 dBm
                    Encryption key:off
                    Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s
                    Extra:bcn_int=100
                    Extra:resp_rate=10
                    Extra:atim=0
          Cell 04 - Address: 00:30:BD:F0:B3:29
                    ESSID:"DSL_net"
                    Mode:Master
                    Frequency:2.462 GHz (Channel 11)
                    Signal level=-62 dBm  Noise level=-96 dBm
                    Encryption key:on
                    Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 18 Mb/s
                              24 Mb/s; 36 Mb/s; 54 Mb/s
                    Extra:bcn_int=100
                    Extra:resp_rate=10

lo        Interface doesn't support scanning.

pan0      Interface doesn't support scanning.

wlan0     Scan completed :
          Cell 01 - Address: 00:13:10:3E:52:6E
                    ESSID:"linksys"
                    Mode:Master
                    Frequency:2.437 GHz (Channel 6)
                    Signal level=-67 dBm  Noise level=-97 dBm
                    Encryption key:off
                    Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 18 Mb/s
                              24 Mb/s; 36 Mb/s; 54 Mb/s
                    Extra:bcn_int=100
                    Extra:resp_rate=10
          Cell 02 - Address: 00:16:01:D1:A6:9E
                    ESSID:"catbird-secure"
                    Mode:Master
                    Frequency:2.437 GHz (Channel 6)
                    Signal level=-79 dBm  Noise level=-97 dBm
                    Encryption key:on
                    Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 18 Mb/s
                              24 Mb/s; 36 Mb/s; 54 Mb/s
                    Extra:bcn_int=100
                    Extra:resp_rate=10
          Cell 03 - Address: 02:2E:7E:05:6C:C2
                    ESSID:"HP899F85"
                    Mode:Ad-Hoc
                    Frequency:2.457 GHz (Channel 10)
                    Signal level=-84 dBm  Noise level=-95 dBm
                    Encryption key:off
                    Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s
                    Extra:bcn_int=100
                    Extra:resp_rate=10
                    Extra:atim=0
          Cell 04 - Address: 00:30:BD:F0:B3:29
                    ESSID:"DSL_net"
                    Mode:Master
                    Frequency:2.462 GHz (Channel 11)
                    Signal level=-62 dBm  Noise level=-96 dBm
                    Encryption key:on
                    Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 18 Mb/s
                              24 Mb/s; 36 Mb/s; 54 Mb/s
                    Extra:bcn_int=100
                    Extra:resp_rate=10

irda0     Interface doesn't support scanning.

lcafiero@crunchbang:~$ cat /var/log/syslog | egrep 'rtl|firmware|wlan|wpa|eth' | tail -n75
cat: /var/log/syslog: Permission denied

lcafiero@crunchbang:~$ sudo cat /var/log/syslog | egrep 'rtl|firmware|wlan|wpa|eth' | tail -n75
[sudo] password for lcafiero: 
Feb  4 17:09:57 crunchbang NetworkManager[1423]: <info> (wlan0): supplicant connection state:  scanning -> associating
Feb  4 17:09:57 crunchbang kernel: [  129.840906] wlan0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
Feb  4 17:09:57 crunchbang wpa_supplicant[1458]: No network configuration found for the current AP
Feb  4 17:09:57 crunchbang NetworkManager[1423]: <info> (wlan0): supplicant connection state:  associating -> associated
Feb  4 17:09:57 crunchbang wpa_supplicant[1458]: Associated with 44:44:44:44:44:44
Feb  4 17:09:57 crunchbang wpa_supplicant[1458]: CTRL-EVENT-CONNECTED - Connection to 44:44:44:44:44:44 completed (reauth) [id=1 id_str=]
Feb  4 17:09:57 crunchbang NetworkManager[1423]: <info> (wlan0): supplicant connection state:  associated -> completed
Feb  4 17:09:57 crunchbang wpa_supplicant[1458]: CTRL-EVENT-DISCONNECTED - Disconnect event - remove keys
Feb  4 17:09:57 crunchbang NetworkManager[1423]: <info> (wlan0): supplicant connection state:  completed -> disconnected
Feb  4 17:09:57 crunchbang wpa_supplicant[1458]: CTRL-EVENT-DISCONNECTED - Disconnect event - remove keys
Feb  4 17:09:57 crunchbang NetworkManager[1423]: <info> (wlan0): supplicant connection state:  disconnected -> scanning
Feb  4 17:09:58 crunchbang wpa_supplicant[1458]: Trying to associate with 00:13:10:3e:52:6e (SSID='linksys' freq=2437 MHz)
Feb  4 17:09:58 crunchbang NetworkManager[1423]: <info> (wlan0): supplicant connection state:  scanning -> associating
Feb  4 17:09:58 crunchbang kernel: [  131.138959] wlan0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
Feb  4 17:09:59 crunchbang wpa_supplicant[1458]: No network configuration found for the current AP
Feb  4 17:09:59 crunchbang NetworkManager[1423]: <info> (wlan0): supplicant connection state:  associating -> associated
Feb  4 17:09:59 crunchbang wpa_supplicant[1458]: Associated with 44:44:44:44:44:44
Feb  4 17:09:59 crunchbang wpa_supplicant[1458]: CTRL-EVENT-CONNECTED - Connection to 44:44:44:44:44:44 completed (reauth) [id=1 id_str=]
Feb  4 17:09:59 crunchbang wpa_supplicant[1458]: CTRL-EVENT-DISCONNECTED - Disconnect event - remove keys
Feb  4 17:09:59 crunchbang NetworkManager[1423]: <info> (wlan0): supplicant connection state:  associated -> completed
Feb  4 17:09:59 crunchbang wpa_supplicant[1458]: CTRL-EVENT-DISCONNECTED - Disconnect event - remove keys
Feb  4 17:09:59 crunchbang NetworkManager[1423]: <info> (wlan0): supplicant connection state:  completed -> disconnected
Feb  4 17:09:59 crunchbang NetworkManager[1423]: <info> (wlan0): supplicant connection state:  disconnected -> scanning
Feb  4 17:09:59 crunchbang NetworkManager[1423]: <info> (wlan0): device state change: 7 -> 3 (reason 0)
Feb  4 17:09:59 crunchbang NetworkManager[1423]: <info> (wlan0): deactivating device (reason: 0).
Feb  4 17:09:59 crunchbang NetworkManager[1423]: <info> (wlan0): canceled DHCP transaction, DHCP client pid 2074
Feb  4 17:09:59 crunchbang NetworkManager[1423]: <info> Activation (wlan0) starting connection 'linksys'
Feb  4 17:09:59 crunchbang NetworkManager[1423]: <info> (wlan0): device state change: 3 -> 4 (reason 0)
Feb  4 17:09:59 crunchbang NetworkManager[1423]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) scheduled...
Feb  4 17:09:59 crunchbang NetworkManager[1423]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) started...
Feb  4 17:09:59 crunchbang NetworkManager[1423]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) scheduled...
Feb  4 17:09:59 crunchbang NetworkManager[1423]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) complete.
Feb  4 17:09:59 crunchbang NetworkManager[1423]: <info> (wlan0): supplicant connection state:  scanning -> disconnected
Feb  4 17:09:59 crunchbang NetworkManager[1423]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) starting...
Feb  4 17:09:59 crunchbang NetworkManager[1423]: <info> (wlan0): device state change: 4 -> 5 (reason 0)
Feb  4 17:09:59 crunchbang NetworkManager[1423]: <info> Activation (wlan0/wireless): connection 'linksys' requires no security.  No secrets needed.
Feb  4 17:09:59 crunchbang NetworkManager[1423]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) complete.
Feb  4 17:09:59 crunchbang NetworkManager[1423]: <info> (wlan0): supplicant connection state:  disconnected -> scanning
Feb  4 17:09:59 crunchbang wpa_supplicant[1458]: Trying to associate with 00:13:10:3e:52:6e (SSID='linksys' freq=2437 MHz)
Feb  4 17:09:59 crunchbang NetworkManager[1423]: <info> (wlan0): supplicant connection state:  scanning -> associating
Feb  4 17:09:59 crunchbang kernel: [  132.433184] wlan0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
Feb  4 17:10:00 crunchbang wpa_supplicant[1458]: No network configuration found for the current AP
Feb  4 17:10:00 crunchbang NetworkManager[1423]: <info> (wlan0): supplicant connection state:  associating -> associated
Feb  4 17:10:00 crunchbang wpa_supplicant[1458]: Associated with 44:44:44:44:44:44
Feb  4 17:10:00 crunchbang wpa_supplicant[1458]: CTRL-EVENT-CONNECTED - Connection to 44:44:44:44:44:44 completed (reauth) [id=1 id_str=]
Feb  4 17:10:00 crunchbang NetworkManager[1423]: <info> (wlan0): supplicant connection state:  associated -> completed
Feb  4 17:10:00 crunchbang wpa_supplicant[1458]: CTRL-EVENT-DISCONNECTED - Disconnect event - remove keys
Feb  4 17:10:00 crunchbang NetworkManager[1423]: <info> Activation (wlan0/wireless) Stage 2 of 5 (Device Configure) successful.  Connected to wireless network 'linksys'.
Feb  4 17:10:00 crunchbang NetworkManager[1423]: <info> Activation (wlan0) Stage 3 of 5 (IP Configure Start) scheduled.
Feb  4 17:10:00 crunchbang wpa_supplicant[1458]: CTRL-EVENT-DISCONNECTED - Disconnect event - remove keys
Feb  4 17:10:00 crunchbang NetworkManager[1423]: <info> Activation (wlan0) Stage 3 of 5 (IP Configure Start) started...
Feb  4 17:10:00 crunchbang NetworkManager[1423]: <info> (wlan0): device state change: 5 -> 7 (reason 0)
Feb  4 17:10:00 crunchbang NetworkManager[1423]: <info> Activation (wlan0) Beginning DHCPv4 transaction (timeout in 45 seconds)
Feb  4 17:10:00 crunchbang NetworkManager[1423]: <info> Activation (wlan0) Stage 3 of 5 (IP Configure Start) complete.
Feb  4 17:10:00 crunchbang NetworkManager[1423]: <info> (wlan0): supplicant connection state:  completed -> disconnected
Feb  4 17:10:00 crunchbang dhclient: Listening on LPF/wlan0/00:05:3c:08:82:42
Feb  4 17:10:00 crunchbang dhclient: Sending on   LPF/wlan0/00:05:3c:08:82:42
Feb  4 17:10:00 crunchbang NetworkManager[1423]: <info> (wlan0): DHCPv4 state changed nbi -> preinit
Feb  4 17:10:00 crunchbang NetworkManager[1423]: <info> (wlan0): supplicant connection state:  disconnected -> scanning
Feb  4 17:10:01 crunchbang wpa_supplicant[1458]: Trying to associate with 00:13:10:3e:52:6e (SSID='linksys' freq=2437 MHz)
Feb  4 17:10:01 crunchbang NetworkManager[1423]: <info> (wlan0): supplicant connection state:  scanning -> associating
Feb  4 17:10:01 crunchbang kernel: [  133.866502] wlan0: Preferred AP (SIOCSIWAP) is used only in Managed mode when host_roaming is enabled
Feb  4 17:10:01 crunchbang wpa_supplicant[1458]: No network configuration found for the current AP
Feb  4 17:10:01 crunchbang NetworkManager[1423]: <info> (wlan0): supplicant connection state:  associating -> associated
Feb  4 17:10:01 crunchbang wpa_supplicant[1458]: Associated with 44:44:44:44:44:44
Feb  4 17:10:01 crunchbang wpa_supplicant[1458]: CTRL-EVENT-CONNECTED - Connection to 44:44:44:44:44:44 completed (reauth) [id=1 id_str=]
Feb  4 17:10:01 crunchbang NetworkManager[1423]: <info> (wlan0): supplicant connection state:  associated -> completed
Feb  4 17:10:01 crunchbang wpa_supplicant[1458]: CTRL-EVENT-DISCONNECTED - Disconnect event - remove keys
Feb  4 17:10:01 crunchbang wpa_supplicant[1458]: CTRL-EVENT-DISCONNECTED - Disconnect event - remove keys
Feb  4 17:10:01 crunchbang NetworkManager[1423]: <info> (wlan0): supplicant connection state:  completed -> disconnected
Feb  4 17:10:01 crunchbang NetworkManager[1423]: <info> (wlan0): supplicant connection state:  disconnected -> scanning
Feb  4 17:10:02 crunchbang NetworkManager[1423]: <info> (wlan0): device state change: 7 -> 3 (reason 39)
Feb  4 17:10:02 crunchbang NetworkManager[1423]: <info> (wlan0): deactivating device (reason: 39).
Feb  4 17:10:02 crunchbang NetworkManager[1423]: <info> (wlan0): canceled DHCP transaction, DHCP client pid 2081
Feb  4 17:13:20 crunchbang ntpd[1461]: Listen normally on 4 wlan0 fe80::205:3cff:fe08:8242 UDP 123
 
Res publica non dominetur

Re: [UNSOLVED] Multiple wireless networks

Oh, I should probably mention, too, that I did all that above without the PCMCIA card attached, since the troubleshooting is for the internal wireless on the ThinkPad.

Res publica non dominetur

Re: [UNSOLVED] Multiple wireless networks

lcafiero - I have zero experience with your wifi card, but I found this Debian wiki page where evrything is explained, I hope: http://wiki.debian.org/hostap

Troubleshooting

    Prism 3 SSF devices (e.g. D-Link DWL-650 revision P1, D-Link DWL-520 revision E1) require firmware to be loaded from userspace.

    WPA support requires station firmware version 1.7.4 or later.

See firmware below.

I think you will have to upgrade the station firmware to be able to use WPA.

Note: I would be interested in any progress you make. Should you encounter any problems in upgrading the firmware, please post all concerning commands/errors.

hth

Last edited by xaos52 (2012-02-05 17:00:39)

If you poke the bear it is going to come after you.

Re: [UNSOLVED] Multiple wireless networks

Surrender. White flag. I give up. Every attempt to upgrage the firmware is unsuccessful -- a result, no doubt, of using very old hardware. To be honest, it's not that important -- I'll just keep using the PCMCIA card.

Res publica non dominetur