diff options
author | Daniil Baturin <daniil@vyos.io> | 2023-04-21 13:47:47 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-21 13:47:47 +0100 |
commit | 192c8ed2bcadc08917d7751eb521a08b33e5117f (patch) | |
tree | ca5283d32a34969fa95b9ee1f1421bf7f28db5bd | |
parent | 97ef83ada9c42913bae3c80e0f2432bdf901312a (diff) | |
parent | 821bc4f511460123e958b8eaa2e588e4623fbfe6 (diff) | |
download | vyos-1x-192c8ed2bcadc08917d7751eb521a08b33e5117f.tar.gz vyos-1x-192c8ed2bcadc08917d7751eb521a08b33e5117f.zip |
Merge pull request #1921 from rgwan/current
T5123: op-mode: Support to show detailed ospf route table
-rw-r--r-- | op-mode-definitions/include/ospf-common.xml.i | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/op-mode-definitions/include/ospf-common.xml.i b/op-mode-definitions/include/ospf-common.xml.i index aebbae5ff..979ffb07e 100644 --- a/op-mode-definitions/include/ospf-common.xml.i +++ b/op-mode-definitions/include/ospf-common.xml.i @@ -541,10 +541,19 @@ </properties> <command>${vyos_op_scripts_dir}/vtysh_wrapper.sh $@</command> </tagNode> -<leafNode name="route"> +<node name="route"> <properties> <help>Show IPv4 OSPF route information</help> </properties> <command>${vyos_op_scripts_dir}/vtysh_wrapper.sh $@</command> -</leafNode> -<!-- included end -->
\ No newline at end of file + <children> + <leafNode name="detail"> + <properties> + <help>Show detailed IPv4 OSPF route information</help> + </properties> + <command>${vyos_op_scripts_dir}/vtysh_wrapper.sh $@</command> + </leafNode> + </children> +</node> +<!-- included end --> + |