summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md3
-rw-r--r--mullvad-cli/src/cmds/bridge.rs4
2 files changed, 5 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index c33f98c1ef..0fca108527 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -42,6 +42,9 @@ Line wrap the file at 100 chars. Th
- Stop preferring OpenVPN when bridge mode is enabled.
- CLI command for setting a specific server by hostname is no longer case sensitive.
Example: `mullvad relay set hostname SE9-WIREGUARD` should now work.
+- Update the default Shadowsocks password to `mullvad` and cipher to `aes-256-gcm` in the CLI
+ when using it to configure a *custom Shadowsocks bridge*. The Mullvad bridges recently changed
+ these parameters on port 443 (which is the default port).
#### Windows
- Update wireguard-nt to 0.10.1.
diff --git a/mullvad-cli/src/cmds/bridge.rs b/mullvad-cli/src/cmds/bridge.rs
index f2442ea857..3267ec3541 100644
--- a/mullvad-cli/src/cmds/bridge.rs
+++ b/mullvad-cli/src/cmds/bridge.rs
@@ -155,13 +155,13 @@ fn create_set_custom_settings_subcommand() -> clap::App<'static, 'static> {
.arg(
clap::Arg::with_name("password")
.help("Specifies the password on the remote Shadowsocks server")
- .default_value("23#dfsbbb")
+ .default_value("mullvad")
.index(3),
)
.arg(
clap::Arg::with_name("cipher")
.help("Specifies the cipher to use")
- .default_value("chacha20")
+ .default_value("aes-256-gcm")
.possible_values(SHADOWSOCKS_CIPHERS)
.index(4),
),