diff options
author | Christian Breunig <christian@breunig.cc> | 2024-03-02 08:39:23 +0100 |
---|---|---|
committer | Christian Breunig <christian@breunig.cc> | 2024-03-02 08:43:53 +0100 |
commit | ed2c288c8a9031f91acf76d20b84e2002696981c (patch) | |
tree | 8eab15f1e3d0c08e987c405fd87ef7637d3dc27c /data/templates/frr/ospf6d.frr.j2 | |
parent | c0db7646ad3858256235fa00a3fd00fd785a4716 (diff) | |
download | vyos-1x-ed2c288c8a9031f91acf76d20b84e2002696981c.tar.gz vyos-1x-ed2c288c8a9031f91acf76d20b84e2002696981c.zip |
ospfv3: T5717: allow metric and metric-type on redistributed routes
Example:
vyos@vyos# set protocols ospfv3 redistribute bgp
Possible completions:
metric OSPF default metric
metric-type OSPF metric type for default routes (default: 2)
route-map Specify route-map name to use
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 |