Mullvad VPN

9 readers
1 users here now

The unofficial community subreddit for Mullvad VPN.

founded 7 months ago
MODERATORS
26
 
 
The original post: /r/mullvadvpn by /u/DukeThorion on 2024-08-08 15:24:24.

Title. Cannot open website, getting 502 and 504 errors.

27
 
 
The original post: /r/mullvadvpn by /u/adumdumonreddit on 2024-08-08 11:17:23.

Just wrapped up 1 month in China, route was Hong Kong to a circuit of big cities including: Shenzhen, Wuhan, Chongqing. Mullvad worked great on default Wireguard settings, I found European servers worked best, North American and Asian ones were inconsistent and kept disconnecting. Use servers from ‘big’ European nations, I found Germany, Netherlands, Denmark, and UK worked especially well, while ‘smaller’ countries like Slovakia were less consistent/fast. I also found Oceania servers in Australia and especially NZ to work well.

Keep in mind your mileage may vary depending on your location in China, network security, even device info, so take info on servers lightly. Don’t be afraid to jump servers every so often if your connection starts to fritz out.

Mullvad is best in class for China no questions asked if you’re wondering, 5 euro for 5 devices and this many servers is unmatched. I was traveling with my sister and we had all of our devices connected all at once, it was as if the Great Firewall never existed lol

28
 
 
The original post: /r/mullvadvpn by /u/BitchPleaseImAT-Rex on 2024-08-07 19:02:23.

As the title says, trying to build a docker image with mullvad installed, however the installation continuously fail at the below last command, as the installation times at every time at "get 86 http://deb.debian.org/debian bullseye/main amd64 libgtk-3-bin amd64 3.24.24-4+deb11u3 [125 kB]."

I am pretty lost for what to do, as I have tried almost everything - any help is much appreciated

RUN apt-get update && apt-get install -y curl lsb-release
RUN curl -fsSLo /usr/share/keyrings/mullvad-keyring.asc https://repository.mullvad.net/deb/mullvad-keyring.asc
RUN echo "deb [signed-by=/usr/share/keyrings/mullvad-keyring.asc arch=$( dpkg --print-architecture )] https://repository.mullvad.net/deb/stable $(lsb_release -cs) main" | tee /etc/apt/sources.list.d/mullvad.list
RUN apt update
RUN echo "Y" | apt install mullvad-vpn

29
 
 
The original post: /r/mullvadvpn by /u/Hero_Gamer_007 on 2024-08-07 15:55:56.

Using the Mullvad VPN app on Windows 10 19045 IPv6 doesn't work, it says "IPv6 couldn't be configured, deactivate it in the app or activate it on your system". Does someone know a quick fix?

30
 
 
The original post: /r/mullvadvpn by /u/jouser83 on 2024-08-07 14:14:52.

Hello all,

I'm using Mullvad VPN on Samsung 23+; everything's updated, but I have not been able to connect over the last two days. To be clear, I get a connection established notification, but there's no internet for other apps. I'm currently in Jordan.

Does anyone have insight, tips, or tricks to sort this out?

On MacOS, the connection works fine. However, it does take quite a bit to connect.

31
 
 
The original post: /r/mullvadvpn by /u/blarrrgo on 2024-08-07 11:35:23.

I'm trying to go to usps.com in my Chrome browser which I've told Mullvad to exclude through split tunneling. The site will not load unless I disconnect from Mullvad.

If I try to go to the site on my phone which has no vpn at all, it loads there...on my wifi network too.

32
 
 
The original post: /r/mullvadvpn by /u/organicprototype on 2024-08-06 18:14:00.

How does port forwarding work exactly? Why would I need this if I want to torrent 24/7? Have anyone noticed a significant difference in terms of seeding speed (down/up) without it?

33
 
 
The original post: /r/mullvadvpn by /u/rebdone on 2024-08-06 18:02:06.
34
 
 
The original post: /r/mullvadvpn by /u/Impossible_Jump_754 on 2024-08-06 13:41:50.

Site wouldn't load, checked phone loaded, turned off mullvad, loaded.

May be related to the US detroit server, texas works.

35
 
 
The original post: /r/mullvadvpn by /u/No-Attention8902 on 2024-08-05 16:38:46.

