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