keecode logokeecode
67

DHCP Server

DHCP server

UDP
Network

Port Information

Port Number

67

Protocol

UDP

Category

Network

Common Usage

URL with Port

http://localhost:67
https://example.com:67

Node.js/Express Server

const express = require('express');
const app = express();
const PORT = 67;

app.listen(PORT, () => {
  console.log(`Server running on port ${PORT}`);
});

Docker Port Mapping

docker run -p 67:67 myapp

# In docker-compose.yml
ports:
  - "67:67"

Firewall Configuration

# Linux/Ubuntu firewall
sudo ufw allow 67/udp

# Check if port is in use
netstat -an | grep 67