On 4/5/2018 11:04 AM, michael wrote:
Has anyone done this, set up Active Directory with Bind 9 as the primary name server and
ISC DHCP server for handing out IP addresses?


Hi,
    I've done this a number of times using BIND9 as the main resolver & DNS server handed out by DHCP in an AD environment.

    What I do, is set up a zone for your Active Directory domain (for example "companyname.local" to forward to the IP of your AD DS/DNS server.

    It should look something like this

zone "companyname.local" IN
{
    type forward;
    forwarders
    {
        192.168.10.2;  # this would be the IP of your AD DS/DNS server
    };
};

Cheers,

Alex
_______________________________________________
PLUG mailing list
PLUG@pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug

Reply via email to