Files
docs/operations/reference/bash/open-port-checker.md
2026-01-28 20:41:51 -07:00

15 lines
201 B
Markdown

---
tags:
- Bash
- Ports
- Scripting
- Linux
---
**Purpose**:
If you want to check if a certain TCP port is open on a server.
## Netcat Command
``` sh
netcat -z -n -v <IP ADDRESS> <PORT>
```