Configuring BIND With Multiple Domains

Mark Andrews Mark_Andrews at isc.org
Mon Sep 10 23:29:53 UTC 2007


> Does anyone know where to find a step-by-step tutorial on how
> to configure and set up BIND to handle multiple domains and
> present itself as the SOA for each domain?
> 
> Thanks.
> 
> -- 
> Jim Carlock
> Swimming Pool, Spa And Water Feature Designers
> http://www.aquaticcreationsnc.com/

	Just about every example of configuring BIND does this.
	Any example with 2 or more zone definitions does this.

		zone "example.com" {
			type master;
			files "master/example.com.db";
		};

		zone "example.net" {
			type master;
			files "master/example.net.db";
		};

		zone "example.org" {
			type slave;
			masters { 1.2.3.4; };
			file "slave/example.org.db";
		};

	Mark
-- 
Mark Andrews, ISC
1 Seymour St., Dundas Valley, NSW 2117, Australia
PHONE: +61 2 9871 4742                 INTERNET: Mark_Andrews at isc.org



More information about the bind-users mailing list