Can't connect to the Internet in 17 or 18

Questions about Wi-Fi and other network devices, file sharing, firewalls, connection sharing etc
Forum rules
Before you post read how to get help. Topics in this forum are automatically closed 6 months after creation.
Locked
ZeonOtaku

Can't connect to the Internet in 17 or 18

Post by ZeonOtaku »

I've been trying to do a fresh install of Mint along side 7 since 3pm.

I've tired the built-in Realtek Gigabit ethernet,

I've tried adding a PCI 3Com 10/100 ethernet

Both plugging straight into my router

I've tried an Asus N Wifi

and a Linksys G Wifi

I've also tried setting my wireless security to off

I've tried 17 and 18 64-bit Cin

Obviously my router works, or else I couldn't be on here, I'm on my Apple laptop.

In 17, the Gigabit or N do not want to connect, they try, say disconnected and try again.

The 3com however will connect, but when I open up Firefox nothing.

It will on the install say connected, however if I try to add proprietary drivers, say not connected to the internet

On 18, I can get both ethernets to connect, but the rest is the same.

I'm honestly in dire need of serious help.
Last edited by LockBot on Wed Dec 28, 2022 7:16 am, edited 1 time in total.
Reason: Topic automatically closed 6 months after creation. New replies are no longer allowed.
richyrich

Re: Can't connect to the Internet in 17 or 18

Post by richyrich »

Have you checked your Router's logs to see if there are any errors at the times you tried to connect?

If not, then please use the following terminal command, then copy/paste the complete output back here in a reply.

inxi -Nx
ZeonOtaku

Re: Can't connect to the Internet in 17 or 18

Post by ZeonOtaku »

I'm going to try one last thing, but I've tried copying the output to a text file and copying that to an SD Card. But it seems to corrupt the card from being read on my Windows, Mac, or other Linux Mint 17.3 machine.

UPDATE: That "one last thing" was to have a USB stick plugged in at boot up, negative wouldn't be read.
I've been using a PS/2 keyboard & mouse out of the back of my closet since it seems that the USB is finicky on the Linux side of this build.
On the Windows 7 side, only problem I've had is Updates wants to take forever before the initial one.

I seem to recall on the previous Motherboard/CPU build of this machine, the on-board ethernet was weird so I used the same 3Com adapter. I'm going to re-download 17.2 to see if that changes anything.

I have been using 17.3 & 18.

UPDATE: In an effort to provide a bit more information, my 17.3 build is on an ASUS, VivoMini UN62-M036M i3. Never had a problem of this magnitude on it, that I couldn't figure out.
ZeonOtaku

Re: Can't connect to the Internet in 17 or 18

Post by ZeonOtaku »

I don't get it, I don't get it!

Just tried a different router on 17.2 with the same results!

My 17.3 computer is fine, I've used these same equipment before w/ Linux (aside from MoBo and CPU). They work on Windows 7!
User avatar
austin.texas
Level 20
Level 20
Posts: 12003
Joined: Tue Nov 17, 2009 3:57 pm
Location: at /home

Re: Can't connect to the Internet in 17 or 18

Post by austin.texas »

Please run the wireless info script, and tell us which operating system and what equipment is used when you run it.

Code: Select all

wget -N -t 5 -T 10 https://github.com/UbuntuForums/wireless-info/raw/master/wireless-info && chmod +x wireless-info && ./wireless-info

It will create a file, wireless-info.txt or wireless-info.tar.gz
Post the contents of that file to the forum, in Code tags, or paste the contents at http://pastebin.ubuntu.com - then post that link
Mint 18.2 Cinnamon, Quad core AMD A8-3870 with Radeon HD Graphics 6550D, 8GB DDR3, Ralink RT2561/RT61 802.11g PCI
Linux Linx 2018
ZeonOtaku

Re: Can't connect to the Internet in 17 or 18

Post by ZeonOtaku »

The new board is a GA-970A-DS3P. The 3Com PCI adapter is: 3C905C-TXM.

I have no way of reporting outcomes at least on the 17.3 or 18, as it seems to want to corrupt or not read the USB and or SD card.

Also I can't use wget on the machine in question BECAUSE IT WON'T ACCESS THE INTERNET!

I honestly don't get it, this is by far the most frustrating thing I've run into. And I've been using Mint off-and-on since 10.
User avatar
austin.texas
Level 20
Level 20
Posts: 12003
Joined: Tue Nov 17, 2009 3:57 pm
Location: at /home

Re: Can't connect to the Internet in 17 or 18

Post by austin.texas »

ZeonOtaku wrote:Also I can't use wget on the machine in question BECAUSE IT WON'T ACCESS THE INTERNET!
And I should have been able to figure that out... :oops:
This is the script, if you can find a way to copy it to the computer (maybe using your Windows 7), make it executable and run it and post the result (again using Windows 7 to access the forum).

Code: Select all

#!/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/>.
#

SCRIPTDATE="2014-09-05 17:42 -0500"
FILEBASE="wireless-info"
OUTPUTDIR=$(pwd)
OUTPUTDIRFB="/tmp"
MODMATCHES="(air|ar5|at7|ath[^3]?|b43|bcma|brcm|carl|ipw|iwl|ndis|r(818|8192[eu]|871|92su)|rt[23567]|rtl|ssb|wl)"
LSMODMATCHES="wmi"
DMESGMATCHES="(wlan[0-9]|eth[1-9]|firmware|[nN]etwork)"
DMESGEXCL="apparmor"
MODINFOEXCL="alias"
BLACKLISTEXCL="(alsa-base|blacklist-(firewire|framebuffer|modem|oss|watchdog)|fglrx|nvidia|fbdev|bumblebee)"

export LANG="en_US.UTF-8"
export LANGUAGE="en_US:en"
export LC_ALL="en_US.UTF-8"

if [ -t 0 ]; then
    SUDO="sudo"
elif [ -x /usr/bin/pkexec ]; then
    SUDO="pkexec"
elif [ -x /usr/bin/gksudo ]; then
    SUDO="gksudo"
elif [ -x /usr/bin/kdesudo ]; then
    SUDO="kdesudo"
fi

exec 3>&1 4>&2
exec 1> "$OUTPUTDIR/$FILEBASE.txt"
if [ "$?" != "0" ]; then
    printf "\nCannot write output file in \"%s\", trying in \"%s\" instead.\n" "$OUTPUTDIR" "$OUTPUTDIRFB" >&2
    OUTPUTDIR="$OUTPUTDIRFB"
    exec 1> "$OUTPUTDIR/$FILEBASE.txt"
    if [ "$?" != "0" ]; then
	printf "\nCannot write output file in \"%s\" either, aborting.\n\n" "$OUTPUTDIR" >&2
	exit 1
    fi
fi
exec 2>&1

printf "\n########## wireless info START ##########\n\n"
REPORTDATE=$(date +"%d %b %Y %H:%M %Z %z")
SCRIPTDATE=$(date -u -d "$SCRIPTDATE" +"%d %b %Y %H:%M %Z %z")
printf "Report from: %s\n\n" "$REPORTDATE"
printf "Script from: %s\n" "$SCRIPTDATE"

printf "\n##### release #####\n\n"
lsb_release -idrc

printf "\n##### kernel #####\n\n"
uname -srvmpio
echo
cat /proc/cmdline | sed 's/root=[^ ]*//;s/[ ]\+/, /g;s/^BOOT_IMAGE=[^ ]*/Parameters:/'

printf "\n##### desktop #####\n\n"
if [ -n "$DESKTOP_SESSION" ]; then
    DESKTOP="$DESKTOP_SESSION"
else
    DESKTOP=$(sed -n 's/^Session=\(.\+\)$/\1/p' "$HOME/.dmrc")
    DESKDMRC=" (from ~/.dmrc)"
fi
if [ -n "$DESKTOP" ]; then
    if [ -f "/usr/share/xsessions/$DESKTOP.desktop" ]; then
	DESKTOP=$(sed -n 's/^Name=\(.\+\)$/\1/p' "/usr/share/xsessions/$DESKTOP.desktop")
    fi
    echo "${DESKTOP/ Session/}${DESKDMRC}"
