Laboratory exercises:
----------------------
Lab 1:  Downloading & Installing BIND

download BIND source from www.isc.org or from workshop lab web server which is http://192.168.100.1 

or download bind via ftp login:sanog password: sanog
go to /home/sanog directory

	% ftp 192.168.100.1
	% mget bind*

Unpack BIND source using tar xvfz

	% tar xvfz bind-9.2.3.tar.gz

change directory to bind-9.2.3 and run the configure script

	% cd bind-9.2.3
	% ./configure	

  *DNSSEC requirements you must have to include openSSL option in configure script.

	% ./configure --with-openssl

Compile the package by runnning make

	% make

Install bind

	% make install

Check if the correct version of bind was installed.

	% named -v   
