From 36a43198092d05e7778efa4600e8e84ef7327f42 Mon Sep 17 00:00:00 2001 From: TristanAncelet Date: Tue, 9 Feb 2021 15:00:10 -0600 Subject: [PATCH] added new page --- DNS_Issues.md | 0 DualBootingWindows10.md | 0 README.md | 0 WifiConnectivityIssues.md | 47 +++++++++++++++++++++++++++++++++++++++ 4 files changed, 47 insertions(+) mode change 100644 => 100755 DNS_Issues.md mode change 100644 => 100755 DualBootingWindows10.md mode change 100644 => 100755 README.md create mode 100644 WifiConnectivityIssues.md diff --git a/DNS_Issues.md b/DNS_Issues.md old mode 100644 new mode 100755 diff --git a/DualBootingWindows10.md b/DualBootingWindows10.md old mode 100644 new mode 100755 diff --git a/README.md b/README.md old mode 100644 new mode 100755 diff --git a/WifiConnectivityIssues.md b/WifiConnectivityIssues.md new file mode 100644 index 0000000..e037488 --- /dev/null +++ b/WifiConnectivityIssues.md @@ -0,0 +1,47 @@ +# Wi-Fi Connectivity Issues + +Related: +- [DNS Issues](DNS_Issues.md) + +## Background: + +After a while of using Arch I've encountered a few issues with DNS and Wireless Connectivity. The DNS Issue was solved after a while due to some competing daemon's. The Wireless Connectivity issues were small but were irritating to deal with after each reboot. + +I'm using Gnome as a Desktop Enviroment on my Arch install, and it comes with NetworkManager which it uses wpa_supplicant as a wifi backend. This by itself isn't an issue, as it works quite well by itself. However, I also use iwd as a wireless network manager as it is the easiest for me to use without having to delve into using ip. + + + +## Problem: +After each time I reboot my computer or it goes into standby, my computer loses connection to the wifi (I assume it's dropped to save power. After which iwd either starts off connected, or automatically connects due to the wireless interface being unused. + +This is an issue because without wpa_suppicant being the one holding the connection all of the apps (aside from the terminal) cannot connect to the internet to preform the duties I need them for. This is aggravating since it requres me to spam "iwctl station wlan0 disconnect" while also making sure that I go to the wifi tab and select my wifi to connect to. While I can deal with this, it is still not a nice situation to be in. + + + +## Process: + +After some searching I found [this post](1) that details how to configure NetworkManager to use iwd as the wifi backend instead of wpa_supplicant. + +The steps I had to take from here were: + 1. Add this line of code into my NetworkManager.conf file. +''' + +[device] +wifi.backend=iwd + +''' + 2. Stop and restart both NetworkManager and wpa_supplicant. + + +## Conclusion: + +After doing this I have yet to happen upon this issue again (although it has only been a few hours). + +### Packages used: + - [NetworkManager](https://wiki.archlinux.org/index.php/NetworkManager) + - [wpa_supplicant](https://wiki.archlinux.org/index.php/wpa_supplicant) + - [iwd](https://wiki.archlinux.org/index.php/Iwd) + + +### Sources + - [1](https://wiki.debian.org/NetworkManager/iwd)