From f818c8f3fb9c98490df29e99aa9cddde8e0296d5 Mon Sep 17 00:00:00 2001 From: Christian Franke Date: Tue, 27 Nov 2012 01:10:28 +0000 Subject: isisd: save metric-style narrow isisd defaults to wide metric style. So if narrow metric style is configured, a matching setting should be written to the configuration, allowing a narrow metric-style setting to be saved. Signed-off-by: Christian Franke Signed-off-by: David Lamparter --- isisd/isisd.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'isisd/isisd.c') diff --git a/isisd/isisd.c b/isisd/isisd.c index e8e3d9f0..47675f0a 100644 --- a/isisd/isisd.c +++ b/isisd/isisd.c @@ -2857,6 +2857,11 @@ isis_config_write (struct vty *vty) vty_out (vty, " metric-style transition%s", VTY_NEWLINE); write++; } + else + { + vty_out (vty, " metric-style narrow%s", VTY_NEWLINE); + write++; + } /* ISIS - overload-bit */ if (area->overload_bit) { -- cgit v1.2.1