summaryrefslogtreecommitdiff
path: root/data/templates/frr/vrf.route-map.frr.tmpl
blob: cb0e07616f7093ef70db02b0e54001eecca1509f (plain)
1
2
3
4
5
6
7
8
9
10
!
{% if vrf is defined and vrf is not none and route_map is defined and route_map is not none %}
vrf {{ vrf }}
 ip protocol {{ protocol }} route-map {{ route_map }}
 exit-vrf
!
{% elif route_map is defined and route_map is not none %}
ip protocol {{ protocol }} route-map {{ route_map }}
{% endif %}
!