- 論壇徽章:
- 0
|
通過(guò)ADSL共享上網(wǎng),在撥號(hào)機(jī)上設(shè)置DNS轉(zhuǎn)發(fā)服務(wù),也就是說(shuō)像一般家用路由器一樣用網(wǎng)關(guān)做DNS服務(wù)器
這個(gè)機(jī)器是RHEL 5.1,裝了BIND和Cache name server
named.caching-nameserver.conf配置如下:
//
// named.caching-nameserver.conf
//
// Provided by Red Hat caching-nameserver package to configure the
// ISC BIND named( DNS server as a caching only nameserver
// (as a localhost DNS resolver only).
//
// See /usr/share/doc/bind*/sample/ for example named configuration files.
//
// DO NOT EDIT THIS FILE - use system-config-bind or an editor
// to create named.conf - edits to this file will be lost on
// caching-nameserver package upgrade.
//
options {
listen-on port 53 { 0.0.0.0;};
listen-on-v6 port 53 { ::1; };
directory "/var/named";
dump-file "/var/named/data/cache_dump.db";
statistics-file "/var/named/data/named_stats.txt";
memstatistics-file "/var/named/data/named_mem_stats.txt";
query-source port 53;
query-source-v6 port 53;
allow-query { 192.168.1.0/24; };
forward first;
forwarders {61.175.153.129;};
};
logging {
channel default_debug {
file "data/named.run";
severity dynamic;
};
};
view localhost_resolver {
match-clients { localhost; };
match-destinations { localhost; };
recursion yes;
include "/etc/named.rfc1912.zones";
}; |
|