当前位置: 技术问答>linux和unix
高分求redhat 8.0 -9.0的dns配置方法
来源: 互联网 发布时间:2015-03-30
本文导语: 注意,我只能在单机上模拟,环境为局域网内一电脑,ip为192.168.0.2 看了n多的文章也没有配置成功,请高手指教 | 你看看你的系统有没有装redhat-config-bind 有的话运行里面输入redhat-config-bind 系统提供...
注意,我只能在单机上模拟,环境为局域网内一电脑,ip为192.168.0.2
看了n多的文章也没有配置成功,请高手指教
看了n多的文章也没有配置成功,请高手指教
|
你看看你的系统有没有装redhat-config-bind
有的话运行里面输入redhat-config-bind
系统提供图形界面来配置dns,这个就容易多了
有的话运行里面输入redhat-config-bind
系统提供图形界面来配置dns,这个就容易多了
|
options {
directory "/var/named";
};
controls {
inet 127.0.0.1 allow { localhost; } keys { rndckey; };
};
zone "." IN {
type hint;
file "named.ca";
};
zone "localhost" IN {
type master;
file "localhost.zone";
allow-update { none; };
};
zone "0.0.127.in-addr.arpa" IN {
type master;
file "named.local";
allow-update { none; };
};
以上是系统默认的本地配置,不需要修改。以下为你适合本机的配置,我已经写出来了。
zone "0.168.192.in-addr.arpa" IN {
type master; // 角色为主域名服务器
file "named.dns.com"; //存放反向解析的配置文件名
allow-update {none;};
};
zone "dns.com" IN {
type master; // 如上
file "dns.com.zone"; // 如上,注意文件名的变化和后面的符号
allow-update { none; };
};
#include "/etc/rndc.key";
=====================================
下面我们去 /var/named目录下完成对 named.dns.com and dns.com.zone的配置
The content of named.dns.com
$TTL 86400 // refresh time always is one day
@ IN SOA localhost. root.dns.com. (
1997022700 ; Serial
28800 ; Refresh
14400 ; Retry
3600000 ; Expire
86400 ) ; Minimum
IN NS www.dns.com. === defalut is www.dns.com
3 IN PTR mail.dns.com. === add mail.dns.conm
3 IN PTR www.dns.com. ===以下类同.....看清楚符号
3 IN PTR ftp.dns.com.
$TTL 86400
$ORIGIN dns.com.
@ 1D IN SOA @ root (
42 ; serial (d. adams)
3H ; refresh
15M ; retry
1W ; expiry
1D ) ; minimum
1D IN NS @
www 1D IN A 192.168.0.3
mail 1D IN A 192.168.0.3
ftp 1D IN A 192.168.0.3
@ 1D IN A 192.168.0.3 === add default
directory "/var/named";
};
controls {
inet 127.0.0.1 allow { localhost; } keys { rndckey; };
};
zone "." IN {
type hint;
file "named.ca";
};
zone "localhost" IN {
type master;
file "localhost.zone";
allow-update { none; };
};
zone "0.0.127.in-addr.arpa" IN {
type master;
file "named.local";
allow-update { none; };
};
以上是系统默认的本地配置,不需要修改。以下为你适合本机的配置,我已经写出来了。
zone "0.168.192.in-addr.arpa" IN {
type master; // 角色为主域名服务器
file "named.dns.com"; //存放反向解析的配置文件名
allow-update {none;};
};
zone "dns.com" IN {
type master; // 如上
file "dns.com.zone"; // 如上,注意文件名的变化和后面的符号
allow-update { none; };
};
#include "/etc/rndc.key";
=====================================
下面我们去 /var/named目录下完成对 named.dns.com and dns.com.zone的配置
The content of named.dns.com
$TTL 86400 // refresh time always is one day
@ IN SOA localhost. root.dns.com. (
1997022700 ; Serial
28800 ; Refresh
14400 ; Retry
3600000 ; Expire
86400 ) ; Minimum
IN NS www.dns.com. === defalut is www.dns.com
3 IN PTR mail.dns.com. === add mail.dns.conm
3 IN PTR www.dns.com. ===以下类同.....看清楚符号
3 IN PTR ftp.dns.com.
$TTL 86400
$ORIGIN dns.com.
@ 1D IN SOA @ root (
42 ; serial (d. adams)
3H ; refresh
15M ; retry
1W ; expiry
1D ) ; minimum
1D IN NS @
www 1D IN A 192.168.0.3
mail 1D IN A 192.168.0.3
ftp 1D IN A 192.168.0.3
@ 1D IN A 192.168.0.3 === add default
|
你去这里查查资料:http://www.linuxfans.org/nuke/index.php
|
redhat8,9 的图形工具里有一个dns配置程序,你可以通过配置程序来建设dns
|
up
|
http://61.144.205.34/~linuxsky/xoops/modules/news/article.php?storyid=152
基本能解决一般的需要。。。
基本能解决一般的需要。。。
|
我觉得参照默认的配置文件内容就可以。
|
装个webmin
用google搜索一下
用google搜索一下
|
http://www.linuxfans.org/nuke/modules.php?name=News&file=article&op=view&sid=952
8.0的DNS
8.0的DNS