keecode logokeecode
69

TFTP

Trivial File Transfer Protocol

UDP
File Transfer

Port Information

Port Number

69

Protocol

UDP

Category

File Transfer

Common Usage

URL with Port

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

Node.js/Express Server

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

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

Docker Port Mapping

docker run -p 69:69 myapp

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

Firewall Configuration

# Linux/Ubuntu firewall
sudo ufw allow 69/udp

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