Networking Fundamentals: What is a port

Join the AI Workshop to learn more about AI and how it can be applied to web development. Next cohort February 1st, 2026

The AI-first Web Development BOOTCAMP cohort starts February 24th, 2026. 10 weeks of intensive training and hands-on projects.


When making network requests, you use an IP address, or a host name, and a port.

Like this:

  • http://localhost:8080 (port 8080)
  • ftp://127.0.0.1:29392 (port 29392)

What is a port, exactly?

It’s a technique introduced to allow multiple applications to respond on the same computer, on the same protocol.

For example we might have a web server running on our machine. A second web server can be started on a different port.

Say the first runs on port 80, which is the default for web servers using the HTTP protocol. The same can run on any other port except port 80. It’s common to use port 8080 or port 81, for example.

HTTPS runs on port 443 by default.

Every protocol has a different default port, but programs are not required to use that. They can use any unused port between 1 and 65535 (16 bits unsigned = 2^16). Here is a list of default port numbers for all protocols based on TCP and UDP.

Historically:

  • FTP uses 21
  • Telnet uses 23
  • SMTP uses 25
  • POP3 uses 110

..although now for all those services you should use secure counterparts, which are based on other ports.

Lessons in this unit:

0: Introduction
1: What is a CDN?
2: DNS, Domain Name System
3: ▶︎ What is a port
4: The TCP Protocol
5: The UDP Protocol