else
    echo "Could not be determined."
fi

printf "\n##### lspci #####\n\n"
lspci -nnk | grep -iA2 '^[^[:space:]].*net' | sed '/^--$/d;/^[^[:space:]]/ i\\'

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##### lsmod #####\n\n"
LSMOD=$(lsmod | egrep "(^|[[:punct:] ])($MODMATCHES|$LSMODMATCHES)[^[:punct:] ]*([[:punct:] ]|$)")
echo "$LSMOD"

printf "\n##### interfaces #####\n\n"
sed '/^#/d;s/wpa-psk [[:graph:]]\+/wpa-psk <WPA key removed>/' /etc/network/interfaces

printf "\n##### ifconfig #####\n\n"
ifconfig -a | sed '/^lo[ ]/,/^$/d'

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\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 "\nnm-system-settings.conf (used up to Ubuntu 10.04):\n\n"
    grep -v '^#' /etc/NetworkManager/nm-system-settings.conf
fi

printf "\n##### iw reg get #####\n\n"
iw reg get

printf "\n##### iwlist channels #####\n\n"
iwlist chan

printf "\n##### iwlist scan #####\n\n"
if [ -n "$SUDO" ]; then
    trap "" 2 3
    IWLISTSCAN=$($SUDO iwlist scan 2>&1 || echo "Acquisition of admin privileges failed.")
    trap 2 3
    if [[ $IWLISTSCAN = *Frequency:* ]]; then
	printf "Channel occupancy:\n\n"
	grep '^[ ]*Frequency:' <<< "$IWLISTSCAN" | sort | uniq -c | sed 's/^[ ]\+\([0-9]\+\)[ ]\+/     \1   WLAPs on   /'
	echo
    fi
    grep -v '^[ ]*IE:[ ]*Unknown:' <<< "$IWLISTSCAN"
else
    echo "No way to acquire admin privileges found."
fi

printf "\n##### module infos #####\n\n"
MODULES=$(egrep -o "^$MODMATCHES[^ ]*" <<< "$LSMOD")
for MODULE in $MODULES; do
    MODINFO=$(modinfo $MODULE | egrep -v "^$MODINFOEXCL:")
    printf "[%s]\n%s\n\n" "$MODULE" "$MODINFO"
done

