1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 00:42:08 +02:00

ss: add listening socket example (#2853)

This commit is contained in:
Bruno Bigras 2019-04-19 16:00:53 -04:00 committed by Starbeamrainbowlabs
parent 25791e0037
commit 1cef50e33f

View file

@ -14,6 +14,10 @@
`ss -t src :{{443}}`
- Show all TCP sockets listening on the local 8080 port:
`ss -lt src :{{8080}}`
- Show all TCP sockets along with processes connected to a remote ssh port:
`ss -pt dst :{{ssh}}`