add ss.md

waldyrious/alt-syntax
Felix Yan 2014-02-27 00:51:09 +08:00
parent 8fa2d0db24
commit 845668414f
1 changed files with 19 additions and 0 deletions

19
linux/ss.md Normal file
View File

@ -0,0 +1,19 @@
# ss
> Utility to investigate sockets
- Dump all TCP/UDP/RAW/UNIX sockets
`ss -a {{-t/-u/-w/-x}}`
- Filter TCP sockets by states, only/exclude
`ss {{state/exclude}} {{bucket/big/connected/synchronized/...}}`
- Filter sockets by address and/or port
`ss {{dst/src/dport/sport}} {{==/!=/>/</...}} {{prefix:port/unix:STRING/:port/...}}`
- Only list IPv4 or IPv6 sockets
`ss {{-4/-6}}`