cisco.ise.sg_mapping 模块 – SG映射资源模块

注意

此模块是 cisco.ise 集合 (版本 2.9.6) 的一部分。

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

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

要在剧本中使用它,请指定: cisco.ise.sg_mapping

cisco.ise 1.0.0 中的新增功能

概要

  • 管理 SG 映射资源的创建、更新和删除操作。

  • 此 API 创建 IP 到 SGT 的映射。

  • 此 API 删除 IP 到 SGT 的映射。

  • 此 API 允许客户端通过 ID 更新 IP 到 SGT 的映射。

注意

此模块具有相应的 动作插件

要求

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

  • ciscoisesdk >= 2.2.3

  • python >= 3.5

参数

参数

注释

deployTo

字符串

除非设置了 mappingGroup 或 deployType=ALL,否则为必填项。

deployType

字符串

允许的值 - ALL, - ND, - NDG。

hostIp

字符串

如果 hostName 为空,则为必填项 – 有效 IP。

hostName

字符串

如果 hostIp 为空,则为必填项。

id

字符串

SG 映射的 ID。

ise_debug

布尔值

用于 Identity Services Engine SDK 以启用调试。

选项

  • false ← (默认)

  • true

ise_hostname

字符串 / 必填

Identity Services Engine 主机名。

ise_password

字符串 / 必填

用于身份验证的 Identity Services Engine 密码。

ise_single_request_timeout

整数

在 cisco.ise 3.0.0 中添加

RESTful HTTP 请求的超时时间(以秒为单位)。

默认值: 60

ise_username

字符串 / 必填

用于身份验证的 Identity Services Engine 用户名。

ise_uses_api_gateway

布尔值

在 cisco.ise 1.1.0 中添加

通知 SDK 是否使用 Identity Services Engine 的 API 网关发送请求的标志。

如果为 true,则使用 ISE 的 API 网关并将请求发送到 https://{{ise_hostname}}。

如果为 false,则将请求发送到 https://{{ise_hostname}}:{{port}},其中端口值取决于使用的服务(ERS、Mnt、UI、PxGrid)。

选项

  • false

  • true ← (默认)

ise_uses_csrf_token

布尔值

在 cisco.ise 3.0.0 中添加

通知 SDK 我们是否将 CSRF 令牌发送到 ISE 的 ERS API 的标志。

如果为 True,则 SDK 假设您的 ISE CSRF 检查已启用。

如果为 True,则假定您需要 SDK 为您自动管理 CSRF 令牌。

选项

  • false ← (默认)

  • true

ise_verify

布尔值

启用或禁用 SSL 证书验证的标志。

选项

  • false

  • true ← (默认)

ise_version

字符串

通知 SDK 要使用的 Identity Services Engine 版本。

默认值: "3.1_Patch_1"

ise_wait_on_rate_limit

布尔值

用于 Identity Services Engine SDK 以启用自动速率限制处理的标志。

选项

  • false

  • true ← (默认)

mappingGroup

字符串

映射组 ID。除非设置了 sgt 和 deployTo 和 deployType,否则为必填项。

name

字符串

SG 映射的名称。

sgt

字符串

除非设置了 mappingGroup,否则为必填项。

注释

注意

  • 使用的 SDK 方法为 ip_to_sgt_mapping.IpToSgtMapping.create_ip_to_sgt_mapping、ip_to_sgt_mapping.IpToSgtMapping.delete_ip_to_sgt_mapping_by_id、ip_to_sgt_mapping.IpToSgtMapping.update_ip_to_sgt_mapping_by_id,

  • 使用的路径为 post /ers/config/sgmapping、delete /ers/config/sgmapping/{id}、put /ers/config/sgmapping/{id},

  • 不支持 check_mode

  • 插件在控制节点上运行,不使用任何 ansible 连接插件,而是使用 Cisco ISE SDK 中的嵌入式连接管理器

  • 以 ise_ 开头的参数由 Cisco ISE Python SDK 用于建立连接

另请参见

另请参见

有关 IPToSGTMapping 的 Cisco ISE 文档

IPToSGTMapping API 的完整参考。

示例

- name: Update by id
  cisco.ise.sg_mapping:
    ise_hostname: "{{ise_hostname}}"
    ise_username: "{{ise_username}}"
    ise_password: "{{ise_password}}"
    ise_verify: "{{ise_verify}}"
    state: present
    deployTo: string
    deployType: string
    hostIp: string
    hostName: string
    id: string
    mappingGroup: string
    name: string
    sgt: string

- name: Delete by id
  cisco.ise.sg_mapping:
    ise_hostname: "{{ise_hostname}}"
    ise_username: "{{ise_username}}"
    ise_password: "{{ise_password}}"
    ise_verify: "{{ise_verify}}"
    state: absent
    id: string

- name: Create
  cisco.ise.sg_mapping:
    ise_hostname: "{{ise_hostname}}"
    ise_username: "{{ise_username}}"
    ise_password: "{{ise_password}}"
    ise_verify: "{{ise_verify}}"
    state: present
    deployTo: string
    deployType: string
    hostIp: string
    hostName: string
    mappingGroup: string
    name: string
    sgt: string

返回值

常见的返回值已在 此处 记录,以下是此模块特有的字段

描述

ise_response

字典

包含Cisco ISE Python SDK返回的响应的字典或列表

返回值:始终返回

示例: {"deployTo": "string", "deployType": "string", "hostIp": "string", "hostName": "string", "id": "string", "link": {"href": "string", "rel": "string", "type": "string"}, "mappingGroup": "string", "name": "string", "sgt": "string"}

ise_update_response

字典

在 cisco.ise 1.1.0 中添加

包含Cisco ISE Python SDK返回的响应的字典或列表

返回值:始终返回

示例: {"UpdatedFieldsList": {"field": "string", "newValue": "string", "oldValue": "string", "updatedField": [{"field": "string", "newValue": "string", "oldValue": "string"}]}}

作者

  • Rafael Campos (@racampos)