| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- general:
- stop_time: 1h
- # old versions of cURL use a busy loop, so to avoid spinning in this busy
- # loop indefinitely, we add a system call latency to advance the simulated
- # time when running non-blocking system calls
- #model_unblocked_syscall_latency: true
- network:
- graph:
- # use a built-in network graph containing
- # a single vertex with a bandwidth of 1 Gbit
- type: 1_gbit_switch
- hosts:
- server:
- network_node_id: 0
- ip_addr: 100.0.0.1
- processes:
- - path: mgen-server
- args: 100.0.0.1:6397
- start_time: 3s
- client1:
- network_node_id: 0
- processes:
- - path: mgen-client
- args: alice-group1.toml alice-group2.toml
- start_time: 5s
- client2:
- network_node_id: 0
- processes:
- - path: mgen-client
- args: bob-group1.toml bob-group2.toml carol-group1.toml
- start_time: 5s
- client3:
- network_node_id: 0
- processes:
- - path: mgen-client
- args: dave-group2.toml
- start_time: 5s
|