Build Ubuntu Server

Numerous steps are involved in buinding a stand alone server.
Typically the configuration file is created and uploaded to the server.

  


Install bind9

A good referce is available if you click here.

The primary configuration file is located at /etc/bind/named.conf.

[codesyntax lang=”bash”]

/ This is the primary configuration file for the BIND DNS server named.
//
// Please read /usr/share/doc/bind9/README.Debian.gz for information on the 
// structure of BIND configuration files in Debian, *BEFORE* you customize 
// this configuration file.
//
// If you are just adding zones, please do that in /etc/bind/named.conf.local

include "/etc/bind/named.conf.options";
include "/etc/bind/named.conf.local";
include "/etc/bind/named.conf.default-zones";

[/codesyntax]

The following depicts /etc/bind/named.conf.oprions.

[codesyntax lang=”bash”]

options { 
        directory "/var/cache/bind";
        listen-on port 53 { 127.0.0.1; 127.0.1.1; 109.203.114.78; };
	allow-query {
		any;
		};
        allow-new-zones yes;
        recursion no;
	allow-transfer {
		none;
		};
        dnssec-enable yes;
        dnssec-validation auto;
        auth-nxdomain no;
        allow-notify { 109.203.114.78; };
};

[/codesyntax]

Go To Top


Install e mail server.

Go To Top

Mr. Arch Brooks, Software Engineer, Brooks Computing Systems, LLC authored this article.

Leave a Reply

Your email address will not be published. Required fields are marked *