Use `nc` (netcat) to check UDP port connectivity
Core Concepts UDP is a connectionless protocol. Unlike making a phone call (TCP), it’s more like sending a postcard (UDP). You send it, but by default, you don’t receive any acknowledgment. Therefore, the most reliable way to test a UDP port is to: run a listening service on the target port, then send a “postcard”... » read more