LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
查看: 770|回复: 7

关于DNS的配置疑问?

[复制链接]
发表于 2003-7-7 09:06:29 | 显示全部楼层 |阅读模式
各路高手,小弟我还是linux新手,在看了linux书及论坛中有关DNS配置后决定自己配一下但起不来,敬请指点迷津,万分感谢!
  hosts.conf文件内容如下:
127.0.0.1  localhost.localdomain localhost
192.168.1.1             shan                  shan
192.168.1.2             freeboy.com           freeboy

  named.conf文件内容如下:
// generated by named-bootconf.pl
options {
directory "/var/named";
/*
  * If there is a firewall between you and nameservers you want
  * to talk to, you might need to uncomment the query-source
  * directive below.  Previous versions of BIND always asked
  * questions using port 53, but BIND 8.1 uses an unprivileged
  * port by default.
  */
// query-source address * port 53;
};

//
// a caching only nameserver config
//
controls {
inet 127.0.0.1 allow { localhost; } keys { rndckey; };
};
zone "." IN {
type hint;
file "named.ca";
};

zone "freeboy.com" IN {
        type master;
        file "freeboy.com.conf";
};

zone "1.168.192.in-addr.arpa" IN {
        type master;
        file "1.168.192.conf"
};

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; };
};

  freeboy.com.conf文件内容如下:
  freeboy.com @  IN SOA  freeboy.com.  root.freeboy.com. (
     200300701 ; serial (d. adams)
     28800  ; refresh
     14400  ; retry
     3600000  ; expiry
     86400 )  ; minimum
       IN NS     freeboy.com.
www   IN A      192.168.1.2
mail  IN A      192.168.1.2
linux IN CNAME  mail
ftp   IN A      192.168.1.2

  1.168.192.conf文件内容如下:
  freeboy.com @  IN SOA  freeboy.com.  root.freeboy.com. (
     200300701 ; serial (d. adams)
     28800  ; refresh
     14400  ; retry
     3600000  ; expiry
     86400 )  ; minimum
                IN NS         freeboy.com.
  192.168.1.2   IN PTR        www
  192.168.1.2   IN PTR        ftp
  192.168.1.2   IN PTR        mail
  192.168.1.2   IN PTR        linux
 楼主| 发表于 2003-7-7 09:09:59 | 显示全部楼层
named.local文件内容如下:
    freeboy  @  IN  SOA     freeboy.com. root.freeboy.com.  (
                                      20030701   ; Serial
                                      28800      ; Refresh
                                      14400      ; Retry
                                      3600000    ; Expire
                                      86400 )    ; Minimum
        IN      NS      freeboy.com.
        IN      PTR     localhost.freeboy.com.

  localhost.zone文件内容如下:
    freeboy.com  @  IN SOA freeboy.com.  root.freeboy.com. (
     20030701 ; serial (d. adams)
     28800  ; refresh
     14400  ; retry
     3600000  ; expiry
     86400 )  ; minimum
      IN NS   dns.freeboy.com.
      IN MX  50  tomus.freeboy.com.
      IN PTR  localhost.freeboy.com.

  resolv.conf文件内容如下:
nameserver 127.0.0.1
nameserver 192.168.1.2
search freeboy.com

还有:我的系统是RedHat7.3 IP:192.168.1.2  最后/etc/rc.d/init.d/named restart后都为failed,请问我这个配置问题出在哪里呀?:help
发表于 2003-7-7 11:06:05 | 显示全部楼层
1.168.192.conf和freeboy.com.conf里没有ttl 86400可以的吗?
 楼主| 发表于 2003-7-7 13:31:05 | 显示全部楼层
对啊,本来默认是有的,但我从书上看来是没有的。而且我也试过,加不加无所谓的。
发表于 2003-7-7 17:13:15 | 显示全部楼层
看不出什么错误啊!

cat /var/log/messages |grep named显示什么啊 ?
发表于 2003-7-7 18:52:05 | 显示全部楼层
对啊!看看messages怎么说~~
 楼主| 发表于 2003-7-7 18:52:26 | 显示全部楼层
太好了,用你给我的这个命令查出来了,我在named,conf中漏了个”;”,真的谢谢你啊pinksnoopy!我不知道:cat /var/log/messages |grep named 这种方式可以查看的,用这个真的很有效,多亏你!对学习linux也更有信心了,希望自己以后在各位高手的帮助下不再犯这种低级错误,希望自己能真正成为linuxsir,跟大家一起相互学习,我会常来这里的,
发表于 2003-7-7 20:49:05 | 显示全部楼层
不用嘛,一起努力
您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表