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.