summaryrefslogtreecommitdiff
path: root/templates/protocols
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2021-01-24 15:40:46 +0100
committerGitHub <noreply@github.com>2021-01-24 15:40:46 +0100
commitfccd95728d9b52879653663d135e62696779979d (patch)
tree261a9406364adb520e691787c8c8ee34efd58750 /templates/protocols
parent7be9fedda499b98b80375b83fc522a7b9c211f7d (diff)
parent68eead80916c7d95d269b97d1d00f59dcc4ae413 (diff)
downloadvyatta-cfg-quagga-fccd95728d9b52879653663d135e62696779979d.tar.gz
vyatta-cfg-quagga-fccd95728d9b52879653663d135e62696779979d.zip
Merge pull request #66 from sever-sever/T3246
ospfv3: T3246: Fix config parameter router-id
Diffstat (limited to 'templates/protocols')
-rw-r--r--templates/protocols/ospfv3/node.def4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/protocols/ospfv3/node.def b/templates/protocols/ospfv3/node.def
index e7d11d96..ffcf8dbc 100644
--- a/templates/protocols/ospfv3/node.def
+++ b/templates/protocols/ospfv3/node.def
@@ -3,10 +3,10 @@ help: IPv6 Open Shortest Path First protocol (OSPFv3) parameters
begin: if [ "$COMMIT_ACTION" != DELETE ]; then
if [ -n "$VAR(parameters/router-id/@)" ]; then
vtysh -c "configure terminal" -c "router ospf6" \
- -c "router-id $VAR(parameters/router-id/@)"
+ -c "ospf6 router-id $VAR(parameters/router-id/@)"
else
vtysh -c "configure terminal" -c "router ospf6" \
- -c "no router-id"
+ -c "no ospf6 router-id"
fi
vtysh -d ospf6d -c 'sh run' > /opt/vyatta/etc/quagga/ospf6d.conf
fi