Quantcast
Channel: How to generate UDP packet - Super User
Viewing all articles
Browse latest Browse all 6

Answer by Satanicpuppy for How to generate UDP packet

$
0
0

One word: Netcat

Netcat is the go-to tool for this sort of thing.

You can thrash whatever port you choose with UDP packets with something like:

nc -u host.example.com 53 < /dev/random

(53 is your port number)

Or you can send an actual file, or tell it to bind that port and listen as a service, or whatever you like.


Viewing all articles
Browse latest Browse all 6

Trending Articles