Commit | Line | Data |
---|---|---|
b9448b92 JA |
1 | # Example network job, just defines two clients that send/recv data |
2 | [global] | |
3 | ioengine=net | |
0fd666bf JA |
4 | #this would use UDP over localhost, port 8888 |
5 | #filename=localhost,8888,udp | |
6 | #this would use a local domain socket /tmp/fio.sock | |
7 | #filename=/tmp/fio.sock,,unix | |
8 | #TCP, port 8888, localhost | |
9 | filename=localhost,8888,tcp | |
36afc119 | 10 | bs=4k |
b9448b92 | 11 | size=10g |
c6c3b28a JA |
12 | #set the below option to enable end-to-end data integrity tests |
13 | #verify=md5 | |
b9448b92 JA |
14 | |
15 | [receiver] | |
16 | rw=read | |
b9448b92 JA |
17 | |
18 | [sender] | |
0fd666bf | 19 | startdelay=1 |
b9448b92 | 20 | rw=write |