en.proft.me Open in urlscan Pro
91.235.128.229  Public Scan

URL: https://en.proft.me/2016/11/7/how-find-out-list-all-open-ports-ubuntuarch-linux/
Submission: On March 13 via manual from US — Scanned from DE

Form analysis 1 forms found in the DOM

GET /search/

<form action="/search/" method="GET" class="form-inline my-2 my-lg-0">
  <input type="text" value="" name="q" class="form-control form-control-sm mr-sm-2" placeholder="Search ...">
  <button type="submit" class="btn-sm btn-dark my-2 my-sm-0">Search</button>
</form>

Text Content

PROFT.ME EN RU
IOS/SWIFT, ANDROID/KOTLIN, PYTHON
 * 
 * 
 * 
 * 
 * 
 * 

 * Hire me
 * About
 * Read
 * Contacts

Search


HOW TO FIND OUT LIST OF ALL OPEN PORTS IN UBUNTU/ARCH LINUX LINUX 07.11.2016



In computer networking a port is a logical entity which acts as a endpoint of
communication to identify a given application or process on an Linux operating
system. It is a 16-bit number (0 to 65535) which differentiates one application
from another on end systems.

Below are the different categories of ports:

 * 0 - 1023 – the Well Known Ports, also referred to as System Ports.
 * 1024 - 49151 – the Registered Ports, also known as User Ports.
 * 49152 - 65535 – the Dynamic Ports, also referred to as the Private Ports.

You can view a list of different applications and port/protocol combination in
/etc/services file in Ubuntu/Arch Linux using cat command:

cat /etc/services 


The two most popular Internet transport protocols are Transmission Control
Protocol (TCP) and User Datagram Protocol (UDP).

To list all open ports or currently running ports including TCP and UDP in
Ubuntu/Arch Linux, we will use netstat, is a powerful tool for monitoring
network connections and statistics.

netstat -lntu


Where,

 * -l – prints only listening sockets
 * -n – shows port number
 * -t – enables listing of tcp ports
 * -u – enables listing of udp ports

You can also use ss command, a well known useful utility for examining sockets
in a Ubuntu/Arch Linux system. Run the command below to list all your open TCP
and UCP ports:

ss -lntu


QUOTE

Man supposes, God disposes.
-

CATEGORIES

 * Android
 * AngularJS
 * Databases
 * Development
 * Django
 * iOS
 * Java
 * JavaScript
 * LaTex
 * Linux
 * Meteor JS
 * Python
 * Science

ARCHIVE ↓

 * March 2022
 * February 2022
 * January 2022
 * July 2021
 * June 2021
 * May 2021
 * April 2021
 * August 2020
 * July 2020
 * May 2020
 * April 2020
 * March 2020
 * February 2020
 * January 2020
 * December 2019
 * November 2019
 * October 2019
 * September 2019
 * August 2019
 * July 2019
 * February 2019
 * January 2019
 * December 2018
 * November 2018
 * August 2018
 * July 2018
 * June 2018
 * May 2018
 * April 2018
 * March 2018
 * February 2018
 * January 2018
 * December 2017
 * November 2017
 * October 2017
 * September 2017
 * August 2017
 * July 2017
 * June 2017
 * May 2017
 * April 2017
 * March 2017
 * February 2017
 * January 2017
 * December 2016
 * November 2016
 * October 2016
 * September 2016
 * August 2016
 * July 2016
 * June 2016
 * May 2016
 * April 2016
 * March 2016
 * February 2016
 * January 2016
 * December 2015
 * November 2015
 * October 2015
 * September 2015
 * August 2015
 * July 2015
 * June 2015
 * February 2015
 * January 2015
 * December 2014
 * November 2014
 * October 2014
 * September 2014
 * August 2014
 * July 2014
 * June 2014
 * May 2014
 * April 2014
 * March 2014
 * February 2014
 * January 2014
 * December 2013
 * November 2013
 * October 2013

Ivan Morgun @ Ukraine, Vinnytsia © 2004 - 2023

Back to top