Merge "Add BGP router-id and resolve-via-default options"

This commit is contained in:
Zuul 2021-05-31 12:44:57 +00:00 committed by Gerrit Code Review
commit 076c76dac9
2 changed files with 6 additions and 0 deletions

View File

@ -35,3 +35,4 @@ tripleo_frr_log_level: informational
tripleo_frr_log_timestamp_precision: 3
tripleo_frr_watchfrr: true
tripleo_frr_zebra: false
tripleo_frr_zebra_nht_resolve_via_default: true

View File

@ -7,6 +7,7 @@ service integrated-vtysh-config
line vty
router bgp {{ tripleo_frr_bgp_asn }}
bgp router-id {{ hostvars[inventory_hostname][tripleo_frr_bgp_ipv4_src_network ~ '_ip'] }}
bgp log-neighbor-changes
bgp graceful-shutdown
@ -65,3 +66,7 @@ route-map rm-only-default permit 11
ipv6 protocol bgp route-map rm-only-default
{% endif %}
{% if tripleo_frr_zebra_nht_resolve_via_default %}
ip nht resolve-via-default
{% endif %}