Skip to content

Instantly share code, notes, and snippets.

@Sryther
Last active September 25, 2020 21:06
Show Gist options
  • Save Sryther/0f29d1380093d186de3e to your computer and use it in GitHub Desktop.
Save Sryther/0f29d1380093d186de3e to your computer and use it in GitHub Desktop.
Test multicast on Docker

Multicast Docker

$ docker run -it --name node1 ubuntu:14.04 /bin/bash

$ docker run -it --name node2 ubuntu:14.04 /bin/bash

Then in each one, I run:

$ apt-get update && apt-get install iperf

Then in node 1, I run:

$ iperf -s -u -B 224.0.55.55 -i 1

And in node 2, I run:

$ iperf -c 224.0.55.55 -u -T 32 -t 3 -i 1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment