aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/monitor/lsof.md
diff options
context:
space:
mode:
Diffstat (limited to 'src/monitor/lsof.md')
-rw-r--r--src/monitor/lsof.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/monitor/lsof.md b/src/monitor/lsof.md
index f621abe..7effd39 100644
--- a/src/monitor/lsof.md
+++ b/src/monitor/lsof.md
@@ -55,6 +55,12 @@ Show open connections to `localhost` for `$USER`:
lsof -a -u $USER -i @localhost
```
+## Open connection to specific port
+Show open connections to port `:1234` for `$USER`:
+```markdown
+lsof -a -u $USER -i :1234
+```
+
## IPv4 TCP connections in `ESTABLISHED` state
```markdown
lsof -i 4TCP -s TCP:ESTABLISHED