From 1abac1882ff60f30a61247c198be47381adcfba3 Mon Sep 17 00:00:00 2001 From: Joshua Levy Date: Fri, 19 Jun 2015 22:59:51 -0700 Subject: [PATCH] List netstat and ss. Update #10 to list both. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f5e0a24..b38a5b9 100644 --- a/README.md +++ b/README.md @@ -85,7 +85,7 @@ Notes: - Use `nohup` or `disown` if you want a background process to keep running forever. -- Check what processes are listening via `ss -plat`. +- Check what processes are listening via `netstat -lntp` or `ss -plat` (for TCP; add `-u` for for UDP). - See also `lsof` for open sockets and files.