summaryrefslogtreecommitdiff
path: root/data/templates/frr/static_mcast.frr.j2
blob: 54b2790b07fadb47b6ad1d7c6164cae321a7c805 (plain)
1
2
3
4
5
6
7
8
9
10
11
!
{% for route_gr in mroute %}
{%     for nh in mroute[route_gr] %}
{%         if mroute[route_gr][nh] %}
ip mroute {{ route_gr }} {{ nh }} {{ mroute[route_gr][nh] }}
{%         else %}
ip mroute {{ route_gr }} {{ nh }}
{%         endif %}
{%     endfor %}
{% endfor %}
!