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 /interface-definitions | |
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 'interface-definitions')
-rw-r--r-- | interface-definitions/include/ospfv3/protocol-common-config.xml.i | 28 |
1 files changed, 20 insertions, 8 deletions
diff --git a/interface-definitions/include/ospfv3/protocol-common-config.xml.i b/interface-definitions/include/ospfv3/protocol-common-config.xml.i index 4c3ca68e1..1462b9c15 100644 --- a/interface-definitions/include/ospfv3/protocol-common-config.xml.i +++ b/interface-definitions/include/ospfv3/protocol-common-config.xml.i @@ -221,11 +221,23 @@ <help>Redistribute information from another routing protocol</help> </properties> <children> + <node name="babel"> + <properties> + <help>Redistribute Babel routes</help> + </properties> + <children> + #include <include/ospf/metric.xml.i> + #include <include/ospf/metric-type.xml.i> + #include <include/route-map.xml.i> + </children> + </node> <node name="bgp"> <properties> <help>Redistribute BGP routes</help> </properties> <children> + #include <include/ospf/metric.xml.i> + #include <include/ospf/metric-type.xml.i> #include <include/route-map.xml.i> </children> </node> @@ -234,6 +246,8 @@ <help>Redistribute connected routes</help> </properties> <children> + #include <include/ospf/metric.xml.i> + #include <include/ospf/metric-type.xml.i> #include <include/route-map.xml.i> </children> </node> @@ -242,6 +256,8 @@ <help>Redistribute kernel routes</help> </properties> <children> + #include <include/ospf/metric.xml.i> + #include <include/ospf/metric-type.xml.i> #include <include/route-map.xml.i> </children> </node> @@ -250,14 +266,8 @@ <help>Redistribute RIPNG routes</help> </properties> <children> - #include <include/route-map.xml.i> - </children> - </node> - <node name="babel"> - <properties> - <help>Redistribute Babel routes</help> - </properties> - <children> + #include <include/ospf/metric.xml.i> + #include <include/ospf/metric-type.xml.i> #include <include/route-map.xml.i> </children> </node> @@ -266,6 +276,8 @@ <help>Redistribute static routes</help> </properties> <children> + #include <include/ospf/metric.xml.i> + #include <include/ospf/metric-type.xml.i> #include <include/route-map.xml.i> </children> </node> |