Home >php教程 >PHP开发 >Detailed explanation of netstat command

Detailed explanation of netstat command

高洛峰
高洛峰Original
2016-12-15 09:51:001611browse

At this time, you can use the "netstat -nlutp" command to check whether the dhcp service is started

netstat

View the connected service port (ESTABLISHED)

netstat -a

View all services Port (LISTEN, ESTABLISHED)

sudo netstat -ap

View all service ports and display the corresponding service program name

If you want to check the TCP or UDP port usage, use

netstat -anp

If Some processes cannot be seen. If only "-" is displayed, you can try

sudo netstat -anp

netstat detailed explanation

-a or -all to display all connected sockets

-n Established valid links

-o Display timer

-p -programs Display the programs in use

-t Display the connection status of tcp transmission

-u Display the connection status of udp transmission

-l Display the socket of the monitored server

For more detailed explanations of the netstat command and related articles, please pay attention to the PHP Chinese website!


Statement:
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