Skip to content

Latest commit

 

History

History
42 lines (35 loc) · 3 KB

introduction.md

File metadata and controls

42 lines (35 loc) · 3 KB

Introduction

What's a DHCP

DHCP (Dynamic Host Configuration Protocol) it's a protocol that offers IP's addresses automaticaly to network devices to identify and administrate private or local networks.

This is usually helpful for administrators 'cause if you know anything about administrate local networks manually, you can say that it is very tedious. So in this documentation you'll see how to install this service and how it works.

How it works?

Img

The DHCP protocol works through a four-step process known as DORA or DHCP Handshake: Discovery, Offer, Request, and Acknowledgment.

  1. DHCP Discovery (DHCPDISCOVER) When a client device (such as a laptop or phone) joins a network, it sends out a DHCPDISCOVER message to discover DHCP servers on the network. This is a broadcast message, meaning it’s sent to all devices on the local network because the client doesn’t have an IP address yet.

  2. DHCP Offer (DHCPOFFER) When a DHCP server receives the DHCPDISCOVER message, it checks its pool of available IP addresses and assigns one to the client. The server responds with a DHCPOFFER message, which includes:

  • The offered IP address.
  • Subnet mask.
  • Gateway (router) address.
  • Lease time (how long the client can use the IP).
  • DNS server addresses (if provided).
  • This message is sent back to the client, but still as a broadcast since the client doesn’t have a specific IP address yet.
  1. DHCP Request (DHCPREQUEST) The client receives the DHCPOFFER and sends back a DHCPREQUEST message to indicate that it accepts the offered IP address and configuration from the specific DHCP server. This message is sent as a broadcast as well, to inform all DHCP servers that it is accepting an offer from a particular server (and rejecting offers from other DHCP servers, if there are any).
  2. DHCP Acknowledgment (DHCPACK) The DHCP server confirms the IP address assignment with a DHCPACK message. This message includes the IP address, lease time, and any other network settings. Once the client receives the DHCPACK, it configures its network interface with the provided information and starts using the network with the assigned IP address.

Key Components: For this project, we'll use four machines in diferent local networks:

  • DHCP Server: The machine responsible for providing IP addresses.
  • DHCP Failover: A secondary machine that will take over if the main server shuts down or experiences any issues. It will provide the same pool of IP addresses as the primary server.
  • DHCP Relay: A device (or machine) that forwards DHCP requests between different network segments, allowing clients in other subnets to communicate with the DHCP server.
  • DHCP Client: The machine that receives the IP address from the DHCP server. Do not forget to manually add IP routes on the servers and the relay! Next