Send UDP may be used to test UDP ports, in order to test if your datagram/UDP application works well, you'll need to send packets to it and test if it receives and read the packets well, the best solution for you is to use sendudp, if you ever used telnet to test your stream ports/TCP ports then you'll be familiar with sendudp, sendudp is an OpenSource tool you can edit it, customize it or just use it! sendudp is very simple to use even simpler that telnet, to use it you have to be familiar with the destination IP address, the IP could be v4 or v6, the PORT and you must define a message to test, here is an example:

sendudp -d 196.44.87.65:3877 -m "Test message."

Or

sendudp -d example.com:3877 -m "Test message."

while {-d} stands for destination and port, and {-m} stands for the message to send, enjoy using sendudp and I hope it saved you time from writing your own UDP tester.

License: CC3.0.

Features

  • Datagram socket connection
  • User-defined IP address, IPv4/IPv6
  • User-defined Port
  • User-defined Message to test
  • Use a domain name e.g. example.com instead of an IP

Project Samples

Project Activity

See All Activity >

Follow Linux UDP Port Test - sendudp

Linux UDP Port Test - sendudp Web Site

Other Useful Business Software
MongoDB Atlas runs apps anywhere Icon
MongoDB Atlas runs apps anywhere

Deploy in 115+ regions with the modern database for every enterprise.

MongoDB Atlas gives you the freedom to build and run modern applications anywhere—across AWS, Azure, and Google Cloud. With global availability in over 115 regions, Atlas lets you deploy close to your users, meet compliance needs, and scale with confidence across any geography.
Start Free
Rate This Project
Login To Rate This Project

User Ratings

★★★★★
★★★★
★★★
★★
1
0
0
0
1
ease 1 of 5 2 of 5 3 of 5 4 of 5 5 of 5 0 / 5
features 1 of 5 2 of 5 3 of 5 4 of 5 5 of 5 0 / 5
design 1 of 5 2 of 5 3 of 5 4 of 5 5 of 5 0 / 5
support 1 of 5 2 of 5 3 of 5 4 of 5 5 of 5 0 / 5

User Reviews

  • I am sorry that the author has spent a plenty of time for reinventing the wheel. There is more powerful console tool which does the same and much more -- NetCat. It could be used for the same purpose this way: $ echo -n <message> | nc -uo <host> <port> Moreover, it can listen too: $ while true; do nc -lou <listen_port> < /dev/null; echo; done
  • I would recommend it, telnet is for TCP testing and sendudp is for UDP testing, no need to reinvent the wheel just use sendudp.
Read more reviews >

Additional Project Details

Registered

2012-06-14