• Contact
  • About Me
  • Privacy Policy
DefenceDev
  • Home
  • Blog
  • Linux Tutorials
    • Bash Scripting Lessons
    • Commands
    • Networking
  • Solutions
    • Docker
  • Network Tutorials
    • FortiGate
    • MikroTik
  • Projects
    • AdGuard
    • Immich
    • Nextcloud
    • WordPress
  • Cloud
  • Video Tutorials
    • YouTube Channel
    • MikroTik Videos
No Result
View All Result
  • Home
  • Blog
  • Linux Tutorials
    • Bash Scripting Lessons
    • Commands
    • Networking
  • Solutions
    • Docker
  • Network Tutorials
    • FortiGate
    • MikroTik
  • Projects
    • AdGuard
    • Immich
    • Nextcloud
    • WordPress
  • Cloud
  • Video Tutorials
    • YouTube Channel
    • MikroTik Videos
No Result
View All Result
DefenceDev
No Result
View All Result
ADVERTISEMENT
Home Video Tutorials MikroTik Videos

MikroTik: Configure DHCP Server and Settings on Interface

neo by neo
May 27, 2025
in MikroTik Videos
0
A screenshot of WinBox showing the process of creating 'New DHCP Server'.

Process of creating 'New DHCP Server' using Winbox.

0
SHARES
25
VIEWS
Share on FacebookShare on Twitter
ADVERTISEMENT

Introduction

Dynamic Host Configuration Protocol (DHCP) simplifies IP address management by automatically assigning IP addresses and other Settings like Domain Name System DNS, Gateway to devices in a network. MikroTik routers offer a robust solution for configuring DHCP servers, enabling seamless IP allocation and efficient network management. This guide will walk you through setting up a DHCP server on MikroTik, ensuring a stable and automated network environment.

For more details about this topic you can check MikroTik page.

Video Tutorial How to create DHCP Server and Sttings on Interface

In this video, I demonstrate how to create a DHCP Server on a MikroTik device using a bridge interface. You’ll learn step-by-step how to:

DHCP Configuration via Winbox

Step 1: Log in to MikroTik Router

Access your router via the MikroTik WinBox application or the web interface. Use your credentials to log in.

Open Winbox Application and Connect to Router

Step 2: Define an IP Pool

Navigate to IP > Pool, click the “+” icon, and define the range of IP addresses to be distributed. Example: 192.168.1.100-192.168.1.200.

IP -> Pool
Create a new DHCP Pool

Step 3: Create a DHCP Server

Go to IP > DHCP Server and click DHCP Setup. Select the interface where the DHCP service will run (e.g., ether1). Follow the wizard to set parameters like the IP pool, default gateway, DNS server, and lease time.

Create DHCP Server
Create DHCP Server

Step 4: Verify the Configuration

After completing the setup, ensure the DHCP server is active. Check the Leases tab under IP > DHCP Server for a list of devices assigned IPs.

Step 5: Configure Gateway and DNS Settings

Set network address, gateway and DNS Server

For advanced configurations, such as binding specific IP addresses to devices or enabling logging, explore options in the DHCP MikroTik Server section.

ADVERTISEMENT
ADVERTISEMENT

Configuration via CLI

Step 1: Define an IP Address for the Interface

Assign an IP address to the interface where you want to set up the DHCP server:

/ip address add address=192.168.1.1/24 interface=ether1

Step 2: Create an IP Pool

Define the range of IP addresses to be allocated by the DHCP server:

/ip pool add name=dhcp_pool ranges=192.168.1.100-192.168.1.200

Step 3: Set Up the DHCP Server

Add the DHCP server to the desired interface and associate it with the IP pool:

ADVERTISEMENT
/ip dhcp-server add name=dhcp1 interface=ether1 address-pool=dhcp_pool lease-time=10m

Step 4: Add a DHCP Network, Gateway and DNS Settings

Specify the network details, including the gateway and DNS server:

/ip dhcp-server network add address=192.168.1.0/24 gateway=192.168.1.1 dns-server=8.8.8.8,8.8.4.4

Step 5: Enable the DHCP Server

Ensure the DHCP server is active:

/ip dhcp-server enable dhcp1

DHCP Server Verification

Check the status of the DHCP server and assigned leases:

/ip dhcp-server print  
/ip dhcp-server lease print

About The Author

neo

See author's posts

Tags: mikrotik
ADVERTISEMENT
Previous Post

Fortinet FortiGate: Packet Capture from CLI and GUI

