Differences between revisions 1 and 2
Revision 1 as of 2017-12-10 21:27:51
Size: 18
Comment:
Revision 2 as of 2017-12-10 21:31:21
Size: 483
Comment:
Deletions are marked like this. Additions are marked like this.
Line 2: Line 2:

== Software ==

{{{
apt-get install dhcp
}}}

== Network ==

We will give the DNS master a static 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.36
        network 192.168.1.0
        netmask 255.255.255.0
        broadcast 192.168.1.255
        gateway 192.168.1.1
}}}

DHCP Primary

Software

apt-get install dhcp

Network

We will give the DNS master a static 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.36
        network 192.168.1.0
        netmask 255.255.255.0
        broadcast 192.168.1.255
        gateway 192.168.1.1

None: DHCP Primary (last edited 2021-03-15 21:24:19 by Kristian Kallenberg)