From 21356fee2727b71ef72b39414955c5e7e98f97c1 Mon Sep 17 00:00:00 2001 From: Shawn Bohrer Date: Mon, 22 Jul 2013 09:57:44 -0500 Subject: [PATCH 1/1] net: Add UDP multicast example job file This adds a pingpong UDP multicast example with two readers. Signed-off-by: Shawn Bohrer Signed-off-by: Jens Axboe --- examples/netio_multicast.fio | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 examples/netio_multicast.fio diff --git a/examples/netio_multicast.fio b/examples/netio_multicast.fio new file mode 100644 index 00000000..f7d9d265 --- /dev/null +++ b/examples/netio_multicast.fio @@ -0,0 +1,23 @@ +# netio UDP multicast example. Writers and readers can be run on separate hosts. +[global] +ioengine=net +protocol=udp +bs=64 +size=100m +# Set interface IP to send/receive traffic through specific network interface +#interface=10.8.16.22 +port=10000 +hostname=239.0.0.0 +ttl=1 + +[pingpong_reader] +pingpong=1 +rw=read + +[normal_reader] +rw=read + +[pingpong_writer] +startdelay=1 +pingpong=1 +rw=write -- 2.25.1