Hi @designcode,
Yes, pt-further-link is the correct service name, I made a typo so I’ll correct that now above.
Ok, so it seems your issue is with the DNS resolution, and now specifically in keeping Cloudflare DNS configured.
It is normal for the resolv.conf file to be updated by system services so it’s unfortunate Cloudflare’s instructions don’t address this. I might make a suggestion to them to improve this.
I’m not particularly knowledgeable on this area so I might refer you to this official documentation…
However, I will also provide a solution they don’t mention that has worked for us on pi-top in the past, which is to add the nameserver configuration lines to a different file, /etc/resolv.conf.head
, instead.
You can run this command to add the Cloudflare server config to the file:
echo "nameserver 1.1.1.1
nameserver 1.0.0.1
nameserver 2606:4700:4700::1111
nameserver 2606:4700:4700::1001" | sudo tee /etc/resolv.conf.head
After this you should reboot to have the config reloaded.
Here are some links related to that solution, some also refer to alternate files that may work: