Differences between revisions 10 and 11
Revision 10 as of 2017-12-08 21:00:22
Size: 948
Comment:
Revision 11 as of 2017-12-08 22:55:50
Size: 1006
Comment:
Deletions are marked like this. Additions are marked like this.
Line 21: Line 21:
        network 192.168.1.0
        gateway 192.168.1.1

DNS

The Domain Name System is really a must for any TCIP/IP network. It is a key component of the network. That is why it is the first service we will configure.

Here we will be using Bind, ISC's DNS server. Bind has a master/slave configuration, where the master gets the DNS changes and then updates the slave. It cannot run truly redundant, in the sense that only the master is allowed to get DNS changes, if the master is down, the slave cannot be updated.

Network

Since looking up the DNS servers IP-address does not make any sense, we will give the DNS server a statc IP-address. Edit /etc/networking/interfaces and make the following changes.

# The primary network interface
#allow-hotplug eth0
#iface eth0 inet dhcp

auto eth0
iface eth0 inet static
        address 192.168.1.34
        netmask 255.255.255.0
        gateway 192.168.1.1
        network 192.168.1.0
        gateway 192.168.1.1

Install BIND

apt-get install bind9

None: DNS (last edited 2021-01-17 20:10:16 by Kristian Kallenberg)