Socket statistics: Difference between revisions
From DWIKI
Tag: wikieditor |
m →HOWTO Tag: wikieditor |
||
| Line 12: | Line 12: | ||
==List all connections to a port== | ==List all connections to a port== | ||
ss -nat '( dport = :1234 )' | ss -nat '( dport = :1234 )' | ||
==Show processes listening on ports== | |||
ss -pl | |||
[[Category:Network]] | |||
Revision as of 09:31, 24 April 2026
Known as ss
Documentation
- 12 ss Command Examples to Monitor Network Connections
- command: Display Linux TCP / UDP Network/Socket Information
HOWTO
List all listening tcp ports
ss -natl
List all connections to a port
ss -nat '( dport = :1234 )'
Show processes listening on ports
ss -pl
