Port 137: NetBIOS-NS
Port 137 is the NetBIOS Name Service, the legacy Windows name resolution that predates DNS on the LAN. It is commonly blocked at the perimeter for security.
| Port number | 137 |
|---|---|
| Service | NetBIOS Name Service |
| Protocol | UDP |
| Category | Windows |
| Default encryption | No |
How do I check whether port 137 is open?
Port 137 is UDP, which changes the answer: there is no handshake to complete, so nothing outside the host can prove the port is open. Asking the host itself is the reliable route.
| Question | Command | What to know |
|---|---|---|
| Is it open on a remote host? | sudo nmap -sU -p 137 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 ':137 ' | Shows the UDP socket bound to port 137. 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 137 used for?
Port 137 is the NetBIOS Name Service, the legacy Windows name resolution that predates DNS on the LAN. It is commonly blocked at the perimeter for security.
Is port 137 TCP or UDP?
Port 137 (NetBIOS-NS) uses UDP.
Is port 137 secure?
Port 137 is not encrypted by default. Where possible, use an encrypted alternative or tunnel it over TLS or a VPN.
Should I open port 137 on my firewall?
Only if you specifically need NetBIOS-NS. Expose it to the smallest set of trusted sources, and never open database or Windows-service ports to the whole internet.