A port in networking acts like a gateway that directs data to the right program on a device. An IP address shows which device should receive the data, but it does not tell which application must handle it. That is where ports come in.
Think of it this way: The IP address is the building’s address, while the port number is the room number. Together, they make sure information reaches the correct destination.
Port numbers range from 0 to 65,535. Each number represents a specific service or function. This wide range allows many applications to run on a single device without interfering with each other.
The range is divided into three categories:
Commonly used by applications, less standardized
1. A firewall acts as a security guard for your network. It checks the data entering and leaving your device and decides whether to allow or block it. To make this decision, firewalls look at port numbers.
2. port represents a specific service. For example, web traffic uses port 80 or 443, while email services use ports like 25 or 587. If a firewall blocks a port, the related service cannot communicate through the network.
3. This control keeps your system safe. For instance, if a hacker tries to enter through an unused port, the firewall can close it immediately. At the same time, it allows trusted ports to stay open so normal tasks like browsing, emailing, and file sharing continue without interruption.
Read More: NetworkSherlock: Porwerfull Port Scanning With Shodan
VirtualBox is a free, open-source, cross-platform virtualization application maintained by Oracle. It lets you run multiple…
PostgreSQL (also called Postgres) is a free, open-source, object-relational database management system with a strong reputation…
VMware Workstation Player is a mature, stable virtualization platform that lets you run multiple isolated operating…
A properly configured firewall is one of the most important layers of security for any internet-facing server. UFW (Uncomplicated Firewall) is a user-friendly front-end for managing iptables rules that ships pre-installed on Ubuntu. Its defaults are sensible: block all incoming connections, allow all outgoing connections. No outside traffic reaches your server unless you explicitly open a port. This guide covers how to configure a UFW firewall on Ubuntu 18.04, from setting default policies and application profiles to writing allow and deny rules for specific ports, IPs, and subnets. <strong>Prerequisite:</strong> You need sudo access. Configure UFW Firewall on Ubuntu: Defaults, SSH, and Application Profiles If UFW is not installed, add it with: bashsudo…
UFW (Uncomplicated Firewall) is a user-friendly front-end for managing iptables rules on Ubuntu. It ships pre-installed…
Apache Cassandra is a free, open-source NoSQL database designed for high availability and linear scalability with…