[Server-devel] Help test OLPC_XS_169 - RC1 for xs-0.4

Joshua N Pritikin jpritikin at pobox.com
Fri Aug 22 23:59:22 EDT 2008


On Fri, Aug 22, 2008 at 04:16:38PM -0500, Jerry Vonau wrote:
> Might know what the issue is, could you post the contents of 
> /etc/sysconfig/named,

OPTIONS='-c /etc/named-xs.conf'

> /etc/named-xs.conf

Attached.

> just to confirm my suspicions.
> Also, does /var/named-xs exist?

Yes.

[root at schoolserver ~]# ls -l /var/named-xs
total 64
drwxrwx--- 2 named named 4096 2008-08-22 08:30 data
-rwxr-xr-x 1 root  root   198 2008-08-22 08:30 localdomain.zone
-rwxr-xr-x 1 root  root   195 2008-08-22 08:30 localhost.zone
-rwxr-xr-x 1 root  root   427 2008-08-22 08:30 named.broadcast
-rwxr-xr-x 1 root  root   424 2008-08-22 08:30 named.ip6.local
-rwxr-xr-x 1 root  root   426 2008-08-22 08:30 named.local
-rwxr-xr-x 1 root  root   907 2008-08-22 08:30 named.rfc1912.zones
-rwxr-xr-x 1 root  root  2517 2008-08-22 08:30 named.root
-rwxr-xr-x 1 root  root   524 2008-08-22 08:30 named.root.hints
-rwxr-xr-x 1 root  root   427 2008-08-22 08:30 named.zero
-rwxr-xr-x 1 root  root   336 2008-08-22 08:30 school.external.zone.db
-rwxr-xr-x 1 root  root    91 2008-08-22 08:30 school.internal.zone.16.in-addr.db.in
-rwxr-xr-x 1 root  root    91 2008-08-22 08:30 school.internal.zone.32.in-addr.db.in
-rwxr-xr-x 1 root  root    91 2008-08-22 08:30 school.internal.zone.48.in-addr.db.in
-rwxr-xr-x 1 root  root   740 2008-08-22 08:30 school.internal.zone.db
-rwxr-xr-x 1 root  root    91 2008-08-22 08:30 school.internal.zone.in-addr.db.in

-------------- next part --------------
//
// Named.conf file for the OLPC schoolserver
//
// See the BIND Administrator's Reference Manual (ARM) for details, in:
//   file:///usr/share/doc/bind-*/arm/Bv9ARM.html
// Also see the BIND Configuration GUI : /usr/bin/system-config-bind and 
// its manual.
//
options
{
	/* make named use port 53 for the source of all queries, to allow
         * firewalls to block all ports except 53:
         */
	query-source    port 53;	
	query-source-v6 port 53;
	listen-on-v6 { any; };	
	// Put files that named is allowed to write in the data/ directory:
	directory "/var/named"; // the default
	dump-file 		"data/cache_dump.db";
        statistics-file 	"data/named_stats.txt";
        memstatistics-file 	"data/named_mem_stats.txt";
};
logging 
{
/*      If you want to enable debugging, eg. using the 'rndc trace' command,
 *      named will try to write the 'named.run' file in the $directory (/var/named).
 *      By default, SELinux policy does not allow named to modify the /var/named directory,
 *      so put the default debug log file in data/ :
 */
        channel default_debug {
                file "data/named.run";
                severity dynamic;
        };	
};
//
// All BIND 9 zones are in a "view", which allow different zones to be served
// to different types of client addresses, and for options to be set for groups
// of zones.
//
// By default, if named.conf contains no "view" clauses, all zones are in the 
// "default" view, which matches all clients.
// 
// If named.conf contains any "view" clause, then all zones MUST be in a view; 
// so it is recommended to start off using views to avoid having to restructure
// your configuration files in the future.
//
view "localhost_resolver"
{
	match-clients 		{ localhost; };
	match-destinations	{ localhost; };
	recursion yes;
	# all views must contain the root hints zone:
	include "/var/named/named.root.hints";

        /* these are zones that contain definitions for all the localhost
         * names and addresses, as recommended in RFC1912 - these names should
	 * ONLY be served to localhost clients:
	 */
	include "/var/named/named.rfc1912.zones";

	/* and these are the local subnet names  */
	zone "nashik.xs.laptop.org" in {
		type master;
		file "school.internal.zone.db";
		allow-update {127.0.0.1; };
	};
};
acl "school-subnets" { 172.18/16; };
view "internal"
{
/* This view will contain zones you want to serve only to clients
   that are on the school network
 */
	match-clients		{ school-subnets; };
	recursion yes;

	// all views must contain the root hints zone:
	include "/var/named/named.root.hints";
 
	// These are your "authoritative" internal zones, and would probably
	// also be included in the "localhost_resolver" view above :

	zone "nashik.xs.laptop.org" { 
		type master;
		file "school.internal.zone.db";
		allow-update {127.0.0.1; };
	};
	zone "0.18.172.in-addr.arpa" {
		type master;
		file "school.internal.zone.in-addr.db";
		allow-update {127.0.0.1; };
	};
	zone "16.18.172.in-addr.arpa" {
		type master;
		file "school.internal.zone.16.in-addr.db";
		allow-update {127.0.0.1; };
	};
	zone "18.18.172.in-addr.arpa" {
		type master;
		file "school.internal.zone.32.in-addr.db";
		allow-update {127.0.0.1; };
	};
	zone "20.18.172.in-addr.arpa" {
		type master;
		file "school.internal.zone.48.in-addr.db";
		allow-update {127.0.0.1; };
	};
};
view "external"
{
/* This view will contain zones you want to serve only to the wide world
 */
        match-clients           { any; };   // implicit
        recursion yes;
        // all views must contain the root hints zone:
        include "/var/named/named.root.hints";
 
        // These are your "authoritative" external zones, and would probably
        // also be included in the "localhost_resolver" view above :

        zone "nashik.xs.laptop.org" { 
                type master;
                file "school.external.zone.db";
                allow-update {127.0.0.1; };
        };
};
key ddns_key
{
	algorithm hmac-md5;
	secret "vkuyPyPl8AaiPpkep9qTk9iJXI25x7xoTdfsCatLbYMzgFiQli1XPGk89Zei";
};


More information about the Server-devel mailing list