热门标签 | HotTags
当前位置:  开发笔记 > IOS > 正文

配置dns不知问题在哪,请高手帮忙

配置dns不知问题在哪,请高手帮忙--Linux企业应用-Linux服务器应用信息,下面是详情阅读。
我第一次配置dns 一直无法配置成功,以下我的配置文件,请帮忙看看问题在哪
文件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;
ile "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 "sundyhuang.com" IN {
type master;
file "sundyhuang.com.db";
allow-update {none;};
};
zone "40.9.10.in-addr.arpa" IN {
type master;
file "db.10.9.40.50";
allow-update {none;};
};
include "/etc/rndc.key";



文件sundyhuang.com.db

$TTL86400
@IN SOA www.sundyhuang.com. sundyhuang.com.(
2007032801;Serial
28800;Refresh
14400;Retry
3600000;Expire
86400);Minimum
IN NS www.sundyhuanng.com.
localhost IN A 127.0.0.1
www.IN A 10.9.40.50


文件db.10.9.40.50

$TTL86400
@IN SOA www.sundyhuang.com. sundyhuang.com. (
2007032801;Serial
28800;Refresh
14400;Retry
3600000;Expire
86400);Minimum
IN NS www.sundyhuang.com.
10.9.40.50 IN PTR www.sundyhuang.com.



文件resolv.conf
nameserver 202.96.128.86
domain sundyhuang.com
search sundyhuang.com


文件hosts
# Do not remove the following line, or various programs
# that require network functionality will fail.
127.0.0.1 localhost.localdomain localhost
10.9.40.50 jyhuang.sundyhuang.com jyhuang


文件network
NETWORKING=yes
HOSTNAME=jyhuang.sundyhuang.com


文件ifcfg-eth1
DEVICE=eth1
BOOTPROTO=none
OnBOOT=yes
IPADDR=10.9.40.50
NETMASK=255.255.0.0
USERCTL=no
PEERDNS=no
GATEWAY=10.9.40.100
TYPE=Ethernet
NETWORK=10.9.0.0
BROADCAST=10.9.255.255
推荐阅读
author-avatar
我是风一样的我们
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有