diff options
author | Christian Breunig <christian@breunig.cc> | 2024-03-02 11:00:12 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-02 11:00:12 +0100 |
commit | 70cf2388a184eacc6fb52d9edfb1c930de3bbb6a (patch) | |
tree | b6f57e021e95e3dd7cc1912498ce11cdac5e0909 /data/templates/frr/ospf6d.frr.j2 | |
parent | ce25bc49dd6b28fb80c85ec2dbe37c8ac6c11217 (diff) | |
parent | 298bcc5cb90c4c83981ec4baaaa0db785306867d (diff) | |
download | vyos-1x-70cf2388a184eacc6fb52d9edfb1c930de3bbb6a.tar.gz vyos-1x-70cf2388a184eacc6fb52d9edfb1c930de3bbb6a.zip |
Merge pull request #3073 from c-po/ospfv3-redistribution-T5717
ospfv3: allow metric and metric-type on redistributed routes
Diffstat (limited to 'data/templates/frr/ospf6d.frr.j2')
-rw-r--r-- | data/templates/frr/ospf6d.frr.j2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/templates/frr/ospf6d.frr.j2 b/data/templates/frr/ospf6d.frr.j2 index b0b5663dd..5f758f9e5 100644 --- a/data/templates/frr/ospf6d.frr.j2 +++ b/data/templates/frr/ospf6d.frr.j2 @@ -109,7 +109,7 @@ router ospf6 {{ 'vrf ' ~ vrf if vrf is vyos_defined }} {% endif %} {% if redistribute is vyos_defined %} {% for protocol, options in redistribute.items() %} - redistribute {{ protocol }} {{ 'route-map ' ~ options.route_map if options.route_map is vyos_defined }} + redistribute {{ protocol }} {{ 'metric ' ~ options.metric if options.metric is vyos_defined }} {{ 'metric-type ' ~ options.metric_type if options.metric_type is vyos_defined }} {{ 'route-map ' ~ options.route_map if options.route_map is vyos_defined }} {% endfor %} {% endif %} exit |