Replies: 14 comments 2 replies
-
@TheNexter Can you try running it with |
Beta Was this translation helpful? Give feedback.
-
|
Beta Was this translation helpful? Give feedback.
-
I see some What do you get with |
Beta Was this translation helpful? Give feedback.
-
|
Beta Was this translation helpful? Give feedback.
-
Looks like I broke Wireguard in a recent update, I'm investigating. Try with EDIT: never mind my subscription expired LOL! Renewing-it! |
Beta Was this translation helpful? Give feedback.
-
Don't troll me 😂 |
Beta Was this translation helpful? Give feedback.
-
Try with docker pull qmcgaw/gluetun I tried running gluetun with emulation on If it still doesn't work with the latest image, try with: docker run -it --rm --cap-add=NET_ADMIN -e VPNSP=custom -e VPN_TYPE=wireguard \
-e WIREGUARD_ENDPOINT_IP=86.106.143.67 -e WIREGUARD_PORT=1194 \
-e WIREGUARD_PUBLIC_KEY="5FXy0/tMXj/TYKVj9PHJ42lCpbWP4qLAOpLZa6FnsRw=" \
-e WIREGUARD_ADDRESS="11.48.216.37/32" \
-e WIREGUARD_PRIVATE_KEY="OFf8G73HKurisHXAUmrXxU5C0VD50EMn3N9KAbut/1k=" \
qmcgaw/gluetun Replacing your values in there. If this still does not work, and you can change/revoke your Wireguard keys, feel free to shoot a Wireguard configuration file at [email protected] so I can find the problem faster. No obligation of course though. |
Beta Was this translation helpful? Give feedback.
-
Still dont work :( |
Beta Was this translation helpful? Give feedback.
-
You need to pull the latest image as I mentioned, your image is outdated. Also the |
Beta Was this translation helpful? Give feedback.
-
Same with latest :( |
Beta Was this translation helpful? Give feedback.
-
One last tiny suggestion, maybe it does a difference, try without double quotes around the private and public keys? I also asked Windscribe users on #134 if it still works for them with the latest image so we can nail down if it's a program bug or a configuration issue. |
Beta Was this translation helpful? Give feedback.
-
@blckwhtx confirmed it's still working for Windscribe with the latest image, so this is likely a configuration error. See #134 (comment) |
Beta Was this translation helpful? Give feedback.
-
fwiw I tested on a Raspberry Pi 3 Model B and the below compose works fine if I disable unbound. With unbound enabled I get the below log. gluetun:
cap_add:
- NET_ADMIN
container_name: gluetun
environment:
BLOCK_ADS: "off"
BLOCK_MALICIOUS: "on"
BLOCK_SURVEILLANCE: "off"
CITY: Los Angeles
DNS_UPDATE_PERIOD: '0'
DOT: "on" <--- switch to "off" to make this work
HTTPPROXY: "on"
HTTPPROXY_LOG: "off"
HTTPPROXY_PASSWORD: $HTTPPROXY_PASSWORD
HTTPPROXY_PORT: 1080
HTTPPROXY_STEALTH: "on"
HTTPPROXY_USERNAME: $HTTPPROXY_USERNAME
HTTP_CONTROL_SERVER_LOG: "on"
HTTP_CONTROL_SERVER_PORT: 8000
PGID: '1000'
PUBLICIP_FILE: /gluetun/ip
PUBLICIP_PERIOD: 12h
PUID: '1000'
TZ: America/Chicago
UPDATER_PERIOD: '0'
VERSION_INFORMATION: "off"
VPNSP: windscribe
VPN_TYPE: wireguard
WIREGUARD_ADDRESS: $WIREGUARD_ADDRESS
WIREGUARD_PRESHARED_KEY: $WIREGUARD_PRESHARED_KEY
WIREGUARD_PRIVATE_KEY: $WIREGUARD_PRIVATE_KEY
image: qmcgaw/gluetun:latest
ports:
- 1080:1080/tcp
restart: unless-stopped
tmpfs:
- /tmp
volumes:
- /home/root/gluetun:/gluetun:rw
|
Beta Was this translation helpful? Give feedback.
-
From comment posted on #134 by @TheNexter
Log:
Config:
Beta Was this translation helpful? Give feedback.
All reactions