Port 7: Echo
Port 7 is the Echo Protocol, which simply sends back whatever data it receives. It was designed for testing round-trip network connectivity and is rarely enabled today because it can be abused for denial-of-service amplification.
| Port number | 7 |
|---|---|
| Service | Echo Protocol |
| Protocol | TCP/UDP |
| Category | Legacy protocols |
| Default encryption | No |
How do I check whether port 7 is open?
Port 7 carries TCP, so a connection either completes its handshake or it does not, which makes the check definitive.
| Question | Command | What to know |
|---|---|---|
| Is it open on a remote host? | nc -vz example.com 7 | A TCP handshake either completes or it does not, so netcat gives a definitive answer in one line. |
| Same check on Windows | Test-NetConnection example.com -Port 7 | Built into PowerShell. TcpTestSucceeded in the output is the answer; telnet is not installed by default on modern Windows. |
| What is listening locally? | ss -tlnp | grep ':7 ' | Lists the process bound to port 7 on Linux. On macOS use lsof -nP -iTCP:7 -sTCP:LISTEN, on Windows netstat -ano | findstr :7 |
| Is it open on a remote host? | sudo nmap -sU -p 7 example.com | UDP has no handshake, so there is nothing to complete. nmap infers the state from whether an ICMP port-unreachable comes back, needs root, and is slow and easy to misread. A silent port may be open, filtered, or simply not replying to a probe it does not recognise. |
| What is listening locally? | ss -ulnp | grep ':7 ' | Shows the UDP socket bound to port 7. This is the reliable way to answer the question, because you are asking the host itself rather than guessing from outside. |
Replace example.com with the host you are testing. A blocked port and a port with nothing listening on it look identical from the outside, so if a service should be running, check locally before blaming the firewall.
Frequently asked questions
What is port 7 used for?
Port 7 is the Echo Protocol, which simply sends back whatever data it receives. It was designed for testing round-trip network connectivity and is rarely enabled today because it can be abused for denial-of-service amplification.
Is port 7 TCP or UDP?
Port 7 (Echo) uses TCP/UDP.
Is port 7 secure?
Port 7 is not encrypted by default. Where possible, use an encrypted alternative or tunnel it over TLS or a VPN.
Should I open port 7 on my firewall?
Only if you specifically need Echo. Expose it to the smallest set of trusted sources, and never open database or Windows-service ports to the whole internet.