2db87669c2
- change the references to 'type' field to 'sub_role' - change the references to 'InternalFrontend' and 'InternalBackend' to 'FrontEnd' and 'BackEnd' respectively - add a statement to reflect route-reflector for backend asics - add a change to set "next-hop-self force" configuration for internal BGP session in multi asic platform. Signed-off-by: Arvindsrinivasan Lakshmi Narasimhan <arlakshm@microsoft.com>
31 lines
685 B
Django/Jinja
31 lines
685 B
Django/Jinja
!
|
|
! template: bgpd/templates/general/policies.conf.j2
|
|
!
|
|
!
|
|
!
|
|
route-map FROM_BGP_PEER_V4 permit 100
|
|
!
|
|
route-map TO_BGP_PEER_V4 permit 100
|
|
!
|
|
!
|
|
route-map FROM_BGP_PEER_V6 permit 1
|
|
set ipv6 next-hop prefer-global
|
|
!
|
|
route-map FROM_BGP_PEER_V6 permit 100
|
|
!
|
|
route-map TO_BGP_PEER_V6 permit 100
|
|
!
|
|
{% if CONFIG_DB__DEVICE_METADATA['localhost']['sub_role'] == 'BackEnd' %}
|
|
route-map FROM_BGP_PEER_V4_INT permit 2
|
|
set originator-id {{ loopback0_ipv4 | ip }}
|
|
!
|
|
route-map FROM_BGP_PEER_V6_INT permit 1
|
|
set ipv6 next-hop prefer-global
|
|
!
|
|
route-map FROM_BGP_PEER_V6_INT permit 2
|
|
set originator-id {{ loopback0_ipv4 | ip }}
|
|
{% endif %}
|
|
!
|
|
! end of template: bgpd/templates/general/policies.conf.j2
|
|
!
|