junipernetworks.junos.junos_lacp 模块 – 全局链路聚合控制协议 (LACP) Junos 资源模块
注意
此模块是 junipernetworks.junos 集合 (版本 9.1.0) 的一部分。
如果您使用的是 ansible
包,则可能已安装此集合。它不包含在 ansible-core
中。要检查它是否已安装,请运行 ansible-galaxy collection list
。
要安装它,请使用:ansible-galaxy collection install junipernetworks.junos
。您需要其他要求才能使用此模块,有关详细信息,请参见 要求。
要在 playbook 中使用它,请指定:junipernetworks.junos.junos_lacp
。
junipernetworks.junos 1.0.0 中的新增功能
摘要
此模块提供对 Juniper Junos 网络设备上全局 LACP 的声明式管理。
要求
执行此模块的主机需要以下要求。
ncclient (>=v0.6.4)
参数
参数 |
注释 |
---|---|
LACP 全局选项的字典 |
|
为系统启用 LACP 链路保护。如果该值设置为 选项
|
|
系统的 LACP 优先级。 |
|
此选项仅与状态 *parsed* 一起使用。 此选项的值应为通过执行命令 **show chassis aggregated-devices ethernet lacp** 从 Junos 设备接收的输出。 状态 *parsed* 从 |
|
模块完成后的配置状态 选项
|
备注
注意
此模块要求在被管理的远程设备上启用 netconf 系统服务。
针对 vSRX JUNOS 版本 18.1R1 进行了测试。
此模块与连接
netconf
配合使用。请参见 Junos OS 平台选项。
示例
# Using deleted
# Before state:
# -------------
# user@junos01# show chassis aggregated-devices ethernet lacp
# system-priority 63;
# link-protection {
# non-revertive;
# }
- name: Delete global LACP attributes
junipernetworks.junos.junos_lacp:
state: deleted
# After state:
# ------------
# user@junos01# show chassis aggregated-devices ethernet lacp
#
# Using merged
# Before state:
# -------------
# user@junos01# show chassis aggregated-devices ethernet lacp
#
- name: Merge global LACP attributes
junipernetworks.junos.junos_lacp:
config:
system_priority: 63
link_protection: revertive
state: merged
# After state:
# ------------
# user@junos01# show chassis aggregated-devices ethernet lacp
# system-priority 63;
# link-protection {
# non-revertive;
# }
# Using replaced
# Before state:
# -------------
# user@junos01# show chassis aggregated-devices ethernet lacp
# system-priority 63;
# link-protection {
# non-revertive;
# }
- name: Replace global LACP attributes
junipernetworks.junos.junos_lacp:
config:
system_priority: 30
link_protection: non-revertive
state: replaced
# After state:
# ------------
# user@junos01# show chassis aggregated-devices ethernet lacp
# system-priority 30;
# link-protection;
#
# Using gathered
# Before state:
# ------------
#
# ansible@cm123456tr21# show chassis aggregated-devices ethernet lacp
# system-priority 63;
# link-protection;
- name: Gather junos lacp as in given arguments
junipernetworks.junos.junos_lacp:
state: gathered
# Task Output (redacted)
# -----------------------
#
# "gathered": {
# "link_protection": "revertive",
# "system_priority": 63
# }
# After state:
# ------------
#
# ansible@cm123456tr21# show chassis aggregated-devices ethernet lacp
# system-priority 63;
# link-protection;
# Using rendered
- name: Render platform specific xml from task input using rendered state
junipernetworks.junos.junos_lacp:
config:
system_priority: 63
link_protection: revertive
state: rendered
# Task Output (redacted)
# -----------------------
# "rendered": "<nc:chassis
# xmlns:nc="urn:ietf:params:xml:ns:netconf:base:1.0">
# <nc:aggregated-devices>
# <nc:ethernet>
# <nc:lacp>
# <nc:system-priority>63</nc:system-priority>
# <nc:link-protection>
# <nc:non-revertive delete="delete"/>
# </nc:link-protection>
# </nc:lacp>
# </nc:ethernet>
# </nc:aggregated-devices>
# </nc:chassis>
#
# Using parsed
# parsed.cfg
# ------------
#
# <?xml version="1.0" encoding="UTF-8"?>
# <rpc-reply message-id="urn:uuid:0cadb4e8-5bba-47f4-986e-72906227007f">
# <configuration changed-seconds="1590139550" changed-localtime="2020-05-22 09:25:50 UTC">
# <chassis>
# <aggregated-devices>
# <ethernet>
# <lacp>
# <system-priority>63</system-priority>
# <link-protection>
# </link-protection>
# </lacp>
# </ethernet>
# </aggregated-devices>
# </chassis>
# </configuration>
# </rpc-reply>
# - name: Convert lacp config to argspec without connecting to the appliance
# junipernetworks.junos.junos_lacp:
# running_config: "{{ lookup('file', './parsed.cfg') }}"
# state: parsed
# Task Output (redacted)
# -----------------------
# "parsed": {
# "link_protection": "revertive",
# "system_priority": 63
# }
返回值
常见的返回值已在 此处 记录,以下是此模块特有的字段
键 |
描述 |
---|---|
模块完成后的结构化数据配置。 返回:已更改时 示例: |
|
模块调用之前的结构化数据配置。 返回:始终 示例: |
|
推送到远程设备的 xml rpc 有效负载集。 返回:始终 示例: |