ansible.builtin.nxos_vrf_af (v2.8.11) — module

Manages VRF AF.

| "added in version" 2.2 of ansible.builtin"

Authors: Gabriele Gerbino (@GGabriele)

preview | supported by network

Install Ansible via pip

Install with pip install ansible==2.8.11

Description

Manages VRF AF

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- nxos_vrf_af:
    vrf: ntc
    afi: ipv4
    route_target_both_auto_evpn: True
    state: present

Inputs

    
afi:
    choices:
    - ipv4
    - ipv6
    description:
    - Address-Family Identifier (AFI).
    required: true

vrf:
    description:
    - Name of the VRF.
    required: true

state:
    choices:
    - present
    - absent
    default: present
    description:
    - Determines whether the config should be present or not on the device.

route_target_both_auto_evpn:
    description:
    - Enable/Disable the EVPN route-target 'auto' setting for both import and export target
      communities.
    type: bool

Outputs

commands:
  description: commands sent to the device
  returned: always
  sample:
  - vrf context ntc
  - address-family ipv4 unicast
  type: list