2020-10-28 18:41:27 -05:00
|
|
|
!
|
|
|
|
! template: bgpd/templates/internal/peer-group.conf.j2
|
2021-10-18 20:44:24 -05:00
|
|
|
{% from "common/functions.conf.j2" import get_ipv4_loopback_address %}
|
|
|
|
{% from "common/functions.conf.j2" import get_ipv6_loopback_address %}
|
2020-10-28 18:41:27 -05:00
|
|
|
!
|
|
|
|
neighbor INTERNAL_PEER_V4 peer-group
|
|
|
|
neighbor INTERNAL_PEER_V6 peer-group
|
|
|
|
address-family ipv4
|
2021-10-18 20:44:24 -05:00
|
|
|
|
|
|
|
{% if CONFIG_DB__DEVICE_METADATA['localhost']['switch_type'] == 'chassis-packet' %}
|
|
|
|
neighbor INTERNAL_PEER_V4 update-source {{ get_ipv4_loopback_address(CONFIG_DB__LOOPBACK_INTERFACE, "Loopback4096") | ip }}
|
|
|
|
{% elif CONFIG_DB__DEVICE_METADATA['localhost']['sub_role'] == 'BackEnd' %}
|
2020-10-28 18:41:27 -05:00
|
|
|
neighbor INTERNAL_PEER_V4 route-reflector-client
|
|
|
|
{% endif %}
|
|
|
|
neighbor INTERNAL_PEER_V4 soft-reconfiguration inbound
|
2021-02-26 01:15:02 -06:00
|
|
|
neighbor INTERNAL_PEER_V4 allowas-in 1
|
2020-10-28 18:41:27 -05:00
|
|
|
neighbor INTERNAL_PEER_V4 route-map FROM_BGP_INTERNAL_PEER_V4 in
|
|
|
|
neighbor INTERNAL_PEER_V4 route-map TO_BGP_INTERNAL_PEER_V4 out
|
|
|
|
exit-address-family
|
|
|
|
address-family ipv6
|
2021-10-18 20:44:24 -05:00
|
|
|
{% if CONFIG_DB__DEVICE_METADATA['localhost']['switch_type'] == 'chassis-packet' %}
|
|
|
|
neighbor INTERNAL_PEER_V4 update-source {{ get_ipv6_loopback_address(CONFIG_DB__LOOPBACK_INTERFACE, "Loopback4096") | ip }}
|
|
|
|
{% elif CONFIG_DB__DEVICE_METADATA['localhost']['sub_role'] == 'BackEnd' %}
|
2020-10-28 18:41:27 -05:00
|
|
|
neighbor INTERNAL_PEER_V6 route-reflector-client
|
|
|
|
{% endif %}
|
|
|
|
neighbor INTERNAL_PEER_V6 soft-reconfiguration inbound
|
2021-02-26 01:15:02 -06:00
|
|
|
neighbor INTERNAL_PEER_V6 allowas-in 1
|
2020-10-28 18:41:27 -05:00
|
|
|
neighbor INTERNAL_PEER_V6 route-map FROM_BGP_INTERNAL_PEER_V6 in
|
|
|
|
neighbor INTERNAL_PEER_V6 route-map TO_BGP_INTERNAL_PEER_V6 out
|
|
|
|
exit-address-family
|
|
|
|
!
|
|
|
|
! end of template: bgpd/templates/internal/peer-group.conf.j2
|
|
|
|
!
|