Skip to content

Commit

Permalink
Merge pull request #1746 from vaderisback77/vaderisback77/issue-1743/…
Browse files Browse the repository at this point in the history
…bug-fix/get-bgp-neighbors-7050cx3m

eos issue#1743 bug fix get_bgp_neighbors()
  • Loading branch information
bewing committed Sep 26, 2022
2 parents d297056 + 6168f93 commit d978c3d
Show file tree
Hide file tree
Showing 11 changed files with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion napalm/eos/eos.py
Original file line number Diff line number Diff line change
Expand Up @@ -664,7 +664,7 @@ def get_re_group(res, key, default=None):
except KeyError:
return default

NEIGHBOR_FILTER = "bgp neighbors vrf all | include remote AS | remote router ID |IPv[46] (Unicast|6PE):.*[0-9]+|^Local AS|Desc|BGP state" # noqa
NEIGHBOR_FILTER = "bgp neighbors vrf all | include IPv[46] (Unicast|6PE):.*[0-9]+ | grep -v ' IPv[46] Unicast:/.' | remote AS |^Local AS|Desc|BGP state |remote router ID" # noqa
output_summary_cmds = self._run_commands(
["show ipv6 bgp summary vrf all", "show ip bgp summary vrf all"],
encoding="json",
Expand Down

0 comments on commit d978c3d

Please sign in to comment.