diff options
author | Daniel Husand <daniel@fnutt.net> | 2020-12-25 16:36:56 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-04-12 21:49:59 +0200 |
commit | f610119896ef3af065a02192490892ef96b7cabb (patch) | |
tree | 9158923c7a554d0aa106059080c973afc464c4f2 | |
parent | ab13bb6ccaeb4b99f630ec9f1c474f8bcb79ec1c (diff) | |
download | vyatta-cfg-quagga-f610119896ef3af065a02192490892ef96b7cabb.tar.gz vyatta-cfg-quagga-f610119896ef3af065a02192490892ef96b7cabb.zip |
T3149: Change interface reference to $IFNAME
(cherry picked from commit b60ac2c60483a29931ee90154eb05b2dd4466224)
-rw-r--r-- | interface-templates/ipv6/ospfv3/bfd/node.def | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/interface-templates/ipv6/ospfv3/bfd/node.def b/interface-templates/ipv6/ospfv3/bfd/node.def index 7ef33bb7..74d02f4f 100644 --- a/interface-templates/ipv6/ospfv3/bfd/node.def +++ b/interface-templates/ipv6/ospfv3/bfd/node.def @@ -1,4 +1,3 @@ help: Enable Bidirectional Forwarding Detection (BFD) support -create:vtysh -c "configure terminal" -c "interface $VAR(../../../@)" -c "ipv6 ospf6 bfd" -delete:vtysh -c "configure terminal" -c "interface $VAR(../../../@)" -c "no ipv6 ospf6 bfd" - +create:vtysh -c "configure terminal" -c "interface $IFNAME" -c "ipv6 ospf6 bfd" +delete:vtysh -c "configure terminal" -c "interface $IFNAME" -c "no ipv6 ospf6 bfd" |