diff --git a/src/klish-plugin-infix/xml/infix.xml b/src/klish-plugin-infix/xml/infix.xml index ad0ca02c..8a12c813 100644 --- a/src/klish-plugin-infix/xml/infix.xml +++ b/src/klish-plugin-infix/xml/infix.xml @@ -307,17 +307,17 @@ if [ -z "$KLISH_PARAM_name" ]; then - vtysh -c "show ip ospf" + doas vtysh -c "show ip ospf" elif [ "$KLISH_PARAM_name" == "neighbor" ];then - vtysh -c "show ip ospf neighbor" + doas vtysh -c "show ip ospf neighbor" elif [ "$KLISH_PARAM_name" == "interfaces" ];then - vtysh -c "show ip ospf interface" + doas vtysh -c "show ip ospf interface" elif [ "$KLISH_PARAM_name" == "routes" ];then - vtysh -c "show ip ospf route" + doas vtysh -c "show ip ospf route" elif [ "$KLISH_PARAM_name" == "database" ];then - vtysh -c "show ip ospf database" + doas vtysh -c "show ip ospf database" elif [ "$KLISH_PARAM_name" == "bfd" ];then - vtysh -c "show bfd peers" + doas vtysh -c "show bfd peers" fi