community.windows.win_rds_settings 模块 – 管理远程桌面网关服务器的主要设置

注意

此模块是 community.windows 集合 (版本 2.3.0) 的一部分。

如果您使用的是 ansible 包,则可能已安装此集合。它不包含在 ansible-core 中。要检查它是否已安装,请运行 ansible-galaxy collection list

要安装它,请使用: ansible-galaxy collection install community.windows。您需要其他要求才能使用此模块,有关详细信息,请参阅 要求

要在 playbook 中使用它,请指定: community.windows.win_rds_settings

概要

  • 配置远程桌面网关服务器的常规设置。

要求

执行此模块的主机需要以下要求。

  • Windows Server 2008R2 (6.1) 或更高版本。

  • 必须启用 Windows 功能“RDS-Gateway”。

参数

参数

注释

certificate_hash

字符串

远程桌面网关服务器的证书哈希(指纹)。证书哈希是证书的唯一标识符。

enable_only_messaging_capable_clients

布尔值

如果启用,则只有支持登录消息和管理员消息的客户端才能连接。

选项

  • false

  • true

max_connections

整数

允许的最大连接数。

如果设置为 0,则不允许新的连接。

如果设置为 -1,则连接数不受限制。

ssl_bridging

字符串

指定是否使用 SSL 桥接。

none:无 SSL 桥接。

https_http:HTTPS-HTTP 桥接。

https_https:HTTPS-HTTPS 桥接。

选项

  • "https_http"

  • "https_https"

  • "none"

另请参阅

另请参阅

community.windows.win_rds_cap

管理远程桌面网关服务器上的连接授权策略 (CAP)。

community.windows.win_rds_rap

管理远程桌面网关服务器上的资源授权策略 (RAP)。

community.windows.win_rds_settings

管理远程桌面网关服务器的主要设置。

示例

- name: Configure the Remote Desktop Gateway
  community.windows.win_rds_settings:
    certificate_hash: B0D0FA8408FC67B230338FCA584D03792DA73F4C
    max_connections: 50
  notify:
    - Restart TSGateway service

作者

  • Kevin Subileau (@ksubileau)