cisco.nxos.nxos_vrf_global module – Resource module to configure VRF definitions.
Note
This module is part of the cisco.nxos collection (version 9.2.1).
You might already have this collection installed if you are using the ansible
package.
It is not included in ansible-core
.
To check whether it is installed, run ansible-galaxy collection list
.
To install it, use: ansible-galaxy collection install cisco.nxos
.
To use it in a playbook, specify: cisco.nxos.nxos_vrf_global
.
New in cisco.nxos 8.1.0
Synopsis
This module provides declarative management of VRF definitions on Cisco NXOS.
Aliases: vrf_global
Parameters
Parameter |
Comments |
---|---|
A list containing device configurations for VRF. |
|
List of VRF definitions. |
|
Description of the VRF. |
|
Configure IP features for the specified vrf. |
|
Auto 0.0.0.0/0 discard route. Choices:
|
|
Add list domain names. |
|
Specify default domain name. |
|
Enable ICMP error message. |
|
Configure source-address for applications. |
|
Source interface for ICMP error messages. Choices:
|
|
Source interface value for ICMP error messages. |
|
IGMP global configuration commands |
|
Translate IGMPv1/v2 reports to (S,G) route entries. |
|
Source address. |
|
Group address. |
|
Configure multicast routes. |
|
Multicast group address. |
|
Preference value. |
|
Source address. |
|
VRF name. |
|
Configure IP multicast global parameters. |
|
Group range prefix-list policy for multicast boundary. |
|
Configure ECMP multicast load splitting. |
|
Configure resilient RPF interface. Choices:
|
|
Configure multicast load splitting type. |
|
Configure hash based on source and group. Choices:
|
|
Configure NBM controlled RPF interface. Choices:
|
|
Disable multicast load splitting. Choices:
|
|
Configure hash based on source and group address. Choices:
|
|
Configure hash based on source and group address and next-hop. Choices:
|
|
Configure RPF check. |
|
Group range for RPF select. |
|
VRF for RPF lookup. |
|
Specify nameserver address. |
|
Configure multicast name server address. |
|
Display per-VRF information. |
|
source address for configuring name server. |
|
VRF name. |
|
Configure static routes. |
|
Next-hop address. |
|
Destination prefix. |
|
Route tag. |
|
Route preference. |
|
Route tag value. |
|
Configure track object. |
|
add vrf to the route. |
|
Configure IPv6 features for the specified vrf. |
|
Translate MLDv1/v2 reports to (S,G) route entries. |
|
Source address. |
|
Configure ICMP parameters with mld. Choices:
|
|
Group address. |
|
Configure IP multicast global parameters for ipv6. |
|
Group range prefix-list policy for multicast boundary. |
|
Configure ECMP multicast load splitting. |
|
Configure resilient RPF interface. Choices:
|
|
Configure multicast load splitting type. |
|
Disable multicast load splitting. Choices:
|
|
Configure hash based on source and group address. Choices:
|
|
Configure hash based on source and group address and next-hop. Choices:
|
|
Configure IP multicast options. |
|
Configure service reflect option. |
|
Map to interface. |
|
configure service interface. |
|
Name of the VRF.. |
|
Virtual Network Identifier. |
|
Configure Layer 3 VNI. Choices:
|
|
VNI number. |
|
This option is used only with state parsed. The value of this option should be the output received from the NX-OS device by executing the command show running-config | section ^vrf. The state parsed reads the configuration from |
|
The state the configuration should be left in The states rendered, gathered and parsed does not perform any change on the device. The state rendered will transform the configuration in The state gathered will fetch the running configuration from device and transform it into structured data in the format as per the resource module argspec and the value is returned in the gathered key within the result. The state parsed reads the configuration from Choices:
|
Notes
Note
Tested against NX-OS 9.3.6.
This module works with connection
network_cli
andhttpapi
. See https://docs.ansible.com/ansible/latest/network/user_guide/platform_nxos.html
Examples
# 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
Return Values
Common return values are documented here, the following are the fields unique to this module:
Key |
Description |
---|---|
The resulting configuration after module execution. Returned: when changed Sample: |
|
The configuration prior to the module execution. Returned: when state is Sample: |
|
The set of commands pushed to the remote device. Returned: when state is Sample: |
|
Facts about the network resource gathered from the remote device as structured data. Returned: when state is Sample: |
|
The device native config provided in running_config option parsed into structured data as per module argspec. Returned: when state is Sample: |
|
The provided configuration in the task rendered in device-native format (offline). Returned: when state is Sample: |