openpgp4fpr:358e81f6a54dc11eaeb0af3faa742fdc5afe2a72

  • 0 Posts
  • 12 Comments
Joined 3 years ago
cake
Cake day: June 10th, 2023

help-circle



  • Scott@lem.free.astoSelfhosted@lemmy.worldHow do you use VPN?
    link
    fedilink
    English
    arrow-up
    0
    ·
    edit-2
    1 month ago

    If you use an app like RethinkDNS, it will allow you to run multiple, simultaneous VPN connections and then choose how you want to route your traffic.

    I have the same situation as you. I run two VPN connections. One to home and one to a VPS. I route all traffic to 10/8 to the home VPN, certain apps to my VPS VPN and then the rest of the traffic via the local connection.

    RethinkDNS also does local DNS filtering and allows you to specify which DNS service to use. I run my own DoT service that backs off to the PiHole at home.









  • Containers are just processes with flags. Those flags isolate the process’s filesystem, memory [1], etc.

    The advantages of containers is that the software dependencies can be unique per container and not conflict with others. There are no significant disadvantages.

    Without containers, if software A has the same dependency as software B but need different versions of that dependency, you’ll have issues.

    [1] These all depend on how the containers are configured. These are not hard isolation but better than just running on the bare OS.