Difference between revisions of "Bind Configuration with SafeSquid"

From Secure Web Gateway
en>Santosh.thorat
 
m (1 revision imported: Importing all pages)
 
(No difference)

Latest revision as of 15:36, 24 July 2021

Installation procedure for bind in ubuntu

1. Install bind with the command given below

apt-get install bind9 bind9utils

Open /etc/bind/ folder to modify named.conf.options and named.conf configuration files.

Modify the named.conf.options file with the command   vim named.conf.options

Check whether these parameters are uncommented as shown below-

 dnssec-validation no;
 listen-on {127.0.0.1;};

        auth-nxdomain no;    # conform to RFC1035
        //listen-on-v6 { any; };

Modify the named.conf file with this command    vim named.conf

Add below line at the end of the file

include "/etc/bind/safesquid.dns.conf";

2. Restart bind9 service with the command given below.

/etc/init.d/bind9 restart
 * Starting domain name service... bind9                                 [ OK ]