Next Post

MikroTik: Configure static IP Address on the Interface

neo

neo

Next Post
MikroTik: Configure static IP Address on the Interface

MikroTik: Configure static IP Address on the Interface

Follow Us

  • Trending
  • Comments
  • Latest
MikroTik: Export Configuration in Text File

MikroTik: Export Configuration in Text File

Fortinet FortiGate: Static Route Configuration via GUI and CLI

Fortinet FortiGate: Static Route Configuration via GUI and CLI

Immich: Installation on Ubuntu 22.04

Immich: Installation on Ubuntu 22.04

Fortinet FortiGate Upgrade Path Tool

Fortinet FortiGate Upgrade Path Tool

NextCloud: Port Forwarding - Essential Ports for Smooth Functionality

NextCloud: Port Forwarding – Essential Ports for Smooth Functionality and Remote Access

Organizing and Managing Photos with Immich: Features I Use

Organizing and Managing Photos with Immich: Features I Use

Install Ubuntu 22.04 on Oracle VM Virtual Box

Install Ubuntu 22.04 on Oracle VM Virtual Box

Linux Directories: cd (Change Directory), pwd (Print Working Directory), mkdir (Make Directory)

Linux Directories: cd (Change Directory), pwd (Print Working Directory), mkdir (Make Directory)

Install WordPress on Raspberry Pi 4 with Docker (Ubuntu 22.04)

Install WordPress on Raspberry Pi 4 with Docker (Ubuntu 22.04)

Install Nextcloud on Raspberry Pi 4 with Docker (Ubuntu 22.04)

Install Nextcloud on Raspberry Pi 4 with Docker (Ubuntu 22.04)

Install Nginx Proxy Manager on Raspberry Pi 4 with Docker (Ubuntu 22.04)

Install Nginx Proxy Manager on Raspberry Pi 4 with Docker (Ubuntu 22.04)

Install Docker on Raspberry Pi 4 with Ubuntu 22.04

Install Docker on Raspberry Pi 4 with Ubuntu 22.04

Recent News

Install WordPress on Raspberry Pi 4 with Docker (Ubuntu 22.04)

Install WordPress on Raspberry Pi 4 with Docker (Ubuntu 22.04)

Install Nextcloud on Raspberry Pi 4 with Docker (Ubuntu 22.04)

Install Nextcloud on Raspberry Pi 4 with Docker (Ubuntu 22.04)

Install Nginx Proxy Manager on Raspberry Pi 4 with Docker (Ubuntu 22.04)

Install Nginx Proxy Manager on Raspberry Pi 4 with Docker (Ubuntu 22.04)

Install Docker on Raspberry Pi 4 with Ubuntu 22.04

Install Docker on Raspberry Pi 4 with Ubuntu 22.04

MikroTik: Check Your Wireless Password

MikroTik: Check Your Wireless Password

ADVERTISEMENT

DefenceDev Tutorials

defencedev Logo

Whether you’re just starting or looking to expand your skills, I hope you find useful information and engaging discussions here. Let me take you through my journey and the goals behind this space!

Follow Us

Browse by Category

  • Blog
  • Cloud
    • Private
  • Linux Tutorials
    • Bash Scripting Tutorials
    • Commands
    • Networking
  • Network Tutorials
    • FortiGate
    • MikroTik
  • Projects
    • AdGuard
    • Immich
    • Nextcloud
    • WordPress
  • Solutions
    • Docker
  • Video Tutorials
    • MikroTik Videos

Recent News

Install WordPress on Raspberry Pi 4 with Docker (Ubuntu 22.04)

Install WordPress on Raspberry Pi 4 with Docker (Ubuntu 22.04)

Install Nextcloud on Raspberry Pi 4 with Docker (Ubuntu 22.04)

Install Nextcloud on Raspberry Pi 4 with Docker (Ubuntu 22.04)

  • Site Map
  • Privacy Policy
  • Facebook Page
  • Disclaimer
  • Contact
  • About Me

© 2025 defencedev.com - All rights reserved.

No Result
View All Result
  • Home
  • Blog
  • Linux Tutorials
    • Bash Scripting Lessons
    • Commands
    • Networking
  • Solutions
    • Docker
  • Network Tutorials
    • FortiGate
    • MikroTik
  • Projects
    • AdGuard
    • Immich
    • Nextcloud
    • WordPress
  • Cloud
  • Video Tutorials
    • YouTube Channel
    • MikroTik Videos

© 2025 defencedev.com - All rights reserved.