安装:

# apt install bind9 bind9-utils bind9-doc dnsutils


设置:

# vi /etc/bind/named.conf.options

options {
        allow-query { any; };

        forwarders {
                        127.0.0.53;
                8.8.8.8;
                1.1.1.1;
        };
        
        recursion yes;
        
        // .....
};

:wq


# systemctl restart bind9


本文链接地址: Ubuntu 安装 bind DNS 服务器与基本配置
https://blog.qingfengju.com/index.asp?id=459

上一篇: ARM Cortex-M0 的 BootLoader 跳转到 APP 的一种方法

分类:Linux 查看次数:13 发布时间:2025/11/26 20:57:01