Port 67 — DHCP server
UDP well-known
What runs on port 67
Hands out IP addresses to clients on a local network.
Security considerations
Two DHCP servers on one network cause address conflicts — a classic cause of "the internet is down" in small offices.
Checking whether something is listening
# Linux / macOS — what is bound to the port
sudo lsof -i :67
sudo ss -lntp | grep :67
# Windows
netstat -ano | findstr :67
Get-NetTCPConnection -LocalPort 67
# is it reachable from outside?
nc -zv example.com 67
curl -v telnet://example.com:67
Freeing the port
# find the process, then stop it
sudo lsof -ti :67 | xargs kill # Linux / macOS
netstat -ano | findstr :67 # note the PID, then:
taskkill /PID <pid> /F # Windows