diff options
-rw-r--r-- | interface-templates/ip/ospf/authentication/md5/node.def | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/interface-templates/ip/ospf/authentication/md5/node.def b/interface-templates/ip/ospf/authentication/md5/node.def index f861944c..1fcf3e64 100644 --- a/interface-templates/ip/ospf/authentication/md5/node.def +++ b/interface-templates/ip/ospf/authentication/md5/node.def @@ -1,5 +1,14 @@ help: Set MD5 key id -update:vyatta-vtysh -c "configure terminal" -c "interface $IFNAME" \ - -c "no ip ospf authentication" -c "ip ospf authentication message-digest" -delete:vyatta-vtysh -c "configure terminal" -c "interface $IFNAME" \ - -c "no ip ospf authentication" + +create: + vyatta-vtysh \ + -c "configure terminal" \ + -c "interface $IFNAME" \ + -c "no ip ospf authentication" \ + -c "ip ospf authentication message-digest" + +delete: + vyatta-vtysh \ + -c "configure terminal" \ + -c "interface $IFNAME" \ + -c "no ip ospf authentication" |