Learn
An important concept to understand for network enumeration (and networking in general) is the concept of ports. Ports are to IP addresses, what apartment numbers are to street addresses. Ports don’t specify which computer the data gets sent to, but the computer uses the port number to figure out which program to give the data to once the data arrives. Knowing what ports a computer has active can give us an idea of what services the computer is running and what the computer’s purpose is.
Here’s a summary of the most important things to know about ports:
- There are 65536 different ports, numbered 0-65535.
- Ports 0-1023 are reserved for the most important or well-known protocols.
- Ports 1024-49151 are associated with less common protocols and services.
- Ports 49152 and up are dynamic and can be used as needed.
- Ports can be
open
orclosed
. Ports are closed by default but are opened when a computer runs a service that uses that port. - Services can run on ports other than the port they are associated with by default. Likewise, services can run on ports associated with different services if configured. This can be used defensively to make network enumeration more difficult or offensively to obfuscate malicious connections.
Don’t worry about memorizing specific port numbers for now! We’ll provide relevant port numbers as needed for this lesson.
Instructions
Press Next to continue to the next exercise.
Sign up to start coding
By signing up for Codecademy, you agree to Codecademy's Terms of Service & Privacy Policy.