Page 1 of 6 123 ... LastLast
Results 1 to 10 of 60

Thread: Intel Wireless AC 7260

Hybrid View

  1. #1
    Join Date
    Jun 2014
    Beans
    41

    Intel Wireless AC 7260

    Hello i recently installed ubunut and my wifi keeps droppin i dont know why, is there anyway to fix this if there can you please help me?

  2. #2
    Join Date
    Mar 2010
    Location
    India
    Beans
    8,116

    Re: wif keeps dropping dont know why

    Welcome to the forums rafael10 !

    Please follow the instructions in this post to download and run wireless_script, and post back the report it generates : http://ubuntuforums.org/showpost.php?p=13024222

    This report shall help us find and fix the problem with your wireless.
    Varun
    Help others by marking threads as [SOLVED], if they are. (See how)
    Wireless Script | Use Code Tags

  3. #3
    Join Date
    Jun 2014
    Beans
    41

    Re: wif keeps dropping dont know why

    Code:
    #!/bin/bash
    #
    # Copyright (c) 2012
    #
    # Authors: Wild Man, Krytarik
    # Helpers: chili555
    #
    # This script gathers the infos necessary for troubleshooting a wireless
    # connection and saves them in a text file, wrapping it in an archive if it
    # exceeds the size limit of 19.5 kB for .txt files on the Ubuntu Forums.
    #
    ############################################################################
    #
    # This program is free software: you can redistribute it and/or modify
    # it under the terms of the GNU General Public License as published by
    # the Free Software Foundation, either version 3 of the License, or
    # (at your option) any later version.
    #
    # This program is distributed in the hope that it will be useful,
    # but WITHOUT ANY WARRANTY; without even the implied warranty of
    # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    # GNU General Public License for more details.
    #
    # You should have received a copy of the GNU General Public License
    # along with this program.  If not, see <http://www.gnu.org/licenses/>.
    #
    
    FILEBASE="wireless-info"
    MODMATCHES="(air|ar5|ath|carl|at7|iwl|ipw|rt(2|3|5|6|7)|rtl|r(818|871)|8192(cu|du)|ssb|wl|b43|bcma|brcm|eth1|ndis|wlan0|firm|etwork)[^[:punct:] ]*"
    
    exec 3>&1 4>&2
    exec 1> $FILEBASE.txt 2> /dev/null
    if [ "$?" != "0" ]; then
        printf "\nCannot write output file, aborting.\n\n"
        exit 1
    fi
    
    printf "\n########## wireless info START ##########\n"
    
    printf "\n##### release #####\n\n"
    lsb_release -idrc
    
    printf "\n##### kernel #####\n\n"
    uname -a
    
    printf "\n##### lspci #####\n\n"
    lspci -nnk | grep -iA2 net | sed 's/^--$//'
    
    printf "\n##### lsusb #####\n\n"
    lsusb
    
    printf "\n##### PCMCIA Card Info #####\n\n"
    pccardctl info
    
    printf "\n##### rfkill #####\n\n"
    rfkill list all
    
    printf "\n##### iw reg get #####\n\n"
    iw reg get
    
    printf "\n##### interfaces #####\n\n"
    sed 's/wpa-psk [[:graph:]]\+/wpa-psk <WPA key removed>/' /etc/network/interfaces
    
    printf "\n##### iwconfig #####\n\n"
    iwconfig
    
    printf "\n##### route #####\n\n"
    route -n
    
    printf "\n##### resolv.conf #####\n\n"
    grep -v '^#' /etc/resolv.conf
    
    printf "\n##### nm-tool #####\n"
    nm-tool
    
    printf "\n##### NetworkManager.state #####\n\n"
    cat -s /var/lib/NetworkManager/NetworkManager.state
    
    printf "\n##### NetworkManager.conf #####\n\n"
    grep -v '^#' /etc/NetworkManager/NetworkManager.conf
    if [ -f /etc/NetworkManager/nm-system-settings.conf ]; then
        printf "nm-system-settings.conf (used up to 10.04):\n"
        grep -v '^#' /etc/NetworkManager/nm-system-settings.conf
    fi
    
    printf "\n##### iwlist #####\n\n"
    if [ -t 0 ]; then
        sudo iwlist scan || echo "Aquiring of root rights failed."
    elif [ -x /usr/bin/gksudo ]; then
        gksudo iwlist scan || echo "Aquiring of root rights failed."
    elif [ -x /usr/bin/kdesudo ]; then
        kdesudo iwlist scan || echo "Aquiring of root rights failed."
    else
        echo "No way to aquire root rights found."
    fi
    
    printf "\n##### iwlist channel #####\n\n"
    iwlist chan
    
    printf "\n##### lsmod #####\n\n"
    lsmod | egrep "(^|[[:punct:] ])${MODMATCHES}([[:punct:] ]|$)"
    
    printf "\n##### modinfo #####\n\n"
    MODULNAMES=$(lsmod | egrep "^$MODMATCHES" | awk '{print $1}')
    for MODULE in $MODULNAMES; do
        modinfo $MODULE
        echo
    done
    
    printf "\n##### modules #####\n\n"
    grep -v '^#' /etc/modules
    
    printf "\n##### blacklist #####\n"
    for CONFFILE in /etc/modprobe.d/*.conf; do
        if [[ -n $(egrep -v '/etc/modprobe.d/(alsa-base|blacklist-(firewire|framebuffer|modem|oss|watchdog)|fglrx|nvidia)' <<< $CONFFILE) ]]; then
        BLACKLIST=$(grep '^blacklist' $CONFFILE)
        if [ -n "$BLACKLIST" ]; then
            printf "\n[%s]\n%s\n" $CONFFILE "$BLACKLIST"
        fi
        fi
    done
    
    printf "\n##### udev rules #####\n"
    egrep '^(#.*device|[^#]|$)' /etc/udev/rules.d/70-persistent-net.rules
    
    printf "\n##### dmesg #####\n\n"
    dmesg | egrep "[[:punct:] ]${MODMATCHES}[[:punct:] ]"
    
    printf "\n########## wireless info END ############\n\n"
    
    exec 1>&3 3>&-
    exec 2>&4 4>&-
    
    RESULTS=$(cat -s $FILEBASE.txt)
    sed 's/\([[:alnum:]][[:alnum:]]:\)\{5\}[[:alnum:]][[:alnum:]]/<MAC address removed>/' <<< "$RESULTS" > $FILEBASE.txt
    
    if [ $(stat -c %s $FILEBASE.txt) -gt 19968 ]; then
        tar -czf $FILEBASE.tar.gz $FILEBASE.txt
        rm $FILEBASE.txt
        printf "\nResults archived in \"%s.tar.gz\", as they exceed the 19.5 kB size limit for .txt files on the Ubuntu Forums.\n\n" "$FILEBASE"
    else
        printf "\nResults saved in \"%s.txt\".\n\n" "$FILEBASE"
    Last edited by lisati; June 1st, 2014 at 08:19 PM. Reason: Added [code] and [/code] tags to aid readability

  4. #4
    Join Date
    Jun 2007
    Location
    Paraparaumu, New Zealand
    Beans
    Hidden!

    Re: wif keeps dropping dont know why

    Thread moved to Networking & Wireless.
    @rafael10: it looks like you've posted the contents of the script, and not the results.
    Forum DOs and DON'Ts
    Please use CODE tags
    Including your email address in a post is not recommended
    My Blog

  5. #5
    Join Date
    Oct 2011
    Location
    Galiza
    Beans
    3,380
    Distro
    Ubuntu Development Release

    Re: wif keeps dropping dont know why

    Hi, welcome.

    Without other info little can be done...
    There are already many topics in the specialized section - http://ubuntuforums.org/forumdisplay.php?f=336 -. Perhaps you should search for issues specific to your wifi device and OS version in the Networking & Wireless section and/or post there with informations about your hardware, namely the WiFi of course, and Ubuntu version and whether it is 32 or 64-bit.
    Galiza Nação!

  6. #6
    Join Date
    Jun 2014
    Beans
    41

    Re: wif keeps dropping dont know why

    Code:
        ======== Wireless-Info START ========
    
    System-Info ~~~~~~~~~~~~~~~~~~~~~~~~
    
    Alpha 3.13.0-27-generic x86_64,  Ubuntu 14.04 LTS, trusty
    
    CPU    : Intel(R) Core(TM) i5-4200U CPU @ 1.60GHz
    Memory : 7869 MB
    Uptime : 12:22:18 up  1:22,  2 users,  load average: 0.10, 0.18, 0.39
    
    
    lspci ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    
    02:00.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller [10ec:8168] (rev 0c)
        Subsystem: ASUSTeK Computer Inc. Device [1043:200f]
        Kernel driver in use: r8169
    03:00.0 Network controller [0280]: Intel Corporation Wireless 7260 [8086:08b1] (rev 6b)
        Subsystem: Intel Corporation Dual Band Wireless-AC 7260 [8086:4170]
        Kernel driver in use: iwlwifi
    
    
    lsusb ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    
    Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
    Bus 001 Device 009: ID 0bda:0139 Realtek Semiconductor Corp. RTS5139 Card Reader Controller
    Bus 001 Device 017: ID 04f3:010c Elan Microelectronics Corp. 
    Bus 001 Device 004: ID 04f2:b3fd Chicony Electronics Co., Ltd 
    Bus 001 Device 003: ID 8087:07dc Intel Corp. 
    Bus 001 Device 002: ID 046d:c52f Logitech, Inc. Unifying Receiver
    Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
    
    
    PCMCIA Card Info ~~~~~~~~~~~~~~~~~~~
    
    
    
    iwconfig ~~~~~~~~~~~~~~~~~~~~~~~~~~~
    
    wlan0     IEEE 802.11abgn  ESSID:"belkin.986"  
              Mode:Managed  Frequency:2.412 GHz  Access Point: <MAC C-01 belkin.986>   
              Bit Rate=150 Mb/s   Tx-Power=16 dBm   
              Retry  long limit:7   RTS thr:off   Fragment thr:off
              Power Management:on
              Link Quality=54/70  Signal level=-56 dBm  
              Rx invalid nwid:0  Rx invalid crypt:0  Rx invalid frag:0
              Tx excessive retries:0  Invalid misc:34   Missed beacon:0
    
    
    
    rfkill ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    
          Interface               Soft blocked  Hard blocked
    0: asus-wlan: Wireless LAN        no            no
    1: asus-bluetooth: Bluetooth      no            no
    2: phy0: Wireless LAN             no            no
    4: hci0: Bluetooth                no            no
    
    
    lsmod ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    
    iwlmvm                189774  0 
    mac80211              626511  1 iwlmvm
    iwlwifi               169932  1 iwlmvm
    asus_nb_wmi            16990  0 
    asus_wmi               24191  1 asus_nb_wmi
    sparse_keymap          13948  1 asus_wmi
    cfg80211              484040  3 iwlwifi,mac80211,iwlmvm
    wmi                    19177  1 asus_wmi
    video                  19476  2 i915,asus_wmi
    
    
    module parameters ~~~~~~~~~~~~~~~~~~
    
    asus_nb_wmi   (1): wapf=0
    cfg80211      (2): cfg80211_disable_40mhz_24ghz=N | ieee80211_regdom=00
    iwlmvm        (2): init_dbg=N | power_scheme=2
    iwlwifi      (11): 11n_disable=0 | amsdu_size_8K=0 | antenna_coupling=0 | bt_coex_active=Y | fw_restart=Y | led_mode=0 | nvm_file=(null) | power_level=0 | power_save=N | swcrypto=0 | wd_disable=1
    mac80211      (5): beacon_loss_count=7 | ieee80211_default_rc_algo=minstrel_ht | max_nullfunc_tries=2 | max_probe_tries=5 | probe_wait_ms=500
    video         (3): allow_duplicates=N | brightness_switch_enabled=Y | use_native_backlight=-1
    wmi           (2): debug_dump_wdg=N | debug_event=N
    
    
    nm-tool ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    
    State: connected (global)
    =====================o=============o=========o==============o=========o===========o==============o===========
     Interface & ID      | Type        | Driver  | State        | Default | Speed     | Support      | HW Addr   
    =====================o=============o=========o==============o=========o===========o==============o===========
     wlan0  [belkin.986] | 802.11 WiFi | iwlwifi | connected    | yes     | 150 Mb/s  | WEP/WPA/WPA2 | <MAC wlan0>
    
        2WIRE951:        Infra, <MAC C-03 2WIRE951>, Freq 2437 MHz, Rate 54 Mb/s, Strength 69 WPA WPA2
        MyCharterWiFi71-2G: Infra, <MAC C-02 MyCharterWiFi71-2G>, Freq 2427 MHz, Rate 54 Mb/s, Strength 42 WPA2
        ATTd8bhWuI:      Infra, <MAC C-05 ATTd8bhWuI>, Freq 2462 MHz, Rate 54 Mb/s, Strength 34 WPA WPA2
        2WIRE132:        Infra, <MAC C-NA 2WIRE132 1>, Freq 2457 MHz, Rate 54 Mb/s, Strength 30 WPA WPA2
        NETGEAR60:       Infra, <MAC C-NA NETGEAR60 1>, Freq 2462 MHz, Rate 54 Mb/s, Strength 29 WPA2
        2WIRE247:        Infra, <MAC C-NA 2WIRE247 1>, Freq 2437 MHz, Rate 54 Mb/s, Strength 29 WPA WPA2
        NETGEAR95:       Infra, <MAC C-NA NETGEAR95 1>, Freq 2412 MHz, Rate 54 Mb/s, Strength 27 WPA2
        EFD:             Infra, <MAC C-NA EFD 1>, Freq 2437 MHz, Rate 54 Mb/s, Strength 25 WPA2
        NETGEAR63:       Infra, <MAC C-NA NETGEAR63 1>, Freq 2412 MHz, Rate 54 Mb/s, Strength 24 WPA2
        2WIRE435:        Infra, <MAC C-NA 2WIRE435 1>, Freq 2447 MHz, Rate 54 Mb/s, Strength 29 WPA WPA2
        2WIRE497:        Infra, <MAC C-NA 2WIRE497 1>, Freq 2422 MHz, Rate 54 Mb/s, Strength 22 WPA WPA2
        2WIRE000:        Infra, <MAC C-NA 2WIRE000 1>, Freq 2462 MHz, Rate 54 Mb/s, Strength 25 WPA WPA2
        *belkin.986:     Infra, <MAC C-01 belkin.986>, Freq 2412 MHz, Rate 54 Mb/s, Strength 52 WPA WPA2
        2WIRE973:        Infra, <MAC C-04 2WIRE973>, Freq 2452 MHz, Rate 54 Mb/s, Strength 32 WPA WPA2
        ATT7M4u6A2:      Infra, <MAC C-NA ATT7M4u6A2 1>, Freq 2412 MHz, Rate 54 Mb/s, Strength 20 WPA WPA2
    
        Address:         192.168.2.2
        Prefix:          24 (255.255.255.0)
        Gateway:         192.168.2.1
        DNS:             192.168.2.1
    ---------------------+-------------+---------+--------------+---------+-----------+--------------+-----------
     eth0                | Wired       | r8169   | unavailable  | no      |           |              | <MAC eth0>
    ---------------------+-------------+---------+--------------+---------+-----------+--------------+-----------
    
    
    NetworkManager.state ~~~~~~~~~~~~~~~
    [main]
    NetworkingEnabled=true
    WirelessEnabled=true
    WWANEnabled=true
    WimaxEnabled=true
    
    
    NetworkManager.conf ~~~~~~~~~~~~~~~~
    
    [main]
    plugins=ifupdown,keyfile,ofono
    dns=dnsmasq
    
    [ifupdown]
    managed=false
    
    
    NM WiFi Profiles ~~~~~~~~~~~~~~~~~~~
    
    belkin.986           : ssid=belkin.986 | mac-address=<MAC wlan0> | ipv4=auto | ipv6=auto 
    
    
    interfaces ~~~~~~~~~~~~~~~~~~~~~~~~~
    
    # interfaces(5) file used by ifup(8) and ifdown(8)
    auto lo
    iface lo inet loopback
    
    resolv.conf ~~~~~~~~~~~~~~~~~~~~~~~~
    
    nameserver 192.168.2.1
    nameserver 127.0.1.1
    search Belkin
    
    
    Routes & Ping ~~~~~~~~~~~~~~~~~~~~~~
    
    Kernel IP routing table
    Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
    0.0.0.0         192.168.2.1     0.0.0.0         UG    0      0        0 wlan0
    192.168.2.0     0.0.0.0         255.255.255.0   U     9      0        0 wlan0
    
    --- 192.168.2.1 ping statistics ---
    2 packets transmitted, 2 received, 0% packet loss, time 1001ms
    rtt min/avg/max/mdev = 1.369/1.387/1.405/0.018 ms
    
    --- 192.168.2.1 ping statistics ---
    2 packets transmitted, 2 received, 0% packet loss, time 1001ms
    rtt min/avg/max/mdev = 1.373/2.135/2.898/0.763 ms
    
    --- 127.0.1.1 ping statistics ---
    2 packets transmitted, 2 received, 0% packet loss, time 999ms
    rtt min/avg/max/mdev = 0.036/0.043/0.051/0.010 ms
    
    
    iw reg get ~~~~~~~~~~~~~~~~~~~~~~~~~
    
    (Region : "en_US.UTF-8")
    country 00:
        (2402 - 2472 @ 40), (3, 20)
        (2457 - 2482 @ 40), (3, 20), PASSIVE-SCAN, NO-IBSS
        (2474 - 2494 @ 20), (3, 20), NO-OFDM, PASSIVE-SCAN, NO-IBSS
        (5170 - 5250 @ 40), (3, 20), PASSIVE-SCAN, NO-IBSS
        (5735 - 5835 @ 40), (3, 20), PASSIVE-SCAN, NO-IBSS
    
    
    iwlist chan ~~~~~~~~~~~~~~~~~~~~~~~~
    
    wlan0     32 channels in total; available frequencies :
              Channel 01 (2.412 GHz) - 13 (2.472 GHz)
              Channel 36 (5.18 GHz)
              Channel 40 (5.2 GHz)
              Channel 44 (5.22 GHz)
              Channel 48 (5.24 GHz)
              Channel 52 (5.26 GHz)
              Channel 56 (5.28 GHz)
              Channel 60 (5.3 GHz)
              Channel 64 (5.32 GHz)
              Channel 100 (5.5 GHz)
              Channel 104 (5.52 GHz)
              Channel 108 (5.54 GHz)
              Channel 112 (5.56 GHz)
              Channel 116 (5.58 GHz)
              Channel 120 (5.6 GHz)
              Channel 124 (5.62 GHz)
              Channel 128 (5.64 GHz)
              Channel 132 (5.66 GHz)
              Channel 136 (5.68 GHz)
              Channel 140 (5.7 GHz)
    
              Current Frequency:2.412 GHz (Channel 1)
    
    
    iwlist scan ~~~~~~~~~~~~~~~~~~~~~~~~
    
    wlan0     Scan completed :
              Cell 01 - Address: <MAC C-01 belkin.986>
                        Channel:1
                        Frequency:2.412 GHz (Channel 1)
                        Quality=56/70  Signal level=-54 dBm  
                        Encryption key:on
                        ESSID:"belkin.986"
                        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=0000006c045e4fa7
                        Extra: Last beacon: 64ms ago
                        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
              Cell 02 - Address: <MAC C-02 MyCharterWiFi71-2G>
                        Channel:4
                        Frequency:2.427 GHz (Channel 4)
                        Quality=34/70  Signal level=-76 dBm  
                        Encryption key:on
                        ESSID:"MyCharterWiFi71-2G"
                        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=000000eb853c3050
                        Extra: Last beacon: 64ms ago
                        IE: IEEE 802.11i/WPA2 Version 1
                            Group Cipher : CCMP
                            Pairwise Ciphers (1) : CCMP
                            Authentication Suites (1) : PSK
              Cell 03 - Address: <MAC C-03 2WIRE951>
                        Channel:6
                        Frequency:2.437 GHz (Channel 6)
                        Quality=56/70  Signal level=-54 dBm  
                        Encryption key:on
                        ESSID:"2WIRE951"
                        Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 6 Mb/s; 9 Mb/s
                                  11 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=000000af1f7593a2
                        Extra: Last beacon: 64ms ago
                        IE: IEEE 802.11i/WPA2 Version 1
                            Group Cipher : TKIP
                            Pairwise Ciphers (2) : CCMP TKIP
                            Authentication Suites (1) : PSK
                        IE: WPA Version 1
                            Group Cipher : TKIP
                            Pairwise Ciphers (2) : CCMP TKIP
                            Authentication Suites (1) : PSK
              Cell 04 - Address: <MAC C-04 2WIRE973>
                        Channel:9
                        Frequency:2.452 GHz (Channel 9)
                        Quality=29/70  Signal level=-81 dBm  
                        Encryption key:on
                        ESSID:"2WIRE973"
                        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=0000013b51af9181
                        Extra: Last beacon: 4220ms ago
                        IE: IEEE 802.11i/WPA2 Version 1
                            Group Cipher : TKIP
                            Pairwise Ciphers (2) : CCMP TKIP
                            Authentication Suites (1) : PSK
                        IE: WPA Version 1
                            Group Cipher : TKIP
                            Pairwise Ciphers (2) : CCMP TKIP
                            Authentication Suites (1) : PSK
              Cell 05 - Address: <MAC C-05 ATTd8bhWuI>
                        Channel:11
                        Frequency:2.462 GHz (Channel 11)
                        Quality=27/70  Signal level=-83 dBm  
                        Encryption key:on
                        ESSID:"ATTd8bhWuI"
                        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=000000c3661cf469
                        Extra: Last beacon: 4172ms ago
                        IE: IEEE 802.11i/WPA2 Version 1
                            Group Cipher : TKIP
                            Pairwise Ciphers (2) : CCMP TKIP
                            Authentication Suites (1) : PSK
                        IE: WPA Version 1
                            Group Cipher : TKIP
                            Pairwise Ciphers (2) : CCMP TKIP
                            Authentication Suites (1) : PSK
    
    
    blacklist ~~~~~~~~~~~~~~~~~~~~~~~~~~
    
    [/etc/modprobe.d/blacklist-ath_pci.conf]
    blacklist ath_pci
    
    
    modinfo ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    
    [iwlmvm]
    filename:       /lib/modules/3.13.0-27-generic/kernel/drivers/net/wireless/iwlwifi/mvm/iwlmvm.ko
    version:        in-tree:
    srcversion:     964B69F7EBC572BE39F5C50
    depends:        iwlwifi,mac80211,cfg80211
    parm:           init_dbg:set to true to debug an ASSERT in INIT fw (default: false (bool)
    parm:           power_scheme:power management scheme: 1-active, 2-balanced, 3-low power, default: 2 (int)
    
    [mac80211]
    filename:       /lib/modules/3.13.0-27-generic/kernel/net/mac80211/mac80211.ko
    srcversion:     B09A94F74DCA60EBD06A6B6
    depends:        cfg80211
    parm:           max_nullfunc_tries:Maximum nullfunc tx tries before disconnecting (reason 4). (int)
    parm:           max_probe_tries:Maximum probe tries before disconnecting (reason 4). (int)
    parm:           beacon_loss_count:Number of beacon intervals before we decide beacon was lost. (int)
    parm:           probe_wait_ms:Maximum time(ms) to wait for probe response before disconnecting (reason 4). (int)
    parm:           ieee80211_default_rc_algo:Default rate control algorithm for mac80211 to use (charp)
    
    [iwlwifi]
    filename:       /lib/modules/3.13.0-27-generic/kernel/drivers/net/wireless/iwlwifi/iwlwifi.ko
    version:        in-tree:
    firmware:       iwlwifi-100-5.ucode
    firmware:       iwlwifi-1000-5.ucode
    firmware:       iwlwifi-135-6.ucode
    firmware:       iwlwifi-105-6.ucode
    firmware:       iwlwifi-2030-6.ucode
    firmware:       iwlwifi-2000-6.ucode
    firmware:       iwlwifi-5150-2.ucode
    firmware:       iwlwifi-5000-5.ucode
    firmware:       iwlwifi-6000g2b-6.ucode
    firmware:       iwlwifi-6000g2a-5.ucode
    firmware:       iwlwifi-6050-5.ucode
    firmware:       iwlwifi-6000-4.ucode
    firmware:       iwlwifi-3160-7.ucode
    firmware:       iwlwifi-7260-7.ucode
    srcversion:     1E6912E109D5A43B310FB34
    depends:        cfg80211
    parm:           swcrypto:using crypto in software (default 0 [hardware]) (int)
    parm:           11n_disable:disable 11n functionality, bitmap: 1: full, 2: disable agg TX, 4: disable agg RX, 8 enable agg TX (uint)
    parm:           amsdu_size_8K:enable 8K amsdu size (default 0) (int)
    parm:           fw_restart:restart firmware in case of error (default true) (bool)
    parm:           antenna_coupling:specify antenna coupling in dB (defualt: 0 dB) (int)
    parm:           wd_disable:Disable stuck queue watchdog timer 0=system default, 1=disable, 2=enable (default: 0) (int)
    parm:           nvm_file:NVM file name (charp)
    parm:           bt_coex_active:enable wifi/bt co-exist (default: enable) (bool)
    parm:           led_mode:0=system default, 1=On(RF On)/Off(RF Off), 2=blinking, 3=Off (default: 0) (int)
    parm:           power_save:enable WiFi power management (default: disable) (bool)
    parm:           power_level:default power save level (range from 1 - 5, default: 1) (int)
    
    [cfg80211]
    filename:       /lib/modules/3.13.0-27-generic/kernel/net/wireless/cfg80211.ko
    srcversion:     8B3D642D1F2E6406EF33F74
    depends:        
    parm:           ieee80211_regdom:IEEE 802.11 regulatory domain code (charp)
    parm:           cfg80211_disable_40mhz_24ghz:Disable 40MHz support in the 2.4GHz band (bool)
    
    
    udev rules ~~~~~~~~~~~~~~~~~~~~~~~~~
    
    # PCI device 0x10ec:0x8168 (r8169)
    SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="<MAC eth0>", ATTR{dev_id}=="0x0", ATTR{type}=="1", KERNEL=="eth*", NAME="eth0"
    
    # PCI device 0x8086:0x08b1 (iwlwifi)
    SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="<MAC wlan0>", ATTR{dev_id}=="0x0", ATTR{type}=="1", KERNEL=="wlan*", NAME="wlan0"
    
    
    Custom files/entries ~~~~~~~~~~~~~~~
    
    /etc/modules        : Default
    /etc/rc.local       : Default
    /etc/modprobe.d     : Not Default
    /etc/pm/(cnf|pw|sl) : Default
    
    [/etc/modprobe.d]
    iwlwifi.conf      : remove iwlwifi \
                        (/sbin/lsmod | grep -o -e ^iwlmvm -e ^iwldvm -e ^iwlwifi | xargs /sbin/rmmod) \
                        && /sbin/modprobe -r mac80211
    mlx4.conf         : softdep mlx4_core post: mlx4_en
    
    
    Kernel boot line ~~~~~~~~~~~~~~~~~~~
    
    BOOT_IMAGE=/boot/vmlinuz-3.13.0-27-generic.efi.signed root=UUID=1bac92c1-18ae-4b7a-8223-d2adad876efd ro quiet splash vt.handoff=7
    
    
    dmesg ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    
    [    0.687052] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
    [    0.687381] audit: initializing netlink socket (disabled)
    [    0.836005] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
    [    5.512555] wmi: Mapper loaded
    [    5.964458] asus_wmi: ASUS WMI generic driver loaded
    [    5.976754] asus_wmi: Initialization: 0x1
    [    5.976821] asus_wmi: BIOS WMI version: 7.9
    [    5.976905] asus_wmi: SFUN value: 0x4a0877
    [    5.977802] input: Asus WMI hotkeys as /devices/platform/asus-nb-wmi/input/input14
    [    5.994647] asus_wmi: Backlight controlled by ACPI video driver
    [    6.163127] iwlwifi 0000:03:00.0: irq 63 for MSI/MSI-X
    [    6.454266] iwlwifi 0000:03:00.0: loaded firmware version 22.24.8.0 op_mode iwlmvm
    [    6.522191] psmouse serio4: elantech: assuming hardware version 4 (with firmware version 0x361f03)
    [    6.633411] iwlwifi 0000:03:00.0: Detected Intel(R) Dual Band Wireless AC 7260, REV=0x144
    [    6.633461] iwlwifi 0000:03:00.0: L1 Disabled; Enabling L0S
    [    6.633677] iwlwifi 0000:03:00.0: L1 Disabled; Enabling L0S
    [    6.924523] ieee80211 phy0: Selected rate control algorithm 'iwl-mvm-rs'
    [   12.183670] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
    [   15.645103] iwlwifi 0000:03:00.0: L1 Disabled; Enabling L0S
    [   15.645351] iwlwifi 0000:03:00.0: L1 Disabled; Enabling L0S
    [   15.656564] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
    [   15.656833] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
    [   19.106694] Bluetooth: hci0: Intel Bluetooth firmware file: intel/ibt-hw-37.7.10-fw-1.80.2.3.d.bseq
    [   19.242118] Bluetooth: hci0: Intel Bluetooth firmware patch completed and activated
    [   26.699345] wlan0: authenticate with <MAC C-01 belkin.986>
    [   26.701482] wlan0: send auth to <MAC C-01 belkin.986> (try 1/3)
    [   26.710106] wlan0: authenticated
    [   26.711043] wlan0: associate with <MAC C-01 belkin.986> (try 1/3)
    [   26.720789] wlan0: RX AssocResp from <MAC C-01 belkin.986> (capab=0x411 status=0 aid=3)
    [   26.726629] wlan0: associated
    [   26.726658] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
    [   27.916079] wlan0: deauthenticating from <MAC C-01 belkin.986> by local choice (reason=3)
    [   27.967013] iwlwifi 0000:03:00.0: L1 Disabled; Enabling L0S
    [   27.967228] iwlwifi 0000:03:00.0: L1 Disabled; Enabling L0S
    [   27.978128] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
    [   28.868064] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
    [   29.032851] iwlwifi 0000:03:00.0: L1 Disabled; Enabling L0S
    [   29.033081] iwlwifi 0000:03:00.0: L1 Disabled; Enabling L0S
    [   29.044800] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
    [   32.794590] wlan0: authenticate with <MAC C-01 belkin.986>
    [   32.796155] wlan0: send auth to <MAC C-01 belkin.986> (try 1/3)
    [   32.798336] wlan0: authenticated
    [   32.799740] wlan0: associate with <MAC C-01 belkin.986> (try 1/3)
    [   32.805177] wlan0: RX AssocResp from <MAC C-01 belkin.986> (capab=0x411 status=0 aid=3)
    [   32.807540] wlan0: associated
    [   32.807559] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
    [  807.060722] wlan0: authenticate with <MAC C-01 belkin.986>
    [  807.062408] wlan0: send auth to <MAC C-01 belkin.986> (try 1/3)
    [  807.065057] wlan0: authenticated
    [  807.068644] wlan0: associate with <MAC C-01 belkin.986> (try 1/3)
    [  807.082888] wlan0: RX AssocResp from <MAC C-01 belkin.986> (capab=0x411 status=0 aid=3)
    [  807.085473] wlan0: associated
    [  814.368268] wlan0: deauthenticating from <MAC C-01 belkin.986> by local choice (reason=3)
    [  814.425696] iwlwifi 0000:03:00.0: L1 Disabled; Enabling L0S
    [  814.425928] iwlwifi 0000:03:00.0: L1 Disabled; Enabling L0S
    [  814.437439] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
    [  814.717708] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
    [  818.154977] wlan0: authenticate with <MAC C-01 belkin.986>
    [  818.156553] wlan0: send auth to <MAC C-01 belkin.986> (try 1/3)
    [  818.162662] wlan0: authenticated
    [  818.168880] wlan0: associate with <MAC C-01 belkin.986> (try 1/3)
    [  818.174721] wlan0: RX AssocResp from <MAC C-01 belkin.986> (capab=0x411 status=0 aid=3)
    [  818.177689] wlan0: associated
    [  818.177712] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
    [  824.998805] wlan0: deauthenticating from <MAC C-01 belkin.986> by local choice (reason=3)
    [  825.042996] iwlwifi 0000:03:00.0: L1 Disabled; Enabling L0S
    [  825.043230] iwlwifi 0000:03:00.0: L1 Disabled; Enabling L0S
    [  825.055601] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
    [  825.397246] iwlwifi 0000:03:00.0: L1 Disabled; Enabling L0S
    [  825.397481] iwlwifi 0000:03:00.0: L1 Disabled; Enabling L0S
    [  825.410130] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
    [  827.772501] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
    [  831.624760] wlan0: authenticate with <MAC C-01 belkin.986>
    [  831.626322] wlan0: send auth to <MAC C-01 belkin.986> (try 1/3)
    [  831.628049] wlan0: authenticated
    [  831.630649] wlan0: associate with <MAC C-01 belkin.986> (try 1/3)
    [  831.634459] wlan0: RX AssocResp from <MAC C-01 belkin.986> (capab=0x411 status=0 aid=3)
    [  831.636895] wlan0: associated
    [  831.636924] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
    [ 2167.325691] wlan0: authenticate with <MAC C-01 belkin.986>
    [ 2167.327292] wlan0: send auth to <MAC C-01 belkin.986> (try 1/3)
    [ 2167.329035] wlan0: authenticated
    [ 2167.332221] wlan0: associate with <MAC C-01 belkin.986> (try 1/3)
    [ 2167.336142] wlan0: RX AssocResp from <MAC C-01 belkin.986> (capab=0x411 status=0 aid=3)
    [ 2167.341125] wlan0: associated
    [ 2170.713795] wlan0: deauthenticating from <MAC C-01 belkin.986> by local choice (reason=3)
    [ 2170.758597] iwlwifi 0000:03:00.0: L1 Disabled; Enabling L0S
    [ 2170.758830] iwlwifi 0000:03:00.0: L1 Disabled; Enabling L0S
    [ 2170.771822] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
    [ 2171.034012] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
    [ 2174.484855] wlan0: authenticate with <MAC C-01 belkin.986>
    [ 2174.486414] wlan0: send auth to <MAC C-01 belkin.986> (try 1/3)
    [ 2174.488152] wlan0: authenticated
    [ 2174.492201] wlan0: associate with <MAC C-01 belkin.986> (try 1/3)
    [ 2174.498137] wlan0: RX AssocResp from <MAC C-01 belkin.986> (capab=0x411 status=0 aid=3)
    [ 2174.500641] wlan0: associated
    [ 2174.500667] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
    [ 2181.375372] wlan0: deauthenticating from <MAC C-01 belkin.986> by local choice (reason=3)
    [ 2181.415174] iwlwifi 0000:03:00.0: L1 Disabled; Enabling L0S
    [ 2181.415408] iwlwifi 0000:03:00.0: L1 Disabled; Enabling L0S
    [ 2181.428104] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
    [ 2181.687061] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
    [ 2181.780864] iwlwifi 0000:03:00.0: L1 Disabled; Enabling L0S
    [ 2181.781085] iwlwifi 0000:03:00.0: L1 Disabled; Enabling L0S
    [ 2181.794449] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
    [ 2185.474466] wlan0: authenticate with <MAC C-01 belkin.986>
    [ 2185.475989] wlan0: send auth to <MAC C-01 belkin.986> (try 1/3)
    [ 2185.478571] wlan0: authenticated
    [ 2185.482230] wlan0: associate with <MAC C-01 belkin.986> (try 1/3)
    [ 2185.486043] wlan0: RX AssocResp from <MAC C-01 belkin.986> (capab=0x411 status=0 aid=3)
    [ 2185.488436] wlan0: associated
    [ 2185.488460] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
    [ 3308.474025] wlan0: deauthenticating from <MAC C-01 belkin.986> by local choice (reason=3)
    [ 3309.856066] iwlwifi 0000:03:00.0: L1 Disabled; Enabling L0S
    [ 3309.856284] iwlwifi 0000:03:00.0: L1 Disabled; Enabling L0S
    [ 3309.868142] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
    [ 3309.922077] iwlwifi 0000:03:00.0: L1 Disabled; Enabling L0S
    [ 3309.922306] iwlwifi 0000:03:00.0: L1 Disabled; Enabling L0S
    [ 3309.934788] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
    [ 3310.328837] iwlwifi 0000:03:00.0: L1 Disabled; Enabling L0S
    [ 3310.329052] iwlwifi 0000:03:00.0: L1 Disabled; Enabling L0S
    [ 3310.340876] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
    [ 3311.089524] (NULL device *): Direct firmware load failed with error -2
    [ 3314.549699] iwlwifi 0000:03:00.0: L1 Disabled; Enabling L0S
    [ 3314.549912] iwlwifi 0000:03:00.0: L1 Disabled; Enabling L0S
    [ 3314.575576] Bluetooth: hci0: Intel Bluetooth firmware file: intel/ibt-hw-37.7.10-fw-1.80.2.3.d.bseq
    [ 3314.702535] Bluetooth: hci0: Intel Bluetooth firmware patch completed and activated
    [ 3320.539818] wlan0: authenticate with <MAC C-01 belkin.986>
    [ 3320.541388] wlan0: send auth to <MAC C-01 belkin.986> (try 1/3)
    [ 3320.543090] wlan0: authenticated
    [ 3320.546638] wlan0: associate with <MAC C-01 belkin.986> (try 1/3)
    [ 3320.550499] wlan0: RX AssocResp from <MAC C-01 belkin.986> (capab=0x411 status=0 aid=3)
    [ 3320.552917] wlan0: associated
    [ 3320.552947] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
    [ 3320.761492] wlan0: deauthenticating from <MAC C-01 belkin.986> by local choice (reason=3)
    [ 3320.800008] iwlwifi 0000:03:00.0: L1 Disabled; Enabling L0S
    [ 3320.800227] iwlwifi 0000:03:00.0: L1 Disabled; Enabling L0S
    [ 3320.811516] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
    [ 3321.061568] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
    [ 3321.109980] iwlwifi 0000:03:00.0: L1 Disabled; Enabling L0S
    [ 3321.110199] iwlwifi 0000:03:00.0: L1 Disabled; Enabling L0S
    [ 3321.121759] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
    [ 3324.785453] wlan0: authenticate with <MAC C-01 belkin.986>
    [ 3324.786955] wlan0: send auth to <MAC C-01 belkin.986> (try 1/3)
    [ 3324.788713] wlan0: authenticated
    [ 3324.792296] wlan0: associate with <MAC C-01 belkin.986> (try 1/3)
    [ 3324.796154] wlan0: RX AssocResp from <MAC C-01 belkin.986> (capab=0x411 status=0 aid=3)
    [ 3324.798612] wlan0: associated
    [ 3324.798638] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
    [ 3659.370640] wlan0: authenticate with <MAC C-01 belkin.986>
    [ 3659.372510] wlan0: send auth to <MAC C-01 belkin.986> (try 1/3)
    [ 3659.374363] wlan0: authenticated
    [ 3659.375453] wlan0: associate with <MAC C-01 belkin.986> (try 1/3)
    [ 3659.379339] wlan0: RX AssocResp from <MAC C-01 belkin.986> (capab=0x411 status=0 aid=3)
    [ 3659.385174] wlan0: associated
    [ 3661.750838] wlan0: deauthenticating from <MAC C-01 belkin.986> by local choice (reason=3)
    [ 3661.791303] iwlwifi 0000:03:00.0: L1 Disabled; Enabling L0S
    [ 3661.791525] iwlwifi 0000:03:00.0: L1 Disabled; Enabling L0S
    [ 3661.803846] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
    [ 3662.083335] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
    [ 3669.275985] wlan0: authenticate with <MAC C-01 belkin.986>
    [ 3669.277607] wlan0: send auth to <MAC C-01 belkin.986> (try 1/3)
    [ 3669.279287] wlan0: authenticated
    [ 3669.280936] wlan0: associate with <MAC C-01 belkin.986> (try 1/3)
    [ 3669.284843] wlan0: RX AssocResp from <MAC C-01 belkin.986> (capab=0x411 status=0 aid=3)
    [ 3669.287326] wlan0: associated
    [ 3669.287350] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
    [ 3669.303627] wlan0: deauthenticating from <MAC C-01 belkin.986> by local choice (reason=2)
    [ 3669.307071] wlan0: authenticate with <MAC C-01 belkin.986>
    [ 3669.308515] wlan0: send auth to <MAC C-01 belkin.986> (try 1/3)
    [ 3669.601769] iwlwifi 0000:03:00.0: L1 Disabled; Enabling L0S
    [ 3669.601989] iwlwifi 0000:03:00.0: L1 Disabled; Enabling L0S
    [ 3669.614769] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
    [ 3669.978589] iwlwifi 0000:03:00.0: L1 Disabled; Enabling L0S
    [ 3669.978804] iwlwifi 0000:03:00.0: L1 Disabled; Enabling L0S
    [ 3669.991200] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
    [ 3687.684299] wlan0: authenticate with <MAC C-01 belkin.986>
    [ 3687.686053] wlan0: send auth to <MAC C-01 belkin.986> (try 1/3)
    [ 3687.687844] wlan0: authenticated
    [ 3687.689408] wlan0: associate with <MAC C-01 belkin.986> (try 1/3)
    [ 3687.693359] wlan0: RX AssocResp from <MAC C-01 belkin.986> (capab=0x411 status=0 aid=3)
    [ 3687.696072] wlan0: associated
    [ 3687.696131] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
    [ 3687.706809] wlan0: deauthenticating from <MAC C-01 belkin.986> by local choice (reason=2)
    [ 3687.710226] wlan0: authenticate with <MAC C-01 belkin.986>
    [ 3687.711774] wlan0: send auth to <MAC C-01 belkin.986> (try 1/3)
    [ 3687.717073] wlan0: authenticated
    [ 3687.721355] wlan0: associate with <MAC C-01 belkin.986> (try 1/3)
    [ 3687.725218] wlan0: RX AssocResp from <MAC C-01 belkin.986> (capab=0x411 status=0 aid=3)
    [ 3687.729581] wlan0: associated
    
        ======== Done ========

  7. #7
    Join Date
    Mar 2010
    Location
    India
    Beans
    8,116

    Re: wif keeps dropping dont know why

    Please do not bump the thread in less than 24 hrs unless there is a real good reason. Other peoples' threads deserve the same level of attention as yours does.

    For the problem, please try this -

    1) In your router, change the encryption type from WPA/WPA2 mixed mode to pure WPA2-PSK with AES (CCMP). Avoid the mixed mode and TKIP.

    2) In Ubuntu, please open a terminal, and run the following command -
    Code:
    sudo iwconfig wlan0 power off

    Do these changes fix the problem? Or at least make the stability any better? Keep watching every 10-20 minutes the output of -
    Code:
    iwconfig
    ..and make sure "Power Management" in the output remains "off". If it turns "on" automatically after sometime, the connection may suffer again and we'll need to make it permanently "off" using other ways.
    Varun
    Help others by marking threads as [SOLVED], if they are. (See how)
    Wireless Script | Use Code Tags

  8. #8
    Join Date
    Mar 2010
    Location
    India
    Beans
    8,116

    Re: wif keeps dropping dont know why

    This is the script, not the report I expected. Please read the instructions carefully, as well as the prompts that appear on the terminal while running it.

    And please use 'Code' tags to post the outputs. It preserves the formatting, and makes the post more readable. Please follow the "Use Code Tags" link in my signature to see how to use it.
    Varun
    Help others by marking threads as [SOLVED], if they are. (See how)
    Wireless Script | Use Code Tags

  9. #9
    Join Date
    Jun 2014
    Beans
    41

    Re: wif keeps dropping dont know why

    in installed the wicd network manager to see if it would fix it but it didnt

  10. #10
    Join Date
    Jun 2014
    Beans
    41

    Re: wif keeps dropping dont know why

    it got worst when i installed wicd network manager

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