diff options
-rw-r--r-- | data/templates/frr/isis.frr.tmpl | 4 | ||||
-rw-r--r-- | interface-definitions/protocols-isis.xml.in | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/data/templates/frr/isis.frr.tmpl b/data/templates/frr/isis.frr.tmpl index 0477f2599..4460ab3b5 100644 --- a/data/templates/frr/isis.frr.tmpl +++ b/data/templates/frr/isis.frr.tmpl @@ -168,8 +168,8 @@ interface {{ iface }} {% if iface_config.psnp_interval is defined and iface_config.psnp_interval is not none %} isis psnp-interval {{ iface_config.psnp_interval }} {% endif %} -{% if iface_config.three_way_handshake is defined %} - isis three-way-handshake +{% if iface_config.no_three_way_handshake is defined %} + no isis three-way-handshake {% endif %} {% endfor %} {% endif %} diff --git a/interface-definitions/protocols-isis.xml.in b/interface-definitions/protocols-isis.xml.in index 2340079a6..8c5691ecf 100644 --- a/interface-definitions/protocols-isis.xml.in +++ b/interface-definitions/protocols-isis.xml.in @@ -758,9 +758,9 @@ </constraint> </properties> </leafNode> - <leafNode name="three-way-handshake"> + <leafNode name="no-three-way-handshake"> <properties> - <help>Enable/Disable three-way handshake</help> + <help>Disable three-way handshake</help> <valueless/> </properties> </leafNode> |