From 0362da9ad76a682455e9948effc858ca7e238029 Mon Sep 17 00:00:00 2001 From: dinger1986 Date: Sun, 16 Jul 2023 18:21:37 +0100 Subject: [PATCH 1/8] Update _index.en.md --- content/self-host/pro/FAQ/_index.en.md | 49 ++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) diff --git a/content/self-host/pro/FAQ/_index.en.md b/content/self-host/pro/FAQ/_index.en.md index 4c9f4e2..2b5ac56 100644 --- a/content/self-host/pro/FAQ/_index.en.md +++ b/content/self-host/pro/FAQ/_index.en.md @@ -82,3 +82,52 @@ To check the status `sudo systemctl status rustdesk-hbbs|rustdesk-hbbr` eg `sudo ## How do I view the logs? On the left hand side click on `Logs`. + +## How do I setup Emails? +Gmail in this example + +1. Go to `Settings` on the left hand menu. +2. Click on `SMTP` on the sub-menu. +3. Enter the SMTP address `smtp.gmail.com`. +4. Enter the Port 587 in ¬SMTP Port`. +5. Enter the gmail account ie `myrustdeskserver@gmail.com` in `Mail Account` +6. Enter your password (you might need an app password). +7. Enter your gmail account ie `myrustdeskserver@gmail.com` in `From `. +8. Click `Check` to save. + +## Email's arent working from my VPS +Alot of VPS providers block ports 465 and 25. + +A simple way to check is is using telnet to test in the linux terminal type `telnet your.mailserver.com 25` on windows use `Test-NetConnection -ComputerName your.mailserver.com -Port 25` + +Your mail server might not us port 25 please make sure you use the correct ports. + +## How can I get RustDesk IDs from agents on my network or using an RMM type systen? +Run the following command elevated to SYSTEM `"c:\Program Files\RustDesk\RustDesk.exe" --get-id` + +## How can I set a persistent password on an agent on my network or using an RMM type system? +On Windows you can use the following powershell script: +``` +$ErrorActionPreference= 'silentlycontinue' + +net stop rustdesk > null +$ProcessActive = Get-Process rustdesk -ErrorAction SilentlyContinue +if($ProcessActive -ne $null) +{ +stop-process -ProcessName rustdesk -Force +} + +$rustdesk_pw = (-join ((65..90) + (97..122) | Get-Random -Count 12 | % {[char]$_})) +Start-Process "$env:ProgramFiles\RustDesk\RustDesk.exe" "--password $rustdesk_pw" -wait +Write-Output $rustdesk_pw + +net start rustdesk > null +``` + +## I have installed RustDesk Server Pro manually but the API web console isn't behind SSL, how can I secure this? +Use a proxy like nginx, the simple install script has one, its really simple [[https://github.com/dinger1986/rustdesk-server-pro](https://github.com/rustdesk/rustdesk-server-pro)/blob/493ad90daf8815c3052ff4d0d4aa9cc07e411efa/install.sh#L252](this is how we did it). + +Similar configs should work with Traefikv2, HAProxy, Apache Proxy and Cloudflare Tunnel. + +## How do I file a bug report? +Please file via [https://github.com/rustdesk/rustdesk-server-pro/issues](GitHub) From 2075bb56dfb75a73b7b3a43fd2f3082ad75aa30e Mon Sep 17 00:00:00 2001 From: dinger1986 Date: Sun, 16 Jul 2023 18:23:34 +0100 Subject: [PATCH 2/8] Update _index.en.md --- content/self-host/pro/FAQ/_index.en.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/self-host/pro/FAQ/_index.en.md b/content/self-host/pro/FAQ/_index.en.md index 2b5ac56..50e5434 100644 --- a/content/self-host/pro/FAQ/_index.en.md +++ b/content/self-host/pro/FAQ/_index.en.md @@ -125,9 +125,9 @@ net start rustdesk > null ``` ## I have installed RustDesk Server Pro manually but the API web console isn't behind SSL, how can I secure this? -Use a proxy like nginx, the simple install script has one, its really simple [[https://github.com/dinger1986/rustdesk-server-pro](https://github.com/rustdesk/rustdesk-server-pro)/blob/493ad90daf8815c3052ff4d0d4aa9cc07e411efa/install.sh#L252](this is how we did it). +Use a proxy like nginx, the simple install script has one, its really simple [this is how we do it](https://github.com/rustdesk/rustdesk-server-pro/blob/493ad90daf8815c3052ff4d0d4aa9cc07e411efa/install.sh#L252). Similar configs should work with Traefikv2, HAProxy, Apache Proxy and Cloudflare Tunnel. ## How do I file a bug report? -Please file via [https://github.com/rustdesk/rustdesk-server-pro/issues](GitHub) +Please file via (https://github.com/rustdesk/rustdesk-server-pro/issues)[GitHub] From 70af33400a0a7ae8e57ffdc53bef6be1ebe7583d Mon Sep 17 00:00:00 2001 From: dinger1986 Date: Sun, 16 Jul 2023 18:24:03 +0100 Subject: [PATCH 3/8] Update _index.en.md --- content/self-host/pro/FAQ/_index.en.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/self-host/pro/FAQ/_index.en.md b/content/self-host/pro/FAQ/_index.en.md index 50e5434..4617926 100644 --- a/content/self-host/pro/FAQ/_index.en.md +++ b/content/self-host/pro/FAQ/_index.en.md @@ -130,4 +130,4 @@ Use a proxy like nginx, the simple install script has one, its really simple [th Similar configs should work with Traefikv2, HAProxy, Apache Proxy and Cloudflare Tunnel. ## How do I file a bug report? -Please file via (https://github.com/rustdesk/rustdesk-server-pro/issues)[GitHub] +Please file via [GitHub](https://github.com/rustdesk/rustdesk-server-pro/issues). From 03655fdc8ca115676ef12c9cd23ddd3a5c47a652 Mon Sep 17 00:00:00 2001 From: dinger1986 Date: Sun, 16 Jul 2023 18:29:30 +0100 Subject: [PATCH 4/8] Update _index.en.md --- content/self-host/pro/FAQ/_index.en.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/content/self-host/pro/FAQ/_index.en.md b/content/self-host/pro/FAQ/_index.en.md index 4617926..e2004a5 100644 --- a/content/self-host/pro/FAQ/_index.en.md +++ b/content/self-host/pro/FAQ/_index.en.md @@ -131,3 +131,6 @@ Similar configs should work with Traefikv2, HAProxy, Apache Proxy and Cloudflare ## How do I file a bug report? Please file via [GitHub](https://github.com/rustdesk/rustdesk-server-pro/issues). + +## How can I get a trial? +Please get in touch with our [sales](mailto://sales@rustdesk.com?subject=RustDesk Server Pro Trial) team. From 6abff266e90adc4f34a403d444e74d8c61c0d985 Mon Sep 17 00:00:00 2001 From: dinger1986 Date: Sun, 16 Jul 2023 18:30:02 +0100 Subject: [PATCH 5/8] Update _index.en.md --- content/self-host/pro/FAQ/_index.en.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/self-host/pro/FAQ/_index.en.md b/content/self-host/pro/FAQ/_index.en.md index e2004a5..fbd140c 100644 --- a/content/self-host/pro/FAQ/_index.en.md +++ b/content/self-host/pro/FAQ/_index.en.md @@ -133,4 +133,4 @@ Similar configs should work with Traefikv2, HAProxy, Apache Proxy and Cloudflare Please file via [GitHub](https://github.com/rustdesk/rustdesk-server-pro/issues). ## How can I get a trial? -Please get in touch with our [sales](mailto://sales@rustdesk.com?subject=RustDesk Server Pro Trial) team. +Please get in touch with our [sales](mailto://sales@rustdesk.com) team. From 36aa67104fae273f1fc3141ff73c457439ab47c8 Mon Sep 17 00:00:00 2001 From: dinger1986 Date: Sun, 16 Jul 2023 18:54:18 +0100 Subject: [PATCH 6/8] Update _index.en.md --- content/self-host/pro/FAQ/_index.en.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/content/self-host/pro/FAQ/_index.en.md b/content/self-host/pro/FAQ/_index.en.md index fbd140c..277aa9c 100644 --- a/content/self-host/pro/FAQ/_index.en.md +++ b/content/self-host/pro/FAQ/_index.en.md @@ -134,3 +134,11 @@ Please file via [GitHub](https://github.com/rustdesk/rustdesk-server-pro/issues) ## How can I get a trial? Please get in touch with our [sales](mailto://sales@rustdesk.com) team. + +## Why if I am self hosting is this not free and opensource? +1. RustDesk has become a full time job for a number of people, they have lives, wives, jobs and kids which all demands attention and costs money! +2. We want to be hear and still making great progress in years to come. +3. The opensource version will continue to be opensource and we encourage others to make developments in line with the AGPL license. + +## Do you offer hosting for RustDesk Server Pro? +Please get in touch with our [sales](mailto://sales@rustdesk.com) team. From 890edebfc47333a70f969d83f5bd77376b04f8de Mon Sep 17 00:00:00 2001 From: dinger1986 Date: Sun, 16 Jul 2023 19:00:45 +0100 Subject: [PATCH 7/8] Update _index.en.md --- content/self-host/pro/FAQ/_index.en.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/content/self-host/pro/FAQ/_index.en.md b/content/self-host/pro/FAQ/_index.en.md index 277aa9c..0f05128 100644 --- a/content/self-host/pro/FAQ/_index.en.md +++ b/content/self-host/pro/FAQ/_index.en.md @@ -142,3 +142,6 @@ Please get in touch with our [sales](mailto://sales@rustdesk.com) team. ## Do you offer hosting for RustDesk Server Pro? Please get in touch with our [sales](mailto://sales@rustdesk.com) team. + +## Is there somewhere I can see video setup guides? +Yes! We have a [Youtube Channel](https://youtube.com/@RustDesk) From 1fd719e2234063c17fb440acb0a1637636ce191a Mon Sep 17 00:00:00 2001 From: dinger1986 Date: Sun, 16 Jul 2023 21:31:01 +0100 Subject: [PATCH 8/8] Update _index.en.md --- content/self-host/pro/FAQ/_index.en.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/self-host/pro/FAQ/_index.en.md b/content/self-host/pro/FAQ/_index.en.md index 0f05128..894ecba 100644 --- a/content/self-host/pro/FAQ/_index.en.md +++ b/content/self-host/pro/FAQ/_index.en.md @@ -137,7 +137,7 @@ Please get in touch with our [sales](mailto://sales@rustdesk.com) team. ## Why if I am self hosting is this not free and opensource? 1. RustDesk has become a full time job for a number of people, they have lives, wives, jobs and kids which all demands attention and costs money! -2. We want to be hear and still making great progress in years to come. +2. We want to be here and still making great progress in years to come. 3. The opensource version will continue to be opensource and we encourage others to make developments in line with the AGPL license. ## Do you offer hosting for RustDesk Server Pro?