Browse Source

Simple configuration for a mixed-version network

Nick Mathewson 12 years ago
parent
commit
c8ce8fbd67
1 changed files with 14 additions and 0 deletions
  1. 14 0
      networks/mixed

+ 14 - 0
networks/mixed

@@ -0,0 +1,14 @@
+OLD_TOR="tor-stable"
+
+Authority = Node(tag="a", authority=1, relay=1, torrc="authority.tmpl")
+OldAuthority = Node(tag="aOLD", authority=1, relay=1, torrc="authority.tmpl",
+	     tor=OLD_TOR)
+Relay = Node(tag="r", relay=1, torrc="relay.tmpl")
+OldRelay = Node(tag="rOLD", relay=1, torrc="relay.tmpl", tor=OLD_TOR)
+Client = Node(tag="c", torrc="client.tmpl")
+OldClient = Node(tag="cOLD", torrc="client.tmpl", tor=OLD_TOR)
+
+NODES = (Authority.getN(2) + OldAuthority.getN(2) + OldRelay.getN(3) +
+      Relay.getN(3) + Client.getN(2) + OldClient.getN(2))
+
+ConfigureNodes(NODES)