cisco.iosxr.iosxr_hostname 模块 – 配置主机名的资源模块。
注意
此模块是 cisco.iosxr 集合 (版本 10.2.2) 的一部分。
如果您使用的是 ansible
包,则可能已安装此集合。它不包含在 ansible-core
中。要检查它是否已安装,请运行 ansible-galaxy collection list
。
要安装它,请使用: ansible-galaxy collection install cisco.iosxr
。
要在 playbook 中使用它,请指定: cisco.iosxr.iosxr_hostname
。
cisco.iosxr 2.7.0 中的新增功能
概要
此模块配置和管理 Cisco IOS XR 平台上主机名的属性。
参数
参数 |
注释 |
---|---|
主机名配置。 |
|
iosxr 设备的主机名。 |
|
此选项仅与 state *parsed* 一起使用。 此选项的值应为通过执行命令 **show running-config hostname** 从 IOSXR 设备接收到的输出。 state *parsed* 从 |
|
配置应保留的状态 状态 *rendered*、*gathered* 和 *parsed* 不会对设备进行任何更改。 状态 *rendered* 将把 对于此模块,状态 *merged*、*replaced* 和 *overridden* 的行为相同。 状态 *gathered* 将获取设备的运行配置,并根据资源模块 argspec 将其转换为结构化数据,并将值返回结果中的 *gathered* 键中。 状态 *parsed* 从 选项
|
备注
注意
在 Cisco IOS XR 7.0.2 上测试
此模块与连接
network_cli
一起使用。
示例
# Using state: merged
# Before state:
# -------------
# RP/0/RP0/CPU0:ios#show running-config hostname
# Thu Jan 20 19:48:56.011 UTC
# hostname ios
# Merged play:
# ------------
- name: Apply the provided configuration
cisco.iosxr.iosxr_hostname:
config:
hostname: Router1
state: merged
# Commands Fired:
# ---------------
# "commands": [
# "hostname Router1",
# ],
# After state:
# ------------
# RP/0/0/CPU0:Router1#show running-config hostname
# Thu Jan 20 19:48:56.011 UTC
# hostname Router1
# Using state: deleted
# Before state:
# -------------
# RP/0/0/CPU0:Router1#show running-config hostname
# Thu Jan 20 19:48:56.011 UTC
# hostname Router1
# Deleted play:
# -------------
- name: Remove all existing configuration
cisco.iosxr.iosxr_hostname:
state: deleted
# Commands Fired:
# ---------------
# "commands": [
# "no hostname Router1",
# ],
# After state:
# ------------
# RP/0/RP0/CPU0:ios#show running-config hostname
# Thu Jan 20 19:55:12.971 UTC
# hostname ios
# Using state: overridden
# Before state:
# -------------
# RP/0/0/CPU0:ios#show running-config hostname
# hostname ios
# Overridden play:
# ----------------
- name: Override commands with provided configuration
cisco.iosxr.iosxr_hostname:
config:
hostname: RouterTest
state: overridden
# Commands Fired:
# ---------------
# "commands": [
# "hostname RouterTest",
# ],
# After state:
# ------------
# RP/0/RP0/CPU0:RouterTest#show running-config hostname
# Thu Jan 20 19:48:56.011 UTC
# hostname RouterTest
# Using state: replaced
# Before state:
# -------------
# RP/0/RP0/CPU0:RouterTest#show running-config hostname
# Thu Jan 20 19:48:56.011 UTC
# hostname RouterTest
# Replaced play:
# --------------
- name: Replace commands with provided configuration
cisco.iosxr.iosxr_hostname:
config:
hostname: RouterTest
state: replaced
# Commands Fired:
# ---------------
# "commands": [],
# After state:
# ------------
# RP/0/0/CPU0:RouterTest#show running-config hostname
# hostname RouterTest
# Using state: gathered
# Before state:
# -------------
# RP/0/RP0/CPU0:RouterTest#show running-config hostname
# Thu Jan 20 19:48:56.011 UTC
# hostname RouterTest
# Gathered play:
# --------------
- name: Gather listed hostname config
cisco.iosxr.iosxr_hostname:
state: gathered
# Module Execution Result:
# ------------------------
# "gathered": {
# "hostname": "RouterTest"
# },
# Using state: rendered
# Rendered play:
# --------------
- name: Render the commands for provided configuration
cisco.iosxr.iosxr_hostname:
config:
hostname: RouterTest
state: rendered
# Module Execution Result:
# ------------------------
# "rendered": [
# "hostname RouterTest",
# ]
# Using state: parsed
# File: parsed.cfg
# ----------------
# hostname RouterTest
# Parsed play:
# ------------
- name: Parse the provided configuration with the existing running configuration
cisco.iosxr.iosxr_hostname:
running_config: "{{ lookup('file', 'parsed.cfg') }}"
state: parsed
# Module Execution Result:
# ------------------------
# "parsed": {
# "hostname": "RouterTest"
# }
返回值
公共返回值已在 此处 记录,以下是此模块特有的字段
键 |
描述 |
---|---|
模块执行后的结果配置。 返回:发生更改时 示例: |
|
模块执行前的配置。 返回:当 state 为 示例: |
|
推送到远程设备的命令集。 返回:当 state 为 示例: |
|
从远程设备收集的关于网络资源的结构化数据事实。 返回:当 state 为 示例: |
|
根据模块 argspec 将 *running_config* 选项中提供的设备原生配置解析为结构化数据。 返回:当 state 为 示例: |
|
以设备原生格式呈现的任务中提供的配置(离线)。 返回:当 state 为 示例: |