|
Search Forums:
|
|||||||
| Forums | Register | Forum Rules | Linux and Unix Links | Man Pages | Albums | FAQ | Users | Calendar | Search | Today's Posts | Mark Forums Read |
| 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 !! |
|
|
|
Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
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
|
||||
|
||||
|
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 | ||
|
|
![]() |
| Thread Tools | Search this Thread |
| 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 |
|
|