← Back to all network ports
UDP
Vulnerable

69 TFTP

TFTP is a lightweight file transfer protocol often used for boot images and network appliance provisioning.

Security Context

Port 69 is high-risk when broadly exposed. Treat it as an attack-surface decision, not just a connectivity setting, and confirm whether the listener truly needs to be reachable.

  • !TFTP lacks authentication and transport security.

Nmap Check

Use a version probe first so you confirm whether the expected service is really what is listening on this port.

nmap -sU -p 69 <host>

Firewall Commands

UFW
sudo ufw allow 69/udp
iptables
sudo iptables -A INPUT -p udp --dport 69 -j ACCEPT

Related UDP Ports