Chain gluetun docker images #1238
Replies: 4 comments 1 reply
-
Running one Gluetun VPN inside another Gluetun VPN wouldn't work to my knowledge. Every container based VPN client I've looked at uses NET_ADMIN, which means it has (and needs) special privileges to control portions of the host OS. If you're actually wanting to run two separate instances of Gluetun, each with their own individual VPN connection, that should be possible. I haven't tried it myself using Gluetun, but I've had multiple OpenVPN servers and clients running concurrently on the same host, each using its own TUN and/or TAP interface. |
Beta Was this translation helpful? Give feedback.
-
I am also interested in chaining multiple VPNs together. Separate instances of Gluetun work fine, but attempting to route Gluetun 1 through Gluetun 2 results in this error:
I assume the problem is more than skin deep. If this problem isn't solvable via docker, it would be great to see it implemented where a single instance of Gluetun will multi-hop internally, with separate configs for VPN 1, VPN 2, etc. |
Beta Was this translation helpful? Give feedback.
-
Any news here? |
Beta Was this translation helpful? Give feedback.
-
I am trying to chain together two separate VPNs using Docker Compose. What I've tried so far:
Then, use a startup script in
which did do something, but not quite enough - the VPN could not initialise itself correctly. Turns out that all traffic from
which allowed me to connect to the VPN provider, and everything worked! 🎉 However, a simple traceroute quickly revealed that traffic wasn't going through both VPNs, and that I may have misunderstood something (networking is definitely not my forte), but I'm out of ideas for this one. Either way, my attempts do point in the direction of a deeper issue with how |
Beta Was this translation helpful? Give feedback.
-
How do you setup two gluetun docker images.
(So what I mean by this is I want to use two VPN connections at the same time, I tried to do it myself but I could not configure the pprof port, which gave me a port binding error on the second container)
How would I accomplish this?
Beta Was this translation helpful? Give feedback.
All reactions