Skip to content

Commit 2761a17

Browse files
committed
cli: fix 'show ospf' commands regression, introduced in 827dc09
Fixes #1155 Signed-off-by: Joachim Wiberg <[email protected]>
1 parent 77b364d commit 2761a17

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/klish-plugin-infix/xml/infix.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -338,17 +338,17 @@
338338
</PARAM>
339339
<ACTION sym="script" in="tty" out="tty" interrupt="true">
340340
if [ -z "$KLISH_PARAM_name" ]; then
341-
doas vtysh -c "show-legacy ip ospf" |pager
341+
doas vtysh -c "show ip ospf" |pager
342342
elif [ "$KLISH_PARAM_name" == "neighbor" ];then
343-
doas vtysh -c "show-legacy ip ospf neighbor" |pager
343+
doas vtysh -c "show ip ospf neighbor" |pager
344344
elif [ "$KLISH_PARAM_name" == "interfaces" ];then
345-
doas vtysh -c "show-legacy ip ospf interface" |pager
345+
doas vtysh -c "show ip ospf interface" |pager
346346
elif [ "$KLISH_PARAM_name" == "routes" ];then
347-
doas vtysh -c "show-legacy ip ospf route" |pager
347+
doas vtysh -c "show ip ospf route" |pager
348348
elif [ "$KLISH_PARAM_name" == "database" ];then
349-
doas vtysh -c "show-legacy ip ospf database" |pager
349+
doas vtysh -c "show ip ospf database" |pager
350350
elif [ "$KLISH_PARAM_name" == "bfd" ];then
351-
doas vtysh -c "show-legacy bfd peers" |pager
351+
doas vtysh -c "show bfd peers" |pager
352352
fi
353353
</ACTION>
354354
</COMMAND>

0 commit comments

Comments
 (0)