Last active
March 26, 2026 08:08
-
-
Save zkelo/e03c2bcb34b8708114a2529ba60d81d6 to your computer and use it in GitHub Desktop.
RustDesk service config for firewalld
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| sudo firewall-cmd --add-service=rustdesk | |
| sudo firewall-cmd --add-service=rustdesk --permanent |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8"?> | |
| <!-- Docs: https://rustdesk.com/docs/en/self-host/rustdesk-server-oss/docker/#requirements --> | |
| <service> | |
| <short>RustDesk server</short> | |
| <description>RustDesk retranslation server</description> | |
| <port protocol="tcp" port="21114"/> | |
| <port protocol="tcp" port="21115"/> | |
| <port protocol="tcp" port="21116"/> | |
| <port protocol="udp" port="21116"/> | |
| <port protocol="tcp" port="21117"/> | |
| <!-- <port protocol="tcp" port="21118"/> --> | |
| <!-- <port protocol="tcp" port="21119"/> --> | |
| </service> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment