From: Shawn Bohrer Date: Mon, 22 Jul 2013 14:57:44 +0000 (-0500) Subject: net: Add UDP multicast example job file X-Git-Tag: fio-2.1.2~32 X-Git-Url: https://git.kernel.dk/?p=fio.git;a=commitdiff_plain;h=21356fee2727b71ef72b39414955c5e7e98f97c1;hp=d3a623deee774b82e4f92c6b9b4b0233b0f4454c 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 --- 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