Hello selfhosters. I have a Linux VM spun up on my server that I access via Remmina. Would it be ok for me to expose Remmina for external access? It would be behind a reverse proxy as well as Authelia 2FA of course. Is that secure “enough”, just for a VM?

  • @nottheengineer@feddit.de
    link
    fedilink
    English
    410 months ago

    You can use tailscale for that, it took literally 1 minute to set up for me and is completely free for use cases like this.

    • chandz05OP
      link
      fedilink
      English
      110 months ago

      Should have mentioned, Tailscale is blocked on my work network

      • @Snowplow8861
        link
        English
        110 months ago

        Luckily on your own network you have control over these decisions! Especially with source and destination firewall rules.

  • @Boris_NotTooBadinoff@lemmy.world
    link
    fedilink
    English
    410 months ago

    You could try ZeroTier. I’ve not used it personally, but it’s free if you host your own instance. Your traffic gets routed through that VM, and everything behaves like it’s on the same LAN

    • @socphoenix@midwest.social
      link
      fedilink
      English
      410 months ago

      It’s free with their account using their services for up to 25 nodes. It uses direct connections where possible so your information goes straight from one device to the other without having to self host their program.

    • chandz05OP
      link
      fedilink
      English
      110 months ago

      Looks like that’s blocked on my work network too

  • @harrim4n@feddit.de
    link
    fedilink
    English
    310 months ago

    In the end it depends on your risk profile and adversary model. Usually it’s not a good idea though. Why not have an SSH tunnel to the network/machine and use port forwarding to forward the RDP connection? Or why not use SSH for remote access, period?

    • chandz05OP
      link
      fedilink
      English
      110 months ago

      My work’s network is pretty locked down, which is why I’m trying to think of other solutions that would work.

    • chandz05OP
      link
      fedilink
      English
      110 months ago

      Hey man, so I’ve been thinking about this and doing a lot of reading since I read your comment… Question: what makes an SSH tunnel any more secure than an SSL connection through a browser? I only have port 443 opened on my home network for reverse proxy and wouldn’t want to open anything more to the internet. Am I missing something fundamental in terms of security? I would definitely like to understand this more.

      • dragnet
        link
        fedilink
        1
        edit-2
        9 months ago

        The nice thing about an SSH tunnel is that it only exists when you create it, on the fly, per use, with your SSH credentials. And it is only accessible if you possess an authorized private key. An SSL connection through a browser doesn’t fill the same role. SSL provides privacy and security in the communication between server and client. It doesnt have authentication built in. If you are accessing through a web browser you are probably talking to a web server, but SSH allows you to tunnel any protocol (web, rdp, whatever) forwarding traffic, encrypted, across a chosen port.

        Edit to add a bit more: attack surface. SSH is a very robust and heavily used protocol with well tested implementations. Other solutions involving the web are probably involving software stacks with layers of configuration, more rapid iteration to add features and therefore a higher probability of vulnerabilities existing or being introduced in updates. Is this consideration relevant to your use? Probably not, =P but you asked about what might differentiate these two approaches from a security standpoint.

        • chandz05OP
          link
          fedilink
          English
          29 months ago

          Ah perfect! Exactly what I was looking for! Thank you so much for that explanation. Definitely trying to understand more about security and your explanation just made something click in my brain :)