d30fbf1d72
- Extending SONiC building infrastructure to provide users with greater flexibility, by allowing them to elect a routing-stack different than the default one (quagga). The desired routing-stack will be defined in rules/config file. - As part of these changes I'm adding support for Free-Range-Routing (FRR) stack. Quagga will continue to be the default routing-stack. Signed-off-by: Rodny Molina <rodny@linkedin.com>
65 lines
1.8 KiB
Django/Jinja
65 lines
1.8 KiB
Django/Jinja
!
|
|
{% block banner %}
|
|
! =========== Managed by sonic-cfggen DO NOT edit manually! ====================
|
|
! generated by templates/quagga/bgpd.conf.j2 using minigraph_facts.py
|
|
! file: bgpd.conf
|
|
!
|
|
{% endblock banner %}
|
|
!
|
|
{% block system_init %}
|
|
hostname {{ inventory_hostname }}
|
|
password zebra
|
|
log syslog informational
|
|
log facility local4
|
|
! enable password {# {{ en_passwd }} TODO: param needed #}
|
|
{% endblock system_init %}
|
|
!
|
|
{% block bgp_init %}
|
|
!
|
|
! bgp multiple-instance
|
|
!
|
|
router bgp {{ minigraph_bgp_asn }}
|
|
bgp log-neighbor-changes
|
|
bgp bestpath as-path multipath-relax
|
|
{# TODO: use lo[0] for backward compatibility, will revisit the case with multiple lo interfaces #}
|
|
bgp router-id {{ minigraph_lo_interfaces[0]['addr'] }}
|
|
{# advertise loopback #}
|
|
{% for lo in minigraph_lo_interfaces %}
|
|
{% if lo['addr'] | ipv4 %}
|
|
network {{ lo['addr'] }}/32
|
|
{% elif lo['addr'] | ipv6 %}
|
|
address-family ipv6
|
|
network {{ lo['addr'] }}/128
|
|
exit-address-family
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% endblock bgp_init %}
|
|
{% block vlan_advertisement %}
|
|
{% for vlan_interface in minigraph_vlan_interfaces %}
|
|
network {{ vlan_interface['subnet'] }}
|
|
{% endfor %}
|
|
{% endblock vlan_advertisement %}
|
|
{% block bgp_sessions %}
|
|
{% for bgp_session in minigraph_bgp %}
|
|
{% if bgp_session['asn'] != 0 %}
|
|
neighbor {{ bgp_session['addr'] }} remote-as {{ bgp_session['asn'] }}
|
|
neighbor {{ bgp_session['addr'] }} description {{ bgp_session['name'] }}
|
|
{% if minigraph_devices[inventory_hostname]['type'] == 'ToRRouter' %}
|
|
neighbor {{ bgp_session['addr'] }} allowas-in 1
|
|
{% endif %}
|
|
{% if bgp_session['addr'] | ipv6 %}
|
|
address-family ipv6
|
|
neighbor {{ bgp_session['addr'] }} activate
|
|
maximum-paths 64
|
|
exit-address-family
|
|
{% endif %}
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% endblock bgp_sessions %}
|
|
!
|
|
maximum-paths 64
|
|
!
|
|
route-map ISOLATE permit 10
|
|
set as-path prepend {{ minigraph_bgp_asn }}
|
|
!
|