Skip to content

Instantly share code, notes, and snippets.

@compor
Created February 25, 2013 14:49
Show Gist options
  • Save compor/5030287 to your computer and use it in GitHub Desktop.
Save compor/5030287 to your computer and use it in GitHub Desktop.
multicast traffic source/sink with iperf
# multicast group 239.1.1.1 on port 4321
# multicast listener/sink with read buffer of 512 bytes
iperf -s -u -B 239.1.1.1 -i 1 -l 512 -p 4321
# multicast transmitter/source with write buffer of 512 bytes
# fill up bandwidth of 80Kb/s
iperf -c 239.1.1.1 -u -T 32 -l 512 -i 1 -p 4321 -b 80000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment