WiFi shows connecting after putting in correct password, after a while "Connection failed" [ASUS X550ZA]

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
phase7
Level 1
Level 1
Posts: 9
Joined: Sun Aug 11, 2019 11:21 pm

WiFi shows connecting after putting in correct password, after a while "Connection failed" [ASUS X550ZA]

Post by phase7 »

Running linux mint 19.1 with kernel 4.20. The wifi didn't even show any networks before manually installing kernel 4.20. Now the connection never works. I can connect if I use an external Wi-Fi adapter, but not with one built in. Help would be appreciated :| .

Code: Select all

System:
  Host: p7-X550ZA Kernel: 4.20.0-042000-generic x86_64 bits: 64 
  compiler: gcc v: 8.2.0 Desktop: Cinnamon 4.0.10 
  Distro: Linux Mint 19.1 Tessa base: Ubuntu 18.04 bionic 
Machine:
  Type: Laptop System: ASUSTeK product: X550ZA v: 1.0 serial: <filter> 
  Mobo: ASUSTeK model: X550ZA v: 1.0 serial: <filter> 
  UEFI [Legacy]: American Megatrends v: 208 date: 10/15/2015 
Battery:
  ID-1: BAT0 charge: 10.8 Wh condition: 12.4/30.8 Wh (40%) model: X550E30 
  status: Discharging 
CPU:
  Topology: Quad Core model: AMD A10-7400P Radeon R6 10 Compute Cores 4C+6G 
  bits: 64 type: MCP arch: Steamroller rev: 1 L2 cache: 2048 KiB 
  flags: lm nx pae sse sse2 sse3 sse4_1 sse4_2 sse4a ssse3 svm 
  bogomips: 19962 
  Speed: 1396 MHz min/max: 1400/2500 MHz Core speeds (MHz): 1: 1394 2: 1397 
  3: 1397 4: 1395 
Graphics:
  Device-1: AMD Kaveri [Radeon R6 Graphics] vendor: ASUSTeK driver: radeon 
  v: kernel bus ID: 00:01.0 
  Display: x11 server: X.Org 1.19.6 driver: ati,radeon 
  unloaded: fbdev,modesetting,vesa resolution: 1366x768~60Hz 
  OpenGL: renderer: AMD KAVERI (DRM 2.50.0 4.20.0-042000-generic LLVM 8.0.0) 
  v: 4.5 Mesa 19.0.2 direct render: Yes 
Audio:
  Device-1: AMD Kaveri HDMI/DP Audio vendor: ASUSTeK driver: snd_hda_intel 
  v: kernel bus ID: 00:01.1 
  Device-2: AMD FCH Azalia vendor: ASUSTeK driver: snd_hda_intel v: kernel 
  bus ID: 00:14.2 
  Sound Server: ALSA v: k4.20.0-042000-generic 
Network:
  Device-1: MEDIATEK MT7630e 802.11bgn Wireless Network Adapter 
  vendor: Foxconn driver: mt76x0e v: kernel port: f100 bus ID: 03:00.0 
  IF: wlp3s0f0 state: down mac: <filter> 
  Device-2: Realtek RTL8111/8168/8411 PCI Express Gigabit Ethernet 
  vendor: ASUSTeK driver: r8169 v: kernel port: e000 bus ID: 04:00.0 
  IF: enp4s0 state: down mac: <filter> 
Drives:
  Local Storage: total: 931.51 GiB used: 197.08 GiB (21.2%) 
  ID-1: /dev/sda vendor: Toshiba model: MQ01ABD100 size: 931.51 GiB 
Partition:
  ID-1: / size: 33.71 GiB used: 14.04 GiB (41.7%) fs: ext4 dev: /dev/sda7 
  ID-2: swap-1 size: 749.0 MiB used: 0 KiB (0.0%) fs: swap dev: /dev/sda8 
Sensors:
  System Temperatures: cpu: 58.2 C mobo: N/A gpu: radeon temp: 58 C 
  Fan Speeds (RPM): N/A 
Info:
  Processes: 190 Uptime: 5m Memory: 6.75 GiB used: 632.0 MiB (9.1%) 
  Init: systemd runlevel: 5 Compilers: gcc: 7.4.0 Shell: bash v: 4.4.20 
  inxi: 3.0.27 
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.
sleeper12
Level 21
Level 21
Posts: 14397
Joined: Thu May 25, 2017 3:22 pm

Re: WiFi shows connecting after putting in correct password, after a while "Connection failed" [ASUS X550ZA]

Post by sleeper12 »

See if this command makes any difference:

Code: Select all

 sudo ifconfig wlp3s0f0 up 
kelebek333
Level 4
Level 4
Posts: 418
Joined: Sat Jun 25, 2011 11:57 am

Re: WiFi shows connecting after putting in correct password, after a while "Connection failed" [ASUS X550ZA]

Post by kelebek333 »

You can try to install alternative driver (instead of built in of kernel) with following commands.

Code: Select all

sudo apt-get install build-essential git dkms linux-headers-generic
git clone -b master https://github.com/neurobin/MT7630E
sudo dkms add ./MT7630E
sudo dkms build mt7630e/2.1.0
sudo dkms install mt7630e/2.1.0

echo 'mt7630e' | sudo tee  /etc/modules-load.d/mt7630e.conf
echo "options mt7630e nohwcrypt=1" | sudo tee  /etc/modprobe.d/mt7630e.conf
echo "blacklist mt76x0e" | sudo tee /etc/modprobe.d/mt76x0e.conf
sudo update-initramfs -u
Add firmware with following command.

