Port 514 — Syslog
UDP well-known
What runs on port 514
Remote logging.
Security considerations
UDP syslog has no authentication and no delivery guarantee. Use TLS syslog on 6514 for anything that matters.
Checking whether something is listening
# Linux / macOS — what is bound to the port
sudo lsof -i :514
sudo ss -lntp | grep :514
# Windows
netstat -ano | findstr :514
Get-NetTCPConnection -LocalPort 514
# is it reachable from outside?
nc -zv example.com 514
curl -v telnet://example.com:514
Freeing the port
# find the process, then stop it
sudo lsof -ti :514 | xargs kill # Linux / macOS
netstat -ano | findstr :514 # note the PID, then:
taskkill /PID <pid> /F # Windows