diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-09-27 20:55:30 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-27 20:55:30 +0200 |
commit | b348b9897662f1f26bf3ab1730bdec8e0c1c428b (patch) | |
tree | 91b55ec45114e21fec9f43ac771320794836de6f | |
parent | 7ba61623a569bb0f1b0b5eb85f4cdae99ec6c7f9 (diff) | |
parent | 686131c2c99278fa9bee62de65987ff03c0677e0 (diff) | |
download | vyatta-cfg-quagga-b348b9897662f1f26bf3ab1730bdec8e0c1c428b.tar.gz vyatta-cfg-quagga-b348b9897662f1f26bf3ab1730bdec8e0c1c428b.zip |
Merge pull request #89 from sever-sever/T3858
ospfv3: T3858: Fix for delete correct v6 router-id
-rw-r--r-- | templates/protocols/ospfv3/node.def | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/protocols/ospfv3/node.def b/templates/protocols/ospfv3/node.def index 4bf54837..eef12b15 100644 --- a/templates/protocols/ospfv3/node.def +++ b/templates/protocols/ospfv3/node.def @@ -12,6 +12,6 @@ begin: if [ "$COMMIT_ACTION" != DELETE ]; then sudo vtysh --writeconfig --noerror fi end: if [ "$COMMIT_ACTION" == DELETE ]; then - vtysh -c "configure terminal" -c "router ospf6" -c "no router-id" + vtysh -c "configure terminal" -c "router ospf6" -c "no ospf6 router-id" vtysh -c "configure terminal" -c "no router ospf6" fi |