basic-100 394 B

12345678910
  1. # WARNING: This network can bring down a low-specced machine
  2. # By default, Authorities are not configured as exits
  3. Authority = Node(tag="a", authority=1, relay=1, torrc="authority.tmpl")
  4. ExitRelay = Node(tag="r", relay=1, exit=1, torrc="relay.tmpl")
  5. Client = Node(tag="c", client=1, torrc="client.tmpl")
  6. NODES = Authority.getN(5) + ExitRelay.getN(35) + Client.getN(60)
  7. ConfigureNodes(NODES)