Skip to content

Latest commit

 

History

History
300 lines (267 loc) · 10.7 KB

cisco.nxos.nxos_vrf_af_module.rst

File metadata and controls

300 lines (267 loc) · 10.7 KB

cisco.nxos.nxos_vrf_af

Manages VRF AF.

Version added: 1.0.0

  • Manages VRF AF
Parameter Choices/Defaults Comments
afi
string / required
    Choices:
  • ipv4
  • ipv6
Address-Family Identifier (AFI).
route_target_both_auto_evpn
boolean
    Choices:
  • no
  • yes
Enable/Disable the EVPN route-target 'auto' setting for both import and export target communities.
route_targets
list / elements=dictionary
Specify the route-targets which should be imported and/or exported under the AF. This argument accepts a list of dicts that specify the route-target, the direction (import|export|both) and state of each route-target. Default direction is direction=both. See examples.
direction
string
    Choices:
  • import
  • export
  • both ←
Indicates the direction of the route-target (import|export|both)
rt
string / required
Defines the route-target itself
state
string
    Choices:
  • present ←
  • absent
Determines whether the route-target with the given direction should be present or not on the device.
state
string
    Choices:
  • present ←
  • absent
Determines whether the config should be present or not on the device.
vrf
string / required
Name of the VRF.

Note

- cisco.nxos.nxos_vrf_af:
    vrf: ntc
    afi: ipv4
    route_target_both_auto_evpn: true
    state: present
- cisco.nxos.nxos_vrf_af:
    vrf: ntc
    afi: ipv4
    route_targets:
      - rt: '65000:1000'
        direction: import
      - rt: '65001:1000'
        direction: import
- cisco.nxos.nxos_vrf_af:
    vrf: ntc
    afi: ipv4
    route_targets:
      - rt: '65000:1000'
        direction: import
      - rt: '65001:1000'
        state: absent
- cisco.nxos.nxos_vrf_af:
    vrf: ntc
    afi: ipv4
    route_targets:
      - rt: '65000:1000'
        direction: export
      - rt: '65001:1000'
        direction: export
- cisco.nxos.nxos_vrf_af:
    vrf: ntc
    afi: ipv4
    route_targets:
      - rt: '65000:1000'
        direction: export
        state: absent
- cisco.nxos.nxos_vrf_af:
    vrf: ntc
    afi: ipv4
    route_targets:
      - rt: '65000:1000'
        direction: both
        state: present
      - rt: '65001:1000'
        direction: import
        state: present
      - rt: '65002:1000'
        direction: both
        state: absent

Common return values are documented here, the following are the fields unique to this module:

Key Returned Description
commands
list
always
commands sent to the device

Sample:
['vrf context ntc', 'address-family ipv4 unicast']


Authors

  • Gabriele Gerbino (@GGabriele)