Code: Select all

cd MT7630E
sudo cp -v firmware/*/* /lib/firmware/
Reboot PC.

Edit: add about firmware
Last edited by kelebek333 on Tue Aug 13, 2019 5:53 am, edited 1 time in total.
phase7
Level 1
Level 1
Posts: 9
Joined: Sun Aug 11, 2019 11:21 pm

Re: WiFi shows connecting after putting in correct password, after a while "Connection failed" [ASUS X550ZA]

Post by phase7 »

sleeper12 wrote: Mon Aug 12, 2019 12:00 pm See if this command makes any difference:

Code: Select all

 sudo ifconfig wlp3s0f0 up 
Thanks very much for replying.
But the problem still persists. After giving the command, there is pop up notification saying activation failed.
phase7
Level 1
Level 1
Posts: 9
Joined: Sun Aug 11, 2019 11:21 pm

Re: WiFi shows connecting after putting in correct password, after a while "Connection failed" [ASUS X550ZA]

Post by phase7 »

kelebek333 wrote: Mon Aug 12, 2019 6:13 pm You can try to install alternative driver (instead of built in of kernel) with following commands.

Code: Select all

sudo apt-get install build-essential git dkms linux-headers-generic
git clone -b master https://github.com/neurobin/MT7630E
sudo dkms add ./MT7630E
sudo dkms build mt7630e/2.1.0
sudo dkms install mt7630e/2.1.0

echo 'mt7630e' | sudo tee  /etc/modules-load.d/mt7630e.conf
echo "options mt7630e nohwcrypt=1" | sudo tee  /etc/modprobe.d/mt7630e.conf
echo "blacklist mt76x0e" | sudo tee /etc/modprobe.d/mt76x0e.conf
sudo update-initramfs -u
Reboot PC.
Thank you for your response. Followed those instructions, situation got worse :| . Now can't even detect any networks, just shows "Firmware Missing"
Image

Here is current state of inxi output of network section

Code: Select all

Network:
  Device-1: MEDIATEK MT7630e 802.11bgn Wireless Network Adapter 
  vendor: Foxconn driver: mt7630e v: 2.3.8 port: f100 bus ID: 03:00.0 
  IF: wlp3s0f0 state: down mac: <filter> 
  Device-2: Realtek RTL8111/8168/8411 PCI Express Gigabit Ethernet 
  vendor: ASUSTeK driver: r8169 v: kernel port: e000 bus ID: 04:00.0 
  IF: enp4s0 state: down mac: <filter> 
Last edited by phase7 on Mon Aug 12, 2019 11:58 pm, edited 1 time in total.
sleeper12
Level 21
Level 21
Posts: 14397
Joined: Thu May 25, 2017 3:22 pm

Re: WiFi shows connecting after putting in correct password, after a while "Connection failed" [ASUS X550ZA]

Post by sleeper12 »

Maybe use Timeshift to go back to before you made those changes?
phase7
Level 1
Level 1
Posts: 9
Joined: Sun Aug 11, 2019 11:21 pm

Re: WiFi shows connecting after putting in correct password, after a while "Connection failed" [ASUS X550ZA]

Post by phase7 »

sleeper12 wrote: Mon Aug 12, 2019 11:50 pm Maybe use Timeshift to go back to before you made those changes?
Last timeshift update is pretty old, and the main problem was present then - so would it be wise?
sleeper12
Level 21
Level 21
Posts: 14397
Joined: Thu May 25, 2017 3:22 pm

Re: WiFi shows connecting after putting in correct password, after a while "Connection failed" [ASUS X550ZA]

Post by sleeper12 »

phase7 wrote: Tue Aug 13, 2019 12:01 am
sleeper12 wrote: Mon Aug 12, 2019 11:50 pm Maybe use Timeshift to go back to before you made those changes?
Last timeshift update is pretty old, and the main problem was present then - so would it be wise?
Hold off then, someone may have a better way.
kelebek333
Level 4
Level 4
Posts: 418
Joined: Sat Jun 25, 2011 11:57 am

Re: WiFi shows connecting after putting in correct password, after a while "Connection failed" [ASUS X550ZA]

Post by kelebek333 »

phase7 wrote: Mon Aug 12, 2019 11:40 pm
Thank you for your response. Followed those instructions, situation got worse :| . Now can't even detect any networks, just shows "Firmware Missing"
You can install following command from github files.

Code: Select all

cd MT7630E
sudo cp -v firmware/*/* /lib/firmware/
phase7
Level 1
Level 1
Posts: 9
Joined: Sun Aug 11, 2019 11:21 pm

Re: WiFi shows connecting after putting in correct password, after a while "Connection failed" [ASUS X550ZA]

Post by phase7 »

kelebek333 wrote: Tue Aug 13, 2019 5:50 am
phase7 wrote: Mon Aug 12, 2019 11:40 pm
Thank you for your response. Followed those instructions, situation got worse :| . Now can't even detect any networks, just shows "Firmware Missing"
You can install following command from github files.

Code: Select all

