4e60f0d563
Why I did it To support BGPMon sessions from each T2 linecard ASIC Work item tracking Microsoft ADO (number only): 17873174 How I did it Added change in BGPMon configuration to use Loopback4096 as source interface, since this has a unique IP per ASIC. How to verify it Tested by manually setting up BGPMon session on T2 LC and verified that Loopback4096 could be used as source
29 lines
552 B
Django/Jinja
29 lines
552 B
Django/Jinja
!
|
|
{% block vrf %}
|
|
{% if VNET is defined %}
|
|
{% for vnet_name, vnet_metadata in VNET.items() %}
|
|
vrf {{ vnet_name }}
|
|
vni {{ vnet_metadata['vni'] }}
|
|
!
|
|
{% endfor %}
|
|
{% endif %}
|
|
{% endblock vrf %}
|
|
!
|
|
{% block interfaces %}
|
|
! Enable nht through default route
|
|
ip nht resolve-via-default
|
|
ipv6 nht resolve-via-default
|
|
! Enable link-detect (default disabled)
|
|
{% for (name, prefix) in INTERFACE|pfx_filter %}
|
|
interface {{ name }}
|
|
link-detect
|
|
!
|
|
{% endfor %}
|
|
{% for pc in PORTCHANNEL %}
|
|
interface {{ pc }}
|
|
link-detect
|
|
!
|
|
{% endfor %}
|
|
{% endblock interfaces %}
|
|
!
|