diff options
Diffstat (limited to 'isisd/isisd.c')
-rw-r--r-- | isisd/isisd.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/isisd/isisd.c b/isisd/isisd.c index ce6a2621..a100319c 100644 --- a/isisd/isisd.c +++ b/isisd/isisd.c @@ -2882,6 +2882,10 @@ isis_config_write (struct vty *vty) vty_out (vty, " is-type level-2-only%s", VTY_NEWLINE); write++; } + write += isis_redist_config_write(vty, area, AF_INET); +#ifdef HAVE_IPV6 + write += isis_redist_config_write(vty, area, AF_INET6); +#endif /* ISIS - Lsp generation interval */ if (area->lsp_gen_interval[0] == area->lsp_gen_interval[1]) { |