Port 68 — DHCP client
UDP well-known
What runs on port 68
The client side of DHCP address assignment.
Security considerations
Local network only; nothing to expose.
Checking whether something is listening
# Linux / macOS — what is bound to the port
sudo lsof -i :68
sudo ss -lntp | grep :68
# Windows
netstat -ano | findstr :68
Get-NetTCPConnection -LocalPort 68
# is it reachable from outside?
nc -zv example.com 68
curl -v telnet://example.com:68
Freeing the port
# find the process, then stop it
sudo lsof -ti :68 | xargs kill # Linux / macOS
netstat -ano | findstr :68 # note the PID, then:
taskkill /PID <pid> /F # Windows