dhcp server liuxLinux serverNETWORK ADMINISTRATIONS

Linux – DHCP Tutorial

Neste tutorial vamos implementar o DHCP no Debian 10.

Comandos usados:
apt-get install isc-dhcp-server
clear
nano /etc/default/isc-dhcp-server
——————————————————–
INTERFACESv4=”enp0s8″
——————————————————–
clear
nano /etc//dhcp/dhcpd.conf
——————————————————–
option domain-name “turmat10.local”;
option domain-name-servers 192.168.0.1. ns2.example.org;

authoritative;

subnet 192.168.0.0 netmask 255.255.255.0 {
range dymanic-bootp 192.168.0.10 192.168.0.100;
option broadcast-address 192.168.0.255;
option routers 192.168.0.1;
}
——————————————————–
clear
systemctl restart isc-dhcp-server.service
systemctl status isc-dhp-server.service
clear

Nossas redes sociais:

Facebook – www.facebook.com/TurmaT10Tutoriais/
Twitter – twitter.com/Turmat10
Instagram – www.instagram.com/turmat10tutoriais/

Aproveite!! 😀

source

by Turma T-10 Tutoriais

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 *