summaryrefslogtreecommitdiff
path: root/src/op_mode/vtysh_wrapper.sh
diff options
context:
space:
mode:
Diffstat (limited to 'src/op_mode/vtysh_wrapper.sh')
-rwxr-xr-xsrc/op_mode/vtysh_wrapper.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/op_mode/vtysh_wrapper.sh b/src/op_mode/vtysh_wrapper.sh
index 47d88330b..09980e14f 100755
--- a/src/op_mode/vtysh_wrapper.sh
+++ b/src/op_mode/vtysh_wrapper.sh
@@ -1,4 +1,5 @@
#!/bin/sh
declare -a tmp
-tmp=$@
+# FRR uses ospf6 where we use ospfv3, thus alter the command
+tmp=$(echo $@ | sed -e "s/ospfv3/ospf6/")
vtysh -c "$tmp"