sebgl / htpc-download-box

Sonarr / Radarr / Jackett / NZBGet / Deluge / OpenVPN / Plex
1.92k stars 323 forks source link

Mullvad OpenVPN Configs not working #78

Open DEAD1SIDE opened 1 year ago

DEAD1SIDE commented 1 year ago

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?

wingi11 commented 1 year ago

Add this to your docker-compose vpn container configuration:

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

This worked for me