Page 1 of 3 123 LastLast
Results 1 to 10 of 24

Thread: Atheros AR9285 / Ubuntu 11.10 / Toshiba NB305 netbook

  1. #1
    Join Date
    Dec 2011
    Location
    Laramie WY
    Beans
    15
    Distro
    Ubuntu 20.04 Focal Fossa

    Atheros AR9285 / Ubuntu 11.10 / Toshiba NB305 netbook

    Wireless worked fine with Ubuntu 11.04 on this netbook. I also have a desktop (Ubuntu 11.04 & Windows XP dual-boot) and wireless on it works well too.

    After doing a clean install of 11.10 I have very slow and erratic wireless performance; most access attempts time out (eventually if not immediately).

    After looking at similar posts here is the results of running the commands typically requested:

    Code:
    cat /etc/lsb-release; uname -a
    
    DISTRIB_ID=Ubuntu
    DISTRIB_RELEASE=11.10
    DISTRIB_CODENAME=oneiric
    DISTRIB_DESCRIPTION="Ubuntu 11.10"
    Linux netbook 3.0.0-12-generic #20-Ubuntu SMP Fri Oct 7 14:56:25 UTC 2011 x86_64 x86_64 x86_64 GNU/Linux
    Code:
    lspci -nnk | grep -iA2 net
    
    07:00.0 Network controller [0280]: Atheros Communications Inc. AR9285 Wireless Network Adapter (PCI-Express) [168c:002b] (rev 01)
    	Subsystem: Accton Technology Corporation Device [1113:e811]
    	Kernel driver in use: ath9k
    --
    09:00.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. RTL8101E/RTL8102E PCI Express Fast Ethernet controller [10ec:8136] (rev 02)
    	Subsystem: Toshiba America Info Systems Device [1179:ff30]
    	Kernel driver in use: r8169
    Code:
    iwconfig
    
    lo        no wireless extensions.
    
    eth0      no wireless extensions.
    
    wlan0     IEEE 802.11bgn  ESSID:"SiPorFavor"  
              Mode:Managed  Frequency:2.442 GHz  Access Point: AC:81:12:85:48:35   
              Bit Rate=65 Mb/s   Tx-Power=14 dBm   
              Retry  long limit:7   RTS thr:off   Fragment thr:off
              Power Management:off
              Link Quality=59/70  Signal level=-51 dBm  
              Rx invalid nwid:0  Rx invalid crypt:0  Rx invalid frag:0
              Tx excessive retries:0  Invalid misc:2   Missed beacon:0
    Code:
    rfkill list all
    
    0: phy0: Wireless LAN
    	Soft blocked: no
    	Hard blocked: no
    Code:
    rfkill list all
    
    0: phy0: Wireless LAN
    	Soft blocked: no
    	Hard blocked: no
    Code:
    lsmod
    
    Module                  Size  Used by
    nls_iso8859_1          12713  1 
    nls_cp437              16991  1 
    vfat                   17585  1 
    fat                    61475  1 vfat
    bnep                   18436  2 
    rfcomm                 47946  0 
    bluetooth             166112  10 bnep,rfcomm
    parport_pc             36962  0 
    ppdev                  17113  0 
    joydev                 17693  0 
    binfmt_misc            17540  1 
    snd_hda_codec_realtek   330769  1 
    uvcvideo               72711  0 
    videodev               93004  1 uvcvideo
    v4l2_compat_ioctl32    17083  1 videodev
    snd_hda_intel          33390  2 
    snd_hda_codec         104802  2 snd_hda_codec_realtek,snd_hda_intel
    snd_hwdep              13668  1 snd_hda_codec
    snd_pcm                96755  2 snd_hda_intel,snd_hda_codec
    arc4                   12529  2 
    snd_seq_midi           13324  0 
    snd_rawmidi            30547  1 snd_seq_midi
    snd_seq_midi_event     14899  1 snd_seq_midi
    ath9k                 127538  0 
    mac80211              310872  1 ath9k
    snd_seq                61896  2 snd_seq_midi,snd_seq_midi_event
    ath9k_common           13839  1 ath9k
    psmouse                73882  0 
    ath9k_hw              312866  2 ath9k,ath9k_common
    serio_raw              13166  0 
    snd_timer              29991  2 snd_pcm,snd_seq
    ath                    24067  2 ath9k,ath9k_hw
    snd_seq_device         14540  3 snd_seq_midi,snd_rawmidi,snd_seq
    cfg80211              199587  3 ath9k,mac80211,ath
    i915                  566711  3 
    snd                    68266  13 snd_hda_codec_realtek,snd_hda_intel,snd_hda_codec,snd_hwdep,snd_pcm,snd_rawmidi,snd_seq,snd_timer,snd_seq_device
    drm_kms_helper         42558  1 i915
    drm                   236330  4 i915,drm_kms_helper
    soundcore              12680  1 snd
    snd_page_alloc         18529  2 snd_hda_intel,snd_pcm
    sparse_keymap          13890  0 
    i2c_algo_bit           13423  1 i915
    video                  19412  1 i915
    lp                     17799  0 
    parport                46562  3 parport_pc,ppdev,lp
    ums_realtek            13272  0 
    usb_storage            57901  2 ums_realtek
    uas                    18027  0 
    ahci                   26002  3 
    libahci                26861  1 ahci
    r8169                  52788  0
    Thanks in advance for any help you can offer.

    Kevin

  2. #2
    Join Date
    Aug 2011
    Location
    Berlin, Germany
    Beans
    7,970
    Distro
    Ubuntu Mate 20.04 Focal Fossa

    Re: Atheros AR9285 / Ubuntu 11.10 / Toshiba NB305 netbook

    Hi,

    deactivate the hardware encryption of the driver (software encryption WEP/WPA/WPA2 not affected):

    Code:
    echo "options ath9k nohwcrypt=1" | sudo tee /etc/modprobe.d/ath9k.conf
    sudo modprobe -rfv ath9k
    sudo modprobe -v ath9k
    This is a kind of bug in 11.10

  3. #3
    Join Date
    Dec 2011
    Location
    Laramie WY
    Beans
    15
    Distro
    Ubuntu 20.04 Focal Fossa

    Re: Atheros AR9285 / Ubuntu 11.10 / Toshiba NB305 netbook

    Hi praseodym,

    I tried the solution that you suggested but my wireless performance did not change.
    Any other ideas?

    Kevin

  4. #4
    Join Date
    Aug 2011
    Location
    Berlin, Germany
    Beans
    7,970
    Distro
    Ubuntu Mate 20.04 Focal Fossa

    Re: Atheros AR9285 / Ubuntu 11.10 / Toshiba NB305 netbook

    Which encryption mode do you use I recommend WPA2-AES (CCMP) instead of mixed WPA/WPA2 or even WEP. The network-manager often has problems with that.

  5. #5
    Join Date
    Dec 2011
    Location
    Laramie WY
    Beans
    15
    Distro
    Ubuntu 20.04 Focal Fossa

    Re: Atheros AR9285 / Ubuntu 11.10 / Toshiba NB305 netbook

    I have been using "WPA & WPA2 Personal".

    The options listed for Wireless Security on my PC are:
    * WEP 40/128-bet Key
    * WEP 128-bit Passphrase
    * LEAP
    * Dynamic WEP (802.1x)
    * WPA & WPA2 Personal
    * WPA & WPA2 Enterprise

    WPA2-AES is not listed as an option.

    Are any of these other choices worth trying?

    Kevin

  6. #6
    Join Date
    Aug 2011
    Location
    Berlin, Germany
    Beans
    7,970
    Distro
    Ubuntu Mate 20.04 Focal Fossa

    Re: Atheros AR9285 / Ubuntu 11.10 / Toshiba NB305 netbook

    You need to change the encryption mode in your router interface. Connect via cable (because you change setting for wireless) and type in the IP address of the router into your browser. "WPA&WPA2 Personal" is right then

  7. #7
    Join Date
    Dec 2011
    Location
    Laramie WY
    Beans
    15
    Distro
    Ubuntu 20.04 Focal Fossa

    Re: Atheros AR9285 / Ubuntu 11.10 / Toshiba NB305 netbook

    Hi praseodym,

    Thank you for your assistance with this wireless problem.

    I am able to access the router successfully using a cable and following your directions. My settings in the router to begin with are:
    * Authentication = WPA-WPA2-Mixed_PSK
    * Encryption = TKIP

    Per your earlier post I made these changes in the router:
    * Authentication = WPA2 PSK
    * Encryption = AES

    On my netbook, I kept security set to "WPA & WPA2 Personal".
    After rebooting both my netbook and the router/modem my wireless is still not working.


    While I was accessing the router, I noticed that authentication can be changed to "WPA2". But when this is done, a new configuration block labeled "802.1x Setting" appears. All the fields in this block are filled with default values with one exception -- the "Radius server". I have no idea what this should be -- and something needs to be input into this field before this configuration change is accepted (IOW I get an error message when the "Radius server" field is left blank and I try to save the configuration).

    I am open to any more suggestions you may have.

    Kevin

  8. #8
    Join Date
    Aug 2011
    Location
    Berlin, Germany
    Beans
    7,970
    Distro
    Ubuntu Mate 20.04 Focal Fossa

    Re: Atheros AR9285 / Ubuntu 11.10 / Toshiba NB305 netbook

    Ok, some more info:

    Code:
    dmesg | egrep 'ath|country'
    iwlist chan
    sudo iwlist scan
    route -n
    cat /etc/resolv.conf

  9. #9
    Join Date
    Dec 2011
    Location
    Laramie WY
    Beans
    15
    Distro
    Ubuntu 20.04 Focal Fossa

    Re: Atheros AR9285 / Ubuntu 11.10 / Toshiba NB305 netbook

    Here is the response to your code request.

    Code:
    dmesg | egrep 'ath|country'
    
    [    9.989209] ath9k 0000:07:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
    [    9.989241] ath9k 0000:07:00.0: setting latency timer to 64
    [   10.042144] ath: EEPROM regdomain: 0x65
    [   10.042154] ath: EEPROM indicates we should expect a direct regpair map
    [   10.042166] ath: Country alpha2 being used: 00
    [   10.042173] ath: Regpair used: 0x65
    [   10.076708] ieee80211 phy0: Selected rate control algorithm 'ath9k_rate_control'
    [   10.080482] Registered led device: ath9k-phy0
    [   11.081146] type=1400 audit(1324654386.324:9): apparmor="STATUS" operation="profile_load" name="/usr/lib/telepathy/mission-control-5" pid=812 comm="apparmor_parser"
    [   11.097728] type=1400 audit(1324654386.340:10): apparmor="STATUS" operation="profile_load" name="/usr/lib/telepathy/telepathy-*" pid=812 comm="apparmor_parser"
    Code:
    iwlist chan
    
    lo        no frequency information.
    
    eth0      no frequency information.
    
    wlan0     13 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
              Channel 12 : 2.467 GHz
              Channel 13 : 2.472 GHz
              Current Frequency:2.442 GHz (Channel 7)
    Code:
    sudo iwlist scan
    
    lo        Interface doesn't support scanning.
    
    eth0      Interface doesn't support scanning.
    
    wlan0     Scan completed :
              Cell 01 - Address: 00:1F:33:CF:31:BA
                        Channel:2
                        Frequency:2.417 GHz (Channel 2)
                        Quality=35/70  Signal level=-75 dBm  
                        Encryption key:on
                        ESSID:"nope"
                        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
                        Bit Rates:6 Mb/s; 9 Mb/s; 12 Mb/s; 48 Mb/s
                        Mode:Master
                        Extra:tsf=000001d8ce3ea183
                        Extra: Last beacon: 808ms ago
                        IE: Unknown: 00046E6F7065
                        IE: Unknown: 010882848B962430486C
                        IE: Unknown: 030102
                        IE: Unknown: 2A0100
                        IE: Unknown: 2F0100
                        IE: Unknown: 32040C121860
                        IE: Unknown: DD8A0050F204104A00011010440001021041000100103B0001031047001062A5DA38EC54A56131E2117D506CDE851021000D4E4554474541522C20496E632E1023000857475236313476381024000857475236313476381042000538333235381054000800060050F20400011011001657475236313476382028576972656C65737320415029100800020084
                        IE: Unknown: DD090010180200F0000000
                        IE: WPA Version 1
                            Group Cipher : TKIP
                            Pairwise Ciphers (1) : TKIP
                            Authentication Suites (1) : PSK
                        IE: Unknown: DD180050F2020101800003A4000027A4000042435E0062322F00
              Cell 02 - Address: 00:23:F8:A6:E3:63
                        Channel:6
                        Frequency:2.437 GHz (Channel 6)
                        Quality=37/70  Signal level=-73 dBm  
                        Encryption key:on
                        ESSID:"ZyXEL_363"
                        Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 22 Mb/s
                        Bit Rates:6 Mb/s; 9 Mb/s; 12 Mb/s; 18 Mb/s; 24 Mb/s
                                  36 Mb/s; 48 Mb/s; 54 Mb/s
                        Mode:Master
                        Extra:tsf=0000023b2e3911c6
                        Extra: Last beacon: 524ms ago
                        IE: Unknown: 00095A7958454C5F333633
                        IE: Unknown: 010582848B962C
                        IE: Unknown: 030106
                        IE: Unknown: 2A0104
                        IE: Unknown: 32080C1218243048606C
              Cell 03 - Address: 02:2A:8A:DC:2E:DB
                        Channel:6
                        Frequency:2.437 GHz (Channel 6)
                        Quality=27/70  Signal level=-83 dBm  
                        Encryption key:off
                        ESSID:"HP-nomodel.9E6E48"
                        Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 6 Mb/s
                                  9 Mb/s; 12 Mb/s; 18 Mb/s
                        Bit Rates:24 Mb/s; 36 Mb/s; 48 Mb/s; 54 Mb/s
                        Mode:Ad-Hoc
                        Extra:tsf=00000078ce73e3bc
                        Extra: Last beacon: 568ms ago
                        IE: Unknown: 001148502D6E6F6D6F64656C2E394536453438
                        IE: Unknown: 010882848B960C121824
                        IE: Unknown: 030106
                        IE: Unknown: 06020000
                        IE: Unknown: 2A0100
                        IE: Unknown: 32043048606C
              Cell 04 - Address: AC:81:12:85:48:35
                        Channel:7
                        Frequency:2.442 GHz (Channel 7)
                        Quality=52/70  Signal level=-58 dBm  
                        Encryption key:on
                        ESSID:"SiPorFavor"
                        Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 9 Mb/s
                                  18 Mb/s; 36 Mb/s; 54 Mb/s
                        Bit Rates:6 Mb/s; 12 Mb/s; 24 Mb/s; 48 Mb/s
                        Mode:Master
                        Extra:tsf=0000000bd4c7a426
                        Extra: Last beacon: 44ms ago
                        IE: Unknown: 000A5369506F724661766F72
                        IE: Unknown: 010882848B961224486C
                        IE: Unknown: 030107
                        IE: Unknown: 2A0100
                        IE: Unknown: 32040C183060
                        IE: Unknown: 2D1A6E1017FF00000001000000000000000000000000000000000000
                        IE: Unknown: 3D1607000700000000000000000000000000000000000000
                        IE: Unknown: 3E0100
                        IE: WPA Version 1
                            Group Cipher : CCMP
                            Pairwise Ciphers (1) : CCMP
                            Authentication Suites (1) : PSK
                        IE: IEEE 802.11i/WPA2 Version 1
                            Group Cipher : CCMP
                            Pairwise Ciphers (1) : CCMP
                            Authentication Suites (1) : PSK
                        IE: Unknown: DD180050F2020101030003A4000027A4000042435E0062322F00
                        IE: Unknown: 0B05020008127A
                        IE: Unknown: 4A0E14000A002C01C800140005001900
                        IE: Unknown: 7F0101
                        IE: Unknown: DD07000C4300000000
                        IE: Unknown: 0706313920010910
              Cell 05 - Address: 68:7F:74:84:B2:40
                        Channel:6
                        Frequency:2.437 GHz (Channel 6)
                        Quality=24/70  Signal level=-86 dBm  
                        Encryption key:on
                        ESSID:"Blessed"
                        Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 6 Mb/s
                                  9 Mb/s; 12 Mb/s; 18 Mb/s
                        Bit Rates:24 Mb/s; 36 Mb/s; 48 Mb/s; 54 Mb/s
                        Mode:Master
                        Extra:tsf=0000000ad023c180
                        Extra: Last beacon: 624ms ago
                        IE: Unknown: 0007426C6573736564
                        IE: Unknown: 010882848B960C121824
                        IE: Unknown: 030106
                        IE: Unknown: 050400010000
                        IE: Unknown: 2A0100
                        IE: IEEE 802.11i/WPA2 Version 1
                            Group Cipher : TKIP
                            Pairwise Ciphers (1) : CCMP
                            Authentication Suites (1) : PSK
                           Preauthentication Supported
                        IE: WPA Version 1
                            Group Cipher : TKIP
                            Pairwise Ciphers (1) : TKIP
                            Authentication Suites (1) : PSK
                        IE: Unknown: 32043048606C
                        IE: Unknown: DD180050F2020101020003A4000027A4000042435E0062322F00
                        IE: Unknown: DD0900037F01010000FF7F
                        IE: Unknown: DD0A00037F04010000000000
                        IE: Unknown: DD0E0050F204104A0001101044000102
              Cell 06 - Address: 00:1A:70:7F:9E:82
                        Channel:9
                        Frequency:2.452 GHz (Channel 9)
                        Quality=20/70  Signal level=-90 dBm  
                        Encryption key:on
                        ESSID:"EVH"
                        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
                        Bit Rates:6 Mb/s; 9 Mb/s; 12 Mb/s; 48 Mb/s
                        Mode:Master
                        Extra:tsf=0000003932db8fd0
                        Extra: Last beacon: 432ms ago
                        IE: Unknown: 0003455648
                        IE: Unknown: 010882848B962430486C
                        IE: Unknown: 030109
                        IE: Unknown: 2A0104
                        IE: Unknown: 2F0104
                        IE: Unknown: 32040C121860
                        IE: Unknown: DD09001018020015000000
                        IE: WPA Version 1
                            Group Cipher : TKIP
                            Pairwise Ciphers (1) : TKIP
                            Authentication Suites (1) : PSK
              Cell 07 - Address: C0:C1:C0:06:3E:F0
                        Channel:1
                        Frequency:2.412 GHz (Channel 1)
                        Quality=24/70  Signal level=-86 dBm  
                        Encryption key:on
                        ESSID:"Cisco"
                        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
                        Bit Rates:6 Mb/s; 9 Mb/s; 12 Mb/s; 48 Mb/s
                        Mode:Master
                        Extra:tsf=000000af29b94186
                        Extra: Last beacon: 856ms ago
                        IE: Unknown: 0005436973636F
                        IE: Unknown: 010882848B962430486C
                        IE: Unknown: 030101
                        IE: Unknown: 050400010000
                        IE: Unknown: 2A0100
                        IE: Unknown: 2F0100
                        IE: IEEE 802.11i/WPA2 Version 1
                            Group Cipher : TKIP
                            Pairwise Ciphers (2) : CCMP TKIP
                            Authentication Suites (1) : PSK
                        IE: Unknown: 32040C121860
                        IE: Unknown: 2D1AFC181BFFFF000000000000000000000000000000000000000000
                        IE: Unknown: 3D1601001300000000000000000000000000000000000000
                        IE: Unknown: 4A0E14000A002C01C800140005001900
                        IE: Unknown: 7F0101
                        IE: Unknown: DD0E0050F204104A0001101044000102
                        IE: Unknown: DD090010180201F0040000
                        IE: WPA Version 1
                            Group Cipher : TKIP
                            Pairwise Ciphers (2) : CCMP TKIP
                            Authentication Suites (1) : PSK
                        IE: Unknown: DD180050F2020101000003A4000027A4000042435E0062322F00
              Cell 08 - Address: 00:23:F8:98:6D:FB
                        Channel:6
                        Frequency:2.437 GHz (Channel 6)
                        Quality=16/70  Signal level=-94 dBm  
                        Encryption key:on
                        ESSID:"ZyXEL_DFB"
                        Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 22 Mb/s
                        Bit Rates:6 Mb/s; 9 Mb/s; 12 Mb/s; 18 Mb/s; 24 Mb/s
                                  36 Mb/s; 48 Mb/s; 54 Mb/s
                        Mode:Master
                        Extra:tsf=0000055fc3c9e1b6
                        Extra: Last beacon: 628ms ago
                        IE: Unknown: 00095A7958454C5F444642
                        IE: Unknown: 010582848B962C
                        IE: Unknown: 030106
                        IE: Unknown: 050C010300180000000000000000
                        IE: Unknown: 2A0104
                        IE: Unknown: 32080C1218243048606C
              Cell 09 - Address: 94:44:52:63:43:C5
                        Channel:11
                        Frequency:2.462 GHz (Channel 11)
                        Quality=18/70  Signal level=-92 dBm  
                        Encryption key:on
                        ESSID:"Belkin.33C5"
                        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
                        Bit Rates:6 Mb/s; 9 Mb/s; 12 Mb/s; 48 Mb/s
                        Mode:Master
                        Extra:tsf=00000025a109d18e
                        Extra: Last beacon: 304ms ago
    Code:
    route -n
    
    Kernel IP routing table
    Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
    0.0.0.0         192.168.15.1    0.0.0.0         UG    0      0        0 wlan0
    169.254.0.0     0.0.0.0         255.255.0.0     U     1000   0        0 wlan0
    192.168.15.0    0.0.0.0         255.255.255.0   U     2      0        0 wlan0
    Code:
    cat /etc/resolv.conf
    
    # Generated by NetworkManager
    nameserver 192.168.15.1
    Kevin

  10. #10
    Join Date
    Aug 2011
    Location
    Berlin, Germany
    Beans
    7,970
    Distro
    Ubuntu Mate 20.04 Focal Fossa

    Re: Atheros AR9285 / Ubuntu 11.10 / Toshiba NB305 netbook

    Your network on channel 7 is still WPA/WPA2 mixed. Remove your current profile in the network-manager and setup a new one. Which country do you live? I also recommend using another channel instead of 7, a lot of traffic on channel 6 around it.

Page 1 of 3 123 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
  •