C
C
csergey2014-06-06 11:19:13
Domain Name System
csergey, 2014-06-06 11:19:13

How to delegate a zone?

There are 2 DNS Bind9 servers. There is a domain.com domain, its zone is described at 192.168.0.1 . What entries need to be made in the domain.com zone file in order to delegate the office.domian.com zone\domain to the second server with Bind at 192.168.0.2

Answer the question

In order to leave comments, you need to log in

1 answer(s)
G
Gasoid, 2014-06-06
@csergey

Open your bind config with the zone

$TTL    604800
@       IN      SOA     domain.com. root.localhost. (
                        29112012        ; Serial
                         604800         ; Refresh
                          86400         ; Retry
                        2419200         ; Expire
                         604800 )       ; Negative Cache TTL
;
@       IN      NS      domain.com.
@       IN      A       192.168.0.1
office    IN      A       192.168.0.2

well, that's what I've done

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question