• Contact
  • About Me
  • Privacy Policy
  • Disclaimer
DefenceDev
  • Home
  • Linux
    • Bash Scripting
      • Bash Scripting Lessons
    • Commands&Tips
    • Monitoring
  • Networking
    • FortiGate
    • MikroTik
  • Projects & Case Studies
  • Self-Hosted
    • AdGuard
    • Immich
    • Nextcloud
    • WordPress
  • Virtualization
    • Proxmox
    • VMware
  • Tools
No Result
View All Result
  • Home
  • Linux
    • Bash Scripting
      • Bash Scripting Lessons
    • Commands&Tips
    • Monitoring
  • Networking
    • FortiGate
    • MikroTik
  • Projects & Case Studies
  • Self-Hosted
    • AdGuard
    • Immich
    • Nextcloud
    • WordPress
  • Virtualization
    • Proxmox
    • VMware
  • Tools
No Result
View All Result
DefenceDev
No Result
View All Result
Home Networking MikroTik

MikroTik: Configure DHCP Server and Settings on Interface

by neo
September 3, 2026
in MikroTik
0
A screenshot of WinBox showing the process of creating 'New DHCP Server'.

Process of creating 'New DHCP Server' using Winbox.

0
SHARES
165
VIEWS
Share on FacebookShare on LinkedIn
Table of Contents
  • Configure DHCP Server on MikroTik
  • Video Tutorial How to create DHCP Server and Sttings on Interface
  • DHCP Configuration via Winbox
    • Step 1: Log in to MikroTik Router
    • Step 2: Define an IP Pool
    • Step 3: Create a DHCP Server
    • Step 4: Verify the Configuration
    • Step 5: Configure Gateway and DNS Settings
  • Configuration via CLI
    • Step 1: Define an IP Address for the Interface
    • Step 2: Create an IP Pool
    • Step 3: Set Up the DHCP Server
    • Step 4: Add a DHCP Network, Gateway and DNS Settings
    • Step 5: Enable the DHCP Server
  • DHCP Server Verification

Configure DHCP Server on MikroTik

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.

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:

/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

Tags: mikrotiknetworking
Previous Post

FortiGate: Packet Capture from CLI and GUI

Next Post

MikroTik: Configure Static IP Address on the Interface

neo

Related Posts

MikroTik OpenVPN: Sound Alert When VPN Tunnel Fails
MikroTik

MikroTik OpenVPN: Sound Alert When VPN Tunnel Fails

MikroTik: OpenVPN Client Failover Script
MikroTik

MikroTik: OpenVPN Client Failover Script

MikroTik: Check Your Wireless Password
MikroTik

MikroTik: Check Your Wireless Password

MikroTik VLAN Configuration
MikroTik

MikroTik VLAN Configuration

MikroTik: Remote Access to Headquarter with OpenVPN
MikroTik

Configure OpenVPN Server on MikroTik Router for Remote Access

MikroTik: Firmware Update with WinBox Application - Manual Approach
MikroTik

MikroTik: Firmware Update with WinBox Application – Manual Approach

Next Post
MikroTik: Configure static IP Address on the Interface

MikroTik: Configure Static IP Address on the Interface

Recommended

Fortinet FortiGate Logging: Log Management and Best Practices

FortiGate Logging: Log Management and Best Practices

Solutions: Repeat Command in Ubuntu Terminal

Solutions: Repeat Command in Ubuntu Terminal

Proxmox Backup Server: Deleted Backup but Disk Space Is Still Used? Here's the Fix

Proxmox Backup Server: Deleted Backup but Disk Space Is Still Used? Here’s the Fix

Briefly unavailable for scheduled maintenance. Check back in a minute.

WordPress Stuck in Maintenance Mode After Plugin Update

AI-generated illustration showing how to configure Telegram notifications in Proxmox and send alerts via Telegram

Configure Telegram Notifications in Proxmox VE Using Webhooks

Categories

  • Linux
    • Bash Scripting
    • Commands&Tips
    • Monitoring
  • Networking
    • FortiGate
    • MikroTik
  • Projects & Case Studies
  • Self-Hosted
    • AdGuard
    • Immich
    • Nextcloud
    • WordPress
  • Virtualization
    • Proxmox
    • VMware
  • Web Tools

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

Recent News

Proxmox Backup Server: Deleted Backup but Disk Space Is Still Used? Here's the Fix

Proxmox Backup Server: Deleted Backup but Disk Space Is Still Used? Here’s the Fix

Briefly unavailable for scheduled maintenance. Check back in a minute.

WordPress Stuck in Maintenance Mode After Plugin Update

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

© 2025 defencedev.com - All rights reserved.

No Result
View All Result
  • Home
  • Linux
    • Bash Scripting
      • Bash Scripting Lessons
    • Commands&Tips
    • Monitoring
  • Networking
    • FortiGate
    • MikroTik
  • Projects & Case Studies
  • Self-Hosted
    • AdGuard
    • Immich
    • Nextcloud
    • WordPress
  • Virtualization
    • Proxmox
    • VMware
  • Tools

© 2025 defencedev.com - All rights reserved.