I’ve got a Linux server running Xubuntu at the moment (It was a media player first), and it also runs two Minecraft servers for the family. It has two network cards that are both connected to the internet. Is there a way to bind the VPN to one of the cards and use the other one for regular use?

I’ve got Surfshark as my VPN, and it doesn’t allow port forwarding under Linux. I’ve got some software that I want to keep behind the VPN, but the lack of port forwarding is stopping me from sharing the Minecraft servers, and when the VPN is active, it slows down the connection to some of my services like Plex.

I’ve tried to look it up, but I just don’t know enough to get myself anywhere. I’ve found results that talk about name spaces and routing tables, but they assume a level of knowledge that I just haven’t got yet.

I want to use the Arr suite and qBittorrent as the main programs behind the VPN, and Plex, Mylar (a comic manager), Syncthing, and Minecraft as the main programs without it. If I set up qBittorrent and the Arrs as Docker containers, can I use Gluetun to bind just them to the VPN? The VPN is using OpenVPN connections if that makes a difference.

Thanks in advance :)

41 points
*

Yes that’s called routing.

You don’t bind it to a NIC, you specify the destinations you want forwarded to each interface. Your VPN connection is just another interface.

If you’re looking for good docs, you may want to Google split tunnel vpn, and also bone up on your networking.

A few static routes should get you what you need

permalink
report
reply
9 points

And one doesn’t even need two NICs, right.

permalink
report
parent
reply
4 points

One NIC is fine

permalink
report
parent
reply
1 point

yeah, VLAN interfaces and other kinds of virtual interfaces can also be used. I think you can even have multiple “sub interfaces”, that will receive distinct IPs from the local DHCP server

permalink
report
parent
reply
3 points
*

Everything you said is true, but I don’t think it’s the complete answer the OP would like.

For instance if somebody goes to Google, on the raw network, and on the VPN. They would correctly expect that traffic to take two different routes, and come from different IP addresses Even if the destination target IP address is the same

permalink
report
parent
reply
3 points

goes to Google, on the raw network, and on the VPN.

You can’t “go” to a destination on two networks in a single request. It’s all packets on a wire, if it comes from two sources, it was two requests.

Unless you mean two different requests. As in while on the VPN everything is tunneled, and while not on the VPN it’s not, but this is the opposite of what the OP was asking for. He wants the VPN on for some use cases, and off for others. That’s split tunneling.

He’ll likely wind up with difficulties around trying to figure out which destinations he doesn’t want routed through the VPN, because there’s no way to do it by protocol, since routing happens on layer 3, not 4 or 7. He’ll likely need to know those address in advance.

permalink
report
parent
reply
2 points

I think the key to this idea is that as long as the VPN only apps are running in docker containers, container networking can be used to restrict their traffic to the vpn.

Apps like qBittorrent support proxy connection options for this scenario without containers.

https://github.com/qbittorrent/qBittorrent/wiki/Explanation-of-Options-in-qBittorrent#proxy-server

permalink
report
parent
reply
1 point

Apologies for the slow reply :)

These are the things that I don’t understand. When you say I need to specify the destinations, does that mean the destination of the traffic, like lemmy.dbzer0.com, or the destination network interface like tun0 or enp2s0?

I’m searching for split tunnel VPN, but the majority of results are either sales sites, or Stack Overflow with no confirmed answers.

I’ve been having a bit more luck with this page after searching for Jet’s answer below:

https://manpages.ubuntu.com/manpages/trusty/man8/ip-netns.8.html

but I’m still confused >.<

permalink
report
parent
reply
2 points

Routing takes place on layer 3 (ip) so destinations are ip networks and hosts.

Each packet you create has a destination IP. Your computer looks at your route table to see where it goes by matching the destination ip with each network. It will be sent to the most specific match first and your default gateway last.

If you’re default gateway is you’re vpn server via your vpn interface then you just need to add more specific route for destinations of interest through a different gateway (you’re router) via the physical interface

permalink
report
parent
reply
-14 points
*

Bro. Get a handle on the difference between “your” and “you’re.” Even if English is a second language, it’s worth knowing.

Now everything makes sense.

permalink
report
parent
reply
8 points
*
Deleted by creator
permalink
report
parent
reply
2 points

Canadian with a shitty mobile keyboard, that’s all.

permalink
report
parent
reply
7 points

Swipe keyboard. It picks random yours, and I’m exhausted from flying all day so I didn’t proof read.

permalink
report
parent
reply
-4 points

Even if that’s the case, the whole thing made no sense until you corrected it. Now it does.

permalink
report
parent
reply
-1 points

I gotta agree on this. It’s so weird to read a piece when these 2 are mixed up

permalink
report
parent
reply
3 points

I mean is there a material pronunciation difference between the two conjunctions? I don’t think so, but I can still somehow manage to work out what people mean when they say use “your” and “you’re” in the same spoken sentence.

permalink
report
parent
reply
15 points

Yes you can!

As you said, it’s got everything to do with routing and you don’t know how to do that yet.

Now’s a great time to learn!

If you’re on a time crunch, go ahead and use network namespaces under network manager to set up something like what you want as another user suggested.

If you have time to learn about the firewall and routing table rules, put on your wire rim sunglasses, pop a jungle cd in and crack open Linux Firewalls or some such book for nerds.

permalink
report
reply
4 points

If you’re on a time crunch, go ahead and use network namespaces under network manager to set up something like what you want as another user suggested.

Is there a way to do this without NetworkManager?

permalink
report
parent
reply
2 points

