博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
bind9 在ubuntu上的简单配置
阅读量:5938 次
发布时间:2019-06-19

本文共 1801 字,大约阅读时间需要 6 分钟。

hot3.png

1.安装bind9

sudo apt-get install bind9

2.编辑文件

sudo vi /etc/bind/named.conf.local

加入字段:

其中example是要配置的域名,第二个节为反响映射

zone "example.com" {          type master;        file "/etc/bind/zones/example.com.db";        };# This is the zone definition for reverse DNS. replace 0.168.192 with your network address in reverse notation - e.g my network address is 192.168.0zone "0.168.192.in-addr.arpa" {     type master;     file "/etc/bind/zones/rev.0.168.192.in-addr.arpa";};

3.编辑文件

配置网络提供商的dns服务器

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

forwarders {      # Replace the address below with the address of your provider's DNS server      123.123.123.123;};

4.编辑example域名配置的文件

sudo vi /etc/bind/zones/example.com.db

内容:

example.com.      IN      SOA     ns1.example.com. admin.example.com. (                                                                                                          2006081401        28800        3600        604800        38400        )example.com.      IN      NS              ns1.example.com.example.com.      IN      MX     10       mta.example.com.                 IN      A       192.168.37.160 www              IN      A       192.168.37.160mta              IN      A       192.168.37.3ns1              IN      A       192.168.37.1
sudo vi /etc/bind/zones/rev.0.168.192.in-addr.arpa

@ IN SOA ns1.example.com. admin.example.com. (                        2006081401;                        28800;                         604800;                        604800;                        86400 )                     IN    NS     ns1.example.com.1                    IN    PTR    example.com

5.编辑文件

sudo vi /etc/resolv.conf

search example.comnameserver 192.168.0.1

6. 重启bind9服务

/etc/init.d/bind9 restart 生效

7.重启后可以查看系统日志/var/log/syslog 是否出错。

转载于:https://my.oschina.net/u/929415/blog/271969

你可能感兴趣的文章
SQL Server代理(3/12):代理警报和操作员
查看>>
基于事件驱动的DDD领域驱动设计框架分享(附源代码)
查看>>
Linux备份ifcfg-eth0文件导致的网络故障问题
查看>>
2018年尾总结——稳中成长
查看>>
JFreeChart开发_用JFreeChart增强JSP报表的用户体验
查看>>
度量时间差
查看>>
apache prefork模式优化错误
查看>>
通过jsp请求Servlet来操作HBASE
查看>>
JS页面刷新保持数据不丢失
查看>>
清橙A1202&Bzoj2201:彩色圆环
查看>>
使用data pump工具的准备
查看>>
springMVC---级联属性
查看>>
get和post区别
查看>>
crontab执行shell脚本日志中出现乱码
查看>>
cmd.exe启动参数说明
查看>>
《随笔记录》20170310
查看>>
网站分析系统
查看>>
从零开始来看一下Java泛型的设计
查看>>
Shell编程基础
查看>>
Shell之Sed常用用法
查看>>