| 1234567891011121314151617181920212223242526272829303132333435 |
- 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:
- peer1:
- network_node_id: 0
- ip_addr: 100.0.0.1
- processes:
- - path: mgen-peer
- args: "*.toml"
- start_time: 5s
- peer2:
- network_node_id: 0
- ip_addr: 100.0.0.2
- processes:
- - path: mgen-peer
- args: "*.toml"
- start_time: 5s
- peer3:
- network_node_id: 0
- ip_addr: 100.0.0.3
- processes:
- - path: mgen-peer
- args: "*.toml"
- start_time: 5s
|