cd MT7630E
sudo cp -v firmware/*/* /lib/firmware/
That worked on the firmware problem. :D But the previous one still exists. It still shows "connection failed" :|
phase7
Level 1
Level 1
Posts: 9
Joined: Sun Aug 11, 2019 11:21 pm

Re: WiFi shows connecting after putting in correct password, after a while "Connection failed" [ASUS X550ZA]

Post by phase7 »

kelebek333 wrote: Wed Aug 14, 2019 7:28 am Can you post wifi script's output. => viewtopic.php?f=90&t=267643&p=1458023#p1458023
Here you go. FYI I am using an external adapter for Wi-Fi right now, Internal one still isn't working.

https://termbin.com/dq1c

Code: Select all


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

Report from: 14 Aug 2019 18:39 +06 +0600

Booted last: 14 Aug 2019 00:00 +06 +0600

Script from: 22 Oct 2018 03:34 UTC +0000

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

Distributor ID:	LinuxMint
Description:	Linux Mint 19.1 Tessa
Release:	19.1
Codename:	tessa

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

Linux 4.20.0-042000-generic #201812232030 SMP Mon Dec 24 01:32:58 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux

Parameters: ro, quiet, splash, vt.handoff=1

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

Cinnamon

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

03:00.0 Network controller [0280]: MEDIATEK Corp. MT7630e 802.11bgn Wireless Network Adapter [14c3:7630]
	Subsystem: Foxconn International, Inc. MT7630e 802.11bgn Wireless Network Adapter [105b:e074]
	Kernel driver in use: mt7630e

04: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. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller [1043:200f]
	Kernel driver in use: r8169

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

Bus 002 Device 003: ID 0e8d:763f MediaTek Inc. 
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 001 Device 003: ID 148f:7601 Ralink Technology, Corp. MT7601U Wireless Adapter
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 006 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 005 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: yes
	Hard blocked: no
3: phy2: Wireless LAN
	Soft blocked: no
	Hard blocked: no

##### secure boot #######################

EFI variables are not supported on this system

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

asus_nb_wmi            28672  0
asus_wmi               28672  1 asus_nb_wmi
sparse_keymap          16384  1 asus_wmi
wmi_bmof               16384  0
mac80211              811008  2 mt7630e,mt7601u
cfg80211              655360  3 mt7630e,mt7601u,mac80211
wmi                    28672  2 asus_wmi,wmi_bmof
video                  49152  1 asus_wmi

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

[/etc/network/interfaces]
auto lo
iface lo inet loopback

auto dsl-provider
iface dsl-provider inet ppp
pre-up /bin/ip link set enp4s0 up # line maintained by pppoeconf
provider dsl-provider

auto enp4s0
iface enp4s0 inet manual

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

1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
    link/loopback <MAC address> brd <MAC address>
    inet 127.0.0.1/8 scope host lo
       valid_lft forever preferred_lft forever
    inet6 ::1/128 scope host 
       valid_lft forever preferred_lft forever
2: enp4s0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc fq_codel state DOWN group default qlen 1000
    link/ether <MAC 'enp4s0' [IF1]> brd <MAC address>
3: wlp3s0f0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc mq state DOWN group default qlen 1000
    link/ether <MAC 'wlp3s0f0' [IF2]> brd <MAC address>
5: wlx<IF from MAC [IF3]>: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP group default qlen 1000
    link/ether <MAC 'wlx<IF from MAC [IF3]>' [IF3]> brd <MAC address>
    inet 192.168.0.104/24 brd 192.168.0.255 scope global dynamic noprefixroute wlx<IF from MAC [IF3]>
       valid_lft 6703sec preferred_lft 6703sec
    inet6 fe80::8798:7510:b192:11c0/64 scope link noprefixroute 
       valid_lft forever preferred_lft forever

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

enp4s0    no wireless extensions.

lo        no wireless extensions.

wlp3s0f0  IEEE 802.11  ESSID:off/any  
          Mode:Managed  Access Point: Not-Associated   Tx-Power=20 dBm   
          Retry short limit:7   RTS thr:off   Fragment thr:off
          Power Management:on
          
wlx<IF from MAC [IF3]>  IEEE 802.11  ESSID:"roy(Galaxy Network)"  
          Mode:Managed  Frequency:2.457 GHz  Access Point: <MAC 'roy(Galaxy Network)' [AC1]>   
          Bit Rate=150 Mb/s   Tx-Power=20 dBm   
          Retry short limit:7   RTS thr:off   Fragment thr:off
          Power Management:off
          Link Quality=70/70  Signal level=-31 dBm  
          Rx invalid nwid:0  Rx invalid crypt:0  Rx invalid frag:0
          Tx excessive retries:0  Invalid misc:78   Missed beacon:0

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

default via 192.168.0.1 dev wlx<IF from MAC [IF3]> proto dhcp metric 600 
169.254.0.0/16 dev wlx<IF from MAC [IF3]> scope link metric 1000 
192.168.0.0/24 dev wlx<IF from MAC [IF3]> proto kernel scope link src 192.168.0.104 metric 600 

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

[777 root '/etc/resolv.conf' -> '../run/systemd/resolve/stub-resolv.conf']

nameserver 127.0.0.53
options edns0

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

Installed:

	NetworkManager

Running:

root       923     1  0 18:23 ?        00:00:02 /usr/sbin/NetworkManager --no-daemon

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

GENERAL.DEVICE:                         wlx<IF from MAC [IF3]>
GENERAL.TYPE:                           wifi
GENERAL.NM-TYPE:                        NMDeviceWifi
GENERAL.VENDOR:                         MediaTek
GENERAL.PRODUCT:                        802.11 n WLAN
GENERAL.DRIVER:                         mt7601u
GENERAL.DRIVER-VERSION:                 4.20.0-042000-generic
GENERAL.FIRMWARE-VERSION:               N/A
GENERAL.HWADDR:                         <MAC 'wlx<IF from MAC [IF3]>' [IF3]>
GENERAL.MTU:                            1500
GENERAL.STATE:                          100 (connected)
GENERAL.REASON:                         0 (No reason given)
GENERAL.UDI:                            /sys/devices/pci0000:00/0000:00:12.2/usb1/1-1/1-1: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:                     Auto roy(Galaxy Network)
GENERAL.CON-UUID:                       37247a73-0b1e-4e18-9ed7-f551785ff503
GENERAL.CON-PATH:                       /org/freedesktop/NetworkManager/ActiveConnection/10
GENERAL.METERED:                        no (guessed)
CAPABILITIES.CARRIER-DETECT:            no
CAPABILITIES.SPEED:                     150 Mb/s
CAPABILITIES.IS-SOFTWARE:               no
CAPABILITIES.SRIOV:                     no
WIFI-PROPERTIES.WEP:                    yes
WIFI-PROPERTIES.WPA:                    yes
WIFI-PROPERTIES.WPA2:                   yes
WIFI-PROPERTIES.TKIP:                   yes
WIFI-PROPERTIES.CCMP:                   yes
WIFI-PROPERTIES.AP:                     no
WIFI-PROPERTIES.ADHOC:                  no
WIFI-PROPERTIES.2GHZ:                   yes
WIFI-PROPERTIES.5GHZ:                   no
IP4.ADDRESS[1]:                         192.168.0.104/24
IP4.GATEWAY:                            192.168.0.1
IP4.ROUTE[1]:                           dst = 0.0.0.0/0, nh = 192.168.0.1, mt = 600
IP4.ROUTE[2]:                           dst = 192.168.0.0/24, nh = 0.0.0.0, mt = 600
IP4.ROUTE[3]:                           dst = 169.254.0.0/16, nh = 0.0.0.0, mt = 1000
IP4.DNS[1]:                             27.131.12.2
IP4.DNS[2]:                             8.8.8.8
DHCP4.OPTION[1]:                        requested_domain_search = 1
DHCP4.OPTION[2]:                        requested_broadcast_address = 1
DHCP4.OPTION[3]:                        requested_domain_name = 1
DHCP4.OPTION[4]:                        requested_rfc3442_classless_static_routes = 1
DHCP4.OPTION[5]:                        requested_time_offset = 1
DHCP4.OPTION[6]:                        requested_wpad = 1
DHCP4.OPTION[7]:                        requested_netbios_scope = 1
DHCP4.OPTION[8]:                        next_server = 0.0.0.0
DHCP4.OPTION[9]:                        broadcast_address = 192.168.0.255
DHCP4.OPTION[10]:                       dhcp_message_type = 5
DHCP4.OPTION[11]:                       requested_subnet_mask = 1
DHCP4.OPTION[12]:                       routers = 192.168.0.1
DHCP4.OPTION[13]:                       requested_interface_mtu = 1
DHCP4.OPTION[14]:                       ip_address = 192.168.0.104
DHCP4.OPTION[15]:                       requested_domain_name_servers = 1
DHCP4.OPTION[16]:                       requested_static_routes = 1
DHCP4.OPTION[17]:                       subnet_mask = 255.255.255.0
DHCP4.OPTION[18]:                       expiry = 1565793093
DHCP4.OPTION[19]:                       domain_name_servers = 27.131.12.2 8.8.8.8
DHCP4.OPTION[20]:                       requested_ntp_servers = 1
DHCP4.OPTION[21]:                       requested_netbios_name_servers = 1
DHCP4.OPTION[22]:                       requested_ms_classless_static_routes = 1
DHCP4.OPTION[23]:                       requested_routers = 1
DHCP4.OPTION[24]:                       dhcp_lease_time = 7200
DHCP4.OPTION[25]:                       requested_host_name = 1
DHCP4.OPTION[26]:                       network_number = 192.168.0.0
DHCP4.OPTION[27]:                       dhcp_server_identifier = 192.168.0.1
IP6.ADDRESS[1]:                         fe80::8798:7510:b192:11c0/64
IP6.GATEWAY:                            --
IP6.ROUTE[1]:                           dst = ff00::/8, nh = ::, mt = 256, table=255
IP6.ROUTE[2]:                           dst = fe80::/64, nh = ::, mt = 256
IP6.ROUTE[3]:                           dst = fe80::/64, nh = ::, mt = 600
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: /org/freedesktop/NetworkManager/Settings/{13,16,2}
CONNECTIONS.AVAILABLE-CONNECTIONS[1]:   c555ebf3-bf0b-442e-99b8-62ae986bcbed | Auto lima
CONNECTIONS.AVAILABLE-CONNECTIONS[2]:   37247a73-0b1e-4e18-9ed7-f551785ff503 | Auto roy(Galaxy Network)
CONNECTIONS.AVAILABLE-CONNECTIONS[3]:   e41bc524-07b3-4a65-b034-1beca9714ac1 | Auto lima

GENERAL.DEVICE:                         wlp3s0f0
GENERAL.TYPE:                           wifi
GENERAL.NM-TYPE:                        NMDeviceWifi
GENERAL.VENDOR:                         MEDIATEK Corp.
GENERAL.PRODUCT:                        MT7630e 802.11bgn Wireless Network Adapter
GENERAL.DRIVER:                         mt7630e
GENERAL.DRIVER-VERSION:                 4.20.0-042000-generic
GENERAL.FIRMWARE-VERSION:               N/A
GENERAL.HWADDR:                         <MAC 'wlp3s0f0' [IF2]>
GENERAL.MTU:                            1500
GENERAL.STATE:                          30 (disconnected)
GENERAL.REASON:                         0 (No reason given)
GENERAL.UDI:                            /sys/devices/pci0000:00/0000:00:15.1/0000:03:00.0/net/wlp3s0f0
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
CAPABILITIES.SRIOV:                     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/{21,18,8}
CONNECTIONS.AVAILABLE-CONNECTIONS[1]:   a9013057-44c7-452f-977a-c860211adf4e | Auto roy(Galaxy Network)
CONNECTIONS.AVAILABLE-CONNECTIONS[2]:   50b31b00-6e31-4ed2-9ecd-68781b3a0cf0 | Auto roy(Galaxy Network)
CONNECTIONS.AVAILABLE-CONNECTIONS[3]:   e63b73fa-52f1-464c-8461-79edf6d39428 | Auto roy(Galaxy 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
GENERAL.DRIVER:                         r8169
GENERAL.DRIVER-VERSION:                 --
GENERAL.FIRMWARE-VERSION:               rtl8168g-2_0.0.1 02/06/13
GENERAL.HWADDR:                         <MAC 'enp4s0' [IF1]>
GENERAL.MTU:                            1500
GENERAL.STATE:                          10 (unmanaged)
GENERAL.REASON:                         0 (No reason given)
GENERAL.UDI:                            /sys/devices/pci0000:00/0000:00:15.2/0000:04:00.0/net/enp4s0
GENERAL.IP-IFACE:                       enp4s0
GENERAL.IS-SOFTWARE:                    no
GENERAL.NM-MANAGED:                     no
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
CAPABILITIES.SRIOV:                     no
WIRED-PROPERTIES.CARRIER:               off
IP4.GATEWAY:                            --
IP6.GATEWAY:                            --
CONNECTIONS.AVAILABLE-CONNECTION-PATHS: --

SSID                 BSSID              MODE   CHAN  FREQ      RATE        SIGNAL  BARS  SECURITY   ACTIVE  IN-USE 
roy(Galaxy Network)  <MAC 'roy(Galaxy Network)' [AC1]>  Infra  10    2457 MHz  270 Mbit/s  89      ▂▄▆█  WPA2       yes     *      
lima                 <MAC 'lima' [AC2]>  Infra  7     2442 MHz  135 Mbit/s  55      ▂▄__  WPA1 WPA2  no             
look out             <MAC 'look out' [AC4]>  Infra  11    2462 MHz  65 Mbit/s   32      ▂▄__  WPA2       no             
BhaiBhai LTD.        <MAC 'BhaiBhai LTD.' [AC2]>  Infra  3     2422 MHz  130 Mbit/s  29      ▂___  WPA1 WPA2  no             

SSID                 BSSID              MODE   CHAN  FREQ      RATE        SIGNAL  BARS  SECURITY   ACTIVE  IN-USE 
AZIMPUR              <MAC 'AZIMPUR' [AC3]>  Infra  4     2427 MHz  270 Mbit/s  64      ▂▄▆_  WPA1 WPA2  no             
lima                 <MAC 'lima' [AC2]>  Infra  7     2442 MHz  135 Mbit/s  62      ▂▄▆_  WPA1 WPA2  no             
look out             <MAC 'look out' [AC4]>  Infra  11    2462 MHz  65 Mbit/s   62      ▂▄▆_  WPA2       no             
roy(Galaxy Network)  <MAC 'roy(Galaxy Network)' [AC1]>  Infra  10    2457 MHz  270 Mbit/s  24      ▂___  WPA2       no             

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

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

##### NetworkManager config #############

[[/etc/NetworkManager/conf.d/default-wifi-powersave-on.conf]]
[connection]
wifi.powersave = 3

[[/etc/NetworkManager/NetworkManager.conf]]
[main]
plugins=ifupdown,keyfile
[ifupdown]
managed=false
[device]
wifi.scan-rand-mac-address=no

[[/usr/lib/NetworkManager/conf.d/10-dns-resolved.conf]]
[main]
dns=systemd-resolved

[[/usr/lib/NetworkManager/conf.d/10-globally-managed-devices.conf]]
[keyfile]
unmanaged-devices=*,except:type:wifi,except:type:wwan

[[/usr/lib/NetworkManager/conf.d/20-connectivity-ubuntu.conf]]
[connectivity]
uri=http://connectivity-check.ubuntu.com/

[[/usr/lib/NetworkManager/conf.d/no-mac-addr-change.conf]]
[device-mac-addr-change-wifi]
match-device=driver:rtl8723bs,driver:rtl8189es,driver:r8188eu,driver:8188eu,driver:eagle_sdio,driver:wl
wifi.scan-rand-mac-address=no
wifi.cloned-mac-address=preserve
ethernet.cloned-mac-address=preserve

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

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

[[/etc/NetworkManager/system-connections/Auto CUET New Library WiFi-2-d4febe08-45d4-4945-b625-05407567ebaa]] (600 root)
[connection] id=Auto CUET New Library WiFi-2 | type=wifi | permissions=
[wifi] mac-address=<MAC 'wlx<IF from MAC [IF3]>' [IF3]> | mac-address-blacklist= | ssid=CUET New Library WiFi-2
[ipv4] method=auto
[ipv6] method=auto

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

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

[[/etc/NetworkManager/system-connections/Wi-Fi connection 1]] (600 root)
[connection] id=Wi-Fi connection 1 | type=wifi | permissions=
[wifi] mac-address=<MAC 'wlp3s0f0' [IF2]> | mac-address-blacklist= | ssid=TH Hall-1(Aruba)
[ipv4] method=auto
[ipv6] method=auto

[[/etc/NetworkManager/system-connections/Auto CUET New Library WiFi-2-a9fd4643-875f-4931-92b0-305b63805bfe]] (600 root)
[connection] id=Auto CUET New Library WiFi-2 | type=wifi | permissions=
[wifi] mac-address=<MAC 'wlx<IF from MAC [IF3]>' [IF3]> | mac-address-blacklist= | ssid=CUET New Library WiFi-2
[ipv4] method=auto
[ipv6] method=auto

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

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

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

[[/etc/NetworkManager/system-connections/Auto PPNT-a852e241-86b5-4ea5-aa71-ea2612d84c29]] (600 root)
[connection] id=Auto PPNT | type=wifi | permissions=
[wifi] mac-address=<MAC 'wlx<IF from MAC [IF3]>' [IF3]> | mac-address-blacklist= | ssid=PPNT
[ipv4] method=auto
[ipv6] method=auto

[[/etc/NetworkManager/system-connections/Auto lima-e41bc524-07b3-4a65-b034-1beca9714ac1]] (600 root)
[connection] id=Auto lima | type=wifi | permissions=
[wifi] mac-address=<MAC 'wlx<IF from MAC [IF3]>' [IF3]> | mac-address-blacklist= | ssid=lima
[ipv4] method=auto
[ipv6] method=auto

[[/etc/NetworkManager/system-connections/Auto CUET New Library WiFi-2-740330fe-27e2-433b-a2f7-010eb157024d]] (600 root)
[connection] id=Auto CUET New Library WiFi-2 | type=wifi | permissions=
[wifi] mac-address=<MAC 'wlp3s0f0' [IF2]> | mac-address-blacklist= | ssid=CUET New Library WiFi-2
[ipv4] method=auto
[ipv6] method=auto

[[/etc/NetworkManager/system-connections/Auto roy(Galaxy Network)-37247a73-0b1e-4e18-9ed7-f551785ff503]] (600 root)
[connection] id=Auto roy(Galaxy Network) | type=wifi | permissions=
[wifi] mac-address=<MAC 'wlx<IF from MAC [IF3]>' [IF3]> | mac-address-blacklist= | ssid=roy(Galaxy Network)
[ipv4] method=auto
[ipv6] method=auto

[[/etc/NetworkManager/system-connections/Auto roy(Galaxy Network)-a9013057-44c7-452f-977a-c860211adf4e]] (600 root)
[connection] id=Auto roy(Galaxy Network) | type=wifi | permissions=
[wifi] mac-address=<MAC 'wlp3s0f0' [IF2]> | mac-address-blacklist= | ssid=roy(Galaxy Network)
[ipv4] method=auto
[ipv6] method=auto

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

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

[[/etc/NetworkManager/system-connections/Auto PPNT-0b8619f1-cc93-49a1-8b89-5c0757d65047]] (600 root)
[connection] id=Auto PPNT | type=wifi | permissions=
[wifi] mac-address=<MAC 'wlx<IF from MAC [IF3]>' [IF3]> | mac-address-blacklist= | ssid=PPNT
[ipv4] method=auto
[ipv6] method=auto

[[/etc/NetworkManager/system-connections/Auto PPNT-d6ca7fa7-b426-47b3-833f-55207884b4f3]] (600 root)
[connection] id=Auto PPNT | type=wifi | permissions=
[wifi] mac-address=<MAC 'wlx<IF from MAC [IF3]>' [IF3]> | mac-address-blacklist= | ssid=PPNT
[ipv4] method=auto
[ipv6] method=auto

[[/etc/NetworkManager/system-connections/Auto CUET New Library WiFi-1-bd83d09f-acd2-441d-bc63-47e1f80d73f6]] (600 root)
[connection] id=Auto CUET New Library WiFi-1 | type=wifi | permissions=
[wifi] mac-address=<MAC 'wlx<IF from MAC [IF3]>' [IF3]> | mac-address-blacklist= | ssid=CUET New Library WiFi-1
[ipv4] method=auto
[ipv6] method=auto

[[/etc/NetworkManager/system-connections/Auto roy(Galaxy Network)-50b31b00-6e31-4ed2-9ecd-68781b3a0cf0]] (600 root)
[connection] id=Auto roy(Galaxy Network) | type=wifi | permissions=
[wifi] mac-address=<MAC 'wlp3s0f0' [IF2]> | mac-address-blacklist= | ssid=roy(Galaxy Network)
[ipv4] method=auto
[ipv6] method=auto

##### Netplan config ####################

[/etc/netplan/1-network-manager-all.yaml]
network:
  version: 2
  renderer: NetworkManager

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

Region: Asia/Dhaka (based on set time zone)

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

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

enp4s0    no frequency information.

lo        no frequency information.

wlp3s0f0  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
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.457 GHz (Channel 10)

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

enp4s0    Interface doesn't support scanning.

lo        Interface doesn't support scanning.

Channel occupancy:

      1   APs on   Frequency:2.417 GHz (Channel 2)
      1   APs on   Frequency:2.422 GHz (Channel 3)
      1   APs on   Frequency:2.427 GHz (Channel 4)
      2   APs on   Frequency:2.442 GHz (Channel 7)
      2   APs on   Frequency:2.457 GHz (Channel 10)
      1   APs on   Frequency:2.462 GHz (Channel 11)

wlp3s0f0  Scan completed :
          Cell 01 - Address: <MAC 'roy(Galaxy Network)' [AC1]>
                    Channel:10
                    Frequency:2.457 GHz (Channel 10)
                    Quality=70/70  Signal level=19 dBm  
                    Encryption key:on
                    ESSID:"roy(Galaxy Network)"
                    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=000000195bbd4bb1
                    Extra: Last beacon: 32ms ago
                    IE: IEEE 802.11i/WPA2 Version 1
                        Group Cipher : CCMP
                        Pairwise Ciphers (1) : CCMP
                        Authentication Suites (1) : PSK
          Cell 02 - Address: <MAC 'lima' [AC2]>
                    Channel:7
                    Frequency:2.442 GHz (Channel 7)
                    Quality=70/70  Signal level=63 dBm  
                    Encryption key:on
                    ESSID:"lima"
                    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=000000195bffb084
                    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 'AZIMPUR' [AC3]>
                    Channel:4
                    Frequency:2.427 GHz (Channel 4)
                    Quality=70/70  Signal level=-192 dBm  
                    Encryption key:on
                    ESSID:"AZIMPUR"
                    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=0000001960f0f241
                    Extra: Last beacon: 11196ms 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 04 - Address: <MAC 'look out' [AC4]>
                    Channel:11
                    Frequency:2.462 GHz (Channel 11)
                    Quality=70/70  Signal level=63 dBm  
                    Encryption key:on
                    ESSID:"look out"
                    Bit Rates:6 Mb/s; 9 Mb/s; 12 Mb/s; 18 Mb/s; 24 Mb/s
                              36 Mb/s; 48 Mb/s; 54 Mb/s
                    Mode:Master
                    Extra:tsf=0000000281bf594d
                    Extra: Last beacon: 32ms ago
                    IE: IEEE 802.11i/WPA2 Version 1
                        Group Cipher : CCMP
                        Pairwise Ciphers (1) : CCMP
                        Authentication Suites (1) : PSK
          Cell 05 - Address: <MAC 'Maternity_5' [AC5]>
                    Channel:2
                    Frequency:2.417 GHz (Channel 2)
                    Quality=70/70  Signal level=-191 dBm  
                    Encryption key:on
                    ESSID:"Maternity_5"
                    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=000000195b6aea7a
                    Extra: Last beacon: 32ms ago
                    IE: IEEE 802.11i/WPA2 Version 1
                        Group Cipher : CCMP
                        Pairwise Ciphers (1) : CCMP
                        Authentication Suites (1) : PSK

wlx<IF from MAC [IF3]>  Scan completed :
          Cell 01 - Address: <MAC 'roy(Galaxy Network)' [AC1]>
                    Channel:10
                    Frequency:2.457 GHz (Channel 10)
                    Quality=70/70  Signal level=-31 dBm  
                    Encryption key:on
                    ESSID:"roy(Galaxy Network)"
                    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=000000195c186c98
                    Extra: Last beacon: 36ms ago
                    IE: IEEE 802.11i/WPA2 Version 1
                        Group Cipher : CCMP
                        Pairwise Ciphers (1) : CCMP
                        Authentication Suites (1) : PSK
          Cell 02 - Address: <MAC 'BhaiBhai LTD.' [AC2]>
                    Channel:3
                    Frequency:2.422 GHz (Channel 3)
                    Quality=29/70  Signal level=-81 dBm  
                    Encryption key:on
                    ESSID:"BhaiBhai LTD."
                    Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 9 Mb/s
                              18 Mb/s; 36 Mb/s; 54 Mb/s
                    Bit Rates:6 Mb/s; 12 Mb/s; 24 Mb/s; 48 Mb/s
                    Mode:Master
                    Extra:tsf=0000000328c3c57b
                    Extra: Last beacon: 4696ms ago
                    IE: WPA Version 1
                        Group Cipher : TKIP
                        Pairwise Ciphers (2) : TKIP CCMP
                        Authentication Suites (1) : PSK
                    IE: IEEE 802.11i/WPA2 Version 1
                        Group Cipher : TKIP
                        Pairwise Ciphers (2) : TKIP CCMP
                        Authentication Suites (1) : PSK
          Cell 03 - Address: <MAC 'lima' [AC2]>
                    Channel:7
                    Frequency:2.442 GHz (Channel 7)
                    Quality=43/70  Signal level=-67 dBm  
                    Encryption key:on
                    ESSID:"lima"
                    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=000000195c31300d
                    Extra: Last beacon: 40ms 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

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

[mac80211]
filename:       /lib/modules/4.20.0-042000-generic/kernel/net/mac80211/mac80211.ko
license:        GPL
description:    IEEE 802.11 subsystem
srcversion:     EF3DFDFB34A25E1B93DF4D6
depends:        cfg80211
intree:         Y
name:           mac80211
vermagic:       4.20.0-042000-generic SMP mod_unload 
signat:         PKCS#7
signer:         
sig_key:        
sig_hashalgo:   md4
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.20.0-042000-generic/kernel/net/wireless/cfg80211.ko
description:    wireless configuration support
license:        GPL
author:         Johannes Berg
srcversion:     B0E06249BDA764D6EDE9817
depends:        
intree:         Y
name:           cfg80211
vermagic:       4.20.0-042000-generic SMP mod_unload 
signat:         PKCS#7
signer:         
sig_key:        
sig_hashalgo:   md4
parm:           bss_entries_limit:limit to number of scan BSS entries (per wiphy, default 1000) (int)
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 #################

[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]
bss_entries_limit: 1000
cfg80211_disable_40mhz_24ghz: N
ieee80211_regdom: 00

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

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

[/etc/modprobe.d/amd64-microcode-blacklist.conf]
blacklist microcode

[/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/intel-microcode-blacklist.conf]
blacklist microcode

[/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/mt7630e.conf]
options mt7630e nohwcrypt=1

[/etc/modprobe.d/mt76x0e.conf]
blacklist mt76x0e

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

grep: /etc/rc.local: No such file or directory

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

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

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

[  130.600603] mt7601u 1-1:1.0 wlx<IF from MAC [IF3]>: renamed from wlan0
[  130.635073] IPv6: ADDRCONF(NETDEV_UP): wlx<IF from MAC [IF3]>: link is not ready (repeated 3 times)
[  131.986583] wlx<IF from MAC [IF3]>: authenticate with <MAC 'roy(Galaxy Network)' [AC1]>
[  132.010251] wlx<IF from MAC [IF3]>: send auth to <MAC 'roy(Galaxy Network)' [AC1]> (try 1/3)
[  132.012537] wlx<IF from MAC [IF3]>: authenticated
[  132.016436] wlx<IF from MAC [IF3]>: associate with <MAC 'roy(Galaxy Network)' [AC1]> (try 1/3)
[  132.022035] wlx<IF from MAC [IF3]>: RX AssocResp from <MAC 'roy(Galaxy Network)' [AC1]> (capab=0x431 status=0 aid=5)
[  132.054941] wlx<IF from MAC [IF3]>: associated
[  132.063701] IPv6: ADDRCONF(NETDEV_CHANGE): wlx<IF from MAC [IF3]>: link becomes ready
[  166.904693] wlp3s0f0: deauthenticating from <MAC 'roy(Galaxy Network)' [AC1]> by local choice (Reason: 3=DEAUTH_LEAVING)
[  166.921673] ===>rt2800_sta_remove:MT7630
[  166.926658] ===>rt2800_sta_remove:MT7630   0x80100 = 0x0 (repeated 2 times)
[  311.537957] wlx<IF from MAC [IF3]>: deauthenticating from <MAC 'roy(Galaxy Network)' [AC1]> by local choice (Reason: 3=DEAUTH_LEAVING)
[  519.626756] mt7601u 1-1:1.0 wlx<IF from MAC [IF3]>: renamed from wlan0
[  519.659687] IPv6: ADDRCONF(NETDEV_UP): wlx<IF from MAC [IF3]>: link is not ready (repeated 3 times)
[  521.022933] wlx<IF from MAC [IF3]>: authenticate with <MAC 'roy(Galaxy Network)' [AC1]>
[  521.042123] wlx<IF from MAC [IF3]>: send auth to <MAC 'roy(Galaxy Network)' [AC1]> (try 1/3)
[  521.044355] wlx<IF from MAC [IF3]>: authenticated
[  521.045426] wlx<IF from MAC [IF3]>: associate with <MAC 'roy(Galaxy Network)' [AC1]> (try 1/3)
[  521.052120] wlx<IF from MAC [IF3]>: RX AssocResp from <MAC 'roy(Galaxy Network)' [AC1]> (capab=0x431 status=0 aid=4)
[  521.086087] wlx<IF from MAC [IF3]>: associated
[  521.094758] IPv6: ADDRCONF(NETDEV_CHANGE): wlx<IF from MAC [IF3]>: link becomes ready
[  862.794553] wlp3s0f0: authenticate with <MAC 'roy(Galaxy Network)' [AC1]>
[  862.805733] wlp3s0f0: send auth to <MAC 'roy(Galaxy Network)' [AC1]> (try 1/3)
[  862.808024] wlp3s0f0: authenticated
[  862.809565] wlp3s0f0: associate with <MAC 'roy(Galaxy Network)' [AC1]> (try 1/3)
[  862.813444] wlp3s0f0: RX AssocResp from <MAC 'roy(Galaxy Network)' [AC1]> (capab=0x431 status=0 aid=5)
[  862.813464] ===>rt2800_sta_add:MT7630
[  862.813467] ===>rt2800_sta_add:MT7630   wcid=33
[  862.824028] wlp3s0f0: associated
[  907.924700] wlp3s0f0: deauthenticating from <MAC 'roy(Galaxy Network)' [AC1]> by local choice (Reason: 3=DEAUTH_LEAVING)
[  907.944764] ===>rt2800_sta_remove:MT7630
[  907.949757] ===>rt2800_sta_remove:MT7630   0x80100 = 0x0 (repeated 2 times)

########## wireless info END ############
This is the output without the external one plugged in.
https://termbin.com/95v6
phase7
Level 1
Level 1
Posts: 9
Joined: Sun Aug 11, 2019 11:21 pm

Re: WiFi shows connecting after putting in correct password, after a while "Connection failed" [ASUS X550ZA]

Post by phase7 »

sleeper12 wrote: Wed Aug 14, 2019 12:56 pm You could try turning off Power Management:
https://easylinuxtipsproject.blogspot.c ... html#ID2.1
Not working :(
Locked

Return to “Networking”