Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Dummies Questions & Answers
Search Forums:



UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !!

Closed Thread    
 
Thread Tools Search this Thread Display Modes
    #1  
Old 06-05-2006
Registered User
 

Join Date: Jun 2006
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Multiple Domains with BIND

I need help creating multiple domains with one single DNS server.ex: domain1.com and domain2.com on a sigle machine 1.2.3.4
Thx
Sponsored Links
    #2  
Old 06-06-2006
lorentz's Avatar
Registered User
 

Join Date: Jun 2006
Location: Saint Petersburg, Russia
Posts: 9
Thanks: 0
Thanked 0 Times in 0 Posts
you just need multiple zone instruction (and multiple zone databases of course )

small example (easy but workable)


Code:

zone "zooclub.ru" {
        type master;
        file "master/zooclub.ru";
        allow-query { any; };
        allow-transfer { 194.226.96.8;
                         195.131.212.198; };
        notify yes;
};

zone "lilit.pp.ru" {
        type master;
        file "master/lilit.pp.ru";
        allow-query { any; };
        allow-transfer { 195.131.212.198; };
        notify yes;
};

and here we can see 2 zones (domains) -- zooclub.ru and lilit.pp.ru

WBR
lorentz
Sponsored Links
Closed Thread

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
creating domains rmuhammad UNIX for Dummies Questions & Answers 4 11-03-2003 04:47 PM
Verisign and the .com and .net domains Perderabo News, Links, Events and Announcements 3 10-18-2003 01:47 PM
blocking domains tamemi UNIX for Dummies Questions & Answers 1 04-16-2003 07:13 AM
DNS Free for Five Domains Neo News, Links, Events and Announcements 0 08-09-2002 04:50 PM
multiple domains ericg UNIX for Dummies Questions & Answers 2 06-04-2002 06:55 PM



All times are GMT -4. The time now is 03:48 AM.