Skip to main content

WebTitan

Configuring BIND

Note

The instructions below include information about tools that are not owned or managed by TitanHQ and are only intended as a guideline to help you. As such, the information may be subject to change without us knowing.

If you notice anything incorrect, please email docs@titanhq.com and let us know.

  1. Locate the BIND configuration file, usually located at /etc/namedb/named.conf

  2. Look for the options statement:

    options {
       ...
       ...
    };
    
  3. Inside the options statement, add a forwarders statement listing your WebTitan servers.

    Note

    If a forwarders statement already exists (pointing to your ISPs DNS server), edit it appropriately to point to the WebTitan servers.

  4. Your edited forwarders statement should look as follows, where 1.2.3.4 is your WebTitan IP:

    options {
      ...
      forwarders {
         1.2.3.4
      };
    };
    
  5. Restart the BIND service to reload the configuration.