printf "\n##### module parameters #####\n\n"
for MODULE in $MODULES; do
    if [ -d /sys/module/$MODULE/parameters ]; then
	MODPARAMS=$(grep -H '^[[:graph:]]' /sys/module/$MODULE/parameters/* | sed 's#^.*/##;s/:/: /')
	printf "[%s]\n%s\n\n" "$MODULE" "$MODPARAMS"
    fi
done

printf "\n##### /etc/modules #####\n\n"
grep -v '^#' /etc/modules

printf "\n##### blacklists #####\n\n"
for CONFFILE in $(ls /etc/modprobe.d/*.conf | egrep -v "$BLACKLISTEXCL"); do
    BLACKLIST=$(grep '^blacklist' $CONFFILE)
    if [ -n "$BLACKLIST" ]; then
	printf "[%s]\n%s\n\n" "$CONFFILE" "$BLACKLIST"
    fi
done

printf "\n##### rc.local #####\n\n"
grep -v '^#' /etc/rc.local

printf "\n##### udev rules #####\n\n"
for UDEVRLFILE in /etc/udev/rules.d/*net*.rules; do
    UDEVRULES=$(grep -B1 '^[^#]' $UDEVRLFILE | egrep -v '^(--)?$')
    if [ -n "$UDEVRULES" ]; then
	printf "[%s]\n%s\n\n" "$UDEVRLFILE" "$UDEVRULES"
    fi
done

printf "\n##### dmesg #####\n\n"
dmesg | egrep "[[:punct:] ]($MODMATCHES|$DMESGMATCHES)[^[:punct:] ]*[[:punct:] ]" | egrep -v "$DMESGEXCL" | uniq -cf 2 | sed 's/^[ ]\+1[ ]\+//;s/^[ ]\+\([0-9]\+\)[ ]\+\(.*\)\+$/\2 (repeated \1 times)/'

printf "\n########## wireless info END ############\n\n"

exec 2>&4 4>&-
exec 1>&3 3>&-

##### MAC address masking #####

RESULTS=$(cat -s "$OUTPUTDIR/$FILEBASE.txt")

ORIGIFS="$IFS"
IFS=$'\n'

LOCDEVSRAW=$(sed -n '/^[[:punct:]]\+[ ]ifconfig[ ][[:punct:]]\+/,/^[[:punct:]]\+[ ]/p' <<< "$RESULTS")
NETDEVNAMES=($(sed -n 's/^\([^ ]\+\)[ ]\+.*HWaddr.*/\1/p' <<< "$LOCDEVSRAW"))
NETDEVMACS=($(sed -n 's/^[^ ]\+[ ]\+.*HWaddr[ ]\+\([^ ]\+\).*/\1/p' <<< "$LOCDEVSRAW"))

WLAPSRAW=$(sed -n '/^[ ]*Wireless Access Points/,/^$/p' <<< "$RESULTS")
NETDEVNAMES+=($(sed -n 's/^[ ]*\*\?\([^:]\+\):.*/\1/p' <<< "$WLAPSRAW"))
NETDEVMACS+=($(grep -o '\([[:alnum:]][[:alnum:]]:\)\{5\}[[:alnum:]][[:alnum:]]' <<< "$WLAPSRAW"))

IFS="$ORIGIFS"

for NETDEVNR in "${!NETDEVMACS[@]}"; do
    MACMASKSED+="s/${NETDEVMACS[$NETDEVNR]}/<MAC addr${NETDEVNAMES[$NETDEVNR]+ }${NETDEVNAMES[$NETDEVNR]-ess}>/I;"
done

sed "$MACMASKSED/\([[:alnum:]][[:alnum:]]:\)\{6,\}/! s/\([[:alnum:]][[:alnum:]]:\)\{5\}[[:alnum:]][[:alnum:]]/<MAC address>/" <<< "$RESULTS" > "$OUTPUTDIR/$FILEBASE.txt"

##### The End #####

if [[ $(stat -c %s "$OUTPUTDIR/$FILEBASE.txt") -gt 19968 ]]; then
    tar -czf "$OUTPUTDIR/$FILEBASE.tar.gz" --remove-files -C "$OUTPUTDIR" "$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" "$OUTPUTDIR/$FILEBASE"
else
    printf "\nResults saved in \"%s.txt\".\n\n" "$OUTPUTDIR/$FILEBASE"
fi
Last edited by austin.texas on Sun Aug 28, 2016 12:15 pm, edited 2 times in total.
Mint 18.2 Cinnamon, Quad core AMD A8-3870 with Radeon HD Graphics 6550D, 8GB DDR3, Ralink RT2561/RT61 802.11g PCI
Linux Linx 2018
ZeonOtaku

Re: Can't connect to the Internet in 17 or 18

Post by ZeonOtaku »

More info: My router are 2 AC Airport Extremes in tandem (I've been using one for 2 years, recently added the second for better coverage). The second replaced an Airport Express that was used as just an extender. The Express I just used to see if that changed anything. It didn't.

My network:
Airport Extreme
16-port Gigabit switch (wired)
PS2 (wired)
PS3 (wired)
PS4 (wired)
ASUS mini Box Linux 17.3 (wired)
LG TV (Wired)
Chromcast #1 (wired)

2nd Extreme (Linked via WiFi)
Apple 15in MBP (OSX/7 dual-boot) (wifi)
Apple 13in MBP (wifi)
My Windows Desktop 10 (wifi)
Mum's Windows Desktop 10 (wifi)
Mum's Blu-Ray Player (wifi)
Mum's Chromcast (wifi)
Printer (wifi)
Phone 1
Phone 2

The computer in question I'm trying to build as a 7/Linux dual-boot.
ZeonOtaku

Re: Can't connect to the Internet in 17 or 18

Post by ZeonOtaku »

This is the script, if you can find a way to copy it to the computer (maybe using your Windows 7), make it executable and run it and post the result (again using Windows 7 to access the forum).
I just added a second HDD to the PC in question, hopefully via 7 I'll be able to add files that way.

Now I just need to figure out how to make a Linux script, I haven't done it in a while.

Just copied it and saved it as a TXT (I know it doesn't stay that way).
ZeonOtaku

Re: Can't connect to the Internet in 17 or 18

Post by ZeonOtaku »

I can't seem to get it to launch.

I get"Profile Preferences" or "Relaunch"
JeremyB
Level 21
Level 21
Posts: 13880
Joined: Fri Feb 21, 2014 8:17 am

Re: Can't connect to the Internet in 17 or 18

Post by JeremyB »

Where do you have the script on the Linux Mint computer? What is the full name of the file?
User avatar
austin.texas
Level 20
Level 20
Posts: 12003
Joined: Tue Nov 17, 2009 3:57 pm
Location: at /home

Re: Can't connect to the Internet in 17 or 18

Post by austin.texas »

You can use the wget command posted above as a guide.

If the file is named wireless-info.txt:

Code: Select all

sudo chmod +x wireless-info.txt
Then:

Code: Select all

sudo ./wireless-info.txt
Mint 18.2 Cinnamon, Quad core AMD A8-3870 with Radeon HD Graphics 6550D, 8GB DDR3, Ralink RT2561/RT61 802.11g PCI
Linux Linx 2018
JeremyB
Level 21
Level 21
Posts: 13880
Joined: Fri Feb 21, 2014 8:17 am

Re: Can't connect to the Internet in 17 or 18

Post by JeremyB »

austin.texas wrote:You can use the wget command posted above as a guide.

If the file is named wireless-info.txt:

Code: Select all

sudo chmod +x wireless-info.txt
Then:

Code: Select all

sudo ./wireless-info.txt
I would not name it wireless-info.txt as that will cause problems as the output file will have the same name. I wish they would have named the file wireless-script and it would cause less confusion for users and set the output file to wireless-results.txt
ZeonOtaku

Re: Can't connect to the Internet in 17 or 18

Post by ZeonOtaku »

I have it in the doc folder. I named it linuxscript.sh

Here is the output of that inxi command:

Code: Select all

Network:   Card-1: Realtek RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller
           driver: r8169 v: 2.3LK-NAPI port: d000 bus-ID: 03:00.0
           Card-2: 3Com 3c905C-TX/TX-M [Tornado]
           driver: 3c59x port: b000 bus-ID: 05:07.0
           Card-3: Realtek RTL8192CE PCIe Wireless Network Adapter
           driver: rtl8192ce port: a000 bus-ID: 06:00.0

And again, I cannot use wget as I cannot access the internet from the machine in question, that's why I am here.

I literally have an Cat5 cable plugging the machine into the router at this point, and it still doesn't work. Either it doesn't "connect" by the standards of the Linux GUI, or it does, but doesn't work.
JeremyB
Level 21
Level 21
Posts: 13880
Joined: Fri Feb 21, 2014 8:17 am

Re: Can't connect to the Internet in 17 or 18

Post by JeremyB »

If it is actually in Documents then

Code: Select all

cd Documents

Code: Select all

chmod +x linuxscript.sh

Code: Select all

./linuxscript.sh
Then it will print some stuff to the screen and ask that you enter your password. When it is done it will say results saved in wireless-info.txt. Just copy the wireless-info.txt back to the windows install and post results
rayfward

Re: Can't connect to the Internet in 17 or 18

Post by rayfward »

Hi.
Moving from linux mint 17.3 to 18 has caused problems. There was no issues with 17.3 nor was there problems with the installation 18 media however there is an issue with the RT2561/RT61 802.11g PCI card and wifi . The router is fine, other machines see it and stay connected. Using Belkin Components F5D7050 Wireless G Adapter I can stay connected so I can report this and send the wireless info. The Belkin is a usb dongle and can be seen in the Networking dialogue box and Ralink corp can be seen but cannot connect or stay connect.

Regards
Ray

Code: Select all

########## wireless info START ##########

Report from: 22 Sep 2016 10:26 BST +0100

Booted last: 22 Sep 2016 00:00 BST +0100

Script from: 08 Jul 2016 02:16 UTC +0000

##### release ###########################

Distributor ID:	LinuxMint
Description:	Linux Mint 18 Sarah
Release:	18
Codename:	sarah

##### kernel ############################

Linux 4.4.0-38-generic #57-Ubuntu SMP Tue Sep 6 15:42:33 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux

Parameters: ro, quiet, splash

##### desktop ###########################

sed: can't read /root/.dmrc: No such file or directory

Could not be determined.

##### lspci #############################

04:00.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller [10ec:8168] (rev 06)
	Subsystem: Gigabyte Technology Co., Ltd Motherboard [1458:e000]
	Kernel driver in use: r8169

05:07.0 Network controller [0280]: Ralink corp. RT2561/RT61 802.11g PCI [1814:0301]
	Subsystem: Edimax Computer Co. RT2561/RT61 802.11g PCI [1432:7128]
	Kernel driver in use: rt61pci

##### lsusb #############################

Bus 003 Device 004: ID 0644:0000 TEAC Corp. Floppy
Bus 003 Device 003: ID 05e3:0608 Genesys Logic, Inc. Hub
Bus 003 Device 002: ID 1a40:0101 Terminus Technology Inc. Hub
Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 008 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 007 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 004 Device 002: ID 2040:9950 Hauppauge WinTV Nova-T-500
Bus 004 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 010 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 009 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 002 Device 002: ID 058f:6364 Alcor Micro Corp. AU6477 Card Reader Controller
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 006 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 001 Device 003: ID 050d:705a Belkin Components F5D7050 Wireless G Adapter v3000 [Ralink RT2571W]
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 005 Device 005: ID 050d:016a Belkin Components Bluetooth Mini Dongle
Bus 005 Device 004: ID 0a5c:4503 Broadcom Corp. Mouse (Boot Interface Subclass)
Bus 005 Device 003: ID 0a5c:4502 Broadcom Corp. Keyboard (Boot Interface Subclass)
Bus 005 Device 002: ID 0a5c:4500 Broadcom Corp. BCM2046B1 USB 2.0 Hub (part of BCM2046 Bluetooth)
Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 012 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 011 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub

##### PCMCIA card info ##################

##### rfkill ############################

0: phy0: Wireless LAN
	Soft blocked: no
	Hard blocked: no
1: hci0: Bluetooth
	Soft blocked: no
	Hard blocked: no
2: phy1: Wireless LAN
	Soft blocked: no
	Hard blocked: no

##### lsmod #############################

rt73usb                32768  0
rt2x00usb              24576  1 rt73usb
rt61pci                32768  0
rt2x00pci              16384  1 rt61pci
rt2x00mmio             16384  1 rt61pci
rt2x00lib              57344  5 rt61pci,rt73usb,rt2x00pci,rt2x00usb,rt2x00mmio
mac80211              737280  3 rt2x00lib,rt2x00pci,rt2x00usb
cfg80211              565248  2 mac80211,rt2x00lib
eeprom_93cx6           16384  1 rt61pci
crc_itu_t              16384  2 rt61pci,rt73usb
wmi                    20480  0

##### interfaces ########################

auto lo
iface lo inet loopback

##### ifconfig ##########################

enp4s0    Link encap:Ethernet  HWaddr <MAC 'enp4s0' [IF1]>  
          UP BROADCAST MULTICAST  MTU:1500  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)

wlp5s7    Link encap:Ethernet  HWaddr <MAC 'wlp5s7' [IF2]>  
          inet addr:192.168.0.100  Bcast:192.168.0.255  Mask:255.255.255.0
          inet6 addr: fe80::fa23:6433:dc6:3f87/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:13335 errors:0 dropped:0 overruns:0 frame:0
          TX packets:12182 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:13477110 (13.4 MB)  TX bytes:1338288 (1.3 MB)

wlx<IF from MAC [IF3]> Link encap:Ethernet  HWaddr <MAC 'wlx<IF from MAC [IF3]>' [IF3]>  
          inet addr:192.168.0.105  Bcast:192.168.0.255  Mask:255.255.255.0
          inet6 addr: fe80::b865:b9c5:5948:24a0/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1400  Metric:1
          RX packets:90764 errors:0 dropped:0 overruns:0 frame:0
          TX packets:79243 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:90296483 (90.2 MB)  TX bytes:9007554 (9.0 MB)

##### iwconfig ##########################

lo        no wireless extensions.

enp4s0    no wireless extensions.

wlx<IF from MAC [IF3]>  IEEE 802.11bg  ESSID:"HeDracergIthsidd"  
          Mode:Managed  Frequency:2.462 GHz  Access Point: <MAC '' [AC1]>   
          Bit Rate=54 Mb/s   Tx-Power=20 dBm   
          Retry short limit:7   RTS thr:off   Fragment thr:off
          Encryption key:off
          Power Management:on
          Link Quality=48/70  Signal level=-62 dBm  
          Rx invalid nwid:0  Rx invalid crypt:0  Rx invalid frag:0
          Tx excessive retries:0  Invalid misc:23   Missed beacon:0

wlp5s7    IEEE 802.11bg  ESSID:"HeDracergIthsidd"  
          Mode:Managed  Frequency:2.462 GHz  Access Point: <MAC '' [AC1]>   
          Bit Rate=54 Mb/s   Tx-Power=20 dBm   
          Retry short limit:7   RTS thr:off   Fragment thr:off
          Encryption key:off
          Power Management:on
          Link Quality=70/70  Signal level=-40 dBm  
          Rx invalid nwid:0  Rx invalid crypt:0  Rx invalid frag:0
          Tx excessive retries:68  Invalid misc:200   Missed beacon:0

##### route #############################

Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
0.0.0.0         192.168.0.1     0.0.0.0         UG    600    0        0 wlp5s7
0.0.0.0         192.168.0.1     0.0.0.0         UG    601    0        0 wlx<IF from MAC [IF3]>
169.254.0.0     0.0.0.0         255.255.0.0     U     1000   0        0 wlp5s7
192.168.0.0     0.0.0.0         255.255.255.0   U     600    0        0 wlp5s7
192.168.0.0     0.0.0.0         255.255.255.0   U     601    0        0 wlx<IF from MAC [IF3]>

##### resolv.conf #######################

nameserver 127.0.1.1

##### network managers ##################

Installed:

	NetworkManager

Running:

root      1259     1  0 08:50 ?        00:00:04 /usr/sbin/NetworkManager --no-daemon

##### NetworkManager info ###############

GENERAL.DEVICE:                         wlp5s7
GENERAL.TYPE:                           wifi
GENERAL.NM-TYPE:                        NMDeviceWifi
GENERAL.VENDOR:                         Ralink corp.
GENERAL.PRODUCT:                        RT2561/RT61 802.11g PCI
GENERAL.DRIVER:                         rt61pci
GENERAL.DRIVER-VERSION:                 4.4.0-38-generic
GENERAL.FIRMWARE-VERSION:               N/A
GENERAL.HWADDR:                         <MAC 'wlp5s7' [IF2]>
GENERAL.MTU:                            0
GENERAL.STATE:                          100 (connected)
GENERAL.REASON:                         0 (No reason given)
GENERAL.UDI:                            /sys/devices/pci0000:00/0000:00:14.4/0000:05:07.0/net/wlp5s7
GENERAL.IP-IFACE:                       wlp5s7
GENERAL.IS-SOFTWARE:                    no
GENERAL.NM-MANAGED:                     yes
GENERAL.AUTOCONNECT:                    yes
GENERAL.FIRMWARE-MISSING:               no
GENERAL.NM-PLUGIN-MISSING:              no
GENERAL.PHYS-PORT-ID:                   --
GENERAL.CONNECTION:                     Auto HeDracergIthsidd
GENERAL.CON-UUID:                       59ae01ea-cf40-4599-aeb2-f91464e5dc0c
GENERAL.CON-PATH:                       /org/freedesktop/NetworkManager/ActiveConnection/14
GENERAL.METERED:                        no (guessed)
CAPABILITIES.CARRIER-DETECT:            no
CAPABILITIES.SPEED:                     11 Mb/s
CAPABILITIES.IS-SOFTWARE:               no
WIFI-PROPERTIES.WEP:                    yes
WIFI-PROPERTIES.WPA:                    yes
WIFI-PROPERTIES.WPA2:                   yes
WIFI-PROPERTIES.TKIP:                   yes
WIFI-PROPERTIES.CCMP:                   yes
WIFI-PROPERTIES.AP:                     yes
WIFI-PROPERTIES.ADHOC:                  yes
WIFI-PROPERTIES.2GHZ:                   yes
WIFI-PROPERTIES.5GHZ:                   no
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/{8}
CONNECTIONS.AVAILABLE-CONNECTIONS[1]:   59ae01ea-cf40-4599-aeb2-f91464e5dc0c | Auto HeDracergIthsidd
IP4.ADDRESS[1]:                         192.168.0.100/24
IP4.GATEWAY:                            192.168.0.1
IP4.ROUTE[1]:                           dst = 169.254.0.0/16, nh = 0.0.0.0, mt = 1000
IP4.DNS[1]:                             192.168.0.1
DHCP4.OPTION[1]:                        requested_routers = 1
DHCP4.OPTION[2]:                        requested_domain_search = 1
DHCP4.OPTION[3]:                        requested_time_offset = 1
DHCP4.OPTION[4]:                        requested_domain_name = 1
DHCP4.OPTION[5]:                        requested_rfc3442_classless_static_routes = 1
DHCP4.OPTION[6]:                        requested_broadcast_address = 1
DHCP4.OPTION[7]:                        requested_netbios_scope = 1
DHCP4.OPTION[8]:                        requested_wpad = 1
DHCP4.OPTION[9]:                        next_server = 0.0.0.0
DHCP4.OPTION[10]:                       expiry = 1474542654
DHCP4.OPTION[11]:                       requested_interface_mtu = 1
DHCP4.OPTION[12]:                       requested_subnet_mask = 1
DHCP4.OPTION[13]:                       dhcp_lease_time = 7200
DHCP4.OPTION[14]:                       dhcp_message_type = 5
DHCP4.OPTION[15]:                       ip_address = 192.168.0.100
DHCP4.OPTION[16]:                       requested_static_routes = 1
DHCP4.OPTION[17]:                       requested_domain_name_servers = 1
DHCP4.OPTION[18]:                       routers = 192.168.0.1
DHCP4.OPTION[19]:                       broadcast_address = 192.168.0.255
DHCP4.OPTION[20]:                       requested_ntp_servers = 1
DHCP4.OPTION[21]:                       requested_netbios_name_servers = 1
DHCP4.OPTION[22]:                       domain_name_servers = 192.168.0.1
DHCP4.OPTION[23]:                       requested_ms_classless_static_routes = 1
DHCP4.OPTION[24]:                       subnet_mask = 255.255.255.0
DHCP4.OPTION[25]:                       network_number = 192.168.0.0
DHCP4.OPTION[26]:                       requested_host_name = 1
DHCP4.OPTION[27]:                       dhcp_server_identifier = 192.168.0.1
IP6.ADDRESS[1]:                         fe80::fa23:6433:dc6:3f87/64
IP6.GATEWAY:                            

GENERAL.DEVICE:                         wlx<IF from MAC [IF3]>
GENERAL.TYPE:                           wifi
GENERAL.NM-TYPE:                        NMDeviceWifi
GENERAL.VENDOR:                         Belkin
GENERAL.PRODUCT:                        Belkin 54g USB Network Adapter
GENERAL.DRIVER:                         rt73usb
GENERAL.DRIVER-VERSION:                 4.4.0-38-generic
GENERAL.FIRMWARE-VERSION:               N/A
GENERAL.HWADDR:                         <MAC 'wlx<IF from MAC [IF3]>' [IF3]>
GENERAL.MTU:                            0
GENERAL.STATE:                          100 (connected)
GENERAL.REASON:                         0 (No reason given)
GENERAL.UDI:                            /sys/devices/pci0000:00/0000:00:12.2/usb1/1-3/1-3:1.0/net/wlx<IF from MAC [IF3]>
GENERAL.IP-IFACE:                       wlx<IF from MAC [IF3]>
GENERAL.IS-SOFTWARE:                    no
GENERAL.NM-MANAGED:                     yes
GENERAL.AUTOCONNECT:                    yes
GENERAL.FIRMWARE-MISSING:               no
GENERAL.NM-PLUGIN-MISSING:              no
GENERAL.PHYS-PORT-ID:                   --
GENERAL.CONNECTION:                     HeDracergIthsidd 2
GENERAL.CON-UUID:                       02e9f9b7-ec60-4ae2-9446-1f59e904b1e0
GENERAL.CON-PATH:                       /org/freedesktop/NetworkManager/ActiveConnection/15
GENERAL.METERED:                        no (guessed)
CAPABILITIES.CARRIER-DETECT:            no
CAPABILITIES.SPEED:                     12 Mb/s
CAPABILITIES.IS-SOFTWARE:               no
WIFI-PROPERTIES.WEP:                    yes
WIFI-PROPERTIES.WPA:                    yes
WIFI-PROPERTIES.WPA2:                   yes
WIFI-PROPERTIES.TKIP:                   yes
WIFI-PROPERTIES.CCMP:                   yes
WIFI-PROPERTIES.AP:                     yes
WIFI-PROPERTIES.ADHOC:                  yes
WIFI-PROPERTIES.2GHZ:                   yes
WIFI-PROPERTIES.5GHZ:                   no
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/{4}
CONNECTIONS.AVAILABLE-CONNECTIONS[1]:   02e9f9b7-ec60-4ae2-9446-1f59e904b1e0 | HeDracergIthsidd 2
IP4.ADDRESS[1]:                         192.168.0.105/24
IP4.GATEWAY:                            192.168.0.1
IP4.DNS[1]:                             192.168.0.1
DHCP4.OPTION[1]:                        requested_routers = 1
DHCP4.OPTION[2]:                        requested_domain_search = 1
DHCP4.OPTION[3]:                        requested_time_offset = 1
DHCP4.OPTION[4]:                        requested_domain_name = 1
DHCP4.OPTION[5]:                        requested_rfc3442_classless_static_routes = 1
DHCP4.OPTION[6]:                        requested_broadcast_address = 1
DHCP4.OPTION[7]:                        requested_netbios_scope = 1
DHCP4.OPTION[8]:                        requested_wpad = 1
DHCP4.OPTION[9]:                        next_server = 0.0.0.0
DHCP4.OPTION[10]:                       expiry = 1474542654
DHCP4.OPTION[11]:                       requested_interface_mtu = 1
DHCP4.OPTION[12]:                       requested_subnet_mask = 1
DHCP4.OPTION[13]:                       dhcp_lease_time = 7200
DHCP4.OPTION[14]:                       dhcp_message_type = 5
DHCP4.OPTION[15]:                       ip_address = 192.168.0.105
DHCP4.OPTION[16]:                       requested_static_routes = 1
DHCP4.OPTION[17]:                       requested_domain_name_servers = 1
DHCP4.OPTION[18]:                       routers = 192.168.0.1
DHCP4.OPTION[19]:                       broadcast_address = 192.168.0.255
DHCP4.OPTION[20]:                       requested_ntp_servers = 1
DHCP4.OPTION[21]:                       requested_netbios_name_servers = 1
DHCP4.OPTION[22]:                       domain_name_servers = 192.168.0.1
DHCP4.OPTION[23]:                       requested_ms_classless_static_routes = 1
DHCP4.OPTION[24]:                       subnet_mask = 255.255.255.0
DHCP4.OPTION[25]:                       network_number = 192.168.0.0
DHCP4.OPTION[26]:                       requested_host_name = 1
DHCP4.OPTION[27]:                       dhcp_server_identifier = 192.168.0.1
IP6.ADDRESS[1]:                         fe80::b865:b9c5:5948:24a0/64
IP6.GATEWAY:                            

GENERAL.DEVICE:                         <MAC address>
GENERAL.TYPE:                           bt
GENERAL.NM-TYPE:                        NMDeviceBt
GENERAL.VENDOR:                         
GENERAL.PRODUCT:                        
GENERAL.DRIVER:                         bluez
GENERAL.DRIVER-VERSION:                 
GENERAL.FIRMWARE-VERSION:               
GENERAL.HWADDR:                         <MAC address>
GENERAL.MTU:                            0
GENERAL.STATE:                          30 (disconnected)
GENERAL.REASON:                         0 (No reason given)
GENERAL.UDI:                            /org/bluez/hci0/dev_2C_29_97_22_9C_A8
GENERAL.IP-IFACE:                       
GENERAL.IS-SOFTWARE:                    no
GENERAL.NM-MANAGED:                     yes
GENERAL.AUTOCONNECT:                    yes
GENERAL.FIRMWARE-MISSING:               no
GENERAL.NM-PLUGIN-MISSING:              no
GENERAL.PHYS-PORT-ID:                   --
GENERAL.CONNECTION:                     --
GENERAL.CON-UUID:                       --
GENERAL.CON-PATH:                       --
GENERAL.METERED:                        unknown
CAPABILITIES.CARRIER-DETECT:            no
CAPABILITIES.SPEED:                     unknown
CAPABILITIES.IS-SOFTWARE:               no
BLUETOOTH.CAPABILITIES:                 NAP
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/{6}
CONNECTIONS.AVAILABLE-CONNECTIONS[1]:   b03ef8e7-3709-4dc2-ade3-356f7237cb2d | Windows Phone Network

GENERAL.DEVICE:                         enp4s0
GENERAL.TYPE:                           ethernet
GENERAL.NM-TYPE:                        NMDeviceEthernet
GENERAL.VENDOR:                         Realtek Semiconductor Co., Ltd.
GENERAL.PRODUCT:                        RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller (Motherboard)
GENERAL.DRIVER:                         r8169
GENERAL.DRIVER-VERSION:                 2.3LK-NAPI
GENERAL.FIRMWARE-VERSION:               
GENERAL.HWADDR:                         <MAC 'enp4s0' [IF1]>
GENERAL.MTU:                            1500
GENERAL.STATE:                          20 (unavailable)
GENERAL.REASON:                         2 (Device is now managed)
GENERAL.UDI:                            /sys/devices/pci0000:00/0000:00:09.0/0000:04:00.0/net/enp4s0
GENERAL.IP-IFACE:                       
GENERAL.IS-SOFTWARE:                    no
GENERAL.NM-MANAGED:                     yes
GENERAL.AUTOCONNECT:                    yes
GENERAL.FIRMWARE-MISSING:               no
GENERAL.NM-PLUGIN-MISSING:              no
GENERAL.PHYS-PORT-ID:                   --
GENERAL.CONNECTION:                     --
GENERAL.CON-UUID:                       --
GENERAL.CON-PATH:                       --
GENERAL.METERED:                        unknown
CAPABILITIES.CARRIER-DETECT:            yes
CAPABILITIES.SPEED:                     unknown
CAPABILITIES.IS-SOFTWARE:               no
WIRED-PROPERTIES.CARRIER:               off
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: 

SSID              BSSID              MODE   CHAN  FREQ      RATE       SIGNAL  BARS  SECURITY   ACTIVE  * 
HeDracergIthsidd  <MAC '' [AC1]>  Infra  11    2462 MHz  54 Mbit/s  100     ▂▄▆█  WPA1 WPA2  yes     * 
HeDracergIthsidd  <MAC '' [AC1]>  Infra  11    2462 MHz  54 Mbit/s  80      ▂▄▆_  WPA1 WPA2  yes     * 
VM483751-2G       <MAC 'VM483751-2G' [AC3]>  Infra  11    2462 MHz  54 Mbit/s  64      ▂▄▆_  WPA1 WPA2  no        
SKYCDB98          <MAC 'SKYCDB98' [AC3]>  Infra  1     2412 MHz  54 Mbit/s  34      ▂▄__  WPA2       no        
SKY24DBD          <MAC 'SKY24DBD' [AC4]>  Infra  11    2462 MHz  54 Mbit/s  34      ▂▄__  WPA2       no        
VM488352-2G       <MAC 'VM488352-2G' [AN6]>  Infra  6     2437 MHz  54 Mbit/s  30      ▂___  WPA1 WPA2  no        

SSID              BSSID              MODE   CHAN  FREQ      RATE       SIGNAL  BARS  SECURITY   ACTIVE  * 
VM483751-2G       <MAC 'VM483751-2G' [AC3]>  Infra  11    2462 MHz  54 Mbit/s  67      ▂▄▆_  WPA1 WPA2  no        
HeDracergIthsidd  <MAC '' [AC1]>  Infra  11    2462 MHz  54 Mbit/s  60      ▂▄▆_  WPA1 WPA2  yes     * 
HeDracergIthsidd  <MAC '' [AC1]>  Infra  11    2462 MHz  54 Mbit/s  58      ▂▄▆_  WPA1 WPA2  yes     * 
SKY24DBD          <MAC 'SKY24DBD' [AC4]>  Infra  11    2462 MHz  54 Mbit/s  40      ▂▄__  WPA2       no        

##### NetworkManager.state ##############

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

##### NetworkManager.conf ###############

[main]
plugins=ifupdown,keyfile,ofono
dns=dnsmasq

[ifupdown]
managed=false

##### NetworkManager profiles ###########

[[/etc/NetworkManager/system-connections/HeDracergIthsidd 1]] (600 root)
[connection] id=HeDracergIthsidd 1 | type=wifi | permissions=
[wifi] bssid=<MAC '' [AC1]> | mac-address=<MAC address> | mac-address-blacklist= | mtu=1400 | ssid=HeDracergIthsidd
[ipv4] method=auto
[ipv6] method=auto

[[/etc/NetworkManager/system-connections/HeDracergIthsidd 2]] (600 root)
[connection] id=HeDracergIthsidd 2 | type=wifi | permissions=
[wifi] mac-address=<MAC 'wlx<IF from MAC [IF3]>' [IF3]> | mac-address-blacklist= | mtu=1400 | ssid=HeDracergIthsidd
[ipv4] method=auto
[ipv6] method=auto

[[/etc/NetworkManager/system-connections/Auto HeDracergIthsidd]] (600 root)
[connection] id=Auto HeDracergIthsidd | type=wifi | permissions=
[wifi] mac-address=<MAC 'wlp5s7' [IF2]> | mac-address-blacklist= | ssid=HeDracergIthsidd
[ipv4] method=auto
[ipv6] method=auto

##### iw reg get ########################

Region: Europe/London (based on set time zone)

country 00: DFS-UNSET
	(2402 - 2472 @ 40), (N/A, 20), (N/A)
	(2457 - 2482 @ 40), (N/A, 20), (N/A), NO-IR
	(2474 - 2494 @ 20), (N/A, 20), (N/A), NO-OFDM, NO-IR
	(5170 - 5250 @ 80), (N/A, 20), (N/A), NO-IR
	(5250 - 5330 @ 80), (N/A, 20), (0 ms), DFS, NO-IR
	(5490 - 5730 @ 160), (N/A, 20), (0 ms), DFS, NO-IR
	(5735 - 5835 @ 80), (N/A, 20), (N/A), NO-IR
	(57240 - 63720 @ 2160), (N/A, 0), (N/A)

##### iwlist channels ###################

lo        no frequency information.

enp4s0    no frequency information.

wlx<IF from MAC [IF3]>  14 channels in total; available frequencies :
          Channel 01 : 2.412 GHz
          Channel 02 : 2.417 GHz
          Channel 03 : 2.422 GHz
          Channel 04 : 2.427 GHz
          Channel 05 : 2.432 GHz
          Channel 06 : 2.437 GHz
          Channel 07 : 2.442 GHz
          Channel 08 : 2.447 GHz
          Channel 09 : 2.452 GHz
          Channel 10 : 2.457 GHz
          Channel 11 : 2.462 GHz
          Channel 12 : 2.467 GHz
          Channel 13 : 2.472 GHz
          Channel 14 : 2.484 GHz
          Current Frequency:2.462 GHz (Channel 11)

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

##### iwlist scan #######################

lo        Interface doesn't support scanning.

enp4s0    Interface doesn't support scanning.

Channel occupancy:

      1   APs on   Frequency:2.412 GHz (Channel 1)
      8   APs on   Frequency:2.462 GHz (Channel 11)

wlx<IF from MAC [IF3]>  Scan completed :
          Cell 01 - Address: <MAC '' [AC1]>
                    Channel:11
                    Frequency:2.462 GHz (Channel 11)
                    Quality=44/70  Signal level=-66 dBm  
                    Encryption key:on
                    ESSID:""
                    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=00000063c3e93180
                    Extra: Last beacon: 268ms ago
                    IE: IEEE 802.11i/WPA2 Version 1
                        Group Cipher : CCMP
                        Pairwise Ciphers (1) : CCMP
                        Authentication Suites (1) : PSK
                    IE: WPA Version 1
                        Group Cipher : CCMP
                        Pairwise Ciphers (1) : CCMP
                        Authentication Suites (1) : PSK
          Cell 02 - Address: <MAC '' [AC1]>
                    Channel:11
                    Frequency:2.462 GHz (Channel 11)
                    Quality=46/70  Signal level=-64 dBm  
                    Encryption key:on
                    ESSID:"HeDracergIthsidd"
                    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=00000063c3ecd186
                    Extra: Last beacon: 32ms ago
                    IE: IEEE 802.11i/WPA2 Version 1
                        Group Cipher : CCMP
                        Pairwise Ciphers (1) : CCMP
                        Authentication Suites (1) : PSK
                    IE: WPA Version 1
                        Group Cipher : CCMP
                        Pairwise Ciphers (1) : CCMP
                        Authentication Suites (1) : PSK
          Cell 03 - Address: <MAC 'VM483751-2G' [AC3]>
                    Channel:11
                    Frequency:2.462 GHz (Channel 11)
                    Quality=50/70  Signal level=-60 dBm  
                    Encryption key:on
                    ESSID:"VM483751-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=0000000038c30bf2
                    Extra: Last beacon: 32ms 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 'SKY24DBD' [AC4]>
                    Channel:11
                    Frequency:2.462 GHz (Channel 11)
                    Quality=32/70  Signal level=-78 dBm  
                    Encryption key:on
                    ESSID:"SKY24DBD"
                    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=00000016aa710183
                    Extra: Last beacon: 1932ms ago
                    IE: IEEE 802.11i/WPA2 Version 1
                        Group Cipher : CCMP
                        Pairwise Ciphers (1) : CCMP
                        Authentication Suites (1) : PSK

wlp5s7    Scan completed :
          Cell 01 - Address: <MAC '' [AC1]>
                    Channel:11
                    Frequency:2.462 GHz (Channel 11)
                    Quality=70/70  Signal level=-40 dBm  
                    Encryption key:on
                    ESSID:""
                    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=00000063ac3c4a22
                    Extra: Last beacon: 400428ms ago
                    IE: IEEE 802.11i/WPA2 Version 1
                        Group Cipher : CCMP
                        Pairwise Ciphers (1) : CCMP
                        Authentication Suites (1) : PSK
                    IE: WPA Version 1
                        Group Cipher : CCMP
                        Pairwise Ciphers (1) : CCMP
                        Authentication Suites (1) : PSK
          Cell 02 - Address: <MAC '' [AC1]>
                    Channel:11
                    Frequency:2.462 GHz (Channel 11)
                    Quality=70/70  Signal level=-40 dBm  
                    Encryption key:on
                    ESSID:"HeDracergIthsidd"
                    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=00000063c419903b
                    Extra: Last beacon: 52ms ago
                    IE: IEEE 802.11i/WPA2 Version 1
                        Group Cipher : CCMP
                        Pairwise Ciphers (1) : CCMP
                        Authentication Suites (1) : PSK
                    IE: WPA Version 1
                        Group Cipher : CCMP
                        Pairwise Ciphers (1) : CCMP
                        Authentication Suites (1) : PSK
          Cell 03 - Address: <MAC 'SKYCDB98' [AC3]>
                    Channel:1
                    Frequency:2.412 GHz (Channel 1)
                    Quality=32/70  Signal level=-78 dBm  
                    Encryption key:on
                    ESSID:"SKYCDB98"
                    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=000000df46a89819
                    Extra: Last beacon: 56ms ago
                    IE: IEEE 802.11i/WPA2 Version 1
                        Group Cipher : CCMP
                        Pairwise Ciphers (1) : CCMP
                        Authentication Suites (1) : PSK
          Cell 04 - Address: <MAC 'VM483751-2G' [AC3]>
                    Channel:11
                    Frequency:2.462 GHz (Channel 11)
                    Quality=48/70  Signal level=-62 dBm  
                    Encryption key:on
                    ESSID:"VM483751-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=0000000038ef6b00
                    Extra: Last beacon: 56ms 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 'SKY24DBD' [AC4]>
                    Channel:11
                    Frequency:2.462 GHz (Channel 11)
                    Quality=28/70  Signal level=-82 dBm  
                    Encryption key:on
                    ESSID:"SKY24DBD"
                    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=00000016aaa8b588
                    Extra: Last beacon: 56ms ago
                    IE: IEEE 802.11i/WPA2 Version 1
                        Group Cipher : CCMP
                        Pairwise Ciphers (1) : CCMP
                        Authentication Suites (1) : PSK

##### module infos ######################

[rt73usb]
filename:       /lib/modules/4.4.0-38-generic/kernel/drivers/net/wireless/rt2x00/rt73usb.ko
license:        GPL
firmware:       rt73.bin
description:    Ralink RT73 USB Wireless LAN driver.
version:        2.3.0
author:         http://rt2x00.serialmonkey.com
srcversion:     FE4ADCE723A8C0B21A28A01
depends:        rt2x00lib,rt2x00usb,crc-itu-t
intree:         Y
vermagic:       4.4.0-38-generic SMP mod_unload modversions 
parm:           nohwcrypt:Disable hardware encryption. (bool)

[rt2x00usb]
filename:       /lib/modules/4.4.0-38-generic/kernel/drivers/net/wireless/rt2x00/rt2x00usb.ko
license:        GPL
description:    rt2x00 usb library
version:        2.3.0
author:         http://rt2x00.serialmonkey.com
srcversion:     FADD78F4B0B6C8F4DDFA8E5
depends:        rt2x00lib,mac80211
intree:         Y
vermagic:       4.4.0-38-generic SMP mod_unload modversions 

[rt61pci]
filename:       /lib/modules/4.4.0-38-generic/kernel/drivers/net/wireless/rt2x00/rt61pci.ko
license:        GPL
firmware:       rt2661.bin
firmware:       rt2561s.bin
firmware:       rt2561.bin
description:    Ralink RT61 PCI & PCMCIA Wireless LAN driver.
version:        2.3.0
author:         http://rt2x00.serialmonkey.com
srcversion:     147116748700BC2C93D5888
depends:        rt2x00lib,rt2x00mmio,rt2x00pci,eeprom_93cx6,crc-itu-t
intree:         Y
vermagic:       4.4.0-38-generic SMP mod_unload modversions 
parm:           nohwcrypt:Disable hardware encryption. (bool)

[rt2x00pci]
filename:       /lib/modules/4.4.0-38-generic/kernel/drivers/net/wireless/rt2x00/rt2x00pci.ko
license:        GPL
description:    rt2x00 pci library
version:        2.3.0
author:         http://rt2x00.serialmonkey.com
srcversion:     543B84557258F153AC267F0
depends:        rt2x00lib,mac80211
intree:         Y
vermagic:       4.4.0-38-generic SMP mod_unload modversions 

[rt2x00mmio]
filename:       /lib/modules/4.4.0-38-generic/kernel/drivers/net/wireless/rt2x00/rt2x00mmio.ko
license:        GPL
description:    rt2x00 mmio library
version:        2.3.0
author:         http://rt2x00.serialmonkey.com
srcversion:     ADBE279820CFD0A1081C682
depends:        rt2x00lib
intree:         Y
vermagic:       4.4.0-38-generic SMP mod_unload modversions 

[rt2x00lib]
filename:       /lib/modules/4.4.0-38-generic/kernel/drivers/net/wireless/rt2x00/rt2x00lib.ko
license:        GPL
description:    rt2x00 library
version:        2.3.0
author:         http://rt2x00.serialmonkey.com
srcversion:     72E39180D883A5541F66494
depends:        mac80211,cfg80211
intree:         Y
vermagic:       4.4.0-38-generic SMP mod_unload modversions 

[mac80211]
filename:       /lib/modules/4.4.0-38-generic/kernel/net/mac80211/mac80211.ko
license:        GPL
description:    IEEE 802.11 subsystem
srcversion:     B10AF1CD828D26173EA0378
depends:        cfg80211
intree:         Y
vermagic:       4.4.0-38-generic SMP mod_unload modversions 
parm:           minstrel_vht_only:Use only VHT rates when VHT is supported by sta. (bool)
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)

[cfg80211]
filename:       /lib/modules/4.4.0-38-generic/kernel/net/wireless/cfg80211.ko
description:    wireless configuration support
license:        GPL
author:         Johannes Berg
srcversion:     25A45701AAA64DAC1E47D9D
depends:        
intree:         Y
vermagic:       4.4.0-38-generic SMP mod_unload modversions 
parm:           ieee80211_regdom:IEEE 802.11 regulatory domain code (charp)
parm:           cfg80211_disable_40mhz_24ghz:Disable 40MHz support in the 2.4GHz band (bool)

##### module parameters #################

[rt73usb]
nohwcrypt: N

[rt61pci]
nohwcrypt: N

[mac80211]
beacon_loss_count: 7
ieee80211_default_rc_algo: minstrel_ht
max_nullfunc_tries: 2
max_probe_tries: 5
minstrel_vht_only: Y
probe_wait_ms: 500

[cfg80211]
cfg80211_disable_40mhz_24ghz: N
ieee80211_regdom: 00

##### /etc/modules ######################

##### modprobe options ##################

[/etc/modprobe.d/blacklist-ath_pci.conf]
blacklist ath_pci

[/etc/modprobe.d/blacklist.conf]
blacklist evbug
blacklist usbmouse
blacklist usbkbd
blacklist eepro100
blacklist de4x5
blacklist eth1394
blacklist snd_intel8x0m
blacklist snd_aw2
blacklist i2c_i801
blacklist prism54
blacklist bcm43xx
blacklist garmin_gps
blacklist asus_acpi
blacklist snd_pcsp
blacklist pcspkr
blacklist amd76x_edac

[/etc/modprobe.d/blacklist-rare-network.conf]
alias net-pf-3 off
alias net-pf-6 off
alias net-pf-9 off
alias net-pf-11 off
alias net-pf-12 off
alias net-pf-19 off
alias net-pf-21 off
alias net-pf-36 off

[/etc/modprobe.d/iwlwifi.conf]
remove iwlwifi \
(/sbin/lsmod | grep -o -e ^iwlmvm -e ^iwldvm -e ^iwlwifi | xargs /sbin/rmmod) \
&& /sbin/modprobe -r mac80211

[/etc/modprobe.d/mlx4.conf]
softdep mlx4_core post: mlx4_en

[/etc/modprobe.d/osspd.conf]
blacklist snd-pcm-oss
blacklist snd-mixer-oss
blacklist snd-seq-oss

##### rc.local ##########################

exit 0

##### pm-utils ##########################

##### udev rules ########################

##### dmesg #############################

[ 4798.787428] wlp5s7: authenticate with <MAC '' [AC1]>
[ 4798.803059] wlp5s7: send auth to <MAC '' [AC1]> (try 1/3)
[ 4798.805444] wlp5s7: authenticated
[ 4798.806992] wlp5s7: associate with <MAC '' [AC1]> (try 1/3)
[ 4798.809638] wlp5s7: RX AssocResp from <MAC '' [AC1]> (capab=0x31 status=0 aid=2)
[ 4798.809690] wlp5s7: associated
[ 4798.809728] IPv6: ADDRCONF(NETDEV_CHANGE): wlp5s7: link becomes ready
[ 4830.387399] ieee80211 phy0: rt2x00queue_flush_queue: Warning - Queue 2 failed to flush (repeated 2 times)
[ 4837.950070] wlp5s7: deauthenticating from <MAC '' [AC1]> by local choice (Reason: 3=DEAUTH_LEAVING)
[ 4837.972074] wlx<IF from MAC [IF3]>: deauthenticating from <MAC '' [AC1]> by local choice (Reason: 3=DEAUTH_LEAVING)
[ 4877.744360] IPv6: ADDRCONF(NETDEV_UP): wlx<IF from MAC [IF3]>: link is not ready
[ 4877.775225] IPv6: ADDRCONF(NETDEV_UP): wlp5s7: link is not ready
[ 4877.849544] IPv6: ADDRCONF(NETDEV_UP): wlx<IF from MAC [IF3]>: link is not ready
[ 4877.862550] IPv6: ADDRCONF(NETDEV_UP): wlp5s7: link is not ready
[ 4880.020547] wlp5s7: authenticate with <MAC '' [AC1]>
[ 4880.035211] wlp5s7: send auth to <MAC '' [AC1]> (try 1/3)
[ 4880.037023] wlp5s7: authenticated
[ 4880.039135] wlp5s7: associate with <MAC '' [AC1]> (try 1/3)
[ 4880.041937] wlp5s7: RX AssocResp from <MAC '' [AC1]> (capab=0x31 status=0 aid=1)
[ 4880.041989] wlp5s7: associated
[ 4880.042025] IPv6: ADDRCONF(NETDEV_CHANGE): wlp5s7: link becomes ready
[ 4880.255471] wlx<IF from MAC [IF3]>: authenticate with <MAC '' [AC1]>
[ 4880.315265] wlx<IF from MAC [IF3]>: send auth to <MAC '' [AC1]> (try 1/3)
[ 4880.318482] wlx<IF from MAC [IF3]>: authenticated
[ 4880.319150] wlx<IF from MAC [IF3]>: associate with <MAC '' [AC1]> (try 1/3)
[ 4880.322400] wlx<IF from MAC [IF3]>: RX AssocResp from <MAC '' [AC1]> (capab=0x31 status=0 aid=2)
[ 4880.332813] wlx<IF from MAC [IF3]>: associated
[ 4880.332855] IPv6: ADDRCONF(NETDEV_CHANGE): wlx<IF from MAC [IF3]>: link becomes ready
[ 4881.083182] ieee80211 phy0: rt2x00queue_flush_queue: Warning - Queue 2 failed to flush (repeated 3 times)
[ 4882.495162] ieee80211 phy0: rt2x00queue_flush_queue: Warning - Queue 0 failed to flush
[ 4882.655183] ieee80211 phy0: rt2x00queue_flush_queue: Warning - Queue 2 failed to flush (repeated 5 times)
[ 4884.995217] ieee80211 phy0: rt2x00queue_flush_queue: Warning - Queue 1 failed to flush
[ 4885.495195] ieee80211 phy0: rt2x00queue_flush_queue: Warning - Queue 2 failed to flush
[ 4886.063228] ieee80211 phy0: rt2x00queue_flush_queue: Warning - Queue 1 failed to flush
[ 4886.227259] ieee80211 phy0: rt2x00queue_flush_queue: Warning - Queue 2 failed to flush (repeated 17 times)
[ 5158.583323] ieee80211 phy0: rt61pci_txdone: Warning - TX status report missed for entry 22
[ 5167.926934] ieee80211 phy0: rt61pci_txdone: Warning - TX status report missed for entry 16
[ 5173.395197] ieee80211 phy0: rt2x00queue_flush_queue: Warning - Queue 2 failed to flush (repeated 10 times)
[ 5209.431505] ieee80211 phy0: rt61pci_txdone: Warning - TX status report missed for entry 7
[ 5293.817369] ieee80211 phy0: rt2x00queue_flush_queue: Warning - Queue 1 failed to flush (repeated 3 times)
[ 5533.483930] ieee80211 phy0: rt2x00queue_flush_queue: Warning - Queue 2 failed to flush
[ 5668.596495] ieee80211 phy0: rt61pci_txdone: Warning - TX status report missed for entry 23
[ 5774.775458] ieee80211 phy0: rt2x00queue_flush_queue: Warning - Queue 1 failed to flush
[ 5814.624378] ieee80211 phy0: rt2x00queue_flush_queue: Warning - Queue 2 failed to flush

########## wireless info END ############
JeremyB
Level 21
Level 21
Posts: 13880
Joined: Fri Feb 21, 2014 8:17 am

Re: Can't connect to the Internet in 17 or 18

Post by JeremyB »

It seems you likely have the issues due to wifi power management being enabled

Code: Select all

sudo -H gedit /lib/systemd/system/wifi-power-management-off.service
And paste the following

Code: Select all

[Unit]
Description=Disable power management for wlp5s7
Requires=sys-subsystem-net-devices-wlp5s7.device
After=network.target

[Service]
Type=oneshot
ExecStartPre= /bin/sleep 30
ExecStart=/sbin/iwconfig wlp5s7 power off

[Install]
WantedBy=multi-user.target
Save and exit text editor

Then

Code: Select all

sudo -H gedit  /etc/systemd/system/root-resume.service
Then paste

Code: Select all

[Unit]
Description=Turn off wlan power management
After=suspend.target

[Service]
Type=simple
ExecStartPre= /bin/sleep 25
ExecStart= /sbin/iwconfig wlp5s7 power off

[Install]
WantedBy=suspend.target
Save and exit text editor

Then enable the services using

Code: Select all

systemctl enable wifi-power-management-off.service
You may have to enter your password twice

Code: Select all

systemctl enable /root-resume.service
Reboot
ZeonOtaku

Re: Can't connect to the Internet in 17 or 18

Post by ZeonOtaku »

Long story short, I changed the board and it seems to work now. That was a while ago, maybe Linux will work with that board now, who knows.
User avatar
austin.texas
Level 20
Level 20
Posts: 12003
Joined: Tue Nov 17, 2009 3:57 pm
Location: at /home

Re: Can't connect to the Internet in 17 or 18

Post by austin.texas »

I am glad you got it worked out !
Please go to your first post, click the EDIT (pencil) icon, and add [SOLVED] to the title.
Mint 18.2 Cinnamon, Quad core AMD A8-3870 with Radeon HD Graphics 6550D, 8GB DDR3, Ralink RT2561/RT61 802.11g PCI
Linux Linx 2018
User avatar
Pierre
Level 21
Level 21
Posts: 13223
Joined: Fri Sep 05, 2008 5:33 am
Location: Perth, AU.

Re: Can't connect to the Internet in 17 or 18

Post by Pierre »

@rayfward if you have any further issues - - it may be prudent to start New Post about them.
:)
Image
Please edit your original post title to include [SOLVED] - when your problem is solved!
and DO LOOK at those Unanswered Topics - - you may be able to answer some!.
Locked

Return to “Networking”