Skip to content

Commit

Permalink
Fix(eos_cli_config_gen): Fix wrong indentation of config for redistri…
Browse files Browse the repository at this point in the history
…bute routes in `router_bgp.vrfs[].address_family_ipv6` (#4552)
  • Loading branch information
MaheshGSLAB authored Oct 4, 2024
1 parent a51a0d5 commit cb144b5
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -172,12 +172,12 @@ router bgp 65001
neighbor aa::2 rcf out VRF_AFIPV6_RCF_OUT()
network aa::/64
no bgp redistribute-internal
redistribute connected rcf VRF_AFIPV6_RCF_CONNECTED()
redistribute isis include leaked
redistribute ospfv3 match external
redistribute ospfv3 match internal include leaked
redistribute ospfv3 match nssa-external
redistribute static route-map VRF_AFIPV6_RM_STATIC
redistribute connected rcf VRF_AFIPV6_RCF_CONNECTED()
redistribute isis include leaked
redistribute ospfv3 match external
redistribute ospfv3 match internal include leaked
redistribute ospfv3 match nssa-external
redistribute static route-map VRF_AFIPV6_RM_STATIC
!
address-family ipv6 multicast
bgp missing-policy direction in action deny
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,12 +111,12 @@ router bgp 65001
neighbor aa::2 rcf out VRF_AFIPV6_RCF_OUT()
network aa::/64
no bgp redistribute-internal
redistribute connected rcf VRF_AFIPV6_RCF_CONNECTED()
redistribute isis include leaked
redistribute ospfv3 match external
redistribute ospfv3 match internal include leaked
redistribute ospfv3 match nssa-external
redistribute static route-map VRF_AFIPV6_RM_STATIC
redistribute connected rcf VRF_AFIPV6_RCF_CONNECTED()
redistribute isis include leaked
redistribute ospfv3 match external
redistribute ospfv3 match internal include leaked
redistribute ospfv3 match nssa-external
redistribute static route-map VRF_AFIPV6_RM_STATIC
!
address-family ipv6 multicast
bgp missing-policy direction in action deny
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2994,7 +2994,7 @@ router bgp {{ router_bgp.as }}
{% set redistribute_route_cli = redistribute_route_cli ~ " rcf " ~ redistribute_route.rcf %}
{% endif %}
{% endif %}
{{ redistribute_route_cli }}
{{ redistribute_route_cli }}
{% endif %}
{% endfor %}
{% endif %}
Expand Down

0 comments on commit cb144b5

Please sign in to comment.