diff options
author | Roger Dingledine <arma@torproject.org> | 2002-09-26 23:53:21 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2002-09-26 23:53:21 +0000 |
commit | 5811b22bee01a7943954d22cdd4ecc682b3a1301 (patch) | |
tree | 30021879c4c80f7e62135494e2901869df3ed042 /src/config | |
parent | 54af97ccdcf35247d753429e56222fd9beb6da7b (diff) | |
download | tor-5811b22bee01a7943954d22cdd4ecc682b3a1301.tar tor-5811b22bee01a7943954d22cdd4ecc682b3a1301.tar.gz |
new config files, including directory servers
svn:r115
Diffstat (limited to 'src/config')
-rw-r--r-- | src/config/dirservers | 29 | ||||
-rw-r--r-- | src/config/moria1-orrc | 1 | ||||
-rw-r--r-- | src/config/moria2-orrc | 1 | ||||
-rw-r--r-- | src/config/moria3-orrc | 1 | ||||
-rw-r--r-- | src/config/oprc | 2 |
5 files changed, 33 insertions, 1 deletions
diff --git a/src/config/dirservers b/src/config/dirservers new file mode 100644 index 000000000..7a5c55f6a --- /dev/null +++ b/src/config/dirservers @@ -0,0 +1,29 @@ +# List of directory servers. +# Line format : address ORPort OPPort APPort DirPort bandwidth(bytes/s) +# followed by the routers public key. +# router-port is where the router is accepting connections from other routers. + +# Router 1 +moria.mit.edu 9001 9011 9021 9031 100000 +-----BEGIN RSA PUBLIC KEY----- +MIGJAoGBAMBBuk1sYxEg5jLAJy86U3GGJ7EGMSV7yoA6mmcsEVU3pwTUrpbpCmwS +7BvovoY3z4zk63NZVBErgKQUDkn3pp8n83xZgEf4GI27gdWIIwaBjEimuJlEY+7K +nZ7kVMRoiXCbjL6VAtNa4Zy1Af/GOm0iCIDpholeujQ95xew7rQnAgMA//8= +-----END RSA PUBLIC KEY----- + +# Router 2 +moria.mit.edu 9002 9012 9022 9032 100000 +-----BEGIN RSA PUBLIC KEY----- +MIGJAoGBANX/HHRuudz274MFSQ4manX8DhtsIuogNUyco9/0dr+XsfioTGd3RgMj +aSWlD87arkZO4hHBPHe0q89Z3s1UtUsyQ/VmsxSv9g2OCnF/dU2Nz4h6+Al3iNJF +1UlWR4eiqBx3djxdIl/t+Nidw++YGc8QqRqkg0EhQCJ2fnOtHn9bAgMA//8= +-----END RSA PUBLIC KEY----- + +# Router 3 +moria.mit.edu 9003 9013 9023 9033 100000 +-----BEGIN RSA PUBLIC KEY----- +MIGJAoGBAJfkNWCaNkYIRwfHT06KBU6dz8W1xDpW5ezGJwAOoxCX3/ZNoUicb/1V +oB3OzW6VxWIiht3da/3K0ywiBOOCcf6BabKoMdiPpH7NIeu6XRmBYK2uqW13gBgh +xJbQBb58Nx8Fr05XkvLG6i+vTDY3MZOW3E2/DwSe/jFzuHSD5b3nAgMA//8= +-----END RSA PUBLIC KEY----- + diff --git a/src/config/moria1-orrc b/src/config/moria1-orrc index 6c548a61a..0750f1a54 100644 --- a/src/config/moria1-orrc +++ b/src/config/moria1-orrc @@ -11,6 +11,7 @@ CoinWeight 0.01 ORPort 9001 OPPort 9011 APPort 9021 +DirPort 9031 # Maximum number of connections. MaxConn 100 diff --git a/src/config/moria2-orrc b/src/config/moria2-orrc index 070e4a23c..91199e250 100644 --- a/src/config/moria2-orrc +++ b/src/config/moria2-orrc @@ -11,6 +11,7 @@ CoinWeight 0.0001 ORPort 9002 OPPort 9012 APPort 9022 +DirPort 9032 # Maximum number of connections. MaxConn 100 diff --git a/src/config/moria3-orrc b/src/config/moria3-orrc index f1b0cee63..9b94c5c48 100644 --- a/src/config/moria3-orrc +++ b/src/config/moria3-orrc @@ -11,6 +11,7 @@ CoinWeight 0.0001 ORPort 9003 OPPort 9013 APPort 9023 +DirPort 9033 # Maximum number of connections. MaxConn 100 diff --git a/src/config/oprc b/src/config/oprc index a078e2d67..4b2721be4 100644 --- a/src/config/oprc +++ b/src/config/oprc @@ -1,7 +1,7 @@ # Configuration file for or # List of routers -RouterFile ../config/routers.op +RouterFile ../config/dirservers # Private key #PrivateKeyFile moria1-private |