From f0543d5d28d500409b2d35abefd8df5d2c2504a6 Mon Sep 17 00:00:00 2001 From: Cheeze_It Date: Tue, 8 Dec 2020 20:00:40 -0700 Subject: mpls-conf: T915: Add LDP import and export control In this commit we added the ability to control import and export of LDP FECs. This allows for an operator to specify which to filter on ingress, and which to not announce on egress. --- data/templates/frr/ldpd.frr.tmpl | 68 +++++++++++++++++++++++++++++++++------- 1 file changed, 56 insertions(+), 12 deletions(-) (limited to 'data/templates/frr/ldpd.frr.tmpl') diff --git a/data/templates/frr/ldpd.frr.tmpl b/data/templates/frr/ldpd.frr.tmpl index 86342b3eb..81343671c 100644 --- a/data/templates/frr/ldpd.frr.tmpl +++ b/data/templates/frr/ldpd.frr.tmpl @@ -34,13 +34,11 @@ neighbor {{neighbors}} session holdtime {{ldp.neighbor[neighbors].session_holdti {% if ldp.discovery.transport_ipv4_address is defined %} address-family ipv4 {% if ldp.allocation is defined %} -{% if ldp.allocation.ipv4 is defined %} -{% if ldp.allocation.ipv4.access_list is defined %} +{% if ldp.allocation.ipv4 is defined %} +{% if ldp.allocation.ipv4.access_list is defined %} label local allocate for {{ ldp.allocation.ipv4.access_list }} +{% endif %} {% endif %} -label local allocate host-routes -{% endif %} -label local allocate host-routes {% else %} label local allocate host-routes {% endif %} @@ -56,9 +54,33 @@ discovery hello interval {{ ldp.discovery.hello_ipv4_interval }} {% if ldp.discovery.session_ipv4_holdtime is defined %} session holdtime {{ ldp.discovery.session_ipv4_holdtime }} {% endif %} +{% if ldp.import is defined %} +{% if ldp.import.ipv4 is defined %} +{% if ldp.import.ipv4.import_filter is defined %} +{% if ldp.import.ipv4.import_filter.filter_access_list is defined %} +{% if ldp.import.ipv4.import_filter.neighbor_access_list is defined %} +label remote accept for {{ ldp.import.ipv4.import_filter.filter_access_list }} from {{ ldp.import.ipv4.import_filter.neighbor_access_list }} +{% else %} +label remote accept for {{ ldp.import.ipv4.import_filter.filter_access_list }} +{% endif %} +{% endif %} +{% endif %} +{% endif %} +{% endif %} {% if ldp.export is defined %} -{% if ldp.export.ipv4.explicit_null is defined %} +{% if ldp.export.ipv4 is defined %} +{% if ldp.export.ipv4.explicit_null is defined %} label local advertise explicit-null +{% endif %} +{% if ldp.export.ipv4.export_filter is defined %} +{% if ldp.export.ipv4.export_filter.filter_access_list is defined %} +{% if ldp.export.ipv4.export_filter.neighbor_access_list is defined %} +label local advertise for {{ ldp.export.ipv4.export_filter.filter_access_list }} to {{ ldp.export.ipv4.export_filter.neighbor_access_list }} +{% else %} +label local advertise for {{ ldp.export.ipv4.export_filter.filter_access_list }} +{% endif %} +{% endif %} +{% endif %} {% endif %} {% endif %} {% if ldp.targeted_neighbor is defined %} @@ -88,13 +110,11 @@ no address-family ipv4 {% if ldp.discovery.transport_ipv6_address is defined %} address-family ipv6 {% if ldp.allocation is defined %} -{% if ldp.allocation.ipv6 is defined %} -{% if ldp.allocation.ipv6.access_list6 is defined %} +{% if ldp.allocation.ipv6 is defined %} +{% if ldp.allocation.ipv6.access_list6 is defined %} label local allocate for {{ ldp.allocation.ipv6.access_list6 }} +{% endif %} {% endif %} -label local allocate host-routes -{% endif %} -label local allocate host-routes {% else %} label local allocate host-routes {% endif %} @@ -110,9 +130,33 @@ discovery hello interval {{ ldp.discovery.hello_ipv6_interval }} {% if ldp.discovery.session_ipv6_holdtime is defined %} session holdtime {{ ldp.discovery.session_ipv6_holdtime }} {% endif %} +{% if ldp.import is defined %} +{% if ldp.import.ipv6 is defined %} +{% if ldp.import.ipv6.import_filter is defined %} +{% if ldp.import.ipv6.import_filter.filter_access_list6 is defined %} +{% if ldp.import.ipv6.import_filter.neighbor_access_list6 is defined %} +label remote accept for {{ ldp.import.ipv6.import_filter.filter_access_list6 }} from {{ ldp.import.ipv6.import_filter.neighbor_access_list6 }} +{% else %} +label remote accept for {{ ldp.import.ipv6.import_filter.filter_access_list6 }} +{% endif %} +{% endif %} +{% endif %} +{% endif %} +{% endif %} {% if ldp.export is defined %} -{% if ldp.export.ipv6.explicit_null is defined %} +{% if ldp.export.ipv6 is defined %} +{% if ldp.export.ipv6.explicit_null is defined %} label local advertise explicit-null +{% endif %} +{% if ldp.export.ipv6.export_filter is defined %} +{% if ldp.export.ipv6.export_filter.filter_access_list6 is defined %} +{% if ldp.export.ipv6.export_filter.neighbor_access_list6 is defined %} +label local advertise for {{ ldp.export.ipv6.export_filter.filter_access_list6 }} to {{ ldp.export.ipv6.export_filter.neighbor_access_list6 }} +{% else %} +label local advertise for {{ ldp.export.ipv6.export_filter.filter_access_list6 }} +{% endif %} +{% endif %} +{% endif %} {% endif %} {% endif %} {% if ldp.targeted_neighbor is defined %} -- cgit v1.2.3