An open network port is the simplest access point to a network. Many times, we need to run unwanted services on ports that are visible from outside the Internet. Since the entire Internet is massively scanned every day to find vulnerable services on open ports, our network will be under constant threat of attack if these services are vulnerable. Learn how to scan and view open ports on your Linux system so you can protect your network from threats. What is a network port?A network port is a logical access point to a system that can be used as a channel to host multiple services. A port is represented by a 16-bit integer, so the maximum port number is 65535. We can think of ports as doors and windows in a house, all of which are all the different entry points into a computer. There are three types of ports: system ports (1-1023), registered ports (1024-49151), and temporary or dynamic ports (49152-65535). When you start an application that needs to connect to the internet, it uses dynamic ports to transmit and receive data over the network. However, when you start a web server or SSH server, it usually binds to a system port or a registered port. For HTTP service web servers, the default system port is 80, and for SSH, the default system port is 22. Port ranges and other regulations are set by the Internet Assigned Numbers Authority (IANA). We can browse the RFCs for ports to get a complete list of all ports and their functions. It's important to know the most common vulnerable ports so you can ensure they are closed or protected. 1. Use netstat to check open portsnetstat is a popular utility that we can use to view network statistics of Linux systems. It is a part of the net-tools package. The net-tools package is now depreciated due to lack of proper maintenance by the developers. This is also the reason why you may encounter “ifconfig: command not found” error while running the popular ifconfig command on Linux. Therefore, on modern systems, you must first install the net-tools package before you can run the netstat command. Here's how to check for open ports using netstat: Command Explanation:
2. Use ss to check open portsss is the modern version of the netstat tool. We will find it pre-installed in all modern Linux distributions. The syntax for checking open ports using ss is the same as netstat. Here's how to check for open ports using ss: Command Explanation:
3. Check open ports using NmapNmap is one of the most popular tools in the world of network security and networking. It is a major name when it comes to network security penetration testing. Its main use case is port scanning, so you can get information not only about the ports that are open in your system, but also whether they are vulnerable and exploitable. Also, if you wish to check for open ports in a remote system that has an IDS/IPS and firewall set up, don't worry, as Nmap can also bypass firewalls and IDS/IPS using the correct switches. Check out this comprehensive guide to Nmap for beginners to explore the various features of Nmap and how to use them. Although possible, it is not recommended to try to bypass the firewall as it is not completely reliable, so it is better to connect to the remote server via SSH and run Nmap locally. Following are the commands to check for open ports using Nmap: Command Explanation:
4. Use lsof to check open portsThe lsof command in Linux is used to list open files. However, if we add some switches to it, we will be able to see open internet connections and ports on our local machine. Here is how to check for open ports using lsof: Command Explanation:
5. Check open ports using netcatnetcat is a command-line utility that allows you to read and write from a TCP/UDP connection. Note that this is just one feature of netcat. You can view its man page using the man netcat command to explore all its features and how to use them. Here's how to scan for open ports using netcat: Command Explanation:
The better you understand your network, the better you can protect itKnowing which ports are open and which services are running on the system is an important step in defending against potential external attacks. This allows us to search for and shut down unnecessary services, find outdated services, and also detect if there are any malicious files running on the system, such as bind or reverse shell backdoors. Original title: 5 Easy Ways to Check for Open Ports on Linux Original author: DEBARSHI DAS |
<<: China Unicom and its partners release the Trusted Network White Paper
>>: The Heart of Smart Devices: Understanding Semiconductor Sensors
Preface When answering questions about computer n...
Since the birth of CDN, there have been three gen...
[51CTO.com original article] World-renowned physi...
At the online forum "How to 'accelerate&...
From online to offline, the annual 11.11 (Double ...
The final and award ceremony of the 2024 3rd Ruij...
Tencent Cloud's Double Eleven event is still ...
There is no doubt that traditional WAF is losing ...
We all want devices to communicate with each othe...
Ftpit is a foreign hosting company founded in 201...
5G is coming soon, and now is the eve of it. Let&...
From the early days of dial-up to the impending a...
[[418156]] AT&T said Monday that first respon...
Hello everyone, I am Xiaolin. Previously, I answe...
Software-defined networking (SDN) is seen as havi...