diff options
author | Oleksandr Mamenko <oleksandr.mamenko@gmail.com> | 2018-09-20 22:50:19 +0200 |
---|---|---|
committer | Oleksandr Mamenko <oleksandr.mamenko@gmail.com> | 2018-09-20 22:50:19 +0200 |
commit | b59a39062b361801571094d8dc4e5fa20a986c44 (patch) | |
tree | b54096e2704f28ba32cce612f294dad8f47d45c2 /templates | |
parent | 70215a16a8c535f6868c42e3caf6d5849b36ed44 (diff) | |
download | vyatta-cfg-quagga-b59a39062b361801571094d8dc4e5fa20a986c44.tar.gz vyatta-cfg-quagga-b59a39062b361801571094d8dc4e5fa20a986c44.zip |
T856 OSPF area-type NSSA
Diffstat (limited to 'templates')
-rw-r--r-- | templates/protocols/ospf/area/node.tag/area-type/nssa/node.def | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/templates/protocols/ospf/area/node.tag/area-type/nssa/node.def b/templates/protocols/ospf/area/node.tag/area-type/nssa/node.def index 9b886467..bed9a704 100644 --- a/templates/protocols/ospf/area/node.tag/area-type/nssa/node.def +++ b/templates/protocols/ospf/area/node.tag/area-type/nssa/node.def @@ -20,8 +20,9 @@ end: if [ -f "/tmp/ospf-area-nssa.$PPID" ]; then ${vyatta_sbindir}/vyatta-check-typeless-node.pl \ "protocols ospf area $VAR(../../@) area-type nssa no-summary"; if [ $? -eq 0 ] ; then - PARM="$PARM no-summary"; + PARM2="no-summary"; fi; vtysh -c "configure terminal" \ - -c "router ospf" -c "area $VAR(../../@) nssa $PARM"; + -c "router ospf" -c "area $VAR(../../@) nssa $PARM2" -c "area $VAR(../../@) nssa $PARM"; \ fi; + |