Please Help configure nft to work with proxy and vpn.

squid proxy without vpn works.

my excludeTraffic.rules:

table inet excludeTraffic {

  chain allowIncoming {

type filter hook input priority -100; policy accept;

tcp dport 3128 ct mark set 0x00000f41 meta mark set 0x6d6f6c65;

  }

  chain allowOutgoing {

type route hook output priority -100; policy accept;

tcp sport 3128 ct mark set 0x00000f41 meta mark set 0x6d6f6c65;

  }

}

36
 
 
The original post: /r/mullvadvpn by /u/Huge-Bar5647 on 2024-08-05 12:14:55.

I removed and reinstalled the app but it is still same. I use Ubuntu.

37
 
 
The original post: /r/mullvadvpn by /u/The-BluWiz on 2024-08-05 05:07:42.

Quick Access

There are three things I do regularly with my VPN. Connect, Disconnect, and Multihop. I love that Mullvad VPN (aside from the main privacy reasons we choose them) includes a friendly CLI. For me, the GUI process for choosing multi-hop takes tooooo many steps. Here is a wrapper that should make it easier/faster to handle via CLI. Be sure to change the standard connect and multi-hop entry location to your main country (for latency reasons). Hope you find this useful!


!/bin/bash
==========

This script is a simple wrapper around the Mullvad VPN CLI to expedite regular commands
=======================================================================================

Function to connect to a Mullvad server in the United States
============================================================

connect\_vpn() {
 # Set the relay location to the United States
 mullvad relay set tunnel wireguard --use-multihop off
 mullvad relay set location us
 mullvad connect

if [ $? -eq 0 ]; then echo "Connected to a Mullvad VPN server in the United States." else echo "Failed to connect to a Mullvad VPN server in the United States." fi


}

Function to disconnect from the Mullvad VPN
===========================================

disconnect\_vpn() {
 mullvad disconnect
 if [ $? -eq 0 ]; then
 echo "Disconnected from Mullvad VPN."
 else
 echo "Failed to disconnect from Mullvad VPN."
 fi
}

Function to connect to a multi-hop VPN with an exit in Switzerland
==================================================================

multi\_vpn() {
 # Enable Mult-hop
 mullvad relay set tunnel wireguard --use-multihop on
 mullvad relay set tunnel wireguard entry location us
 # Connect to the suggested entry server
 mullvad relay set location se
 mullvad connect

if [ $? -eq 0 ]; then echo "Connected to the suggested entry server."

# Set the exit server to Switzerland
mullvad relay set location ch

# Reconnect to apply the new exit server
mullvad reconnect

if [ $? -eq 0 ]; then
    echo "Multi-hop VPN setup with exit server in Switzerland."
else
    echo "Failed to set the exit server to Switzerland."
fi

else echo "Failed to connect to the suggested entry server." fi


}

Function to report the status of the Mullvad VPN connection
===========================================================

vpn\_status() {
 status=$(mullvad status -v)

if [ $? -eq 0 ]; then echo "Mullvad VPN status:" echo "$status" else echo "Failed to retrieve Mullvad VPN status." fi


}

Main script logic to handle the command-line arguments
======================================================

case "$1" in
 connect|c)
 connect\_vpn
 ;;
 disconnect|d)
 disconnect\_vpn
 ;;
 multi|m)
 multi\_vpn
 ;;
 status|s)
 vpn\_status
 ;;
 \*)
 cat <<EOF
Usage: mvpn {connect|c|disconnect|d|multi|m|status|s}

Examples:
 mvpn connect
 mvpn d
 mvpn m
 mvpn status
EOF
 exit 1
esac
38
 
 
The original post: /r/mullvadvpn by /u/crunkyQ123 on 2024-08-05 00:45:20.

I've started having this issue where the VPN client will randomly disconnect, and then connect to a different location without being prompted to. It's very inconvenient as it totally disconnects me from anything I'm in the middle of due to the kill-switch feature. Is there something I could change to prevent this from happening?

39
 
 
The original post: /r/mullvadvpn by /u/DrHealthMan on 2024-08-04 22:21:25.
40
 
 
The original post: /r/mullvadvpn by /u/DataPollution on 2024-08-04 12:05:15.
41
 
 
The original post: /r/mullvadvpn by /u/ani4detal on 2024-08-04 10:55:18.

