From d5bd9bec6c213ff12190b03acf248f348c165c13 Mon Sep 17 00:00:00 2001 From: Christian Poessinger Date: Thu, 6 May 2021 19:41:19 +0200 Subject: ospf: xml: T3236: restructure include files and make them easier to recognize --- .../include/ospf/authentication.xml.i | 56 ++ .../include/ospf/distance-global.xml.i | 14 + .../include/ospf/distance-per-protocol.xml.i | 38 ++ .../include/ospf/interface-common.xml.i | 34 + interface-definitions/include/ospf/intervals.xml.i | 54 ++ .../include/ospf/metric-type.xml.i | 15 + interface-definitions/include/ospf/metric.xml.i | 14 + .../include/ospf/ospf-authentication.xml.i | 56 -- .../include/ospf/ospf-common-config.xml.i | 760 --------------------- .../include/ospf/ospf-distance-global.xml.i | 14 - .../include/ospf/ospf-distance-per-protocol.xml.i | 38 -- .../include/ospf/ospf-interface-common.xml.i | 34 - .../include/ospf/ospf-intervals.xml.i | 54 -- .../include/ospf/ospf-metric-type.xml.i | 15 - .../include/ospf/ospf-metric.xml.i | 14 - .../include/ospf/ospf-router-id.xml.i | 14 - .../include/ospf/protocol-common-config.xml.i | 760 +++++++++++++++++++++ interface-definitions/include/ospf/router-id.xml.i | 14 + interface-definitions/protocols-ospf.xml.in | 2 +- interface-definitions/protocols-ospfv3.xml.in | 10 +- interface-definitions/vrf.xml.in | 2 +- 21 files changed, 1006 insertions(+), 1006 deletions(-) create mode 100644 interface-definitions/include/ospf/authentication.xml.i create mode 100644 interface-definitions/include/ospf/distance-global.xml.i create mode 100644 interface-definitions/include/ospf/distance-per-protocol.xml.i create mode 100644 interface-definitions/include/ospf/interface-common.xml.i create mode 100644 interface-definitions/include/ospf/intervals.xml.i create mode 100644 interface-definitions/include/ospf/metric-type.xml.i create mode 100644 interface-definitions/include/ospf/metric.xml.i delete mode 100644 interface-definitions/include/ospf/ospf-authentication.xml.i delete mode 100644 interface-definitions/include/ospf/ospf-common-config.xml.i delete mode 100644 interface-definitions/include/ospf/ospf-distance-global.xml.i delete mode 100644 interface-definitions/include/ospf/ospf-distance-per-protocol.xml.i delete mode 100644 interface-definitions/include/ospf/ospf-interface-common.xml.i delete mode 100644 interface-definitions/include/ospf/ospf-intervals.xml.i delete mode 100644 interface-definitions/include/ospf/ospf-metric-type.xml.i delete mode 100644 interface-definitions/include/ospf/ospf-metric.xml.i delete mode 100644 interface-definitions/include/ospf/ospf-router-id.xml.i create mode 100644 interface-definitions/include/ospf/protocol-common-config.xml.i create mode 100644 interface-definitions/include/ospf/router-id.xml.i diff --git a/interface-definitions/include/ospf/authentication.xml.i b/interface-definitions/include/ospf/authentication.xml.i new file mode 100644 index 000000000..1e6050b97 --- /dev/null +++ b/interface-definitions/include/ospf/authentication.xml.i @@ -0,0 +1,56 @@ + + + + Authentication + + + + + MD5 key id + + + + + MD5 key id + + u32:1-255 + MD5 key id + + + + + + + + + MD5 authentication type + + txt + MD5 Key (16 characters or less) + + + ^[^[:space:]]{1,16}$ + + Password must be 16 characters or less + + + + + + + + + Plain text password + + txt + Plain text password (8 characters or less) + + + ^[^[:space:]]{1,8}$ + + Password must be 8 characters or less + + + + + diff --git a/interface-definitions/include/ospf/distance-global.xml.i b/interface-definitions/include/ospf/distance-global.xml.i new file mode 100644 index 000000000..31809cb70 --- /dev/null +++ b/interface-definitions/include/ospf/distance-global.xml.i @@ -0,0 +1,14 @@ + + + + Administrative distance + + u32:1-255 + Administrative distance + + + + + + + diff --git a/interface-definitions/include/ospf/distance-per-protocol.xml.i b/interface-definitions/include/ospf/distance-per-protocol.xml.i new file mode 100644 index 000000000..da3f16c06 --- /dev/null +++ b/interface-definitions/include/ospf/distance-per-protocol.xml.i @@ -0,0 +1,38 @@ + + + + Distance for external routes + + u32:1-255 + Distance for external routes + + + + + + + + + Distance for inter-area routes + + u32:1-255 + Distance for inter-area routes + + + + + + + + + Distance for intra-area routes + + u32:1-255 + Distance for intra-area routes + + + + + + + diff --git a/interface-definitions/include/ospf/interface-common.xml.i b/interface-definitions/include/ospf/interface-common.xml.i new file mode 100644 index 000000000..4b0aef380 --- /dev/null +++ b/interface-definitions/include/ospf/interface-common.xml.i @@ -0,0 +1,34 @@ + +#include + + + Interface cost + + u32:1-65535 + OSPF interface cost + + + + + + + + + Disable Maximum Transmission Unit (MTU) mismatch detection + + + + + + Router priority (default: 1) + + u32:0-255 + OSPF router priority cost + + + + + + 1 + + diff --git a/interface-definitions/include/ospf/intervals.xml.i b/interface-definitions/include/ospf/intervals.xml.i new file mode 100644 index 000000000..fad1a6305 --- /dev/null +++ b/interface-definitions/include/ospf/intervals.xml.i @@ -0,0 +1,54 @@ + + + + Interval after which a neighbor is declared dead (default: 40) + + u32:1-65535 + Neighbor dead interval (seconds) + + + + + + 40 + + + + Interval between hello packets (default: 10) + + u32:1-65535 + Hello interval (seconds) + + + + + + 10 + + + + Interval between retransmitting lost link state advertisements (default: 5) + + u32:1-65535 + Retransmit interval (seconds) + + + + + + 5 + + + + Link state transmit delay (default: 1) + + u32:1-65535 + Link state transmit delay (seconds) + + + + + + 1 + + diff --git a/interface-definitions/include/ospf/metric-type.xml.i b/interface-definitions/include/ospf/metric-type.xml.i new file mode 100644 index 000000000..83dc24909 --- /dev/null +++ b/interface-definitions/include/ospf/metric-type.xml.i @@ -0,0 +1,15 @@ + + + + OSPF metric type for default routes (default: 2) + + u32:1-2 + Metric type for default routes + + + + + + 2 + + diff --git a/interface-definitions/include/ospf/metric.xml.i b/interface-definitions/include/ospf/metric.xml.i new file mode 100644 index 000000000..64b455b00 --- /dev/null +++ b/interface-definitions/include/ospf/metric.xml.i @@ -0,0 +1,14 @@ + + + + OSPF default metric + + u32:0-16777214 + Default metric + + + + + + + diff --git a/interface-definitions/include/ospf/ospf-authentication.xml.i b/interface-definitions/include/ospf/ospf-authentication.xml.i deleted file mode 100644 index 322c002e4..000000000 --- a/interface-definitions/include/ospf/ospf-authentication.xml.i +++ /dev/null @@ -1,56 +0,0 @@ - - - - Authentication - - - - - MD5 key id - - - - - MD5 key id - - u32:1-255 - MD5 key id - - - - - - - - - MD5 authentication type - - txt - MD5 Key (16 characters or less) - - - ^[^[:space:]]{1,16}$ - - Password must be 16 characters or less - - - - - - - - - Plain text password - - txt - Plain text password (8 characters or less) - - - ^[^[:space:]]{1,8}$ - - Password must be 8 characters or less - - - - - diff --git a/interface-definitions/include/ospf/ospf-common-config.xml.i b/interface-definitions/include/ospf/ospf-common-config.xml.i deleted file mode 100644 index ef2b66f8b..000000000 --- a/interface-definitions/include/ospf/ospf-common-config.xml.i +++ /dev/null @@ -1,760 +0,0 @@ - - - - Access list to filter networks in routing updates - - policy access-list - - - u32 - Access-list number - - - - - - - - - Filter for outgoing routing update [REQUIRED] - - bgp connected kernel rip static - - - bgp - Filter BGP routes - - - connected - Filter connected routes - - - isis - Filter IS-IS routes - - - kernel - Filter Kernel routes - - - rip - Filter RIP routes - - - static - Filter static routes - - - ^(bgp|connected|isis|kernel|rip|static)$ - - Must be bgp, connected, kernel, rip, or static - - - - - - - - OSPF area settings - - u32 - OSPF area number in decimal notation - - - ipv4 - OSPF area number in dotted decimal notation - - - - - - - - - - Area type - - - - - Normal OSPF area - - - - - - Not-So-Stubby OSPF area - - - - - Summary-default cost of an NSSA area - - u32:0-16777215 - Summary default cost - - - - - - - - - Do not inject inter-area routes into stub - - - - - - Configure NSSA-ABR (default: candidate) - - always candidate never - - - always - Always translate LSA types - - - candidate - Translate for election (default) - - - never - Never translate LSA types - - - ^(always|candidate|never)$ - - - candidate - - - - - - Stub OSPF area - - - - - Summary-default cost - - u32:0-16777215 - Summary default cost - - - - - - - - - Do not inject inter-area routes into the stub - - - - - - - - - - OSPF area authentication type - - plaintext-password md5 - - - plaintext-password - Use plain-text authentication - - - md5 - Use MD5 authentication - - - ^(plaintext-password|md5)$ - - - - - - OSPF network [REQUIRED] - - ipv4net - OSPF network [REQUIRED] - - - - - - - - - - Summarize routes matching a prefix (border routers only) - - ipv4net - Area range prefix - - - - - - - - - Metric for this range - - u32:0-16777215 - Metric for this range - - - - - - - - - Do not advertise this range - - - - - - Advertise area range as another prefix - - ipv4net - Advertise area range as another prefix - - - - - - - - - - - Area shortcut mode - - default disable enable - - - default - Set default - - - disable - Disable shortcutting mode - - - enable - Enable shortcutting mode - - - ^(default|disable|enable)$ - - - - - - Virtual link - - ipv4 - OSPF area in dotted decimal notation - - - - - - - - #include - #include - - - - - - - Calculate OSPF interface cost according to bandwidth (default: 100) - - - - - Reference bandwidth method to assign OSPF cost - - u32:1-4294967 - Reference bandwidth cost in Mbits/sec - - - - - - 100 - - - - - - Default route advertisment settings - - - - - Distribute a default route - - - - - Always advertise a default route - - - - #include - #include - #include - - - - - - - Metric of redistributed routes - - u32:0-16777214 - Metric of redistributed routes - - - - - - - - - Administrative distance - - - #include - - - OSPF administrative distance - - - #include - - - - - - - Interface configuration - - - - - txt - Interface name - - - - - - - #include - #include - #include - - - Interface bandwidth (Mbit/s) - - u32:1-100000 - Bandwidth in Megabit/sec (for calculating OSPF cost) - - - - - - - - - Hello multiplier factor - - u32:1-10 - Number of Hellos to send each second - - - - - - - - - Network type - - broadcast non-broadcast point-to-multipoint point-to-point - - - broadcast - Broadcast network type - - - non-broadcast - Non-broadcast network type - - - point-to-multipoint - Point-to-multipoint network type - - - point-to-point - Point-to-point network type - - - ^(broadcast|non-broadcast|point-to-multipoint|point-to-point)$ - - Must be broadcast, non-broadcast, point-to-multipoint or point-to-point - - - - - - - Log adjacency state changes - - - - - Log all state changes - - - - - - - - OSPF maximum and infinite-distance metric - - - - - Advertise own Router-LSA with infinite distance (stub router) - - - - - Administratively apply, for an indefinite period - - - - - - Advertise stub-router prior to full shutdown of OSPF - - u32:5-100 - Time (seconds) to advertise self as stub-router - - - - - - - - - Automatically advertise stub Router-LSA on startup of OSPF - - u32:5-86400 - Time (seconds) to advertise self as stub-router - - - - - - - - - - - - - MultiProtocol Label Switching-Traffic Engineering (MPLS-TE) parameters - - - - - Enable MPLS-TE functionality - - - - - - Stable IP address of the advertising router - - ipv4 - Stable IP address of the advertising router - - - - - - 0.0.0.0 - - - - - - Specify neighbor router - - ipv4 - Neighbor IP address - - - - - - - - - Dead neighbor polling interval (default: 60) - - u32:1-65535 - Seconds between dead neighbor polling interval - - - - - - 60 - - - - Neighbor priority in seconds (default: 0) - - u32:0-255 - Neighbor priority - - - - - - 0 - - - - - - OSPF specific parameters - - - - - OSPF ABR type (default: cisco) - - cisco ibm shortcut standard - - - cisco - Cisco ABR type (default) - - - ibm - IBM ABR type - - - shortcut - Shortcut ABR type - - - standard - Standard ABR type - - - ^(cisco|ibm|shortcut|standard)$ - - - cisco - - - - Enable the Opaque-LSA capability (rfc2370) - - - - - - Enable RFC1583 criteria for handling AS external routes - - - - #include - - -#include - - - Interface to exclude when using 'passive-interface default' - - - - - txt - Interface to exclude when suppressing routing updates - - - vlinkN - Virtual-link interface to exclude when suppressing routing updates - - - - ^(vlink[0-9]+)$ - - - - - - - Redistribute information from another routing protocol - - - - - Redistribute BGP routes - - - #include - #include - #include - - - - - Redistribute connected routes - - - #include - #include - #include - - - - - Redistribute IS-IS routes - - - #include - #include - #include - - - - - Redistribute kernel routes - - - #include - #include - #include - - - - - Redistribute RIP routes - - - #include - #include - #include - - - - - Redistribute static routes - - - #include - #include - #include - - - - - - - Adjust refresh parameters - - - - - Refresh timer - - u32:10-1800 - Timer value in seconds - - - - - - - - - - - Adjust routing timers - - - - - Throttling adaptive timers - - - - - OSPF SPF timers - - - - - Delay from the first change received to SPF calculation (default: 200) - - u32:0-600000 - Delay in milliseconds - - - - - - 200 - - - - Initial hold time between consecutive SPF calculations (default: 1000) - - u32:0-600000 - Initial hold time in milliseconds - - - - - - 1000 - - - - Maximum hold time (default: 10000) - - u32:0-600000 - Max hold time in milliseconds - - - - - - 10000 - - - - - - - - diff --git a/interface-definitions/include/ospf/ospf-distance-global.xml.i b/interface-definitions/include/ospf/ospf-distance-global.xml.i deleted file mode 100644 index 08cd76cba..000000000 --- a/interface-definitions/include/ospf/ospf-distance-global.xml.i +++ /dev/null @@ -1,14 +0,0 @@ - - - - Administrative distance - - u32:1-255 - Administrative distance - - - - - - - diff --git a/interface-definitions/include/ospf/ospf-distance-per-protocol.xml.i b/interface-definitions/include/ospf/ospf-distance-per-protocol.xml.i deleted file mode 100644 index d2c4b8b52..000000000 --- a/interface-definitions/include/ospf/ospf-distance-per-protocol.xml.i +++ /dev/null @@ -1,38 +0,0 @@ - - - - Distance for external routes - - u32:1-255 - Distance for external routes - - - - - - - - - Distance for inter-area routes - - u32:1-255 - Distance for inter-area routes - - - - - - - - - Distance for intra-area routes - - u32:1-255 - Distance for intra-area routes - - - - - - - diff --git a/interface-definitions/include/ospf/ospf-interface-common.xml.i b/interface-definitions/include/ospf/ospf-interface-common.xml.i deleted file mode 100644 index 39e90482c..000000000 --- a/interface-definitions/include/ospf/ospf-interface-common.xml.i +++ /dev/null @@ -1,34 +0,0 @@ - -#include - - - Interface cost - - u32:1-65535 - OSPF interface cost - - - - - - - - - Disable Maximum Transmission Unit (MTU) mismatch detection - - - - - - Router priority (default: 1) - - u32:0-255 - OSPF router priority cost - - - - - - 1 - - diff --git a/interface-definitions/include/ospf/ospf-intervals.xml.i b/interface-definitions/include/ospf/ospf-intervals.xml.i deleted file mode 100644 index fe220eceb..000000000 --- a/interface-definitions/include/ospf/ospf-intervals.xml.i +++ /dev/null @@ -1,54 +0,0 @@ - - - - Interval after which a neighbor is declared dead (default: 40) - - u32:1-65535 - Neighbor dead interval (seconds) - - - - - - 40 - - - - Interval between hello packets (default: 10) - - u32:1-65535 - Hello interval (seconds) - - - - - - 10 - - - - Interval between retransmitting lost link state advertisements (default: 5) - - u32:1-65535 - Retransmit interval (seconds) - - - - - - 5 - - - - Link state transmit delay (default: 1) - - u32:1-65535 - Link state transmit delay (seconds) - - - - - - 1 - - diff --git a/interface-definitions/include/ospf/ospf-metric-type.xml.i b/interface-definitions/include/ospf/ospf-metric-type.xml.i deleted file mode 100644 index 1e982c4bc..000000000 --- a/interface-definitions/include/ospf/ospf-metric-type.xml.i +++ /dev/null @@ -1,15 +0,0 @@ - - - - OSPF metric type for default routes (default: 2) - - u32:1-2 - Metric type for default routes - - - - - - 2 - - diff --git a/interface-definitions/include/ospf/ospf-metric.xml.i b/interface-definitions/include/ospf/ospf-metric.xml.i deleted file mode 100644 index 125aedea7..000000000 --- a/interface-definitions/include/ospf/ospf-metric.xml.i +++ /dev/null @@ -1,14 +0,0 @@ - - - - OSPF default metric - - u32:0-16777214 - Default metric - - - - - - - diff --git a/interface-definitions/include/ospf/ospf-router-id.xml.i b/interface-definitions/include/ospf/ospf-router-id.xml.i deleted file mode 100644 index 5dbb52a36..000000000 --- a/interface-definitions/include/ospf/ospf-router-id.xml.i +++ /dev/null @@ -1,14 +0,0 @@ - - - - Override the default router identifier - - ipv4 - Override the default router identifier - - - - - - - diff --git a/interface-definitions/include/ospf/protocol-common-config.xml.i b/interface-definitions/include/ospf/protocol-common-config.xml.i new file mode 100644 index 000000000..6d7fe9d70 --- /dev/null +++ b/interface-definitions/include/ospf/protocol-common-config.xml.i @@ -0,0 +1,760 @@ + + + + Access list to filter networks in routing updates + + policy access-list + + + u32 + Access-list number + + + + + + + + + Filter for outgoing routing update [REQUIRED] + + bgp connected kernel rip static + + + bgp + Filter BGP routes + + + connected + Filter connected routes + + + isis + Filter IS-IS routes + + + kernel + Filter Kernel routes + + + rip + Filter RIP routes + + + static + Filter static routes + + + ^(bgp|connected|isis|kernel|rip|static)$ + + Must be bgp, connected, kernel, rip, or static + + + + + + + + OSPF area settings + + u32 + OSPF area number in decimal notation + + + ipv4 + OSPF area number in dotted decimal notation + + + + + + + + + + Area type + + + + + Normal OSPF area + + + + + + Not-So-Stubby OSPF area + + + + + Summary-default cost of an NSSA area + + u32:0-16777215 + Summary default cost + + + + + + + + + Do not inject inter-area routes into stub + + + + + + Configure NSSA-ABR (default: candidate) + + always candidate never + + + always + Always translate LSA types + + + candidate + Translate for election (default) + + + never + Never translate LSA types + + + ^(always|candidate|never)$ + + + candidate + + + + + + Stub OSPF area + + + + + Summary-default cost + + u32:0-16777215 + Summary default cost + + + + + + + + + Do not inject inter-area routes into the stub + + + + + + + + + + OSPF area authentication type + + plaintext-password md5 + + + plaintext-password + Use plain-text authentication + + + md5 + Use MD5 authentication + + + ^(plaintext-password|md5)$ + + + + + + OSPF network [REQUIRED] + + ipv4net + OSPF network [REQUIRED] + + + + + + + + + + Summarize routes matching a prefix (border routers only) + + ipv4net + Area range prefix + + + + + + + + + Metric for this range + + u32:0-16777215 + Metric for this range + + + + + + + + + Do not advertise this range + + + + + + Advertise area range as another prefix + + ipv4net + Advertise area range as another prefix + + + + + + + + + + + Area shortcut mode + + default disable enable + + + default + Set default + + + disable + Disable shortcutting mode + + + enable + Enable shortcutting mode + + + ^(default|disable|enable)$ + + + + + + Virtual link + + ipv4 + OSPF area in dotted decimal notation + + + + + + + + #include + #include + + + + + + + Calculate OSPF interface cost according to bandwidth (default: 100) + + + + + Reference bandwidth method to assign OSPF cost + + u32:1-4294967 + Reference bandwidth cost in Mbits/sec + + + + + + 100 + + + + + + Default route advertisment settings + + + + + Distribute a default route + + + + + Always advertise a default route + + + + #include + #include + #include + + + + + + + Metric of redistributed routes + + u32:0-16777214 + Metric of redistributed routes + + + + + + + + + Administrative distance + + + #include + + + OSPF administrative distance + + + #include + + + + + + + Interface configuration + + + + + txt + Interface name + + + + + + + #include + #include + #include + + + Interface bandwidth (Mbit/s) + + u32:1-100000 + Bandwidth in Megabit/sec (for calculating OSPF cost) + + + + + + + + + Hello multiplier factor + + u32:1-10 + Number of Hellos to send each second + + + + + + + + + Network type + + broadcast non-broadcast point-to-multipoint point-to-point + + + broadcast + Broadcast network type + + + non-broadcast + Non-broadcast network type + + + point-to-multipoint + Point-to-multipoint network type + + + point-to-point + Point-to-point network type + + + ^(broadcast|non-broadcast|point-to-multipoint|point-to-point)$ + + Must be broadcast, non-broadcast, point-to-multipoint or point-to-point + + + + + + + Log adjacency state changes + + + + + Log all state changes + + + + + + + + OSPF maximum and infinite-distance metric + + + + + Advertise own Router-LSA with infinite distance (stub router) + + + + + Administratively apply, for an indefinite period + + + + + + Advertise stub-router prior to full shutdown of OSPF + + u32:5-100 + Time (seconds) to advertise self as stub-router + + + + + + + + + Automatically advertise stub Router-LSA on startup of OSPF + + u32:5-86400 + Time (seconds) to advertise self as stub-router + + + + + + + + + + + + + MultiProtocol Label Switching-Traffic Engineering (MPLS-TE) parameters + + + + + Enable MPLS-TE functionality + + + + + + Stable IP address of the advertising router + + ipv4 + Stable IP address of the advertising router + + + + + + 0.0.0.0 + + + + + + Specify neighbor router + + ipv4 + Neighbor IP address + + + + + + + + + Dead neighbor polling interval (default: 60) + + u32:1-65535 + Seconds between dead neighbor polling interval + + + + + + 60 + + + + Neighbor priority in seconds (default: 0) + + u32:0-255 + Neighbor priority + + + + + + 0 + + + + + + OSPF specific parameters + + + + + OSPF ABR type (default: cisco) + + cisco ibm shortcut standard + + + cisco + Cisco ABR type (default) + + + ibm + IBM ABR type + + + shortcut + Shortcut ABR type + + + standard + Standard ABR type + + + ^(cisco|ibm|shortcut|standard)$ + + + cisco + + + + Enable the Opaque-LSA capability (rfc2370) + + + + + + Enable RFC1583 criteria for handling AS external routes + + + + #include + + +#include + + + Interface to exclude when using 'passive-interface default' + + + + + txt + Interface to exclude when suppressing routing updates + + + vlinkN + Virtual-link interface to exclude when suppressing routing updates + + + + ^(vlink[0-9]+)$ + + + + + + + Redistribute information from another routing protocol + + + + + Redistribute BGP routes + + + #include + #include + #include + + + + + Redistribute connected routes + + + #include + #include + #include + + + + + Redistribute IS-IS routes + + + #include + #include + #include + + + + + Redistribute kernel routes + + + #include + #include + #include + + + + + Redistribute RIP routes + + + #include + #include + #include + + + + + Redistribute static routes + + + #include + #include + #include + + + + + + + Adjust refresh parameters + + + + + Refresh timer + + u32:10-1800 + Timer value in seconds + + + + + + + + + + + Adjust routing timers + + + + + Throttling adaptive timers + + + + + OSPF SPF timers + + + + + Delay from the first change received to SPF calculation (default: 200) + + u32:0-600000 + Delay in milliseconds + + + + + + 200 + + + + Initial hold time between consecutive SPF calculations (default: 1000) + + u32:0-600000 + Initial hold time in milliseconds + + + + + + 1000 + + + + Maximum hold time (default: 10000) + + u32:0-600000 + Max hold time in milliseconds + + + + + + 10000 + + + + + + + + diff --git a/interface-definitions/include/ospf/router-id.xml.i b/interface-definitions/include/ospf/router-id.xml.i new file mode 100644 index 000000000..2512f78d7 --- /dev/null +++ b/interface-definitions/include/ospf/router-id.xml.i @@ -0,0 +1,14 @@ + + + + Override the default router identifier + + ipv4 + Override the default router identifier + + + + + + + diff --git a/interface-definitions/protocols-ospf.xml.in b/interface-definitions/protocols-ospf.xml.in index 4431a1772..eae522893 100644 --- a/interface-definitions/protocols-ospf.xml.in +++ b/interface-definitions/protocols-ospf.xml.in @@ -8,7 +8,7 @@ 620 - #include + #include #include diff --git a/interface-definitions/protocols-ospfv3.xml.in b/interface-definitions/protocols-ospfv3.xml.in index f4f403e93..df775233b 100644 --- a/interface-definitions/protocols-ospfv3.xml.in +++ b/interface-definitions/protocols-ospfv3.xml.in @@ -90,13 +90,13 @@ Administrative distance - #include + #include OSPFv3 administrative distance - #include + #include @@ -116,8 +116,8 @@ - #include - #include + #include + #include Interface MTU @@ -171,7 +171,7 @@ OSPFv3 specific parameters - #include + #include diff --git a/interface-definitions/vrf.xml.in b/interface-definitions/vrf.xml.in index 5b6cda29a..d66056db9 100644 --- a/interface-definitions/vrf.xml.in +++ b/interface-definitions/vrf.xml.in @@ -57,7 +57,7 @@ 621 - #include + #include -- cgit v1.2.3