blob: 62133c37521b839e0910abe20b0ff6e573ca35f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
<!-- included start from bgp-afi-maximum-paths.xml.i -->
<node name="maximum-paths">
<properties>
<help>Forward packets over multiple paths</help>
</properties>
<children>
<leafNode name="ebgp">
<properties>
<help>eBGP maximum paths</help>
<valueHelp>
<format>u32:1-256</format>
<description>Number of paths to consider</description>
</valueHelp>
<constraint>
<validator name="numeric" argument="--range 1-256"/>
</constraint>
</properties>
</leafNode>
<leafNode name="ibgp">
<properties>
<help>iBGP maximum paths</help>
<valueHelp>
<format>u32:1-256</format>
<description>Number of paths to consider</description>
</valueHelp>
<constraint>
<validator name="numeric" argument="--range 1-256"/>
</constraint>
</properties>
</leafNode>
</children>
</node>
<!-- included end -->
|