The Internet: What is a port
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.
By Flavio Copes Sep 5, 2019updated Aug 7, 2026 Learn what a port is in networking, how it lets many apps share one machine, and the default ports like 80 for HTTP and 443 for HTTPS out of 65535 total. ~~~ A port is a number that identifies a specific application on a machine. The IP address gets your data to the right computer, and the port gets it to the right program running on that computer. 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) Why do ports exist? It’s a…
related reading
- How does the Internet Work? - cs.fyics.fyi
- The Internet explained from first principlesexplained-from-first-principles.com
- Beej's Guide to Network Programmingbeej.us
- Sign in to Your Account · Flyfly.io
- 40 maps that explain the internetvox.com
- How NAT traversal workstailscale.com
- Networking tutorials and articles | Flavio Copesthevalleyofcode.com
- How To Set Up Port Forwarding - Port Forwardportforward.com
- GitHub - alex/what-happens-when: An attempt to answer the age old interview question "What happens when you type google.com into your browser and press enter?"github.com
- Networking tutorials and articles | Flavio Copesthevalleyofcode.com
- Telneten.wikipedia.org
- Reading 18: Message-Passing and Networkingweb.mit.edu