powerdns 作为非权威域名解析,怎么配置
时间: 2024-04-30 12:22:37 浏览: 356
以下是在 Ubuntu 18.04 上配置 PowerDNS 作为非权威域名解析的步骤:
1. 安装 PowerDNS
在终端中运行以下命令来安装 PowerDNS:
```
sudo apt-get update
sudo apt-get install pdns-server
```
2. 配置 PowerDNS
编辑 /etc/powerdns/pdns.conf 文件,将以下行的注释取消:
```
# Set the server to serve as a recursor only
recursor=8.8.8.8
```
这将使 PowerDNS 作为非权威域名解析器,使用 Google 的公共 DNS 服务器作为递归解析器。
3. 启动 PowerDNS
在终端中运行以下命令来启动 PowerDNS:
```
sudo systemctl start pdns
```
可以使用以下命令检查 PowerDNS 是否正在运行:
```
sudo systemctl status pdns
```
4. 测试 PowerDNS
使用以下命令在终端中进行 DNS 查询:
```
nslookup example.com
```
如果 PowerDNS 正确配置,则应该能够解析域名并返回相应的 IP 地址。
以上就是在 Ubuntu 18.04 上配置 PowerDNS 作为非权威域名解析器的步骤。
阅读全文