Rustdesk started as an open-source alternative to TeamViewer. Now, it offers more than just remote desktop access, making it handy for casual self-hosting.

With no need for (dyn)DNS, port forwarding, or a VPN, you can get:

  • Remote terminal
  • File transfer
  • Tunneling (similar to SSH port forwarding)
  • Remote desktop

I think it’s a solid choice if you have a simple one-server setup.

    • passenger@sopuli.xyz
      link
      fedilink
      English
      arrow-up
      6
      arrow-down
      1
      ·
      6 hours ago

      I would not touch it, seems very sketchy, and with this sort of program you need total trust

        • passenger@sopuli.xyz
          link
          fedilink
          English
          arrow-up
          17
          arrow-down
          1
          ·
          edit-2
          5 hours ago

          It seems they were trying to hide the app being Chinese, added a trusted certificate on your machine without prompting, complaints about not really being open source, etc. It doesn’t look very good to me at this point.

          Search around a bit and you will find these issues being raised by people, at the same time the answers fron the team seem very dismissive and amount to “please no politics here”.

          Check the wikipedia page edits as well, weird stuff. I don’t like weird stuff when choosing a remote control software.

          Rather paying Anydesk than using this. At this point at least.

          Edit: to add, rustdesk was using and sending data to a chinese server for some reason. At least they got an EU one instead, at least according to wikipedia, but that could just resend whatever data forward. This is all just what I see on the net though. But, enough for me to choose something else.

          • queerdo@lemmy.blahaj.zone
            link
            fedilink
            English
            arrow-up
            2
            ·
            54 minutes ago

            I did some digging and there’s no real basis for most of these claims. The company seems to be backed by a weird commercial OSS VC, with a founder with a hand in crypto bullshit, but that doesn’t mean that the application is insecure. Also, for what its worth, I couldn’t find any links to China outside of the rendezvous server thing.

            I checked the wiki page edits - not sure which one you’re referring to but I didn’t see anything malicous or suspicious.

            This article summed it up well https://hackaday.com/2024/03/01/this-week-in-security-forksquatting-rustdesk-and-mms/

            TL;DR it’s not an issue

          • rtxn@lemmy.world
            link
            fedilink
            English
            arrow-up
            4
            ·
            edit-2
            4 hours ago

            If this is as significant an issue as you imply, please link some credible sources.

            As far as I can tell, the “Chinese server” (or EU server) is just a public ID and Relay server, and necessary for the application to function unless a self-hosted server is used.

            • passenger@sopuli.xyz
              link
              fedilink
              English
              arrow-up
              5
              arrow-down
              1
              ·
              edit-2
              4 hours ago

              It doesn’t need to be, I just won’t go near it if they communicate like this and do stuff like change their users’ system settings without prompting. You can do a search for rustdesk controversy and have a look yourself. Just looking at how they hide the company’s chinese origins and their communication style when they are asked for clarification… That’s enough for me. Everyone should be paranoid when installing apps, and this is for remote control, no less.

              Edit 2: see also their claims of open source while people could not compile a working version without a pre compiled binary blob. Maybe they fixed that? Or not?

              Edit: I want to add, I want an open source software like that, I hope they would turn up good. Just going to watch from over here.

  • Breadhax0r@lemmy.world
    link
    fedilink
    English
    arrow-up
    5
    arrow-down
    1
    ·
    7 hours ago

    Ive been wanting to try out rust desk for a few weeks now but im not currently in a position where I can test it out.

    I saw it uses a public relay server and they have a subscription model to self host, and I’m not particularly interested in either of those options. Are you able to self host a server for free if youre just connecting to a single computer?

    • rtxn@lemmy.world
      link
      fedilink
      English
      arrow-up
      4
      ·
      edit-2
      6 hours ago

      You can host the open-source ID and Relay servers for simple remote access at no cost. The pro subscription is mainly about account and device management.

      compose.yaml
      services:
        hbbs:
          container_name: hbbs
          image: rustdesk/rustdesk-server:latest
          command: hbbs
          volumes:
            - ./data:/root
          network_mode: "host"
          depends_on:
            - hbbr
          restart: always
      
        hbbr:
          container_name: hbbr
          image: rustdesk/rustdesk-server:latest
          command: hbbr
          volumes:
            - ./data:/root
          network_mode: "host"
          restart: always
      
    • Anafabula@discuss.tchncs.de
      link
      fedilink
      English
      arrow-up
      5
      ·
      7 hours ago

      The open source server allows unlimited connections I think. The point of the paid server is user & device management, shared address book and some other enterprise features

  • Suzune@ani.social
    link
    fedilink
    English
    arrow-up
    3
    arrow-down
    1
    ·
    7 hours ago

    I use Rustdesk to access PCs and embedded devices from other PCs and embedded devices. Mostly doing remote support to avoid driving.

    It’s easy to set up with a container-based server.

    I don’t have to care about licenses and crap like that. It just works.

    • cron@feddit.org
      link
      fedilink
      English
      arrow-up
      2
      ·
      7 hours ago

      I think its a completely different use case. MobaXterm is a fancy ssh/rdp tool with some extra features, while rustdesk is an alternative to teamviewer or anydesk - tools for remote support.

      Disclaimer: I haven’t used rustdesk yet, I have no need for this use case.