I’m moving to a new Debian 12 server and am a newby with bind9.
Bind is installed by default, but I use my registrar’s name servers for all domains. I switched off bind as a feature. But I noticed that my server still functions as a name server for the outside world.
-
Should I just uninstall bind?
-
Or make it accesible to local access only by editing named.conf.options to make stuff safer?
listen-on port 53 { 127.0.0.1; };
listen-on-v6 port 53 { ::1; };
allow-query { localhost; };
allow-recursion { localhost; };
- Or just forget about it and let it run as I always did? Maybe it does important stuff I am not aware off?