htpc-download-box icon indicating copy to clipboard operation
htpc-download-box copied to clipboard

Mullvad OpenVPN Configs not working

Open DEAD1SIDE opened this issue 2 years ago • 1 comments

I tried to run the vpn with the Mullvad configs but it always tells me :

/sbin/ip -6 addr add -ipv6-/64 dev tun0
RTNETLINK answers: Permission denied
Linux ip -6 addr add failed: external program exited with error status: 2
Exiting due to fatal error

Anyone got an Idea what to do?

DEAD1SIDE avatar Sep 16 '22 12:09 DEAD1SIDE

Add this to your docker-compose vpn container configuration:

services:
  vpn:
    ...
    sysctls:
      - "net.ipv6.conf.all.disable_ipv6=0"
    ..

This worked for me

wingi11 avatar Feb 04 '23 17:02 wingi11