# By default, Authorities are not configured as exits
Authority = Node(tag="a", authority=1, relay=1, torrc="authority.tmpl")
NonExitRelay = Node(tag="m", relay=1, exit=0, torrc="non-exit.tmpl")
ExitRelay = Node(tag="r", relay=1, exit=1, torrc="relay.tmpl")
Client = Node(tag="c", client=1, torrc="client_bwscanner.tmpl")
RelayMAB = Node(tag="relay1mbyteMAB", relay=1, torrc="relay-MAB.tmpl")
RelayMBR = Node(tag="relay1mbyteMBR", relay=1, torrc="relay-MBR.tmpl")

NODES = Authority.getN(3) + \
      NonExitRelay.getN(9) + \
      ExitRelay.getN(3) + Client.getN(1)

# RelayMBR.getN(1) + RelayMAB.getN(1) + \

ConfigureNodes(NODES)
