Skip to content

Commit

Permalink
nxos_facts: Do not gather redundant neighbor data (#49024)
Browse files Browse the repository at this point in the history
* nxos_facts: Remove dead code

The commit e51964e made this redundant as the structured case is handled
elsewhere.

* nxos_facts: Do not gather neighbors redundantly

LLDP reports the neighbor using the abbreviated interface name, whereas
CDP reports the neighbor using the full interface name. Normalize the
local interface name in the LLDP case, so there is no redundant
information. Due to the order of the gathering, CDP neighbors are saved
in case both LLDP and CDP data is available on a certain interface.
  • Loading branch information
paneu authored and trishnaguha committed Nov 23, 2018
1 parent 729d094 commit 2019f0e
Showing 1 changed file with 16 additions and 27 deletions.
43 changes: 16 additions & 27 deletions lib/ansible/modules/network/nxos/nxos_facts.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,9 @@
returned: when interfaces is configured
type: dict
ansible_net_neighbors:
description: The list of LLDP and CDP neighbors from the device
description:
- The list of LLDP and CDP neighbors from the device. If both,
CDP and LLDP neighbor data is present on one port, CDP is preferred.
returned: when interfaces is configured
type: dict
Expand Down Expand Up @@ -173,6 +175,7 @@
from ansible.module_utils.network.nxos.nxos import run_commands, get_config
from ansible.module_utils.network.nxos.nxos import get_capabilities, get_interface_type
from ansible.module_utils.network.nxos.nxos import nxos_argument_spec, check_args
from ansible.module_utils.network.nxos.nxos import normalize_interface
from ansible.module_utils.basic import AnsibleModule
from ansible.module_utils.connection import ConnectionError
from ansible.module_utils.six import string_types, iteritems
Expand Down Expand Up @@ -488,7 +491,7 @@ def populate_structured_neighbors_lldp(self, data):
data = [data]

for item in data:
local_intf = item['l_port_id']
local_intf = normalize_interface(item['l_port_id'])
objects[local_intf] = list()
nbor = dict()
nbor['port'] = item['port_id']
Expand Down Expand Up @@ -632,34 +635,20 @@ def parse_ipv4_address(self, value, intf_type='ethernet'):

def populate_neighbors(self, data):
objects = dict()
if isinstance(data, str):
# if there are no neighbors the show command returns
# ERROR: No neighbour information
if data.startswith('ERROR'):
return dict()
# if there are no neighbors the show command returns
# ERROR: No neighbour information
if data.startswith('ERROR'):
return dict()

regex = re.compile(r'(\S+)\s+(\S+)\s+\d+\s+\w+\s+(\S+)')
regex = re.compile(r'(\S+)\s+(\S+)\s+\d+\s+\w+\s+(\S+)')

for item in data.split('\n')[4:-1]:
match = regex.match(item)
if match:
nbor = {'host': match.group(1), 'port': match.group(3)}
if match.group(2) not in objects:
objects[match.group(2)] = []
objects[match.group(2)].append(nbor)

elif isinstance(data, dict):
data = data['TABLE_nbor']['ROW_nbor']
if isinstance(data, dict):
data = [data]

for item in data:
local_intf = item['l_port_id']
for item in data.split('\n')[4:-1]:
match = regex.match(item)
if match:
nbor = {'host': match.group(1), 'port': match.group(3)}
local_intf = normalize_interface(match.group(2))
if local_intf not in objects:
objects[local_intf] = list()
nbor = dict()
nbor['port'] = item['port_id']
nbor['host'] = item['chassis_id']
objects[local_intf] = []
objects[local_intf].append(nbor)

return objects
Expand Down

0 comments on commit 2019f0e

Please sign in to comment.