fix nxos_bgp_neighbor issues (#36318)

pull/36423/head
saichint 6 years ago committed by Trishna Guha
parent cac6c19a63
commit 80d19e6af3

@ -107,7 +107,8 @@ options:
description: description:
- Specify Maximum number of peers for this neighbor prefix - Specify Maximum number of peers for this neighbor prefix
Valid values are between 1 and 1000, or 'default', which does Valid values are between 1 and 1000, or 'default', which does
not impose the limit. not impose the limit. Note that this parameter is accepted
only on neighbors with address/prefix.
required: false required: false
default: null default: null
pwd: pwd:
@ -118,9 +119,9 @@ options:
pwd_type: pwd_type:
description: description:
- Specify the encryption type the password will use. Valid values - Specify the encryption type the password will use. Valid values
are '3des' or 'cisco_type_7' encryption. are '3des' or 'cisco_type_7' encryption or keyword 'default'.
required: false required: false
choices: ['3des', 'cisco_type_7'] choices: ['3des', 'cisco_type_7', 'default']
default: null default: null
remote_as: remote_as:
description: description:
@ -170,8 +171,6 @@ options:
Valid values are 'true', 'false', and 'default', which defaults Valid values are 'true', 'false', and 'default', which defaults
to 'false'. This property can only be configured when the to 'false'. This property can only be configured when the
neighbor is in 'ip' address format without prefix length. neighbor is in 'ip' address format without prefix length.
This property and the transport_passive_mode property are
mutually exclusive.
required: false required: false
choices: ['true','false'] choices: ['true','false']
default: null default: null
@ -388,6 +387,8 @@ def state_present(module, existing, proposed, candidate):
command = '{0} {1}'.format(key, value) command = '{0} {1}'.format(key, value)
commands.append(command) commands.append(command)
elif key == 'timers': elif key == 'timers':
if (proposed['timers_keepalive'] != PARAM_TO_DEFAULT_KEYMAP.get('timers_keepalive') or
proposed['timers_holdtime'] != PARAM_TO_DEFAULT_KEYMAP.get('timers_holdtime')):
command = 'timers {0} {1}'.format( command = 'timers {0} {1}'.format(
proposed['timers_keepalive'], proposed['timers_keepalive'],
proposed['timers_holdtime']) proposed['timers_holdtime'])
@ -437,7 +438,7 @@ def main():
low_memory_exempt=dict(required=False, type='bool'), low_memory_exempt=dict(required=False, type='bool'),
maximum_peers=dict(required=False, type='str'), maximum_peers=dict(required=False, type='str'),
pwd=dict(required=False, type='str'), pwd=dict(required=False, type='str'),
pwd_type=dict(required=False, type='str', choices=['cleartext', '3des', 'cisco_type_7', 'default']), pwd_type=dict(required=False, type='str', choices=['3des', 'cisco_type_7', 'default']),
remote_as=dict(required=False, type='str'), remote_as=dict(required=False, type='str'),
remove_private_as=dict(required=False, type='str', choices=['enable', 'disable', 'all', 'replace-as']), remove_private_as=dict(required=False, type='str', choices=['enable', 'disable', 'all', 'replace-as']),
shutdown=dict(required=False, type='bool'), shutdown=dict(required=False, type='bool'),
@ -452,7 +453,7 @@ def main():
module = AnsibleModule( module = AnsibleModule(
argument_spec=argument_spec, argument_spec=argument_spec,
required_together=[['timers_holdtime', 'timers_keepalive']], required_together=[['timers_holdtime', 'timers_keepalive'], ['pwd', 'pwd_type']],
supports_check_mode=True, supports_check_mode=True,
) )

@ -1,2 +1,5 @@
--- ---
testcase: "*" testcase: "*"
vrfs:
- default
- myvrf

@ -5,10 +5,14 @@
- set_fact: intname="{{ nxos_int1 }}" - set_fact: intname="{{ nxos_int1 }}"
- set_fact: log_neighbor_changes="enable" - set_fact: log_neighbor_changese="enable"
when: not titanium when: (imagetag and (imagetag is version_compare('D1', 'ne')) and (imagetag is version_compare('N1', 'ne')))
- set_fact: log_neighbor_changesd="disable"
when: (imagetag and (imagetag is version_compare('D1', 'ne')) and (imagetag is version_compare('N1', 'ne')))
- set_fact: remove_private_as="all" - set_fact: remove_private_asa="all"
when: not titanium
- set_fact: remove_private_asr="replace-as"
when: not titanium when: not titanium
- name: "Enable feature BGP" - name: "Enable feature BGP"
@ -19,23 +23,49 @@
ignore_errors: yes ignore_errors: yes
- name: "Setup" - name: "Setup"
nxos_bgp: &remove nxos_bgp_neighbor: &removenp
asn: 65535 asn: 65535
neighbor: 3.3.3.3
vrf: "{{ item }}"
state: absent state: absent
provider: "{{ connection }}" provider: "{{ connection }}"
with_items: "{{ vrfs }}"
ignore_errors: yes
- name: "Setup"
nxos_bgp_neighbor: &remove
asn: 65535
neighbor: 3.3.3.3/32
vrf: "{{ item }}"
state: absent
provider: "{{ connection }}"
with_items: "{{ vrfs }}"
ignore_errors: yes ignore_errors: yes
- block: - block:
- name: "Configure BGP neighbor defaults" - name: "Configure BGP neighbor1"
nxos_bgp_neighbor: &configure_default nxos_bgp_neighbor: &configure1
asn: 65535 asn: 65535
neighbor: 3.3.3.3 neighbor: 3.3.3.3/32
local_as: 20 vrf: "{{ item }}"
remote_as: 30 connected_check: true
capability_negotiation: true
dynamic_capability: true
ebgp_multihop: 2
low_memory_exempt: true
maximum_peers: 10
suppress_4_byte_as: true
timers_keepalive: 90
timers_holdtime: 270
log_neighbor_changes: "{{log_neighbor_changese|default(omit)}}"
local_as: 22.33
remote_as: 33.22
description: "just a description" description: "just a description"
update_source: "{{ intname.capitalize() }}" update_source: "{{ intname.capitalize() }}"
shutdown: true
state: present state: present
provider: "{{ connection }}" provider: "{{ connection }}"
with_items: "{{ vrfs }}"
register: result register: result
- assert: &true - assert: &true
@ -43,57 +73,107 @@
- "result.changed == true" - "result.changed == true"
- name: "Check Idempotence" - name: "Check Idempotence"
nxos_bgp_neighbor: *configure_default nxos_bgp_neighbor: *configure1
with_items: "{{ vrfs }}"
register: result register: result
- assert: &false - assert: &false
that: that:
- "result.changed == false" - "result.changed == false"
- name: "Configure BGP neighbor2"
nxos_bgp_neighbor: &configure2
asn: 65535
neighbor: 3.3.3.3/32
vrf: "{{ item }}"
connected_check: False
capability_negotiation: False
dynamic_capability: False
ebgp_multihop: default
low_memory_exempt: False
maximum_peers: default
suppress_4_byte_as: False
timers_keepalive: default
timers_holdtime: default
log_neighbor_changes: "{{log_neighbor_changesd|default(omit)}}"
local_as: default
remote_as: default
description: default
update_source: default
shutdown: False
state: present
provider: "{{ connection }}"
with_items: "{{ vrfs }}"
register: result
- assert: *true
- name: "Check Idempotence"
nxos_bgp_neighbor: *configure2
with_items: "{{ vrfs }}"
register: result
- assert: *false
- name: "Remove BGP" - name: "Remove BGP"
nxos_bgp: *remove nxos_bgp_neighbor: *remove
with_items: "{{ vrfs }}"
register: result register: result
- assert: *true - assert: *true
- name: "Check Idempotence" - name: "Check Idempotence"
nxos_bgp: *remove nxos_bgp_neighbor: *remove
with_items: "{{ vrfs }}"
register: result register: result
- assert: *false - assert: *false
- name: "Configure BGP neighbor non-defaults" - name: "Configure BGP neighbor3"
nxos_bgp_neighbor: &configure_non_default nxos_bgp_neighbor: &configure3
asn: 65535 asn: 65535
neighbor: 3.3.3.3 neighbor: 3.3.3.3/32
vrf: "{{ item }}"
description: "tested by ansible" description: "tested by ansible"
connected_check: true remove_private_as: "{{remove_private_asa|default(omit)}}"
capability_negotiation: true state: present
dynamic_capability: true provider: "{{ connection }}"
ebgp_multihop: 2 with_items: "{{ vrfs }}"
log_neighbor_changes: "{{log_neighbor_changes|default(omit)}}" register: result
low_memory_exempt: true
remote_as: 12.1 - assert: *true
remove_private_as: "{{remove_private_as|default(omit)}}"
shutdown: true - name: "Check Idempotence"
suppress_4_byte_as: true nxos_bgp_neighbor: *configure3
timers_keepalive: 90 with_items: "{{ vrfs }}"
timers_holdtime: 270 register: result
update_source: loopback151
- assert: *false
- name: "Configure BGP neighbor4"
nxos_bgp_neighbor: &configure4
asn: 65535
neighbor: 3.3.3.3/32
vrf: "{{ item }}"
description: "tested by ansible"
remove_private_as: "{{remove_private_asr|default(omit)}}"
state: present state: present
provider: "{{ connection }}" provider: "{{ connection }}"
with_items: "{{ vrfs }}"
register: result register: result
- assert: *true - assert: *true
- name: "Check Idempotence" - name: "Check Idempotence"
nxos_bgp_neighbor: *configure_non_default nxos_bgp_neighbor: *configure4
with_items: "{{ vrfs }}"
register: result register: result
- assert: *false - assert: *false
- name: "Remove BGP" - name: "Remove BGP"
nxos_bgp: *remove nxos_bgp_neighbor: *remove
with_items: "{{ vrfs }}"
register: result register: result
- assert: *true - assert: *true
@ -101,23 +181,27 @@
- name: "Configure BGP neighbor 3des password" - name: "Configure BGP neighbor 3des password"
nxos_bgp_neighbor: &configure_3des_password nxos_bgp_neighbor: &configure_3des_password
asn: 65535 asn: 65535
neighbor: 3.3.3.3 neighbor: 3.3.3.3/32
vrf: "{{ item }}"
remote_as: 30 remote_as: 30
pwd: '386c0565965f89de' pwd: '386c0565965f89de'
pwd_type: 3des pwd_type: 3des
provider: "{{ connection }}" provider: "{{ connection }}"
with_items: "{{ vrfs }}"
register: result register: result
- assert: *true - assert: *true
- name: "Check Idempotence" - name: "Check Idempotence"
nxos_bgp_neighbor: *configure_3des_password nxos_bgp_neighbor: *configure_3des_password
with_items: "{{ vrfs }}"
register: result register: result
- assert: *false - assert: *false
- name: "Remove BGP" - name: "Remove BGP"
nxos_bgp: *remove nxos_bgp_neighbor: *remove
with_items: "{{ vrfs }}"
register: result register: result
- assert: *true - assert: *true
@ -125,23 +209,48 @@
- name: "Configure BGP neighbor type 7 password" - name: "Configure BGP neighbor type 7 password"
nxos_bgp_neighbor: &configure_type7_password nxos_bgp_neighbor: &configure_type7_password
asn: 65535 asn: 65535
neighbor: 3.3.3.3 neighbor: 3.3.3.3/32
vrf: "{{ item }}"
remote_as: 30 remote_as: 30
pwd: '386c0565965f89de' pwd: '386c0565965f89de'
pwd_type: cisco_type_7 pwd_type: cisco_type_7
provider: "{{ connection }}" provider: "{{ connection }}"
with_items: "{{ vrfs }}"
register: result register: result
- assert: *true - assert: *true
- name: "Check Idempotence" - name: "Check Idempotence"
nxos_bgp_neighbor: *configure_type7_password nxos_bgp_neighbor: *configure_type7_password
with_items: "{{ vrfs }}"
register: result
- assert: *false
- name: "Remove BGP neighbor password"
nxos_bgp_neighbor: &remove_password
asn: 65535
neighbor: 3.3.3.3/32
vrf: "{{ item }}"
remote_as: 30
pwd: default
pwd_type: default
provider: "{{ connection }}"
with_items: "{{ vrfs }}"
register: result
- assert: *true
- name: "Check Idempotence"
nxos_bgp_neighbor: *remove_password
with_items: "{{ vrfs }}"
register: result register: result
- assert: *false - assert: *false
- name: "Remove BGP" - name: "Remove BGP"
nxos_bgp: *remove nxos_bgp_neighbor: *remove
with_items: "{{ vrfs }}"
register: result register: result
- assert: *true - assert: *true
@ -150,49 +259,60 @@
nxos_bgp_neighbor: &configure_transport_passive nxos_bgp_neighbor: &configure_transport_passive
asn: 65535 asn: 65535
neighbor: 3.3.3.3 neighbor: 3.3.3.3
vrf: "{{ item }}"
remote_as: 30 remote_as: 30
transport_passive_only: true transport_passive_only: true
provider: "{{ connection }}" provider: "{{ connection }}"
with_items: "{{ vrfs }}"
register: result register: result
- assert: *true - assert: *true
- name: "Check Idempotence" - name: "Check Idempotence"
nxos_bgp_neighbor: *configure_transport_passive nxos_bgp_neighbor: *configure_transport_passive
with_items: "{{ vrfs }}"
register: result register: result
- assert: *false - assert: *false
- name: "Remove BGP"
nxos_bgp: *remove
register: result
- assert: *true
- name: "Configure BGP neighbor transport type default" - name: "Configure BGP neighbor transport type default"
nxos_bgp_neighbor: &configure_transport_default nxos_bgp_neighbor: &configure_transport_default
asn: 65535 asn: 65535
neighbor: 3.3.3.3 neighbor: 3.3.3.3
vrf: "{{ item }}"
remote_as: 30 remote_as: 30
transport_passive_only: false transport_passive_only: false
provider: "{{ connection }}" provider: "{{ connection }}"
with_items: "{{ vrfs }}"
register: result register: result
- assert: *true - assert: *true
- name: "Check Idempotence" - name: "Check Idempotence"
nxos_bgp_neighbor: *configure_transport_default nxos_bgp_neighbor: *configure_transport_default
with_items: "{{ vrfs }}"
register: result register: result
- assert: *false - assert: *false
- name: "Remove BGP" - name: "Remove BGP"
nxos_bgp: *remove nxos_bgp_neighbor: *removenp
with_items: "{{ vrfs }}"
register: result register: result
- assert: *true - assert: *true
- name: "Check Idempotence"
nxos_bgp_neighbor: *removenp
with_items: "{{ vrfs }}"
register: result
- assert: *false
rescue: rescue:
- name: "Cleanup BGP" - name: "Cleanup BGP"
nxos_bgp: *remove nxos_bgp_neighbor: *remove
with_items: "{{ vrfs }}"
ignore_errors: yes ignore_errors: yes
always: always:

Loading…
Cancel
Save