hs-100-clients 575 B

12345678910111213
  1. # Each client sends to the hidden service simultaneously
  2. # This requires the appropriate chutney arguments to make each client send data
  3. # By default, Authorities are not configured as exits
  4. Authority = Node(tag="a", authority=1, relay=1, torrc="authority.tmpl")
  5. NonExitRelay = Node(tag="r", relay=1, torrc="relay-non-exit.tmpl")
  6. Client = Node(tag="c", torrc="client.tmpl")
  7. HS = Node(tag="h", hs=1, torrc="hs.tmpl")
  8. # Well, 100 instances, with lots of clients
  9. NODES = Authority.getN(3) + NonExitRelay.getN(10) + \
  10. Client.getN(86) + HS.getN(1)
  11. ConfigureNodes(NODES)