Skip to content

Commit

Permalink
Bugfix - Update bgp_global.py
Browse files Browse the repository at this point in the history
Incorrect Command Generation for ebgp_multihop in arista.eos.eos_bgp_neighbor Module.

line 267 is:

command += " ebgp-multiphop"

should be:

command += " ebgp-multihop"
  • Loading branch information
devogs authored Oct 1, 2024
1 parent c3f545c commit b39882f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ def _tmplt_bgp_neighbor(config_data):
elif config_data["neighbor"].get("dont_capability_negotiate"):
command += " dont-capability-negotiate"
elif config_data["neighbor"].get("ebgp_multihop"):
command += " ebgp-multiphop"
command += " ebgp-multihop"
if config_data["neighbor"]["ebgp_multihop"].get("ttl"):
command += " {ttl}".format(**config_data["neighbor"]["ebgp_multihop"])
elif config_data["neighbor"].get("encryption_password"):
Expand Down

0 comments on commit b39882f

Please sign in to comment.