I have only used them with network manager, but according to the manual it seems possible to use them free of network manager, and maybe even systemd!

permalink
report
parent
reply
1 point

That’s amazing, I’m gonna have to dig a little deeper into that

permalink
report
parent
reply
2 points

If you’re on a time crunch, go ahead and use network namespaces under network manager to set up something like what you want as another user suggested.

I’d love to, but I have no idea how >.< :D

I have a vague idea of what they are and what they do, but everything I’ve found assumes a level of understanding that I don’t have yet. I’ve found this man page from searcing an example posted in another reply, and it’s helped, but I’m still confused :)

https://manpages.ubuntu.com/manpages/trusty/man8/ip-netns.8.html

permalink
report
parent
reply
3 points

Yeah, there’s a baseline of network stack understanding that you gotta have in order to use some of the tools, even Theo es that are supposed to make it easier.

What don’t you get? Maybe I can point you in the right direction.

permalink
report
parent
reply
2 points

Thank you :)

The reply from @jet@hackertalks.com below lead me to the man page for ip netns here:

https://manpages.ubuntu.com/manpages/trusty/man8/ip-netns.8.html

As far as I understand it, I could run programs like this:

ip netns exec vpn ~/qbittorrent/start.sh

ip netns exec clear ~/minecraft/start.sh

but I can’t figure out how to get the VPN to only run under the namespace. When I run it now, it reroutes all connections through it. I’ve got an OpenVPN connection that I’ve set one of my network connections to connect to automatically, but it doesn’t seem to make a difference. As soon as I connect the VPN, everything goes through it.

I’m still reading though, so hopefully I’ll figure it out :)

permalink
report
parent
reply
15 points

Yes, that’s what Gluetun is for. You create a Gluetun container and specify which containers should use it as the gateway in the compose file with:

network_mode: “service:gluetun”

Then you can open a shell in the container and run this to see if the container’s IP is different from your own:

curl ifconfig.io

Make sure to try stopping the gluetun container and confirm your other containers lose network access.

There are plenty of guides about this if you search for “gluetun arr stack”, like this random one I picked: https://www.smarthomebeginner.com/gluetun-docker-guide/

That has some steps outlining the basic gluetun configuration, how to put specific containers behind it, and test it.

permalink
report
reply
7 points

Gluetun is for containers. OP is asking about routing.

permalink
report
parent
reply
3 points

It also exposes a proxy (and a tun), most things you want behind a vpn can use a proxy.

permalink
report
parent
reply
2 points

I’m pretty sure OP is asking about forcing containers to use the VPN through gluetun.

If I set up qBittorrent and the Arrs as Docker containers, can I use Gluetun to bind just them to the VPN?”

permalink
report
parent
reply
1 point

I think they are just misunderstanding what Gluetun is for.

permalink
report
parent
reply
1 point

Apologies for the slow reply :)

To clarify, I’m happy with using either, if my network traffic is split. Ideally I want to switch a lot of my programs to containers at some point, then switch to a better server OS. In the meantime though, I just want to get everything working together.

Qbittorrent has to be behind the VPN, and that’s stopping my Minecraft servers from connecting to the outside world. If there’s a way to force Qbittorrent to be behind the VPN while leaving a non VPN connection open, I’m happy to use it. I only mentioned Gluetun because I’ve heard of it, and I know that it’s for keeping containers behind a VPN. I thought it might be the answer here :)

permalink
report
parent
reply
8 points
*

Network namespaces!

ip netns exec namespace command

One namespace for surfshark, and anything you run in that namespace uses those rules

permalink
report
reply
9 points

Network namespaces and policy based routing are black magic, IMO.

I’ve got a VPN set up on my router and separate VLANs set up for ordinary traffic and VPN traffic. A device doesn’t need to support VPNs at all, I just connect it to the VPN VLAN and all its traffic goes over the VPN whether it likes it or not. I’ve got separate wifi SSIDs for each VLAN.

My desktop is connected to both VLANs with a network namespace set up for the VPN VLAN, so sudo vpn rtorrent runs rtorrent in the namespace that’s connected to the VPN VLAN.

My setup is nice, but I wouldn’t recommend it to anyone who doesn’t want to learn quite a bit about networking.

permalink
report
parent
reply
3 points

Code dump for the curious?

permalink
report
parent
reply
2 points

I mean, it’s bits of configuration all over the place that I’ve built up over time. It isn’t a single script on one machine, and you’d need to change a lot of things if you weren’t running Slackware. I can’t really copy and paste it all.

permalink
report
parent
reply

Wait WHAT. Thank you.

permalink
report
parent
reply
2 points
*

Apologies for the slow reply :)

I’m reading up on this at the moment. If I’m understanding it correctly, I would run that command to launch a program, but could I use it for something that launches at startup?

My Minecraft and Qbittorrent instances start automatically, so could I change them to something like

ip netns exec vpn ~/qbittorrent/start.sh

ip netns exec clear ~/minecraft/start.sh

or change the application’s autostart Command box to ip netns exec vpn qbittorrent %U if the current entry is just qbittorrent %U

Do these make sense?

permalink
report
parent
reply
2 points

Would Open vSwitch be overkill?

permalink
report
reply
1 point

Not if it stops my head from exploding :D

permalink
report
parent
reply

Linux

!linux@lemmy.ml

Create post

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

  • Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.
  • No misinformation
  • No NSFW content
  • No hate speech, bigotry, etc

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

Community stats

  • 6.8K

    Monthly active users

  • 4.1K

    Posts

  • 55K

    Comments