dhcp server liuxLinux serverNETWORK ADMINISTRATIONS

CARA MEMBUAT STATIC IP PADA DHCP SERVER LINUX UBUNTU

CARA MEMBUAT STATIC IP PADA DHCP SERVER LINUX UBUNTU

PASTIKAN TONTOH VIDEO PEMBUATAN DHCP SERVER SEBELUMNYA:

Adapun Langkah MEMBUAT STATIC IP PADA DHCP SERVER LINUX UBUNTU yaitu:
1. sudo apt-get update

2. sudo apt-get install isc-dhcp-server

3. sudo nano /etc/default/isc-dhcp-server
INTERFACES=”eth1″

4. sudo nano /etc/dhcp/dhcpd.conf

subnet 192.168.111.0 netmask 255.255.255.0 { #network
range 192.168.111.20 192.168.111.25; # Range
option domain-name-servers 192.168.111.1, 8.8.8.8; #Pri DNS , Sec DNS
option domain-name “serverarif.com”; #Domain name
option routers 192.168.111.1; #Gateway
option broadcast-address 192.168.111.255; #Broadcast
default-lease-time 600;
max-lease-time 7200;
host printer-finance {
hardware ethernet 00:DD:HD:66:55:9B;
fixed-address 192.168.100.50;
}
host windows {
hardware ethernet 00:KK:HD:44:55:22;
fixed-address 192.168.111.24;
}
}

5. service isc-dhcp-server restart

source

by Indonesian Network

linux dhcp server

Alice AUSTIN

Alice AUSTIN is studying Cisco Systems Engineering. He has passion with both hardware and software and writes articles and reviews for many IT websites.

Leave a Reply

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