DHCP for Linux: Difference between revisions

From KlavoWiki
Jump to navigationJump to search
 
(6 intermediate revisions by the same user not shown)
Line 14: Line 14:
</pre>
</pre>


== For ArchLinux Servers ==
== Debian ==
<pre>
apt-get install isc-dhcp-server
service isc-dhcp-server status
</pre>
 
<pre>
/etc/dhcp/dhcpd.conf
</pre>
 
The details of client devices with IP address will be entered into the file:
<pre>
/var/lib/dhcp/dhcpd.leases
</pre>
 
== ArchLinux ==
<pre>
<pre>
pacman -S dhcp
pacman -S dhcp


systemctl enable httpd.service
systemctl enable dhcpd4.service
systemctl start httpd.service
systemctl start dhcpd4.service
</pre>
</pre>


Line 34: Line 49:
'''dhcpd.conf'''
'''dhcpd.conf'''
<pre>
<pre>
authoritative;
option tftp150 code 150 = string;
option tftp150 code 150 = string;
option tftp66 code 66 = string;
option tftp66 code 66 = string;
Line 53: Line 70:


         range 10.17.1.101 10.17.1.150;
         range 10.17.1.101 10.17.1.150;
  }
</pre>
=== Setting a Static Address ===
<pre>
host david
  {
              hardware ethernet 33:d6:44:04:a8:32;
                  fixed-address 192.168.1.15;
      option domain-name-servers 192.168.1.254;
            option domain-search "klaverstyn.com", "devices.klaversrtyn.com";
   }
   }
</pre>
</pre>


[[Category : Linux]]
[[Category : Linux]]

Latest revision as of 23:10, 13 March 2018

For Linux Servers

yum -y install dhcp
chkconfig dhcpd on
vi /etc/dhcp/dhcpd.conf

The details of client devices with IP address will be entered into the file:

/var/lib/dhcpd/dhcpd.leases

Debian

apt-get install isc-dhcp-server
service isc-dhcp-server status
/etc/dhcp/dhcpd.conf

The details of client devices with IP address will be entered into the file:

/var/lib/dhcp/dhcpd.leases

ArchLinux

pacman -S dhcp

systemctl enable dhcpd4.service
systemctl start dhcpd4.service
vi /etc/dhcpd.conf

The details of client devices with IP address will be entered into the file:

/var/lib/dhcp/dhcpd.leases

Common Configuration File

dhcpd.conf

authoritative;

option tftp150 code 150 = string;
option tftp66 code 66 = string;

subnet 10.17.1.0 netmask 255.255.255.0
   {
        default-lease-time              86400;   # Seconds, 86400 =  24 Hours
        max-lease-time                  86400;

        option tftp66                   "10.17.1.5";

        option routers                  10.17.1.254;
        option subnet-mask              255.255.255.0;

        option domain-name              "mydomain.com";
        option domain-name-servers      10.17.1.254;

        option time-offset              36000;   # Australian Eastern Standard Time in Seconds

        range 10.17.1.101 10.17.1.150;
   }

Setting a Static Address

host david
   {
               hardware ethernet 33:d6:44:04:a8:32;
                   fixed-address 192.168.1.15;
      option domain-name-servers 192.168.1.254;
            option domain-search "klaverstyn.com", "devices.klaversrtyn.com";
   }