Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
The Tor Project
Core
Chutney
Commits
e055b647
Commit
e055b647
authored
Jul 20, 2020
by
Nick Mathewson
🎨
Browse files
Try the same multi-phase fix on two more bridges networks
parent
0767932c
Changes
2
Hide whitespace changes
Inline
Side-by-side
networks/bridges+ipv6-min
View file @
e055b647
...
...
@@ -6,8 +6,10 @@ ExitRelay = Node(tag="r", relay=1, exit=1, torrc="relay.tmpl")
BridgeAuthority = Node(tag="ba", authority=1, bridgeauthority=1,
relay=1, torrc="bridgeauthority.tmpl")
BridgeIPv6 = Node(tag="br", bridge=1, relay=1, ipv6_addr="[::1]",
torrc="bridge-v6.tmpl")
BridgeClient = Node(tag="bc", client=1, bridgeclient=1, torrc="bridgeclient.tmpl")
torrc="bridge-v6.tmpl", launch_phase=2)
BridgeClient = Node(tag="bc", client=1, bridgeclient=1,
torrc="bridgeclient.tmpl",
launch_phase=3)
# Since only 25% of relays get the guard flag,
# TestingDirAuthVoteGuard * may need to be used in small networks
...
...
networks/bridges-min
View file @
e055b647
...
...
@@ -4,8 +4,13 @@ ExitRelay = Node(tag="r", relay=1, exit=1, torrc="relay.tmpl")
BridgeAuthority = Node(tag="ba", authority=1, bridgeauthority=1,
relay=1, torrc="bridgeauthority.tmpl")
Bridge = Node(tag="br", bridge=1, relay=1, torrc="bridge.tmpl")
BridgeClient = Node(tag="bc", client=1, bridgeclient=1, torrc="bridgeclient.tmpl")
Bridge = Node(tag="br", bridge=1, relay=1, torrc="bridge.tmpl",
launch_phase=2)
BridgeClient = Node(tag="bc", client=1, bridgeclient=1,
torrc="bridgeclient.tmpl",
launch_phase=3)
# Since only 25% of relays get the guard flag,
# TestingDirAuthVoteGuard * may need to be used in small networks
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment