Page 7 of 12 FirstFirst ... 56789 ... LastLast
Results 61 to 70 of 114

Thread: Does ubuntu supports Intel WiFi Link 5300 (AGN) network card?

  1. #61
    Join Date
    Jun 2009
    Beans
    6

    Re: Does ubuntu supports Intel WiFi Link 5300 (AGN) network card?

    Also, maybe my problem should be made a new thread since it is about other hardware.

  2. #62
    Join Date
    Aug 2007
    Location
    Paris
    Beans
    5,538
    Distro
    Ubuntu 11.04 Natty Narwhal

    Re: Does ubuntu supports Intel WiFi Link 5300 (AGN) network card?

    Thanks for the information about the card name. I found this thread, which explains how to make it work. It's a little more complicated than I thought, but it should still be possible. Basically there are four steps:

    1. upgrade your kernel to 2.6.30 (apparently older kernels don't support this device)
    2. compile the qcserial module against the 2.6.30 kernel
    3. install the gobi-loader utility to load firmware for the device
    4. use wvdial or NetworkManager to connect to your network

    Although this may sound hard, it shouldn't really be that bad as long as everything works as expected. The one thing I will warn about, however, is that updating your kernel could possibly have unexpected consequences, so please make sure you back up everything important on Ubuntu.

    To get the kernel upgraded, run these commands (you will need to be connected to the Internet first):
    Code:
    wget http://mirrors.kernel.org/ubuntu/pool/main/w/wireless-crda/wireless-crda_1.7_i386.deb
    wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v2.6.30-rc4/linux-image-2.6.30-020630rc4-generic_2.6.30-020630rc4_i386.deb
    sudo dpkg -i wireless-crda_1.7_*.deb
    sudo dpkg -i linux*.deb
    If you receive any error messages, please post them here. If there are no errors, reboot your system, and you should be in the new kernel. To check, post the output of the command:
    Code:
    uname -r
    Once you get this far, we can move on to the next steps.

    Also, the internal wireless card doesn't seem to be working because it's disabled using switch, according to the 'dmesg' output. This usually means there's a button or software switch (like Function+F2) that you need to toggle in order to turn your wireless on.

  3. #63
    Join Date
    Mar 2006
    Beans
    202
    Distro
    Kubuntu Development Release

    Re: Does ubuntu supports Intel WiFi Link 5300 (AGN) network card?

    hi, i have kernel 2.6.29, i compiled latest compat-wireless release and in /lib/firmware i have both firmware (*.1.ucode
    and *.2.ucode).

    sudo modinfo iwlagn

    filename: /lib/modules/2.6.29.4-generic/updates/drivers/net/wireless/iwlwifi/iwlagn.ko
    alias: iwl4965
    license: GPL
    author: Copyright(c) 2003-2009 Intel Corporation <ilw@linux.intel.com>
    version: 1.3.27ks
    description: Intel(R) Wireless WiFi Link AGN driver for Linux
    firmware: iwlwifi-4965-2.ucode
    firmware: iwlwifi-5150-2.ucode
    firmware: iwlwifi-5000-1.ucode
    firmware: iwlwifi-6050-2.ucode
    firmware: iwlwifi-6000-2.ucode


    why i can't use iwlwifi-5000-2.ucode?

  4. #64
    Join Date
    Aug 2007
    Location
    Paris
    Beans
    5,538
    Distro
    Ubuntu 11.04 Natty Narwhal

    Re: Does ubuntu supports Intel WiFi Link 5300 (AGN) network card?

    biasquez: I don't know enough about iwlagn to know why it doesn't want to use that firmware file. But is there a problem with your wireless as it stands now? What is the device ID (XXXX:XXXX) of the card?

  5. #65
    Join Date
    Mar 2006
    Beans
    202
    Distro
    Kubuntu Development Release

    Re: Does ubuntu supports Intel WiFi Link 5300 (AGN) network card?

    Quote Originally Posted by pytheas22 View Post
    biasquez: I don't know enough about iwlagn to know why it doesn't want to use that firmware file. But is there a problem with your wireless as it stands now? What is the device ID (XXXX:XXXX) of the card?

    sometimes, network is slow and i must reset wifi connection.
    07:00.0 Network controller: Intel Corporation Wireless WiFi Link 5100

  6. #66
    Join Date
    Aug 2007
    Location
    Paris
    Beans
    5,538
    Distro
    Ubuntu 11.04 Natty Narwhal

    Re: Does ubuntu supports Intel WiFi Link 5300 (AGN) network card?

    biasquez: there could be several different reasons that your connection becomes slow, and I think it's unlikely that the firmware is the problem. The next time the connection becomes slow, please open a terminal, run the following commands and post the output:
    Code:
    lspci -nn
    dmesg | grep -e iwl -e wlan
    dmesg | tail -50
    ifconfig wlan0
    iwconfig wlan0
    Also, do you notice a pattern in the behavior? Does the connection become slow when you're downloading large files or when you visit certain websites, for example? Or does it seem random?

  7. #67
    Join Date
    Jun 2009
    Beans
    6

    Re: Does ubuntu supports Intel WiFi Link 5300 (AGN) network card?

    Thanx for your quick reply. /Lasse

    Installing the kernel I got this

    Code:
    sudo dpkg -i linux*.deb
    Examining /etc/kernel/postinst.d.
    run-parts: executing /etc/kernel/postinst.d/dkms
     * Running DKMS auto installation service for kernel 2.6.30-020630rc4-generic                                                                                   
     *  fglrx (8.600)...                                                            fglrx (8.600): Installing module.
      Kernel headers for 2.6.30-020630rc4-generic are not installed.  Cannot install this module.
      Try installing linux-headers-2.6.30-020630rc4-generic or equivalent.
                                                                             [fail]
    run-parts: executing /etc/kernel/postinst.d/nvidia-common
    Quote Originally Posted by pytheas22 View Post
    Thanks for the information about the card name. I found this thread, which explains how to make it work. It's a little more complicated than I thought, but it should still be possible. Basically there are four steps:

    1. upgrade your kernel to 2.6.30 (apparently older kernels don't support this device)
    2. compile the qcserial module against the 2.6.30 kernel
    3. install the gobi-loader utility to load firmware for the device
    4. use wvdial or NetworkManager to connect to your network

    Although this may sound hard, it shouldn't really be that bad as long as everything works as expected. The one thing I will warn about, however, is that updating your kernel could possibly have unexpected consequences, so please make sure you back up everything important on Ubuntu.

    To get the kernel upgraded, run these commands (you will need to be connected to the Internet first):
    Code:
    wget http://mirrors.kernel.org/ubuntu/pool/main/w/wireless-crda/wireless-crda_1.7_i386.deb
    wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v2.6.30-rc4/linux-image-2.6.30-020630rc4-generic_2.6.30-020630rc4_i386.deb
    sudo dpkg -i wireless-crda_1.7_*.deb
    sudo dpkg -i linux*.deb
    If you receive any error messages, please post them here. If there are no errors, reboot your system, and you should be in the new kernel. To check, post the output of the command:
    Code:
    uname -r
    Once you get this far, we can move on to the next steps.

    Also, the internal wireless card doesn't seem to be working because it's disabled using switch, according to the 'dmesg' output. This usually means there's a button or software switch (like Function+F2) that you need to toggle in order to turn your wireless on.
    Last edited by svaret; June 8th, 2009 at 07:07 AM.

  8. #68
    Join Date
    Aug 2007
    Location
    Paris
    Beans
    5,538
    Distro
    Ubuntu 11.04 Natty Narwhal

    Re: Does ubuntu supports Intel WiFi Link 5300 (AGN) network card?

    Sorry that didn't work. Please try running this; it should solve the dependency:
    Code:
    wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v2.6.30-rc4/linux-headers-2.6.30-020630rc4-generic_2.6.30-020630rc4_i386.deb
    sudo dpkg -i linux*.deb
    This may take some trial and error, but we'll get there eventually...

  9. #69
    Join Date
    May 2009
    Location
    Raleigh, NC
    Beans
    36
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: Does ubuntu supports Intel WiFi Link 5300 (AGN) network card?

    Pytheas, you helped me a while back in this thread by getting my drivers installed correctly. Before I was having random disconnects. That being fixed, I still have disconnects only this time I've narrowed the cause down to trying to play a large movie across the network from my NAS. So instead of being random, they occur when I do something.

    I've run your diagnostic commands here:
    soverton@SteveO-Laptop:~$ lspci -nn
    00:00.0 Host bridge [0600]: Intel Corporation Mobile 4 Series Chipset Memory Controller Hub [8086:2a40] (rev 07)
    00:01.0 PCI bridge [0604]: Intel Corporation Mobile 4 Series Chipset PCI Express Graphics Port [8086:2a41] (rev 07)
    00:03.0 Communication controller [0780]: Intel Corporation Mobile 4 Series Chipset MEI Controller [8086:2a44] (rev 07)
    00:03.2 IDE interface [0101]: Intel Corporation Mobile 4 Series Chipset PT IDER Controller [8086:2a46] (rev 07)
    00:03.3 Serial controller [0700]: Intel Corporation Mobile 4 Series Chipset AMT SOL Redirection [8086:2a47] (rev 07)
    00:19.0 Ethernet controller [0200]: Intel Corporation 82567LM Gigabit Network Connection [8086:10f5] (rev 03)
    00:1a.0 USB Controller [0c03]: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #4 [8086:2937] (rev 03)
    00:1a.1 USB Controller [0c03]: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #5 [8086:2938] (rev 03)
    00:1a.2 USB Controller [0c03]: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #6 [8086:2939] (rev 03)
    00:1a.7 USB Controller [0c03]: Intel Corporation 82801I (ICH9 Family) USB2 EHCI Controller #2 [8086:293c] (rev 03)
    00:1b.0 Audio device [0403]: Intel Corporation 82801I (ICH9 Family) HD Audio Controller [8086:293e] (rev 03)
    00:1c.0 PCI bridge [0604]: Intel Corporation 82801I (ICH9 Family) PCI Express Port 1 [8086:2940] (rev 03)
    00:1c.1 PCI bridge [0604]: Intel Corporation 82801I (ICH9 Family) PCI Express Port 2 [8086:2942] (rev 03)
    00:1c.3 PCI bridge [0604]: Intel Corporation 82801I (ICH9 Family) PCI Express Port 4 [8086:2946] (rev 03)
    00:1c.4 PCI bridge [0604]: Intel Corporation 82801I (ICH9 Family) PCI Express Port 5 [8086:2948] (rev 03)
    00:1d.0 USB Controller [0c03]: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #1 [8086:2934] (rev 03)
    00:1d.1 USB Controller [0c03]: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #2 [8086:2935] (rev 03)
    00:1d.2 USB Controller [0c03]: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #3 [8086:2936] (rev 03)
    00:1d.7 USB Controller [0c03]: Intel Corporation 82801I (ICH9 Family) USB2 EHCI Controller #1 [8086:293a] (rev 03)
    00:1e.0 PCI bridge [0604]: Intel Corporation 82801 Mobile PCI Bridge [8086:2448] (rev 93)
    00:1f.0 ISA bridge [0601]: Intel Corporation ICH9M-E LPC Interface Controller [8086:2917] (rev 03)
    00:1f.2 SATA controller [0106]: Intel Corporation ICH9M/M-E SATA AHCI Controller [8086:2929] (rev 03)
    00:1f.3 SMBus [0c05]: Intel Corporation 82801I (ICH9 Family) SMBus Controller [8086:2930] (rev 03)
    01:00.0 VGA compatible controller [0300]: ATI Technologies Inc Mobility Radeon HD 3650 [1002:9591]
    03:00.0 Network controller [0280]: Intel Corporation Wireless WiFi Link 5300 [8086:4236]
    15:00.0 CardBus bridge [0607]: Ricoh Co Ltd RL5c476 II [1180:0476] (rev ba)
    15:00.1 FireWire (IEEE 1394) [0c00]: Ricoh Co Ltd R5C832 IEEE 1394 Controller [1180:0832] (rev 04)
    15:00.2 SD Host controller [0805]: Ricoh Co Ltd R5C822 SD/SDIO/MMC/MS/MSPro Host Adapter [1180:0822] (rev 21)
    15:00.3 System peripheral [0880]: Ricoh Co Ltd R5C843 MMC Host Controller [1180:0843] (rev ff)
    15:00.4 System peripheral [0880]: Ricoh Co Ltd R5C592 Memory Stick Bus Host Adapter [1180:0592] (rev 11)
    15:00.5 System peripheral [0880]: Ricoh Co Ltd xD-Picture Card Controller [1180:0852] (rev 11)
    soverton@SteveO-Laptop:~$ dmesg | grep -e iwl -e wlan
    [ 9.486423] iwlagn: Intel(R) Wireless WiFi Link AGN driver for Linux, 1.3.27ks
    [ 9.486425] iwlagn: Copyright(c) 2003-2008 Intel Corporation
    [ 9.486505] iwlagn 0000:03:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
    [ 9.486513] iwlagn 0000:03:00.0: setting latency timer to 64
    [ 9.486552] iwlagn: Detected Intel Wireless WiFi Link 5300AGN REV=0x24
    [ 9.506489] iwlagn: Tunable channels: 13 802.11bg, 24 802.11a channels
    [ 9.506555] iwlagn 0000:03:00.0: irq 2296 for MSI/MSI-X
    [ 9.508408] phy0: Selected rate control algorithm 'iwl-agn-rs'
    [ 20.109913] iwlagn 0000:03:00.0: firmware: requesting iwlwifi-5000-1.ucode
    [ 20.323369] Registered led device: iwl-phy0:radio
    [ 20.323382] Registered led device: iwl-phy0:assoc
    [ 20.323394] Registered led device: iwl-phy0:RX
    [ 20.323407] Registered led device: iwl-phy0:TX
    [ 20.977875] ADDRCONF(NETDEV_UP): wlan0: link is not ready
    [ 42.578397] wlan0: authenticate with AP 00:1c:10:0c:20:57
    [ 42.581228] wlan0: authenticated
    [ 42.581231] wlan0: associate with AP 00:1c:10:0c:20:57
    [ 42.586287] wlan0: RX AssocResp from 00:1c:10:0c:20:57 (capab=0x431 status=0 aid=2)
    [ 42.586289] wlan0: associated
    [ 42.592451] ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
    [ 53.324596] wlan0: no IPv6 routers present
    [18204.434098] wlan0: deauthenticated
    [18204.434376] wlan0: deauthenticating by local choice (reason=14)
    [18205.432570] wlan0: direct probe to AP 00:1c:10:0c:20:57 try 1
    [18205.434959] wlan0 direct probe responded
    [18205.434963] wlan0: authenticate with AP 00:1c:10:0c:20:57
    [18205.436729] wlan0: authenticated
    [18205.436731] wlan0: associate with AP 00:1c:10:0c:20:57
    [18205.441379] wlan0: RX ReassocResp from 00:1c:10:0c:20:57 (capab=0x431 status=12 aid=0)
    [18205.441382] wlan0: AP denied association (code=12)
    [18205.636533] wlan0: associate with AP 00:1c:10:0c:20:57
    [18205.638881] wlan0: RX AssocResp from 00:1c:10:0c:20:57 (capab=0x431 status=12 aid=0)
    [18205.638883] wlan0: AP denied association (code=12)
    [18205.836549] wlan0: associate with AP 00:1c:10:0c:20:57
    [18205.838915] wlan0: RX AssocResp from 00:1c:10:0c:20:57 (capab=0x431 status=12 aid=0)
    [18205.838918] wlan0: AP denied association (code=12)
    [18206.036551] wlan0: association with AP 00:1c:10:0c:20:57 timed out
    [18223.047573] wlan0: authenticate with AP 00:1c:10:0c:20:57
    [18223.050433] wlan0: authenticated
    [18223.050437] wlan0: associate with AP 00:1c:10:0c:20:57
    [18223.053279] wlan0: RX AssocResp from 00:1c:10:0c:20:57 (capab=0x431 status=12 aid=0)
    [18223.053281] wlan0: AP denied association (code=12)
    [18223.248550] wlan0: associate with AP 00:1c:10:0c:20:57
    [18223.250896] wlan0: RX AssocResp from 00:1c:10:0c:20:57 (capab=0x431 status=12 aid=0)
    [18223.250898] wlan0: AP denied association (code=12)
    [18223.448124] wlan0: associate with AP 00:1c:10:0c:20:57
    [18223.451549] wlan0: RX AssocResp from 00:1c:10:0c:20:57 (capab=0x431 status=12 aid=0)
    [18223.451552] wlan0: AP denied association (code=12)
    [18223.454810] wlan0: RX AssocResp from 00:1c:10:0c:20:57 (capab=0x431 status=12 aid=0)
    [18223.454811] wlan0: AP denied association (code=12)
    [18223.648103] wlan0: association with AP 00:1c:10:0c:20:57 timed out
    [18234.626280] wlan0: authenticate with AP 00:1c:10:0c:20:57
    [18234.628273] wlan0: authenticated
    [18234.628275] wlan0: associate with AP 00:1c:10:0c:20:57
    [18234.633870] wlan0: RX AssocResp from 00:1c:10:0c:20:57 (capab=0x431 status=12 aid=0)
    [18234.633872] wlan0: AP denied association (code=12)
    [18234.636470] wlan0: RX AssocResp from 00:1c:10:0c:20:57 (capab=0x431 status=12 aid=0)
    [18234.636472] wlan0: AP denied association (code=12)
    [18234.828058] wlan0: associate with AP 00:1c:10:0c:20:57
    [18234.830432] wlan0: RX AssocResp from 00:1c:10:0c:20:57 (capab=0x431 status=12 aid=0)
    [18234.830435] wlan0: AP denied association (code=12)
    [18235.028060] wlan0: associate with AP 00:1c:10:0c:20:57
    [18235.030466] wlan0: RX AssocResp from 00:1c:10:0c:20:57 (capab=0x431 status=12 aid=0)
    [18235.030469] wlan0: AP denied association (code=12)
    [18235.034102] wlan0: RX AssocResp from 00:1c:10:0c:20:57 (capab=0x431 status=12 aid=0)
    [18235.034104] wlan0: AP denied association (code=12)
    [18235.228129] wlan0: association with AP 00:1c:10:0c:20:57 timed out
    [18246.182992] wlan0: authenticate with AP 00:1c:10:0c:20:57
    [18246.185048] wlan0: authenticated
    [18246.185051] wlan0: associate with AP 00:1c:10:0c:20:57
    [18246.193258] wlan0: RX AssocResp from 00:1c:10:0c:20:57 (capab=0x431 status=12 aid=0)
    [18246.193261] wlan0: AP denied association (code=12)
    [18246.194212] wlan0: RX AssocResp from 00:1c:10:0c:20:57 (capab=0x431 status=12 aid=0)
    [18246.194215] wlan0: AP denied association (code=12)
    [18246.384111] wlan0: associate with AP 00:1c:10:0c:20:57
    [18246.392157] wlan0: RX AssocResp from 00:1c:10:0c:20:57 (capab=0x431 status=12 aid=0)
    [18246.392160] wlan0: AP denied association (code=12)
    [18246.584609] wlan0: associate with AP 00:1c:10:0c:20:57
    [18246.587014] wlan0: RX AssocResp from 00:1c:10:0c:20:57 (capab=0x431 status=12 aid=0)
    [18246.587017] wlan0: AP denied association (code=12)
    [18246.590909] wlan0: RX AssocResp from 00:1c:10:0c:20:57 (capab=0x431 status=12 aid=0)
    [18246.590912] wlan0: AP denied association (code=12)
    [18246.784111] wlan0: association with AP 00:1c:10:0c:20:57 timed out
    [18257.738815] wlan0: authenticate with AP 00:1c:10:0c:20:57
    [18257.740804] wlan0: authenticated
    [18257.740807] wlan0: associate with AP 00:1c:10:0c:20:57
    [18257.744201] wlan0: RX AssocResp from 00:1c:10:0c:20:57 (capab=0x431 status=12 aid=0)
    [18257.744203] wlan0: AP denied association (code=12)
    [18257.940114] wlan0: associate with AP 00:1c:10:0c:20:57
    [18257.942491] wlan0: RX AssocResp from 00:1c:10:0c:20:57 (capab=0x431 status=12 aid=0)
    [18257.942493] wlan0: AP denied association (code=12)
    [18257.944924] wlan0: RX AssocResp from 00:1c:10:0c:20:57 (capab=0x431 status=12 aid=0)
    [18257.944926] wlan0: AP denied association (code=12)
    [18258.140112] wlan0: associate with AP 00:1c:10:0c:20:57
    [18258.147804] wlan0: RX AssocResp from 00:1c:10:0c:20:57 (capab=0x431 status=12 aid=0)
    [18258.147806] wlan0: AP denied association (code=12)
    [18258.148796] wlan0: RX AssocResp from 00:1c:10:0c:20:57 (capab=0x431 status=12 aid=0)
    [18258.148799] wlan0: AP denied association (code=12)
    [18258.340123] wlan0: association with AP 00:1c:10:0c:20:57 timed out
    [18269.263274] wlan0: authenticate with AP 00:1c:10:0c:20:57
    [18269.269767] wlan0: authenticated
    [18269.269770] wlan0: associate with AP 00:1c:10:0c:20:57
    [18269.278370] wlan0: RX AssocResp from 00:1c:10:0c:20:57 (capab=0x431 status=0 aid=1)
    [18269.278373] wlan0: associated
    [20154.193885] wlan0: deauthenticating by local choice (reason=14)
    [20154.195534] wlan0: deauthenticated
    [20172.073436] wlan0: authenticate with AP 00:1c:10:0c:20:57
    [20173.072106] wlan0: direct probe to AP 00:1c:10:0c:20:57 try 1
    [20173.074487] wlan0 direct probe responded
    [20173.074491] wlan0: authenticate with AP 00:1c:10:0c:20:57
    [20173.076284] wlan0: authenticated
    [20173.076287] wlan0: associate with AP 00:1c:10:0c:20:57
    [20173.078682] wlan0: RX AssocResp from 00:1c:10:0c:20:57 (capab=0x431 status=12 aid=0)
    [20173.078684] wlan0: AP denied association (code=12)
    [20173.276109] wlan0: associate with AP 00:1c:10:0c:20:57
    [20173.278454] wlan0: RX AssocResp from 00:1c:10:0c:20:57 (capab=0x431 status=12 aid=0)
    [20173.278457] wlan0: AP denied association (code=12)
    [20173.476108] wlan0: associate with AP 00:1c:10:0c:20:57
    [20173.478474] wlan0: RX AssocResp from 00:1c:10:0c:20:57 (capab=0x431 status=12 aid=0)
    [20173.478477] wlan0: AP denied association (code=12)
    [20173.676589] wlan0: association with AP 00:1c:10:0c:20:57 timed out
    [20183.626095] wlan0: authenticate with AP 00:1c:10:0c:20:57
    [20183.626592] wlan0: authenticate with AP 00:1c:10:0c:20:57
    [20183.628760] wlan0: authenticated
    [20183.628763] wlan0: associate with AP 00:1c:10:0c:20:57
    [20183.631402] wlan0: RX AssocResp from 00:1c:10:0c:20:57 (capab=0x431 status=12 aid=0)
    [20183.631405] wlan0: AP denied association (code=12)
    [20183.828111] wlan0: associate with AP 00:1c:10:0c:20:57
    [20183.830464] wlan0: RX AssocResp from 00:1c:10:0c:20:57 (capab=0x431 status=12 aid=0)
    [20183.830467] wlan0: AP denied association (code=12)
    [20184.028110] wlan0: associate with AP 00:1c:10:0c:20:57
    [20184.030479] wlan0: RX AssocResp from 00:1c:10:0c:20:57 (capab=0x431 status=12 aid=0)
    [20184.030481] wlan0: AP denied association (code=12)
    [20184.228053] wlan0: association with AP 00:1c:10:0c:20:57 timed out
    [20195.205515] wlan0: authenticate with AP 00:1c:10:0c:20:57
    [20195.207515] wlan0: authenticated
    [20195.207518] wlan0: associate with AP 00:1c:10:0c:20:57
    [20195.210029] wlan0: RX AssocResp from 00:1c:10:0c:20:57 (capab=0x431 status=12 aid=0)
    [20195.210031] wlan0: AP denied association (code=12)
    [20195.404148] wlan0: associate with AP 00:1c:10:0c:20:57
    [20195.406549] wlan0: RX AssocResp from 00:1c:10:0c:20:57 (capab=0x431 status=12 aid=0)
    [20195.406551] wlan0: AP denied association (code=12)
    [20195.604111] wlan0: associate with AP 00:1c:10:0c:20:57
    [20195.606464] wlan0: RX AssocResp from 00:1c:10:0c:20:57 (capab=0x431 status=12 aid=0)
    [20195.606467] wlan0: AP denied association (code=12)
    [20195.804111] wlan0: association with AP 00:1c:10:0c:20:57 timed out
    [20206.736938] wlan0: authenticate with AP 00:1c:10:0c:20:57
    [20206.738994] wlan0: authenticated
    [20206.738997] wlan0: associate with AP 00:1c:10:0c:20:57
    [20206.741395] wlan0: RX AssocResp from 00:1c:10:0c:20:57 (capab=0x431 status=12 aid=0)
    [20206.741398] wlan0: AP denied association (code=12)
    [20206.936318] wlan0: associate with AP 00:1c:10:0c:20:57
    [20206.938740] wlan0: RX AssocResp from 00:1c:10:0c:20:57 (capab=0x431 status=12 aid=0)
    [20206.938743] wlan0: AP denied association (code=12)
    [20207.136109] wlan0: associate with AP 00:1c:10:0c:20:57
    [20207.138480] wlan0: RX AssocResp from 00:1c:10:0c:20:57 (capab=0x431 status=12 aid=0)
    [20207.138483] wlan0: AP denied association (code=12)
    [20207.336110] wlan0: association with AP 00:1c:10:0c:20:57 timed out
    [20218.290852] wlan0: authenticate with AP 00:1c:10:0c:20:57
    [20218.292868] wlan0: authenticated
    [20218.292871] wlan0: associate with AP 00:1c:10:0c:20:57
    [20218.295609] wlan0: RX AssocResp from 00:1c:10:0c:20:57 (capab=0x431 status=0 aid=1)
    [20218.295612] wlan0: associated
    soverton@SteveO-Laptop:~$ dmesg | tail -50
    [20173.276109] wlan0: associate with AP 00:1c:10:0c:20:57
    [20173.278454] wlan0: RX AssocResp from 00:1c:10:0c:20:57 (capab=0x431 status=12 aid=0)
    [20173.278457] wlan0: AP denied association (code=12)
    [20173.476108] wlan0: associate with AP 00:1c:10:0c:20:57
    [20173.478474] wlan0: RX AssocResp from 00:1c:10:0c:20:57 (capab=0x431 status=12 aid=0)
    [20173.478477] wlan0: AP denied association (code=12)
    [20173.676589] wlan0: association with AP 00:1c:10:0c:20:57 timed out
    [20183.626095] wlan0: authenticate with AP 00:1c:10:0c:20:57
    [20183.626592] wlan0: authenticate with AP 00:1c:10:0c:20:57
    [20183.628760] wlan0: authenticated
    [20183.628763] wlan0: associate with AP 00:1c:10:0c:20:57
    [20183.631402] wlan0: RX AssocResp from 00:1c:10:0c:20:57 (capab=0x431 status=12 aid=0)
    [20183.631405] wlan0: AP denied association (code=12)
    [20183.828111] wlan0: associate with AP 00:1c:10:0c:20:57
    [20183.830464] wlan0: RX AssocResp from 00:1c:10:0c:20:57 (capab=0x431 status=12 aid=0)
    [20183.830467] wlan0: AP denied association (code=12)
    [20184.028110] wlan0: associate with AP 00:1c:10:0c:20:57
    [20184.030479] wlan0: RX AssocResp from 00:1c:10:0c:20:57 (capab=0x431 status=12 aid=0)
    [20184.030481] wlan0: AP denied association (code=12)
    [20184.228053] wlan0: association with AP 00:1c:10:0c:20:57 timed out
    [20190.862003] CE: hpet increasing min_delta_ns to 50624 nsec
    [20195.205515] wlan0: authenticate with AP 00:1c:10:0c:20:57
    [20195.207515] wlan0: authenticated
    [20195.207518] wlan0: associate with AP 00:1c:10:0c:20:57
    [20195.210029] wlan0: RX AssocResp from 00:1c:10:0c:20:57 (capab=0x431 status=12 aid=0)
    [20195.210031] wlan0: AP denied association (code=12)
    [20195.404148] wlan0: associate with AP 00:1c:10:0c:20:57
    [20195.406549] wlan0: RX AssocResp from 00:1c:10:0c:20:57 (capab=0x431 status=12 aid=0)
    [20195.406551] wlan0: AP denied association (code=12)
    [20195.604111] wlan0: associate with AP 00:1c:10:0c:20:57
    [20195.606464] wlan0: RX AssocResp from 00:1c:10:0c:20:57 (capab=0x431 status=12 aid=0)
    [20195.606467] wlan0: AP denied association (code=12)
    [20195.804111] wlan0: association with AP 00:1c:10:0c:20:57 timed out
    [20206.736938] wlan0: authenticate with AP 00:1c:10:0c:20:57
    [20206.738994] wlan0: authenticated
    [20206.738997] wlan0: associate with AP 00:1c:10:0c:20:57
    [20206.741395] wlan0: RX AssocResp from 00:1c:10:0c:20:57 (capab=0x431 status=12 aid=0)
    [20206.741398] wlan0: AP denied association (code=12)
    [20206.936318] wlan0: associate with AP 00:1c:10:0c:20:57
    [20206.938740] wlan0: RX AssocResp from 00:1c:10:0c:20:57 (capab=0x431 status=12 aid=0)
    [20206.938743] wlan0: AP denied association (code=12)
    [20207.136109] wlan0: associate with AP 00:1c:10:0c:20:57
    [20207.138480] wlan0: RX AssocResp from 00:1c:10:0c:20:57 (capab=0x431 status=12 aid=0)
    [20207.138483] wlan0: AP denied association (code=12)
    [20207.336110] wlan0: association with AP 00:1c:10:0c:20:57 timed out
    [20218.290852] wlan0: authenticate with AP 00:1c:10:0c:20:57
    [20218.292868] wlan0: authenticated
    [20218.292871] wlan0: associate with AP 00:1c:10:0c:20:57
    [20218.295609] wlan0: RX AssocResp from 00:1c:10:0c:20:57 (capab=0x431 status=0 aid=1)
    [20218.295612] wlan0: associated
    soverton@SteveO-Laptop:~$ ifconfig wlan0
    wlan0 Link encap:Ethernet HWaddr 00:21:6a:17:0d:84
    inet addr:192.168.1.111 Bcast:192.168.1.255 Mask:255.255.255.0
    inet6 addr: fe80::221:6aff:fe17:d84/64 Scope:Link
    UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
    RX packets:47764 errors:0 dropped:0 overruns:0 frame:0
    TX packets:25815 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:1000
    RX bytes:47456658 (47.4 MB) TX bytes:4240623 (4.2 MB)

    soverton@SteveO-Laptop:~$ iwconfig wlan0
    wlan0 IEEE 802.11abgn ESSID:"stank"
    Mode:Managed Frequency:2.412 GHz Access Point: 00:1C:10:0C:20:57
    Bit Rate=1 Mb/s Tx-Power=15 dBm
    Retry min limit:7 RTS thrff Fragment thr=2352 B
    Power Managementff
    Link Quality=100/100 Signal level:-28 dBm Noise level=-88 dBm
    Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0
    Tx excessive retries:0 Invalid misc:0 Missed beacon:0

    soverton@SteveO-Laptop:~$
    Can you help please?

  10. #70
    Join Date
    Aug 2007
    Location
    Paris
    Beans
    5,538
    Distro
    Ubuntu 11.04 Natty Narwhal

    Re: Does ubuntu supports Intel WiFi Link 5300 (AGN) network card?

    SteveONCSU: I think you're suffering from the bug reported here, since you're using the iwl driver and see the same line in dmesg about ""AP denied association (code=12)." Towards the end of the bug report (this comment), someone mentions that changing router speeds seems to help. Please give this a try.

    You could also try connecting with wicd instead of NetworkManager. I don't know if it will help, but it can't hurt.

    If none of the above helps, you can try compiling the wireless driver using the latest source code by first going to http://linuxwireless.org/download/compat-wireless-2.6/ and saving the file compat-wireless-2.6.tar.bz2 to your desktop, then running these commands:
    Code:
    sudo apt-get install build-essential
    cd ~/Desktop
    tar -xjvf compat-wireless-2.6.tar.bz2
    cd compat-wireless*
    make
    sudo make unload
    sudo make load
    sudo make install
    Then reboot for the new driver to take effect.

    Please let me know if any of this helps; if not, we can try other things.

    Also, is it only with one particular that you notice the crashes, or is it with any large file stored on your NAS?

Page 7 of 12 FirstFirst ... 56789 ... LastLast

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •