1
0
Fork 0
knowledge-base/KB/Linux/Server/DNS.md

23 lines
518 B
Markdown
Raw Normal View History

2022-09-04 12:54:22 +00:00
---
creation date: 2022-01-08
tags: [note,linux,archlinux,dns]
---
**Please use a local unbound which is even better!**
Start and enable
2023-03-29 16:16:29 +00:00
```shell
2022-09-04 12:54:22 +00:00
systemd-networkd
systemd-resolved
```
If you desire that any network manager cannot change the DNS servers, then execute `sudo chattr -i /etc/resolv.conf; sudo nano /etc/resolv.conf; sudo chattr +i /etc/resolv.conf` to insert the following content:
2023-03-29 16:16:29 +00:00
```shell
2022-09-04 12:54:22 +00:00
options timeout:1
nameserver 80.241.218.68
nameserver 46.182.19.48
nameserver 8.8.8.8
nameserver 1.1.1.1
```