Add support for Remote Desktop Services (RDS).

This commit is contained in:
2026-03-11 14:06:08 +01:00
parent 1f5c01d8c9
commit b84a7d8527
5 changed files with 71 additions and 0 deletions

View File

@@ -25,6 +25,7 @@ standard_ntp_port=123
standard_pgp_keyserver_port=11371
standard_print_port=9100
standard_print_raw_port=515
standard_rdp_port=3389
standard_remote_console_port=5900
standard_silc_port=706
standard_smtp_port=25

View File

@@ -1297,6 +1297,21 @@ declare -A rm_server_dmz_arr
remote_console_port=5900
# ======
# - Remote Desktop Dienste
# ======
# - RDS Server local Networks
# -
# - Blank separated list
# -
rds_server_ips=""
# Listen RDP Port
#
rds_server_tcp_port="$standard_rdp_port"
# ======
# - Ubiquiti Unifi
# ======

View File

@@ -1269,6 +1269,21 @@ declare -A rm_server_dmz_arr
remote_console_port=5900
# ======
# - Remote Desktop Dienste
# ======
# - RDS Server local Networks
# -
# - Blank separated list
# -
rds_server_ips=""
# Listen RDP Port
#
rds_server_tcp_port="$standard_rdp_port"
# ======
# - Ubiquiti Unifi
# ======

View File

@@ -535,6 +535,16 @@ for _ip in $rm_server_ips ; do
rm_server_ip_arr+=("$_ip")
done
# ---
# - IP Addresses RDS Service
# ---
declare -a rds_server_ip_arr=()
for _ip in $rds_server_ips ; do
rds_server_ip_arr+=("$_ip")
done
# ---
# - IP Addresses Rsync Out
# ---