0

Why is netowrk manager resetting resolv.conf to 127.0.0.53

resolv.conf

# Generated by NetworkManager
nameserver 127.0.0.53

this causes internet to not work on my computer.

1 Answers1

1

One way to stop Network Manager from adding dns-servers to /etc/resolv.conf file is to do this. So first open the nm conf file /etc/NetworkManager/NetworkManager.conf:

sudo vim /etc/NetworkManager/NetworkManager.conf

And add this to the [main] section:

dns=none

Save and exit.

Source: network manager: how to stop nm updating /etc/resolv.conf

fedora
  • 57
  • 1
  • 10