summaryrefslogtreecommitdiff
path: root/isisd/isisd.c
diff options
context:
space:
mode:
Diffstat (limited to 'isisd/isisd.c')
-rw-r--r--isisd/isisd.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/isisd/isisd.c b/isisd/isisd.c
index 3c499dc3..3fbed0be 100644
--- a/isisd/isisd.c
+++ b/isisd/isisd.c
@@ -1901,6 +1901,19 @@ isis_config_write (struct vty *vty)
write++;
}
}
+ /* Authentication passwords. */
+ if (area->area_passwd.len > 0)
+ {
+ vty_out(vty, " area-password %s%s",
+ area->area_passwd.passwd, VTY_NEWLINE);
+ write++;
+ }
+ if (area->domain_passwd.len > 0)
+ {
+ vty_out(vty, " domain-password %s%s",
+ area->domain_passwd.passwd, VTY_NEWLINE);
+ write++;
+ }
#ifdef TOPOLOGY_GENERATE
/* seems we save the whole command line here */
if (area->top_params)