16
16
# Relay selector
17
17
18
18
The relay selector's main purpose is to pick a single Mullvad relay from a list of relays taking
19
- into account certain user-configurable criteria. Relays can be filtered by their _ location_
19
+ into account certain user-configurable criteria. Relays can be filtered by their _ location_
20
20
(country, city, hostname), by the protocols and ports they support (transport protocol, tunnel
21
- protocol, port), and by other constraints. The constraints are user specified and stored in the
21
+ protocol, port), and by other constraints. The constraints are user specified and stored in the
22
22
settings. The default value for location constraints restricts relay selection to relays from Sweden.
23
23
The default protocol constraints default to _ Auto_ , which implies specific behavior.
24
24
25
25
Generally, the filtering process consists of going through each relay in our relay list and
26
26
removing relay and endpoint combinations that do not match the constraints outlined above. The
27
- filtering process produces a list of relays that only contain matching endpoints. Of all the relays
27
+ filtering process produces a list of relays that only contain matching endpoints. Of all the relays
28
28
that match the constraints, one is selected and a random matching endpoint is selected from that
29
29
relay.
30
30
@@ -47,42 +47,29 @@ Endpoints may be filtered by:
47
47
### Default constraints for tunnel endpoints
48
48
49
49
Whilst all user selected constraints are always honored, when the user hasn't selected any specific
50
- constraints, following default ones will take effect:
51
-
52
- - If no tunnel protocol is specified, the first three connection attempts will use WireGuard. All
53
- remaining attempts will use OpenVPN. If no specific constraints are set:
54
- - The first two attempts will connect to a Wireguard server, first on a random port, and then port
55
- 53 .
56
- - The third attempt will connect to a Wireguard server on port 80 with _ udp2tcp_ .
57
- - Remaining attempts will connect to OpenVPN servers, first over UDP on two random ports, and then
58
- over TCP on port 443. Remaining attempts alternate between TCP and UDP on random ports.
59
-
60
- - If the tunnel protocol is specified as WireGuard and obfuscation mode is set to _ Auto_ :
61
- - First two attempts will be used without _ udp2tcp_ , using a random port on first attempt, and
62
- port 53 on second attempt.
63
- - Next two attempts will use _ udp2tcp_ on ports 80 and 5001 respectively.
64
- - The above steps repeat ad infinitum.
65
-
66
- If obfuscation is turned on, connections will alternate between port 80 and port 5001 using
67
- _ udp2tcp_ all of the time.
68
-
69
- If obfuscation is turned _ off_ , WireGuard connections will first alternate between using
70
- a random port and port 53, e.g. first attempt using port 22151, second 53, third
71
- 26107, fourth attempt using port 53, and so on.
72
-
73
- If the user has specified a specific port for either _ udp2tcp_ or WireGuard, it will override the
74
- port selection, but it will not change the connection type described above (WireGuard or WireGuard
75
- over _ udp2tcp_ ).
76
-
77
- - If no OpenVPN tunnel constraints are specified, then the first two attempts at selecting a tunnel
78
- will try to select UDP endpoints on any port, and the third and fourth attempts will filter for
79
- TCP endpoints on port 443. Any subsequent filtering attempts will alternate between TCP and UDP on
80
- any port.
50
+ constraints the following default ones will take effect:
51
+
52
+ - The first three connection attempts will use Wireguard
53
+ - The first attempt will connect to a Wireguard relay on a random port
54
+ - The second attempt will connect to a Wireguard relay on port 443
55
+ - The third attempt will connect to a Wireguard relay over IPv6 (if IPv6 is configured on the host) on a random port
56
+ - The fourth-to-seventh attempt will alternate between Wireguard and OpenVPN
57
+ - The fourth attempt will connect to an OpenVPN relay over TCP on port 443
58
+ - The fifth attempt will connect to a Wireguard relay on a random port using [ UDP2TCP obfuscation] ( https://github.com/mullvad/udp-over-tcp )
59
+ - The sixth attempt will connect to a Wireguard relay over IPv6 on a random port using UDP2TCP obfuscation (if IPv6 is configured on the host)
60
+ - The seventh attempt will connect to an OpenVPN relay over a bridge on a random port
61
+
62
+ If no tunnel has been established after exhausting this list of attempts, the relay selector will
63
+ loop back to the first default constraint and continue its search from there.
64
+
65
+ Any default constraint that is incompatible with user specified constraints will simply not be
66
+ considered. Conversely, all default constraints which do not conflict with user specified constraints
67
+ will be used in the search for a working tunnel endpoint on repeated connection failures.
81
68
82
69
## Selecting tunnel endpoint between filtered relays
83
70
84
71
To select a single relay from the set of filtered relays, the relay selector uses a roulette wheel
85
- selection algorithm using the weights that are assigned to each relay. The higher the weight is
72
+ selection algorithm using the weights that are assigned to each relay. The higher the weight is
86
73
relatively to other relays, the higher the likelihood that a given relay will be picked. Once a
87
74
relay is picked, then a random endpoint that matches the constraints from the relay is picked.
88
75
0 commit comments