| 123456789101112131415161718 | 
							- # 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")
 
- SingleOnionv2 = Node(tag="h", hs=1, torrc="single-onion.tmpl")
 
- SingleOnionv3 = Node(tag="h", hs=1, torrc="single-onion-v3.tmpl")
 
- # Since only 25% of relays get the guard flag,
 
- # TestingDirAuthVoteGuard * may need to be used in small networks
 
- # A hidden service needs 5 authorities/relays to ensure it can build HS
 
- # connections:
 
- # a minimum path length of 3, plus the client-nominated rendezvous point,
 
- # plus a seperate introduction point
 
- NODES = Authority.getN(2) + NonExitRelay.getN(3) + \
 
-         Client.getN(1) + SingleOnionv2.getN(1) + SingleOnionv3.getN(1)
 
- ConfigureNodes(NODES)
 
 
  |