Skip to main content

7. BIND DNS server forwarding

This chapter forms part of the Transition Network guidance for DNS local forwarding and server configuration.

BIND (Berkeley Internet Name Domain) is the most widely used (open-source) DNS server application on the internet and within private networks.

BIND configuration is contained within a text file called named.conf. Configuration of (global) forwarding behaviour for BIND is straightforward, but is included here for completeness and comparison. Below are examples of the named.conf configuration lines for BIND 9.x.x, to set forwarding behaviour for local DNS servers operating within the TN network.


7.1 BIND 9.x.x forward only

options {

...

forwarders { 155.231.231.1; 155.231.231.2; };

forward only ;

...


7.2 BIND 9.x.x forward first

options {

...

forwarders { 155.231.231.1; 155.231.231.2; };

forward first ;

Last edited: 12 November 2019 3:39 pm