haugene / vpn-configs-contrib

A collection of configs for various VPN providers
GNU General Public License v3.0
174 stars 739 forks source link

Update Mullvad port to OpenVPN default #219

Closed eiqnepm closed 1 year ago

eiqnepm commented 1 year ago

Proposed change

Despite my predictions, multiple users are facing issues connecting to Mullvad relays using port 53. I chose port 53 due to it being the only manually selectable port, however after analysis, Mullvad merely assigns a port at random for each config using the following.

Tt = [1300, 1301, 1302, 1194, 1195, 1196, 1197];
Tt[Math.floor(Math.random() * Tt.length)];

Considering all Mullvad relays support all of these ports, I have chosen port 1194 as it is the default OpenVPN port. Anyone that is unable to connect on the default OpenVPN port couldn't reasonably expect to use software that relies on OpenVPN.

Type of change

Additional information

Should fix https://github.com/haugene/vpn-configs-contrib/issues/218#issue-1718075450.

Checklist

eiqnepm commented 1 year ago

Should also fix https://github.com/haugene/vpn-configs-contrib/pull/216#issue-1717001253.