Toolman

Port 20 — FTP data

TCP well-known

What runs on port 20

The data channel of the classic File Transfer Protocol. The control channel is port 21.

Security considerations

Unencrypted. Use SFTP (port 22) or FTPS instead — plain FTP sends credentials in clear text.

Checking whether something is listening

# Linux / macOS — what is bound to the port
sudo lsof -i :20
sudo ss -lntp | grep :20

# Windows
netstat -ano | findstr :20
Get-NetTCPConnection -LocalPort 20

# is it reachable from outside?
nc -zv example.com 20
curl -v telnet://example.com:20

Freeing the port

# find the process, then stop it
sudo lsof -ti :20 | xargs kill        # Linux / macOS
netstat -ano | findstr :20            # note the PID, then:
taskkill /PID <pid> /F                    # Windows

Should this port be open to the internet?

Usually not. Expose it only if a specific external client needs it, and restrict by source address where you can.

Quick reference

Port20
ProtocolTCP
ServiceFTP data
RangeWell-known (0–1023) — binding requires root on Unix

Frequently asked questions

What is port 20 used for?

The data channel of the classic File Transfer Protocol. The control channel is port 21.

Is it safe to open port 20?

Unencrypted. Use SFTP (port 22) or FTPS instead — plain FTP sends credentials in clear text.

How do I check if port 20 is open?

Locally, sudo lsof -i :20 on macOS or Linux, or netstat -ano | findstr :20 on Windows. From outside, nc -zv host 20 tells you whether anything answers.

Why do I get "address already in use" on port 20?

Another process is bound to it — often a previous run of your own program that did not exit cleanly. Find it with lsof -ti :20 and stop it, or configure your application to use a different port.

Can I change the port this service uses?

Almost always yes, in the service's configuration. Moving off a default port reduces automated scan noise, but it is obfuscation rather than security — a real attacker scans all 65,535.

Other common ports

All port numbers