From c8ce8fbd67b08932eaf4f9b1b957970c57e27f72 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Wed, 5 Oct 2011 16:59:07 -0400 Subject: Simple configuration for a mixed-version network --- networks/mixed | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 networks/mixed diff --git a/networks/mixed b/networks/mixed new file mode 100644 index 0000000..9dd40c2 --- /dev/null +++ b/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) -- cgit v1.2.3