Sponsored Content
Full Discussion: Multiple Domains with BIND
Top Forums UNIX for Dummies Questions & Answers Multiple Domains with BIND Post 302075633 by lorentz on Tuesday 6th of June 2006 03:33:45 AM
Old 06-06-2006
you just need multiple zone instruction (and multiple zone databases of course Smilie )

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
 

8 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

multiple domains

Hello, I have 3 domains virtually hosted "name based" the first one "domain1.com" has its ServerName entered as domain1.com. this domain will load in a browser by www.domain1.com or simply domain1.com. the next two domains "domain2.com" and "domain3.com" ServerNames are listed as domain2.com and... (2 Replies)
Discussion started by: ericg
2 Replies

2. Solaris

Kerberos setup for multiple AD domains

Hi there: I am currently using Kerberos on Solaris 9 to autenticate using windows active directory. It is working fine, however, we just were made aware that instead of one domain, we have multiple. We configured one real with only one domain, however, I need the autentication process to also... (3 Replies)
Discussion started by: ramosl05
3 Replies

3. IP Networking

Freebsd Bind DNS server - multiple subnets

Hello all, I have configured Freebsd 8.1 Bind DNS as DNS server for intrenal domain and clients on one subnet 192.168.10.0/24 . What do I have to change in zone file and in in-addr.arpa zone file if I have two additional subsets 192.168.20.0/24 and 192.168.30.0/24? Do I have to create another... (0 Replies)
Discussion started by: kreno
0 Replies

4. UNIX for Advanced & Expert Users

Samba in multiple domains problem

Hello all. I'm hoping you can help with a problem I'm having with Samba. I have Samba running on a Solaris host. All of my users authenticate against the same domain, but some of my users are using PCs on a different domain. When the users whose PCs are on a different domain try to connect to... (0 Replies)
Discussion started by: trouphaz
0 Replies

5. UNIX for Dummies Questions & Answers

Samba with clients in multiple domains

Dear all, I've not a good starting point I'm afraid, but I was forced to deploy Samba under pressure of failing hardware so an urgent migration was done. We didn't get the IBM AIX 6.1 supplied one running at all, so we pulled down the samba.org version 3.4.3. We couldn't get that working as... (0 Replies)
Discussion started by: rbatte1
0 Replies

6. Red Hat

Sendmail - Masquerading multiple domains with different addresses

Hello Friends, I am running Sendmail 8.14 on rhel6. I have one simple question regarding domain masquerading, i would want to masquerade different domains with different addresses. By that what i mean is that lets say i have 3 domains as home.com, example.com, test.com and i would want to... (0 Replies)
Discussion started by: Rohit Bhanot
0 Replies

7. Shell Programming and Scripting

Row bind multiple csv files having different column headers

All, I guess by this time someone asked this kind of question, but sorry I am unable to find after a deep search. Here is my request I have many files out of which 2 sample files provided below. File-1 (with A,B as column headers) A,B 1,2 File-2 (with C, D as column headers) C,D 4,5 I... (7 Replies)
Discussion started by: ks_reddy
7 Replies

8. UNIX for Beginners Questions & Answers

Bind: Can you configure multiple domains using the same nameserver

Can you add multiple domains to a nameserver without creating a new IP address? I have one IP address on my machine and have configured forward and reverse zone files. Names are resolving fine. I know I can add another domain to the named.conf file and create new forward and reverse files. what... (2 Replies)
Discussion started by: LinuxGirl
2 Replies
App::AllKnowingDNS::Config(3pm) 			User Contributed Perl Documentation			   App::AllKnowingDNS::Config(3pm)

NAME
App::AllKnowingDNS::Config - configuration object DESCRIPTION
Note: User documentation is in all-knowing-dns(1). This module defines an object which holds the parsed version of the AllKnowingDNS configuration file. FUNCTIONS
zone_for_ptr($zone) Returns the appropriate zone for the given PTR query or undef if there is no appropriate zone. Example: my $query = '7.c.e.2.3.4.e.f.f.f.b.d.9.1.2.0.' . '0.c.c.c.e.0.0.1.8.8.d.4.1.0.0.2.ip6.arpa'; my $zone = $config->zone_for_ptr($query); return 'NXDOMAIN' unless defined($zone); ... zone_for_aaaa($zone) Returns the appropriate zone for the given AAAA query or undef if there is no appropriate zone. Example: my $query = 'ipv6-foo.nutzer.raumzeitlabor.de'; my $zone = $config->zone_for_aaaa($query); return 'NXDOMAIN' unless defined($zone); ... VERSION
Version 1.3 AUTHOR
Michael Stapelberg, "<michael at stapelberg.de>" LICENSE AND COPYRIGHT
Copyright 2012 Michael Stapelberg. This program is free software; you can redistribute it and/or modify it under the terms of the BSD license. perl v5.14.2 2012-03-28 App::AllKnowingDNS::Config(3pm)
All times are GMT -4. The time now is 08:07 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy