shadow.yaml 733 B

123456789101112131415161718192021222324252627282930
  1. general:
  2. stop_time: 1h
  3. # old versions of cURL use a busy loop, so to avoid spinning in this busy
  4. # loop indefinitely, we add a system call latency to advance the simulated
  5. # time when running non-blocking system calls
  6. #model_unblocked_syscall_latency: true
  7. network:
  8. graph:
  9. # use a built-in network graph containing
  10. # a single vertex with a bandwidth of 1 Gbit
  11. type: 1_gbit_switch
  12. hosts:
  13. server:
  14. network_node_id: 0
  15. ip_addr: 100.0.0.1
  16. processes:
  17. - path: mgen-server
  18. args: 100.0.0.1:6397
  19. start_time: 3s
  20. client1: &client_host
  21. network_node_id: 0
  22. processes:
  23. - path: mgen-client
  24. args: "*.toml"
  25. start_time: 5s
  26. client2: *client_host
  27. client3: *client_host