cisco.nxos.nxos_vrf_global 模块 – 用于配置 VRF 定义的资源模块。
注意
此模块是 cisco.nxos 集合(版本 9.2.1)的一部分。
如果您使用的是 ansible
包,则可能已经安装了此集合。它不包含在 ansible-core
中。要检查是否已安装,请运行 ansible-galaxy collection list
。
要安装它,请使用:ansible-galaxy collection install cisco.nxos
。
要在 playbook 中使用它,请指定:cisco.nxos.nxos_vrf_global
。
cisco.nxos 8.1.0 中的新增功能
概要
此模块提供 Cisco NXOS 上 VRF 定义的声明式管理。
参数
参数 |
注释 |
---|---|
包含 VRF 设备配置的列表。 |
|
VRF 定义的列表。 |
|
VRF 的描述。 |
|
为指定的 vrf 配置 IP 功能。 |
|
自动 0.0.0.0/0 丢弃路由。 选择
|
|
添加域名列表。 |
|
指定默认域名。 |
|
启用 ICMP 错误消息。 |
|
为应用程序配置源地址。 |
|
ICMP 错误消息的源接口。 选择
|
|
ICMP 错误消息的源接口值。 |
|
IGMP 全局配置命令 |
|
将 IGMPv1/v2 报告转换为 (S,G) 路由条目。 |
|
源地址。 |
|
组地址。 |
|
配置组播路由。 |
|
组播组地址。 |
|
首选项值。 |
|
源地址。 |
|
VRF 名称。 |
|
配置 IP 组播全局参数。 |
|
用于组播边界的组范围前缀列表策略。 |
|
配置 ECMP 组播负载分担。 |
|
配置弹性 RPF 接口。 选择
|
|
配置组播负载分担类型。 |
|
根据源和组配置哈希。 选择
|
|
配置 NBM 控制的 RPF 接口。 选择
|
|
禁用组播负载分担。 选择
|
|
根据源和组地址配置哈希。 选择
|
|
根据源地址、组地址和下一跳配置哈希。 选择
|
|
配置 RPF 检查。 |
|
用于 RPF 选择的组范围。 |
|
用于 RPF 查找的 VRF。 |
|
指定名称服务器地址。 |
|
配置组播名称服务器地址。 |
|
显示每个 VRF 的信息。 |
|
用于配置名称服务器的源地址。 |
|
VRF 名称。 |
|
配置静态路由。 |
|
下一跳地址。 |
|
目标前缀。 |
|
路由标记。 |
|
路由首选项。 |
|
路由标记值。 |
|
配置跟踪对象。 |
|
将 vrf 添加到路由。 |
|
为指定的 vrf 配置 IPv6 功能。 |
|
将 MLDv1/v2 报告转换为 (S,G) 路由条目。 |
|
源地址。 |
|
使用 mld 配置 ICMP 参数。 选择
|
|
组地址。 |
|
为 ipv6 配置 IP 组播全局参数。 |
|
用于组播边界的组范围前缀列表策略。 |
|
配置 ECMP 组播负载分担。 |
|
配置弹性 RPF 接口。 选择
|
|
配置组播负载分担类型。 |
|
禁用组播负载分担。 选择
|
|
根据源和组地址配置哈希。 选择
|
|
根据源地址、组地址和下一跳配置哈希。 选择
|
|
配置 IP 组播选项。 |
|
配置服务反射选项。 |
|
映射到接口。 |
|
配置服务接口。 |
|
VRF 的名称。 |
|
虚拟网络标识符。 |
|
配置第 3 层 VNI。 选择
|
|
VNI 编号。 |
|
此选项仅与状态 parsed 一起使用。 此选项的值应是从 NX-OS 设备执行命令 show running-config | section ^vrf 收到的输出。 状态 parsed 从 |
|
配置应保持的状态 状态 rendered、gathered 和 parsed 不会对设备执行任何更改。 状态 rendered 会将 状态 gathered 将从设备获取运行配置,并将其转换为符合资源模块 argspec 格式的结构化数据,该值在结果中的 gathered 键中返回。 parsed 状态从 选择
|
说明
注意
已在 NX-OS 9.3.6 上测试。
此模块适用于
network_cli
和httpapi
连接。请参阅 https://docs.ansible.org.cn/ansible/latest/network/user_guide/platform_nxos.html
示例
# Using merged
# Before state:
# -------------
#
# nxos#show running-config | section ^vrf
- name: Merge provided VRF configuration
cisco.nxos.vrf_global:
config:
vrfs:
- name: testvrf
description: this is description
ip:
auto_discard: true
domain_list:
- example.net
- example.com
domain_name: test.com
icmp_err:
source_interface:
interface: port-channel
interface_value: '1'
igmp:
ssm_translate:
- group: 232.0.0.0/8
source: 10.1.1.1
- group: 239.1.2.3/24
source: 192.168.1.1
mroutes:
- group: 192.168.1.0/24
source: 192.168.1.1
- group: 192.168.1.0/24
preference: 2
source: 192.168.1.2
vrf: temp1
multicast:
multipath:
resilient: true
splitting_type:
legacy: true
rpf:
- group_list_range: 238.1.0.0/24
vrf_name: temp1
- group_list_range: 239.1.0.0/24
vrf_name: temp1
name_server:
address_list:
- 192.168.0.1
- 192.168.0.2
- 192.168.1.1
- 192.169.1.3
use_vrf:
source_address: 192.168.0.1
vrf: temp1
route:
- destination: 192.0.2.22
source: 192.0.0.0/24
- destination: 192.0.2.22
source: 192.0.0.0/24
vrf: temp1
- destination: 192.0.2.22
source: 192.0.2.0/24
tags:
route_pref: 4
tag_value: 2
ipv6:
mld_ssm_translate:
- group: 'ff28::/16'
source: '2001:db8:0:abcd::2'
- group: 'ff30::/16'
source: '2001:db8:0:abcd::5'
multicast:
group_range_prefix_list: temp2
multipath:
resilient: true
splitting_type:
none: true
multicast:
service_reflect:
- map_to: Ethernet2/2
service_interface: Ethernet1/1
- map_to: Ethernet4/2
service_interface: Ethernet2/1
vni:
vni_number: 5
state: merged
# Task Output:
# ------------
# before: {}
# commands:
# - vrf context test1
# - description this is description
# - ip auto-discard
# - ip domain-name test.net
# - ip name-server 192.168.0.1 192.168.0.2 192.168.1.1 192.169.1.3
# - ip icmp-errors source-interface port-channel 1
# - ip multicast multipath resilient
# - ip multicast multipath legacy
# - ip name-server 192.168.0.1 use-vrf temp1
# - vni 5
# - ipv6 multicast group-range prefix-list temp2
# - ipv6 multicast multipath resilient
# - ipv6 multicast multipath none
# - ip domain-list test.org
# - ip domain-list example.com
# - ip domain-list example.net
# - ip igmp ssm-translate 232.0.0.0/8 10.1.1.1
# - ip igmp ssm-translate 239.1.2.3/24 192.168.1.1
# - ip mroute 192.168.1.0/24 192.168.1.1
# - ip mroute 192.168.1.0/24 192.168.1.2 2 vrf temp1
# - ip multicast rpf select vrf temp1 group-list 238.1.0.0/24
# - ip multicast rpf select vrf temp1 group-list 239.1.0.0/24
# - ip route 192.0.0.0/24 192.0.2.22
# - ip route 192.0.0.0/24 192.0.2.22 vrf temp1
# - ip route 192.0.2.0/24 192.0.2.22 tag 2 4
# - multicast service-reflect interface Ethernet1/1 map interface Ethernet2/2
# - multicast service-reflect interface Ethernet2/1 map interface Ethernet4/2
# - ipv6 mld ssm-translate ff28::/16 2001:db8:0:abcd::2
# - ipv6 mld ssm-translate ff30::/16 2001:db8:0:abcd::5
# after:
# vrfs:
# - name: testvrf
# description: this is description
# ip:
# auto_discard: true
# domain_list:
# - example.net
# - example.com
# domain_name: test.com
# icmp_err:
# source_interface:
# interface: port-channel
# interface_value: '1'
# igmp:
# ssm_translate:
# - group: 232.0.0.0/8
# source: 10.1.1.1
# - group: 239.1.2.3/24
# source: 192.168.1.1
# mroutes:
# - group: 192.168.1.0/24
# source: 192.168.1.1
# - group: 192.168.1.0/24
# preference: 2
# source: 192.168.1.2
# vrf: temp1
# multicast:
# multipath:
# resilient: true
# splitting_type:
# legacy: true
# rpf:
# - group_list_range: 238.1.0.0/24
# vrf_name: temp1
# - group_list_range: 239.1.0.0/24
# vrf_name: temp1
# name_server:
# address_list:
# - 192.168.0.1
# - 192.168.0.2
# - 192.168.1.1
# - 192.169.1.3
# use_vrf:
# source_address: 192.168.0.1
# vrf: temp1
# route:
# - destination: 192.0.2.22
# source: 192.0.0.0/24
# - destination: 192.0.2.22
# source: 192.0.0.0/24
# vrf: temp1
# - destination: 192.0.2.22
# source: 192.0.2.0/24
# tags:
# route_pref: 4
# tag_value: 2
# ipv6:
# mld_ssm_translate:
# - group: ff28::/16
# source: 2001:db8:0:abcd::2
# - group: ff30::/16
# source: 2001:db8:0:abcd::5
# multicast:
# group_range_prefix_list: temp2
# multipath:
# resilient: true
# splitting_type:
# none: true
# multicast:
# service_reflect:
# - map_to: Ethernet2/2
# service_interface: Ethernet1/1
# - map_to: Ethernet4/2
# service_interface: Ethernet2/1
# vni:
# vni_number: 5
# After state:
# ------------
#
# nxos#show running-config | section ^vrf
# vrf context testvrf
# description this is description
# ip auto-discard
# ip domain-name test.net
# ip name-server 192.168.0.1 192.168.0.2 192.168.1.1 192.169.1.3
# ip icmp-errors source-interface port-channel 1
# ip multicast multipath resilient
# ip multicast multipath legacy
# ip name-server 192.168.0.1 use-vrf temp1
# vni 5
# ipv6 multicast group-range prefix-list temp2
# ipv6 multicast multipath resilient
# ipv6 multicast multipath none
# ip domain-list test.org
# ip domain-list example.com
# ip domain-list example.net
# ip igmp ssm-translate 232.0.0.0/8 10.1.1.1
# ip igmp ssm-translate 239.1.2.3/24 192.168.1.1
# ip mroute 192.168.1.0/24 192.168.1.1
# ip mroute 192.168.1.0/24 192.168.1.2 2 vrf temp1
# ip multicast rpf select vrf temp1 group-list 238.1.0.0/24
# ip multicast rpf select vrf temp1 group-list 239.1.0.0/24
# ip route 192.0.0.0/24 192.0.2.22
# ip route 192.0.0.0/24 192.0.2.22 vrf temp1
# ip route 192.0.2.0/24 192.0.2.22 tag 2 4
# multicast service-reflect interface Ethernet1/1 map interface Ethernet2/2
# multicast service-reflect interface Ethernet2/1 map interface Ethernet4/2
# ipv6 mld ssm-translate ff28::/16 2001:db8:0:abcd::2
# ipv6 mld ssm-translate ff30::/16 2001:db8:0:abcd::5
# Using deleted
# Before state:
# -------------
#
# nxos#show running-config | section ^vrf
# vrf context management
# ip name-server 192.168.255.1
# ip route 0.0.0.0/0 192.168.255.1
# vrf context test1
# description this is description
# ip domain-name test.net
# ip domain-list example.net
# ip domain-list example.com
# ip domain-list test.org
# vni 5
# ip auto-discard
# ip route 192.0.0.0/24 192.0.2.22
# ip route 192.0.0.0/24 192.0.2.22 vrf temp1
# ip route 192.0.2.0/24 192.0.2.22 tag 2 4
# ip mroute 192.168.1.0/24 192.168.1.1
# ip mroute 192.168.1.0/24 192.168.1.2 2 vrf temp1
# ip icmp-errors source-interface po1
# ip igmp ssm-translate 232.0.0.0/8 10.1.1.1
# ip igmp ssm-translate 239.1.2.3/24 192.168.1.1
# ip multicast multipath legacy
# ip multicast multipath resilient
# ip multicast rpf select vrf temp1 group-list 238.1.0.0/24
# ip multicast rpf select vrf temp1 group-list 239.1.0.0/24
# ip multicast group-range prefix-list temp2
- name: Delete VRF configuration
cisco.nxos.vrf_global:
config:
vrfs:
- name: test1
state: deleted
# Task Output:
# ------------
#
# before:
# vrfs:
# - name: management
# ip:
# name_server:
# address_list:
# - 192.168.255.1
# route:
# - source: 0.0.0.0/0
# destination: 192.168.255.1
# - name: test1
# description: this is description
# ip:
# domain_name: test.net
# domain_list:
# - test.org
# - example.net
# - example.com
# auto_discard: true
# route:
# - source: 192.0.0.0/24
# destination: 192.0.2.22
# - source: 192.0.0.0/24
# destination: 192.0.2.22
# vrf: temp1
# - source: 192.0.2.0/24
# destination: 192.0.2.22
# tags:
# tag_value: 2
# route_pref: 4
# mroutes:
# - group: 192.168.1.0/24
# source: 192.168.1.1
# - group: 192.168.1.0/24
# source: 192.168.1.2
# preference: 2
# vrf: temp1
# icmp_err:
# source_interface:
# interface: port-channel
# interface_value: '1'
# igmp:
# ssm_translate:
# - group: 232.0.0.0/8
# source: 10.1.1.1
# - group: 239.1.2.3/24
# source: 192.168.1.1
# multicast:
# multipath:
# splitting_type:
# legacy: true
# resilient: true
# rpf:
# - vrf_name: temp1
# group_list_range: 238.1.0.0/24
# - vrf_name: temp1
# group_list_range: 239.1.0.0/24
# vni:
# vni_number: 5
# commands:
# - vrf context test1
# - no description this is description
# - no ip auto-discard
# - no ip domain-name test.net
# - no ip icmp-errors source-interface port-channel 1
# - no ip multicast multipath resilient
# - no ip multicast multipath legacy
# - no vni 5
# - no ip domain-list example.net
# - no ip domain-list test.org
# - no ip domain-list example.com
# - no ip igmp ssm-translate 232.0.0.0/8 10.1.1.1
# - no ip igmp ssm-translate 239.1.2.3/24 192.168.1.1
# - no ip mroute 192.168.1.0/24 192.168.1.1
# - no ip mroute 192.168.1.0/24 192.168.1.2 2 vrf temp1
# - no ip multicast rpf select vrf temp1 group-list 238.1.0.0/24
# - no ip multicast rpf select vrf temp1 group-list 239.1.0.0/24
# - no ip route 192.0.0.0/24 192.0.2.22
# - no ip route 192.0.0.0/24 192.0.2.22 vrf temp1
# - no ip route 192.0.2.0/24 192.0.2.22 tag 2 4
#
# after:
# vrfs:
# - name: management
# ip:
# name_server:
# address_list:
# - 192.168.255.1
# route:
# - source: 0.0.0.0/0
# destination: 192.168.255.1
# - name: test1
# Using deleted with empty config
# Before state:
# -------------
#
# nxos#show running-config | section ^vrf
# vrf context management
# ip name-server 192.168.255.1
# ip route 0.0.0.0/0 192.168.255.1
# vrf context test1
# description this is description
# ip domain-name test.net
# ip domain-list example.net
# ip domain-list example.com
# ip domain-list test.org
# vni 5
- name: Delete VRF configuration
cisco.nxos.vrf_global:
config:
vrfs:
- name: test1
state: deleted
# Task Output:
# ------------
#
# before:
# vrfs:
# - name: management
# ip:
# name_server:
# address_list:
# - 192.168.255.1
# route:
# - source: 0.0.0.0/0
# destination: 192.168.255.1
# - name: test1
# description: this is description
# ip:
# domain_name: test.net
# domain_list:
# - test.org
# - example.net
# - example.com
# vni:
# vni_number: 5
# commands:
# - vrf context management
# - no ip name-server 192.168.255.1
# - no ip route 0.0.0.0/0 192.168.255.1
# - vrf context test1
# - no description this is description
# - no ip domain-name test.net
# - no vni 5
# - no ip domain-list example.net
# - no ip domain-list test.org
# - no ip domain-list example.com
# after:
# vrfs:
# - name: management
# - name: test1
# Using purged
# Before state:
# -------------
#
# nxos#show running-config | section ^vrf
# vrf context management
# ip name-server 192.168.255.1
# ip route 0.0.0.0/0 192.168.255.1
# vrf context test1
# description this is description
# ip domain-name example.com
# ip domain-list example.net
# ip domain-list example.org
# vni 5
# ip auto-discard
# ip route 192.0.0.0/24 192.0.2.22
# ip route 192.0.0.0/24 192.0.2.22 vrf temp1
# ip route 192.0.2.0/24 192.0.2.22 tag 2 4
# vrf context test2
# description test description
# ip auto-discard
# ip domain-name test.com
- name: Override VRF configuration
cisco.nxos.vrf_global:
config:
vrfs:
- name: test1
- name: test2
state: purged
# Task Output:
# ------------
#
# before:
# vrfs:
# - name: management
# ip:
# name_server:
# address_list:
# - 192.168.255.1
# route:
# - source: 0.0.0.0/0
# destination: 192.168.255.1
# - name: test1
# description: this is description
# ip:
# domain_name: example.com
# domain_list:
# - example.net
# - example.org
# auto_discard: true
# route:
# - source: 192.0.0.0/24
# destination: 192.0.2.22
# - source: 192.0.0.0/24
# destination: 192.0.2.22
# vrf: temp1
# - source: 192.0.2.0/24
# destination: 192.0.2.22
# tags:
# tag_value: 2
# route_pref: 4
# vni:
# vni_number: 5
# - name: test2
# description: test description
# ip:
# auto_discard: true
# domain_name: test.com
#
# commands:
# - no vrf context test1
# - no vrf context test2
#
# after:
# vrfs:
# - name: management
# ip:
# name_server:
# address_list:
# - 192.168.255.1
# route:
# - source: 0.0.0.0/0
# destination: 192.168.255.1
# Using overridden
# Before state:
# -------------
#
# nxos#show running-config | section ^vrf
# vrf context management
# ip name-server 192.168.255.1
# ip route 0.0.0.0/0 192.168.255.1
# vrf context test1
# description this is description
# ip domain-name example.com
# ip domain-list example.net
# ip domain-list example.org
# vni 5
# ip auto-discard
# ip route 192.0.0.0/24 192.0.2.22
# ip route 192.0.0.0/24 192.0.2.22 vrf temp1
# ip route 192.0.2.0/24 192.0.2.22 tag 2 4
# vrf context test2
# description test description
# ip auto-discard
# ip domain-name test.com
- name: Override VRF configuration
cisco.nxos.vrf_global:
config:
vrfs:
- name: management
ip:
name_server:
address_list:
- 192.168.255.1
route:
- source: 0.0.0.0/0
destination: 192.168.255.1
- name: test1
ip:
auto_discard: false
name_server:
address_list:
- 192.168.255.1
route:
- source: 192.0.0.0/24
destination: 192.0.2.22
state: overridden
# Task Output:
# ------------
#
# before:
# vrfs:
# - name: management
# ip:
# name_server:
# address_list:
# - 192.168.255.1
# route:
# - source: 0.0.0.0/0
# destination: 192.168.255.1
# - name: test1
# description: this is description
# ip:
# domain_name: example.com
# domain_list:
# - example.net
# - example.org
# auto_discard: true
# route:
# - source: 192.0.0.0/24
# destination: 192.0.2.22
# - source: 192.0.0.0/24
# destination: 192.0.2.22
# vrf: temp1
# - source: 192.0.2.0/24
# destination: 192.0.2.22
# tags:
# tag_value: 2
# route_pref: 4
# vni:
# vni_number: 5
# - name: test2
# description: test description
# ip:
# auto_discard: true
# domain_name: test.com
#
# commands:
# - vrf context test1
# - no description this is description
# - no ip domain-name example.com
# - no ip domain-list example.net
# - no ip domain-list example.org
# - ip name-server 192.168.255.1
# - no ip auto-discard
# - no vni 5
# - no ip route 192.0.0.0/24 192.0.2.22 vrf temp1
# - no ip route 192.0.2.0/24 192.0.2.22 tag 2 4
# - vrf context test2
# - no description test description
# - no ip auto-discard
# - no ip domain-name test.com
#
# after:
# vrfs:
# - name: management
# ip:
# name_server:
# address_list:
# - 192.168.255.1
# route:
# - source: 0.0.0.0/0
# destination: 192.168.255.1
# - name: test1
# ip:
# auto_discard: false
# name_server:
# address_list:
# - 192.168.255.1
# route:
# - source: 192.0.0.0/24
# destination: 192.0.2.22
# Using replaced
# Before state:
# -------------
#
# nxos# show running-config | section ^vrf
# vrf context management
# ip name-server 192.168.255.1
# ip route 0.0.0.0/0 192.168.255.1
# vrf context temp
# ip domain-name test.org
# ip domain-list example.net
# ip domain-list example.com
# ip domain-list test.org
# ip name-server 192.168.0.1 192.169.1.3
# ip name-server 192.168.0.1 use-vrf temp1
# multicast service-reflect interface Ethernet1/1 map interface Ethernet2/2
# multicast service-reflect interface Ethernet2/1 map interface Ethernet4/2
# description this is descrition
# vni 5
# ip auto-discard
# ip route 192.0.0.0/24 192.0.2.22
# ip route 192.0.0.0/24 192.0.2.22 vrf temp1
# ip route 192.0.2.0/24 192.0.2.22 tag 2 4
# ip mroute 192.168.1.0/24 192.168.1.1
# ip mroute 192.168.1.0/24 192.168.1.2 2 vrf temp1
# ip icmp-errors source-interface po1
# ip igmp ssm-translate 232.0.0.0/8 10.1.1.1
# ip igmp ssm-translate 239.1.2.3/24 192.168.1.1
# ip multicast multipath legacy
# ip multicast multipath resilient
# ip multicast rpf select vrf temp1 group-list 238.1.0.0/24
# ip multicast rpf select vrf temp1 group-list 239.1.0.0/24
# ip multicast group-range prefix-list temp2
# ipv6 multicast multipath none
# ipv6 multicast multipath resilient
# ipv6 multicast group-range prefix-list temp2
# ipv6 mld ssm-translate ff28::/16 2001:db8:0:abcd::2
# ipv6 mld ssm-translate ff30::/16 2001:db8:0:abcd::1
# ipv6 mld ssm-translate ff32::/16 2001:db8:0:abcd::2
# ipv6 mld ssm-translate ff32::/16 2001:db8:0:abcd::3
- name: Replaced state for VRF configuration
cisco.nxos.nxos_vrf_global:
config:
vrfs:
- ip:
name_server:
address_list:
- 192.168.255.1
route:
- destination: 192.168.255.1
source: 0.0.0.0/0
name: management
- name: temp
description: Test
ip:
auto_discard: true
domain_list:
- invalid.com
- example.com
domain_name: test.org
state: replaced
# Task Output:
# ------------
#
# before:
# vrfs:
# - ip:
# name_server:
# address_list:
# - 192.168.255.1
# route:
# - destination: 192.168.255.1
# source: 0.0.0.0/0
# name: management
# - description: this is descrition
# ip:
# auto_discard: true
# domain_list:
# - example.net
# - test.org
# - example.com
# domain_name: test.org
# icmp_err:
# source_interface:
# interface: port-channel
# interface_value: '1'
# igmp:
# ssm_translate:
# - group: 232.0.0.0/8
# source: 10.1.1.1
# - group: 239.1.2.3/24
# source: 192.168.1.1
# mroutes:
# - group: 192.168.1.0/24
# source: 192.168.1.1
# - group: 192.168.1.0/24
# preference: 2
# source: 192.168.1.2
# vrf: temp1
# multicast:
# multipath:
# resilient: true
# splitting_type:
# legacy: true
# rpf:
# - group_list_range: 238.1.0.0/24
# vrf_name: temp1
# - group_list_range: 239.1.0.0/24
# vrf_name: temp1
# name_server:
# address_list:
# - 192.168.0.1
# - 192.169.1.3
# use_vrf:
# source_address: 192.168.0.1
# vrf: temp1
# route:
# - destination: 192.0.2.22
# source: 192.0.0.0/24
# - destination: 192.0.2.22
# source: 192.0.0.0/24
# vrf: temp1
# - destination: 192.0.2.22
# source: 192.0.2.0/24
# tags:
# route_pref: 4
# tag_value: 2
# ipv6:
# mld_ssm_translate:
# - group: ff28::/16
# source: 2001:db8:0:abcd::2
# - group: ff30::/16
# source: 2001:db8:0:abcd::1
# - group: ff32::/16
# source: 2001:db8:0:abcd::2
# - group: ff32::/16
# source: 2001:db8:0:abcd::3
# multicast:
# group_range_prefix_list: temp2
# multipath:
# resilient: true
# splitting_type:
# none: true
# multicast:
# service_reflect:
# - map_to: Ethernet2/2
# service_interface: Ethernet1/1
# - map_to: Ethernet4/2
# service_interface: Ethernet2/1
# name: temp
# vni:
# vni_number: 5
#
# commands:
# - vrf context temp
# - description Test
# - no ip name-server 192.168.0.1 192.169.1.3
# - no ip icmp-errors source-interface port-channel 1
# - no ip multicast multipath resilient
# - no ip multicast multipath legacy
# - no ip name-server 192.168.0.1 use-vrf temp1
# - no vni 5
# - no ipv6 multicast group-range prefix-list temp2
# - no ipv6 multicast multipath resilient
# - no ipv6 multicast multipath none
# - ip domain-list invalid.com
# - no ip domain-list example.net
# - no ip domain-list test.org
# - no ip igmp ssm-translate 232.0.0.0/8 10.1.1.1
# - no ip igmp ssm-translate 239.1.2.3/24 192.168.1.1
# - no ip mroute 192.168.1.0/24 192.168.1.1
# - no ip mroute 192.168.1.0/24 192.168.1.2 2 vrf temp1
# - no ip multicast rpf select vrf temp1 group-list 238.1.0.0/24
# - no ip multicast rpf select vrf temp1 group-list 239.1.0.0/24
# - no ip route 192.0.0.0/24 192.0.2.22
# - no ip route 192.0.0.0/24 192.0.2.22 vrf temp1
# - no ip route 192.0.2.0/24 192.0.2.22 tag 2 4
# - no multicast service-reflect interface Ethernet1/1 map interface Ethernet2/2
# - no multicast service-reflect interface Ethernet2/1 map interface Ethernet4/2
# - no ipv6 mld ssm-translate ff28::/16 2001:db8:0:abcd::2
# - no ipv6 mld ssm-translate ff30::/16 2001:db8:0:abcd::1
# - no ipv6 mld ssm-translate ff32::/16 2001:db8:0:abcd::2
# - no ipv6 mld ssm-translate ff32::/16 2001:db8:0:abcd::3
#
# after:
# vrfs:
# - ip:
# name_server:
# address_list:
# - 192.168.255.1
# route:
# - destination: 192.168.255.1
# source: 0.0.0.0/0
# name: management
# - description: Test
# ip:
# auto_discard: true
# domain_list:
# - invalid.com
# - example.com
# domain_name: test.org
# multicast:
# rpf:
# - group_list_range: 238.1.0.0/24
# vrf_name: temp1
# - group_list_range: 239.1.0.0/24
# vrf_name: temp1
#
# After state:
# ------------
# router-ios#show running-config | section ^vrf
# vrf context management
# ip name-server 192.168.255.1
# ip route 0.0.0.0/0 192.168.255.1
# vrf context temp
# ip domain-name test.org
# ip domain-list example.com
# ip domain-list invalid.com
# description Test
# ip auto-discard
# ip multicast rpf select vrf temp1 group-list 238.1.0.0/24
# ip multicast rpf select vrf temp1 group-list 239.1.0.0/24
# ip multicast group-range prefix-list temp2
返回值
通用返回值记录在此处,以下是此模块独有的字段
键 |
描述 |
---|---|
模块执行后的最终配置。 返回: 当发生更改时 示例: |
|
模块执行之前的配置。 返回: 当 state 为 示例: |
|
推送到远程设备的一组命令。 返回: 当 state 为 示例: |
|
从远程设备收集的有关网络资源的事实,以结构化数据的形式呈现。 返回: 当 state 为 示例: |
|
running_config 选项中提供的设备原生配置,根据模块 argspec 解析为结构化数据。 返回: 当 state 为 示例: |
|
任务中提供的配置以设备原生格式呈现(离线)。 返回: 当 state 为 示例: |