|
2 | 2 | ! template: bgpd/templates/general/peer-group.conf.j2
|
3 | 3 | !
|
4 | 4 | neighbor PEER_V4 peer-group
|
5 |
| - neighbor PEER_V4_INT peer-group |
6 | 5 | neighbor PEER_V6 peer-group
|
7 |
| - neighbor PEER_V6_INT peer-group |
8 | 6 | address-family ipv4
|
9 | 7 | {% if CONFIG_DB__DEVICE_METADATA['localhost']['type'] == 'ToRRouter' %}
|
10 | 8 | neighbor PEER_V4 allowas-in 1
|
11 |
| - neighbor PEER_V4_INT allowas-in 1 |
12 | 9 | {% elif CONFIG_DB__DEVICE_METADATA['localhost']['type'] == 'LeafRouter' %}
|
13 | 10 | {% if CONFIG_DB__BGP_BBR['status'] == 'enabled' %}
|
14 | 11 | neighbor PEER_V4 allowas-in 1
|
15 | 12 | {% endif %}
|
16 |
| -{% endif %} |
17 |
| -{% if CONFIG_DB__DEVICE_METADATA['localhost']['sub_role'] == 'BackEnd' %} |
18 |
| - neighbor PEER_V4_INT route-reflector-client |
19 | 13 | {% endif %}
|
20 | 14 | neighbor PEER_V4 soft-reconfiguration inbound
|
21 | 15 | neighbor PEER_V4 route-map FROM_BGP_PEER_V4 in
|
22 | 16 | neighbor PEER_V4 route-map TO_BGP_PEER_V4 out
|
23 |
| - neighbor PEER_V4_INT soft-reconfiguration inbound |
24 |
| - neighbor PEER_V4_INT route-map FROM_BGP_PEER_V4 in |
25 |
| - neighbor PEER_V4_INT route-map TO_BGP_PEER_V4 out |
26 | 17 | exit-address-family
|
27 | 18 | address-family ipv6
|
28 | 19 | {% if CONFIG_DB__DEVICE_METADATA['localhost']['type'] == 'ToRRouter' %}
|
29 | 20 | neighbor PEER_V6 allowas-in 1
|
30 |
| - neighbor PEER_V6_INT allowas-in 1 |
31 | 21 | {% elif CONFIG_DB__DEVICE_METADATA['localhost']['type'] == 'LeafRouter' %}
|
32 | 22 | {% if CONFIG_DB__BGP_BBR['status'] == 'enabled' %}
|
33 | 23 | neighbor PEER_V6 allowas-in 1
|
34 | 24 | {% endif %}
|
35 |
| -{% endif %} |
36 |
| -{% if CONFIG_DB__DEVICE_METADATA['localhost']['sub_role'] == 'BackEnd' %} |
37 |
| - neighbor PEER_V6_INT route-reflector-client |
38 | 25 | {% endif %}
|
39 | 26 | neighbor PEER_V6 soft-reconfiguration inbound
|
40 | 27 | neighbor PEER_V6 route-map FROM_BGP_PEER_V6 in
|
41 | 28 | neighbor PEER_V6 route-map TO_BGP_PEER_V6 out
|
42 |
| - neighbor PEER_V6_INT soft-reconfiguration inbound |
43 |
| - neighbor PEER_V6_INT route-map FROM_BGP_PEER_V6 in |
44 |
| - neighbor PEER_V6_INT route-map TO_BGP_PEER_V6 out |
45 | 29 | exit-address-family
|
46 | 30 | !
|
47 | 31 | ! end of template: bgpd/templates/general/peer-group.conf.j2
|
|
0 commit comments