Hi. I'm in no way an expert so am having troubles with the browser. Namely:

  1. I tried to go on to use press the magnet key for a download and nothing happens. On Chrome it opened up qBittorrent automatically. How do I get it to do this please?
  2. I tried to go on to blogspot.com and it restricted me for age content. I'm 56! Never happened before. What do I do?

Any help greatly appreciated. Otherwise it's back to chrome... Mind you - I do subscribe to your VPN!

Cheers

A

42
 
 
The original post: /r/mullvadvpn by /u/TheBatman122 on 2024-08-03 16:12:32.

College Wifi has Fortinet. TurboVpn can bypass it but mullvad can't? Is there anyway to ensure that mullvad can?

43
 
 
The original post: /r/mullvadvpn by /u/OkDepth4737 on 2024-08-03 15:02:24.

Sent cash (not USD) from the USA, received credit 11 days later. Easy.

44
 
 
The original post: /r/mullvadvpn by /u/jenoworld on 2024-08-03 13:17:47.

Did anyone tried the Split Tunneling feature in 2024.4? it doesn't work for me tho

45
 
 
The original post: /r/mullvadvpn by /u/assasinezio4 on 2024-08-03 09:38:30.

I'm completely new to this browser. Why do open tabs close on the next launch? And why do I have to log back into the sites I'm logged into every time I close and open them?

46
 
 
The original post: /r/mullvadvpn by /u/Traditional-Data913 on 2024-08-03 05:33:50.

I know this is not related to mullvad vpn but I couldn't find a Mullvad Browser subreddit.

I'm migrating from Firefox to Mullvad and I encountered an issue where I cannot log in to Tiktok and I'm not sure why. If I try to login via QR code nothing happens, it just loads forever. If I try login in with username and password, the same thing happens. (I already unchecked the "Always use private mode".

  • I already tried disabling the DNS, Ublock, NoScript.
  • Tried control+i and allowing cookies.
  • Restarting the browser multilpe times.

I guess it's due to some settings under about:config. I hope someone here can help me figure this out.

47
 
 
The original post: /r/mullvadvpn by /u/silikeite on 2024-08-03 00:07:54.

Was logging onto Cloudflare Dashboard today to configure my Pages stuff and got this not-so-nice block page. Tried all of the SG Wireguard servers and all of them seem to not work. Things work though when I turn SOCKS5 off on Firefox. Not sure where I'm supposed to report this.

48
 
 
The original post: /r/mullvadvpn by /u/deadend666 on 2024-08-02 21:53:43.

Currently, Firefox is my default browser.

I have set up FF to save my bookmarks to a file called bookmarks.html every time I close FF.

I set up a directory called C:\Backup with a bookmarks.html file.

I have an entry in the user.js file called

user_pref("browser.bookmarks.autoExportHTML ", true);

I have set up an entry in the config part of FF called browser,bookmarks.file and put a string in it that points to my directory (e.g., C:\backup\bookmarks.html).

I have tried doing that in the Mullvad browser but I can't get it to work. I bookmark a lot of sites in the course of a day and it is important that I can save my bookmarks. I would like to make Mullvad my default browser. Mullvad seems to save bookmarks at very random intervals. I end up importing the FF bookmarks.html when I feel the need to update Mullvad but it's awkward.

Any clues? Thanks.

49
 
 
The original post: /r/mullvadvpn by /u/cobalttools on 2024-08-02 20:29:04.

after using mullvad for ~14 days i can say that it's a pretty good vpn but it should have more servers, other than that, it's really good

50
 
 
The original post: /r/mullvadvpn by /u/sweting_ on 2024-08-02 17:53:19.

In China. Can't get above 1 mbps on a Pixel 8 Pro. I've tried Mullvad, OpenVPN, WireGuard. TCP/UDP. Different servers - Toronto, Sweden, Singapore, Hong Kong. On the the verge of initiating a refund through PayPal.

A particularly bad Speedtest

For comparison, I am able to get ~30 Mbps with LetsVPN. Unfortunately, I can't change regions with LetsVPN.

view more: ‹ prev next ›