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