I have a laptop with Ubuntu 20.04. I can connect to my main WIFI signal, but cannot connect to TP Link WiFi extender. The same laptop with Windows 10 (dual boot) works fine. Other devices like tablets, ipads or phones are connected to this extender normally. Only in Ubuntu 20.04 is the problem. Thanks in advance for any suggestion.
Today I faced a similar problem after switching over to Linux from Windows 10. Windows, my phone, consoles, etc were all able to connect to my TP-Link extender, but my Linux installation couldn't. I found your thread and was dismayed to find it had no solution, but as I managed to fix the problem for myself, I thought I'd post what worked for me here.
After a while of searching, I decided to try changing the DHCP client. I installed the package
dhcpd5
from the repositories and then used a text editor to open the file/etc/NetworkManager/NetworkManager.conf
.Underneath the header
[main]
, I added the linedhcp=dhcpd
.I ran
sudo systemctl stop NetworkManager.service
, thensudo systemctl start NetworkManager.service
. I was then able to connect, and a speed test indicates the WiFi network is working properly.Hope this helps!
I also faced the same problem. I checked /var/log/syslog and found there a suspicious warning dhcp4 (...): request timed out. So I tried the suggestion to add to /etc/NetworkManager/NetworkManager.conf the line dhcp=dhcpcd and it didn't work for me. But adding instead dhcp=dhclient did work.
I also faced the same problem. In my case, the previous solution didn't work (installing
dhcpd5
and adding the line inNetworkManager.conf
).On top of that, I did apply the steps suggested in this link (which ironically seems to get info from AskUbuntu) and that worked. I copy the steps here just in case they help somebody else:
Thanks bimblesticks, the solution outlined by you works for me with Comfast wifi extender. I had restart the system to get working. And you have
dhcpd
in your comment that need to be replaced withdhcpcd
as package name is dhcpcd5.