cisco.iosxr.iosxr_banner 模块 – 配置多行标语的模块。

注意

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

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

要安装它,请使用:ansible-galaxy collection install cisco.iosxr。您需要进一步的要求才能使用此模块,请参阅 要求 了解详细信息。

要在 playbook 中使用它,请指定:cisco.iosxr.iosxr_banner

cisco.iosxr 1.0.0 中的新增功能

概要

  • 此模块将在运行 Cisco IOS XR 的远程设备上配置 exec 和 motd 标语。它允许 playbook 从运行配置中添加或删除标语文本。

要求

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

  • 使用 netconf 时需要 ncclient >= 0.5.3

  • 使用 netconf 时需要 lxml >= 4.1.1

参数

参数

注释

banner

字符串 / 必需

指定要在远程设备上配置的标语类型。

选择

  • "login"

  • "motd"

state

字符串

设备上配置的存在状态。

选择

  • "present" ← (默认)

  • "absent"

text

字符串

要配置的标语文本。接受多行字符串,没有空行。使用多行字符串时,第一个和最后一个字符必须是标语的开始和结束分隔符。需要 *state=present*。

注释

注意

示例

- name: configure the login banner
  cisco.iosxr.iosxr_banner:
    banner: login
    text: |
      @this is my login banner
      that contains a multiline
      string@
    state: present
- name: remove the motd banner
  cisco.iosxr.iosxr_banner:
    banner: motd
    state: absent
- name: Configure banner from file
  cisco.iosxr.iosxr_banner:
    banner: motd
    text: '{{ lookup(''file'', ''./config_partial/raw_banner.cfg'') }}'
    state: present

返回值

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

描述

commands

列表 / elements=string

使用传输 cli 发送到设备的配置模式命令列表

返回: 始终(当没有命令要发送时为空列表)

示例: ["banner login", "@this is my login banner", "that contains a multiline", "string@"]

xml

列表 / elements=string

使用传输 netconf 发送到设备的 NetConf rpc xml

返回: 始终(当没有 xml rpc 要发送时为空列表)

示例: ["<config xmlns:xc=\"urn:ietf:params:xml:ns:netconf:base:1.0\"> <banners xmlns=\"http://cisco.com/ns/yang/Cisco-IOS-XR-infra-infra-cfg\"> <banner xc:operation=\"merge\"> <banner-name>motd</banner-name> <banner-text>Ansible banner example</banner-text> </banner> </banners> </config>"]

作者

  • Trishna Guha (@trishnaguha)

  • Kedar Kekan (@kedarX)