|
|
Line 1: |
Line 1: |
| [[Configuration#DNS_Server|Back]]<br><br> | | [[Configuration#DNS_Server|Back]]<br><br> |
| [http://www.oreilly.com/catalog/linuxckbk/ <i>The Linux Cookbook</i> (O'Reilly) by Carla Schroder] has very good recipes for setting up a DNS server. Caching, public and private servers for both bind and djbdns are covered. You can also read it online [http://safari.oreilly.com/0596006403/linuxckbk-PREFACE-2#X2ludGVybmFsX1RvYz94bWxpZD0wNTk2MDA2NDAzL2xpbnV4Y2tiay1DSFAtMjQ= here].
| | |
| =Bind= | | =Bind= |
| Tutorial [https://reintech.io/blog/installing-configuring-caching-dns-server-rocky-linux-9 here]. | | Tutorial [https://reintech.io/blog/installing-configuring-caching-dns-server-rocky-linux-9 here]. |
Revision as of 13:15, 19 October 2024
Back
Bind
Tutorial here.
# dnf -y install bind bind-utils
# cp /etc/resolv.conf /etc/resolv.conf.bak
# sed -i 's/nameserver.*/nameserver 127.0.0.1/g' /etc/resolv.conf
# systemctl enable --now named
djbdns
Tutorial here.