cisco.nxos.nxos_bgp_neighbor_af module – (deprecated, removed after 2023-02-24) Manages BGP address-family’s neighbors configuration.
Note
This module is part of the cisco.nxos collection (version 4.4.0).
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_bgp_neighbor_af
.
New in cisco.nxos 1.0.0
DEPRECATED
- Removed in:
major release after 2023-02-24
- Why:
Updated module released with more functionality.
- Alternative:
nxos_bgp_neighbor_address_family
Synopsis
Manages BGP address-family’s neighbors configurations on NX-OS switches.
Note
This module has a corresponding action plugin.
Aliases: bgp_neighbor_af
Parameters
Parameter |
Comments |
---|---|
Valid values are enable for basic command enablement; disable for disabling the command at the neighbor af level (it adds the disable keyword to the basic command); and inherit to remove the command at this level (the command value is inherited from a higher BGP layer). Choices:
|
|
Valid values are enable for basic command enablement; disable for disabling the command at the neighbor af level (it adds the disable keyword to the basic command); and inherit to remove the command at this level (the command value is inherited from a higher BGP layer). Choices:
|
|
Conditional route advertisement. This property requires two route maps, an advertise-map and an exist-map. Valid values are an array specifying both the advertise-map name and the exist-map name, or simply ‘default’ e.g. [‘my_advertise_map’, ‘my_exist_map’]. This command is mutually exclusive with the advertise_map_non_exist property. |
|
Conditional route advertisement. This property requires two route maps, an advertise-map and an exist-map. Valid values are an array specifying both the advertise-map name and the non-exist-map name, or simply ‘default’ e.g. [‘my_advertise_map’, ‘my_non_exist_map’]. This command is mutually exclusive with the advertise_map_exist property. |
|
Address Family Identifier. Choices:
|
|
Activate allowas-in property Choices:
|
|
Max-occurrences value for allowas_in. Valid values are an integer value or ‘default’. This is mutually exclusive with allowas_in. |
|
Activate the as-override feature. Choices:
|
|
BGP autonomous system number. Valid values are String, Integer in ASPLAIN or ASDOT notation. |
|
Activate the default-originate feature. Choices:
|
|
Route-map for the default_originate property. Valid values are a string defining a route-map name, or ‘default’. This is mutually exclusive with default_originate. |
|
Disable checking of peer AS-number while advertising Choices:
|
|
Valid values are a string defining a filter-list name, or ‘default’. |
|
Valid values are a string defining a filter-list name, or ‘default’. |
|
Optional restart interval. Valid values are an integer. Requires max_prefix_limit. May not be combined with max_prefix_warning. |
|
maximum-prefix limit value. Valid values are an integer value or ‘default’. |
|
Optional threshold percentage at which to generate a warning. Valid values are an integer value. Requires max_prefix_limit. |
|
Optional warning-only keyword. Requires max_prefix_limit. May not be combined with max_prefix_interval. Choices:
|
|
Neighbor Identifier. Valid values are string. Neighbors may use IPv4 or IPv6 notation, with or without prefix length. |
|
Activate the next-hop-self feature. Choices:
|
|
Activate the next-hop-third-party feature. Choices:
|
|
Valid values are a string defining a prefix-list name, or ‘default’. |
|
Valid values are a string defining a prefix-list name, or ‘default’. |
|
Auto generate route targets for EBGP neighbor. Choices:
|
|
Valid values are a string defining a route-map name, or ‘default’. |
|
Valid values are a string defining a route-map name, or ‘default’. |
|
Router reflector client. Choices:
|
|
Sub Address Family Identifier. Choices:
|
|
send-community attribute. Choices:
|
|
Valid values are ‘enable’ for basic command enablement; ‘always’ to add the always keyword to the basic command; and ‘inherit’ to remove the command at this level (the command value is inherited from a higher BGP layer). Choices:
|
|
Site-of-origin. Valid values are a string defining a VPN extcommunity or ‘default’. |
|
Determines whether the config should be present or not on the device. Choices:
|
|
suppress-inactive feature. Choices:
|
|
unsuppress-map. Valid values are a string defining a route-map name or ‘default’. |
|
Name of the VRF. The name ‘default’ is a valid VRF representing the global bgp. Default: |
|
Weight value. Valid values are an integer value or ‘default’. |
Notes
Note
Tested against NXOSv 7.3.(0)D1(1) on VIRL
Unsupported for Cisco MDS
state=absent
removes the whole BGP address-family’s neighbor configuration.Default, when supported, removes properties
In order to default maximum-prefix configuration, only
max_prefix_limit=default
is needed.For information on using CLI and NX-API see the :ref:`NXOS Platform Options guide <nxos_platform_options>`
For more information on using Ansible to manage network devices see the :ref:`Ansible Network Guide <network_guide>`
For more information on using Ansible to manage Cisco devices see the `Cisco integration page <https://www.ansible.com/integrations/networks/cisco>`_.
Examples
- name: configure RR client
cisco.nxos.nxos_bgp_neighbor_af:
asn: 65535
neighbor: 192.0.2.3
afi: ipv4
safi: unicast
route_reflector_client: true
state: present
rewrite_evpn_rt_asn: true
Return Values
Common return values are documented here, the following are the fields unique to this module:
Key |
Description |
---|---|
commands sent to the device Returned: always Sample: |
Status
This module will be removed in a major release after 2023-02-24. [deprecated]
For more information see DEPRECATED.