How to check programs and listening ports in Linux

青灯夜游
Release: 2023-02-09 12:53:23
Original
3712 people have browsed it

Checking method: 1. Use the lsof command to check, the syntax is "sudo lsof -i -P -n | grep LISTEN" or "doas lsof -i -P -n | grep LISTEN"; 2. Use the netstat command To check the listening port and program, the syntax is "netstat -tulpn | grep LISTEN"; 3. Use the nmap command to check, the syntax is "sudo nmap -sT -O localhost".

How to check programs and listening ports in Linux

#The operating environment of this tutorial: linux7.3 system, Dell G3 computer.

How to check the programs and listening ports in Linux

1. Open a terminal, such as a shell command window.

2. Run any of the following commands:

sudo lsof -i -P -n | grep LISTEN
sudo netstat -tulpn | grep LISTEN
sudo nmap -sTU -O IP地址
Copy after login

Method 1: lsof command

The syntax is as follows:

$ sudo lsof -i -P -n
$ sudo lsof -i -P -n | grep LISTEN
$ doas lsof -i -P -n | grep LISTEN  ### OpenBSD
Copy after login

The output is as follows :

How to check programs and listening ports in Linux

Look carefully at the last line of the above output:

sshd    85379     root    3u  IPv4 0xffff80000039e000      0t0  TCP 10.86.128.138:22 (LISTEN)
Copy after login
  • sshd is a program The name

  • 10.86.128.138 is the IP address of the sshd program binding (LISTEN)

  • 22 is the TCP port being used (LISTEN)

  • ##85379 is the process ID (PID) of the sshd task

Method 2: netstat command

You can use netstat as shown below to check the listening ports and programs.

Netstat syntax in Linux
$ netstat -tulpn | grep LISTEN
Copy after login
netstat syntax in FreeBSD/MacOS X
$ netstat -anp tcp | grep LISTEN
$ netstat -anp udp | grep LISTEN
Copy after login
netstat syntax in OpenBSD
$ netstat -na -f inet | grep LISTEN
$ netstat -nat | grep LISTEN
Copy after login
This command can also be used in windows :
netstat -bano | more
netstat -bano | grep LISTENING
netstat -bano | findstr /R /C:"[LISTING]"
Copy after login

Method 3: nmap command

The syntax is as follows:

$ sudo nmap -sT -O localhost
$ sudo nmap -sU -O 192.168.2.13 ### 列出打开的 UDP 端口
$ sudo nmap -sT -O 192.168.2.13 ### 列出打开的 TCP 端口
Copy after login

The sample output is as follows:

How to check programs and listening ports in Linux

You can merge TCP/UDP scanning with one command:

$ sudo nmap -sTU -O 192.168.2.13
Copy after login
Related recommendations: "

Linux Video Tutorial"

The above is the detailed content of How to check programs and listening ports in Linux. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!