CaffGeek
CaffGeek

Reputation: 22064

Create fake UDP traffic

I have to write a UDP client. Unfortunately, the source system is not always available

Is there a simple tool out there that I can use to create a fake UDP server/traffic on my machine?

Upvotes: 1

Views: 1936

Answers (2)

kbyrd
kbyrd

Reputation: 3351

You could use netcat with the -u option to send data over UDP.

Upvotes: 3

Jack
Jack

Reputation: 1438

Why don't you create UDP socket and fill it with dummy data?

PS: What do you mean by source system? Do you mean sender? In that case, you can generate localhost UDP socket.

Upvotes: 0

Related Questions