blob: 7c0922a6ff788b35cd62fe07dcc1bfe195116c06 [file] [log] [blame]
paul718e3742002-12-13 20:15:29 +00001/*
hasso508e53e2004-05-18 18:57:06 +00002 * Copyright (C) 2003 Yasuhiro Ohara
paul718e3742002-12-13 20:15:29 +00003 *
4 * This file is part of GNU Zebra.
5 *
6 * GNU Zebra is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2, or (at your option) any
9 * later version.
10 *
11 * GNU Zebra is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with GNU Zebra; see the file COPYING. If not, write to the
18 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 * Boston, MA 02111-1307, USA.
20 */
21
22#include <zebra.h>
23
24#include "log.h"
25#include "memory.h"
26#include "vty.h"
27#include "linklist.h"
28#include "prefix.h"
29#include "table.h"
30#include "thread.h"
31#include "command.h"
32
paul718e3742002-12-13 20:15:29 +000033#include "ospf6_proto.h"
hasso508e53e2004-05-18 18:57:06 +000034#include "ospf6_message.h"
paul718e3742002-12-13 20:15:29 +000035#include "ospf6_lsa.h"
36#include "ospf6_lsdb.h"
paul718e3742002-12-13 20:15:29 +000037#include "ospf6_route.h"
38#include "ospf6_zebra.h"
39
hasso508e53e2004-05-18 18:57:06 +000040#include "ospf6_top.h"
41#include "ospf6_area.h"
42#include "ospf6_interface.h"
43#include "ospf6_neighbor.h"
paul718e3742002-12-13 20:15:29 +000044
hasso6452df02004-08-15 05:52:07 +000045#include "ospf6_flood.h"
hasso508e53e2004-05-18 18:57:06 +000046#include "ospf6_asbr.h"
hasso049207c2004-08-04 20:02:13 +000047#include "ospf6_abr.h"
hasso6452df02004-08-15 05:52:07 +000048#include "ospf6_intra.h"
Dinesh Dutt3810e062013-08-24 07:54:09 +000049#include "ospf6_spf.h"
hasso049207c2004-08-04 20:02:13 +000050#include "ospf6d.h"
paul718e3742002-12-13 20:15:29 +000051
52/* global ospf6d variable */
53struct ospf6 *ospf6;
54
Tom Goffae2254a2010-11-10 13:01:41 -080055static void ospf6_disable (struct ospf6 *o);
56
Paul Jakma6ac29a52008-08-15 13:45:30 +010057static void
hasso508e53e2004-05-18 18:57:06 +000058ospf6_top_lsdb_hook_add (struct ospf6_lsa *lsa)
paul718e3742002-12-13 20:15:29 +000059{
hasso508e53e2004-05-18 18:57:06 +000060 switch (ntohs (lsa->header->type))
paul718e3742002-12-13 20:15:29 +000061 {
hasso508e53e2004-05-18 18:57:06 +000062 case OSPF6_LSTYPE_AS_EXTERNAL:
63 ospf6_asbr_lsa_add (lsa);
64 break;
65
66 default:
hasso508e53e2004-05-18 18:57:06 +000067 break;
paul718e3742002-12-13 20:15:29 +000068 }
69}
70
Paul Jakma6ac29a52008-08-15 13:45:30 +010071static void
hasso508e53e2004-05-18 18:57:06 +000072ospf6_top_lsdb_hook_remove (struct ospf6_lsa *lsa)
paul718e3742002-12-13 20:15:29 +000073{
hasso508e53e2004-05-18 18:57:06 +000074 switch (ntohs (lsa->header->type))
paul718e3742002-12-13 20:15:29 +000075 {
hasso508e53e2004-05-18 18:57:06 +000076 case OSPF6_LSTYPE_AS_EXTERNAL:
77 ospf6_asbr_lsa_remove (lsa);
78 break;
79
80 default:
hasso508e53e2004-05-18 18:57:06 +000081 break;
paul718e3742002-12-13 20:15:29 +000082 }
83}
84
Paul Jakma6ac29a52008-08-15 13:45:30 +010085static void
hasso049207c2004-08-04 20:02:13 +000086ospf6_top_route_hook_add (struct ospf6_route *route)
87{
hasso6452df02004-08-15 05:52:07 +000088 ospf6_abr_originate_summary (route);
hasso049207c2004-08-04 20:02:13 +000089 ospf6_zebra_route_update_add (route);
90}
91
Paul Jakma6ac29a52008-08-15 13:45:30 +010092static void
hasso049207c2004-08-04 20:02:13 +000093ospf6_top_route_hook_remove (struct ospf6_route *route)
94{
hasso6452df02004-08-15 05:52:07 +000095 ospf6_abr_originate_summary (route);
hasso049207c2004-08-04 20:02:13 +000096 ospf6_zebra_route_update_remove (route);
97}
98
Paul Jakma6ac29a52008-08-15 13:45:30 +010099static void
hasso6452df02004-08-15 05:52:07 +0000100ospf6_top_brouter_hook_add (struct ospf6_route *route)
101{
hassoccb59b12004-08-25 09:10:37 +0000102 ospf6_abr_examin_brouter (ADV_ROUTER_IN_PREFIX (&route->prefix));
hasso6452df02004-08-15 05:52:07 +0000103 ospf6_asbr_lsentry_add (route);
hassoccb59b12004-08-25 09:10:37 +0000104 ospf6_abr_originate_summary (route);
hasso6452df02004-08-15 05:52:07 +0000105}
106
Paul Jakma6ac29a52008-08-15 13:45:30 +0100107static void
hasso6452df02004-08-15 05:52:07 +0000108ospf6_top_brouter_hook_remove (struct ospf6_route *route)
109{
hassoccb59b12004-08-25 09:10:37 +0000110 ospf6_abr_examin_brouter (ADV_ROUTER_IN_PREFIX (&route->prefix));
hasso6452df02004-08-15 05:52:07 +0000111 ospf6_asbr_lsentry_remove (route);
hassoccb59b12004-08-25 09:10:37 +0000112 ospf6_abr_originate_summary (route);
hasso6452df02004-08-15 05:52:07 +0000113}
114
Paul Jakma6ac29a52008-08-15 13:45:30 +0100115static struct ospf6 *
116ospf6_create (void)
paul718e3742002-12-13 20:15:29 +0000117{
hasso508e53e2004-05-18 18:57:06 +0000118 struct ospf6 *o;
paul718e3742002-12-13 20:15:29 +0000119
Stephen Hemminger393deb92008-08-18 14:13:29 -0700120 o = XCALLOC (MTYPE_OSPF6_TOP, sizeof (struct ospf6));
hasso508e53e2004-05-18 18:57:06 +0000121
122 /* initialize */
Takashi Sogabe86f72dc2009-06-22 13:07:02 +0900123 quagga_gettime (QUAGGA_CLK_MONOTONIC, &o->starttime);
hasso508e53e2004-05-18 18:57:06 +0000124 o->area_list = list_new ();
125 o->area_list->cmp = ospf6_area_cmp;
hasso6452df02004-08-15 05:52:07 +0000126 o->lsdb = ospf6_lsdb_create (o);
127 o->lsdb_self = ospf6_lsdb_create (o);
hasso508e53e2004-05-18 18:57:06 +0000128 o->lsdb->hook_add = ospf6_top_lsdb_hook_add;
129 o->lsdb->hook_remove = ospf6_top_lsdb_hook_remove;
130
Dinesh Dutt3810e062013-08-24 07:54:09 +0000131 o->spf_delay = OSPF_SPF_DELAY_DEFAULT;
132 o->spf_holdtime = OSPF_SPF_HOLDTIME_DEFAULT;
133 o->spf_max_holdtime = OSPF_SPF_MAX_HOLDTIME_DEFAULT;
134 o->spf_hold_multiplier = 1;
135
Paul Jakmacf1ce252006-05-15 10:46:07 +0000136 o->route_table = OSPF6_ROUTE_TABLE_CREATE (GLOBAL, ROUTES);
137 o->route_table->scope = o;
hasso049207c2004-08-04 20:02:13 +0000138 o->route_table->hook_add = ospf6_top_route_hook_add;
139 o->route_table->hook_remove = ospf6_top_route_hook_remove;
hasso508e53e2004-05-18 18:57:06 +0000140
Paul Jakmacf1ce252006-05-15 10:46:07 +0000141 o->brouter_table = OSPF6_ROUTE_TABLE_CREATE (GLOBAL, BORDER_ROUTERS);
142 o->brouter_table->scope = o;
hasso6452df02004-08-15 05:52:07 +0000143 o->brouter_table->hook_add = ospf6_top_brouter_hook_add;
144 o->brouter_table->hook_remove = ospf6_top_brouter_hook_remove;
hasso049207c2004-08-04 20:02:13 +0000145
Paul Jakmacf1ce252006-05-15 10:46:07 +0000146 o->external_table = OSPF6_ROUTE_TABLE_CREATE (GLOBAL, EXTERNAL_ROUTES);
147 o->external_table->scope = o;
148
hasso508e53e2004-05-18 18:57:06 +0000149 o->external_id_table = route_table_init ();
150
151 return o;
152}
153
Tom Goffae2254a2010-11-10 13:01:41 -0800154void
hasso508e53e2004-05-18 18:57:06 +0000155ospf6_delete (struct ospf6 *o)
156{
paul1eb8ef22005-04-07 07:30:20 +0000157 struct listnode *node, *nnode;
hasso508e53e2004-05-18 18:57:06 +0000158 struct ospf6_area *oa;
159
Tom Goffae2254a2010-11-10 13:01:41 -0800160 ospf6_disable (ospf6);
161
paul1eb8ef22005-04-07 07:30:20 +0000162 for (ALL_LIST_ELEMENTS (o->area_list, node, nnode, oa))
163 ospf6_area_delete (oa);
Christian Franked9628722013-03-08 21:47:35 +0100164
165
Tom Goffae2254a2010-11-10 13:01:41 -0800166 list_delete (o->area_list);
hasso508e53e2004-05-18 18:57:06 +0000167
168 ospf6_lsdb_delete (o->lsdb);
hasso6452df02004-08-15 05:52:07 +0000169 ospf6_lsdb_delete (o->lsdb_self);
hasso508e53e2004-05-18 18:57:06 +0000170
171 ospf6_route_table_delete (o->route_table);
hasso049207c2004-08-04 20:02:13 +0000172 ospf6_route_table_delete (o->brouter_table);
hasso508e53e2004-05-18 18:57:06 +0000173
174 ospf6_route_table_delete (o->external_table);
175 route_table_finish (o->external_id_table);
176
177 XFREE (MTYPE_OSPF6_TOP, o);
178}
179
Paul Jakma6ac29a52008-08-15 13:45:30 +0100180static void
hasso508e53e2004-05-18 18:57:06 +0000181ospf6_enable (struct ospf6 *o)
182{
paul1eb8ef22005-04-07 07:30:20 +0000183 struct listnode *node, *nnode;
hasso508e53e2004-05-18 18:57:06 +0000184 struct ospf6_area *oa;
185
186 if (CHECK_FLAG (o->flag, OSPF6_DISABLED))
187 {
188 UNSET_FLAG (o->flag, OSPF6_DISABLED);
paul1eb8ef22005-04-07 07:30:20 +0000189 for (ALL_LIST_ELEMENTS (o->area_list, node, nnode, oa))
190 ospf6_area_enable (oa);
paul718e3742002-12-13 20:15:29 +0000191 }
192}
193
Paul Jakma6ac29a52008-08-15 13:45:30 +0100194static void
hasso508e53e2004-05-18 18:57:06 +0000195ospf6_disable (struct ospf6 *o)
paul718e3742002-12-13 20:15:29 +0000196{
paul1eb8ef22005-04-07 07:30:20 +0000197 struct listnode *node, *nnode;
hasso508e53e2004-05-18 18:57:06 +0000198 struct ospf6_area *oa;
paul718e3742002-12-13 20:15:29 +0000199
hasso508e53e2004-05-18 18:57:06 +0000200 if (! CHECK_FLAG (o->flag, OSPF6_DISABLED))
201 {
202 SET_FLAG (o->flag, OSPF6_DISABLED);
paul1eb8ef22005-04-07 07:30:20 +0000203
204 for (ALL_LIST_ELEMENTS (o->area_list, node, nnode, oa))
205 ospf6_area_disable (oa);
paul718e3742002-12-13 20:15:29 +0000206
Christian Franked9628722013-03-08 21:47:35 +0100207 /* XXX: This also changes persistent settings */
208 ospf6_asbr_redistribute_reset();
209
hasso508e53e2004-05-18 18:57:06 +0000210 ospf6_lsdb_remove_all (o->lsdb);
211 ospf6_route_remove_all (o->route_table);
hasso6452df02004-08-15 05:52:07 +0000212 ospf6_route_remove_all (o->brouter_table);
Christian Franked9628722013-03-08 21:47:35 +0100213
214 THREAD_OFF(o->maxage_remover);
215 THREAD_OFF(o->t_spf_calc);
216 THREAD_OFF(o->t_ase_calc);
hasso508e53e2004-05-18 18:57:06 +0000217 }
218}
paul718e3742002-12-13 20:15:29 +0000219
Dinesh Dutt2449fcd2013-08-24 07:54:17 +0000220int
hasso508e53e2004-05-18 18:57:06 +0000221ospf6_maxage_remover (struct thread *thread)
222{
223 struct ospf6 *o = (struct ospf6 *) THREAD_ARG (thread);
224 struct ospf6_area *oa;
225 struct ospf6_interface *oi;
226 struct ospf6_neighbor *on;
hasso52dc7ee2004-09-23 19:18:23 +0000227 struct listnode *i, *j, *k;
Dinesh Dutt2449fcd2013-08-24 07:54:17 +0000228 int reschedule = 0;
hasso508e53e2004-05-18 18:57:06 +0000229
230 o->maxage_remover = (struct thread *) NULL;
hasso508e53e2004-05-18 18:57:06 +0000231
paul1eb8ef22005-04-07 07:30:20 +0000232 for (ALL_LIST_ELEMENTS_RO (o->area_list, i, oa))
hasso508e53e2004-05-18 18:57:06 +0000233 {
paul1eb8ef22005-04-07 07:30:20 +0000234 for (ALL_LIST_ELEMENTS_RO (oa->if_list, j, oi))
hasso508e53e2004-05-18 18:57:06 +0000235 {
paul1eb8ef22005-04-07 07:30:20 +0000236 for (ALL_LIST_ELEMENTS_RO (oi->neighbor_list, k, on))
hasso508e53e2004-05-18 18:57:06 +0000237 {
hasso508e53e2004-05-18 18:57:06 +0000238 if (on->state != OSPF6_NEIGHBOR_EXCHANGE &&
239 on->state != OSPF6_NEIGHBOR_LOADING)
Dinesh Dutt2449fcd2013-08-24 07:54:17 +0000240 continue;
hasso508e53e2004-05-18 18:57:06 +0000241
Dinesh Dutt2449fcd2013-08-24 07:54:17 +0000242 ospf6_maxage_remove (o);
hasso508e53e2004-05-18 18:57:06 +0000243 return 0;
244 }
245 }
246 }
247
paul1eb8ef22005-04-07 07:30:20 +0000248 for (ALL_LIST_ELEMENTS_RO (o->area_list, i, oa))
hasso508e53e2004-05-18 18:57:06 +0000249 {
paul1eb8ef22005-04-07 07:30:20 +0000250 for (ALL_LIST_ELEMENTS_RO (oa->if_list, j, oi))
Dinesh Dutt2449fcd2013-08-24 07:54:17 +0000251 {
252 if (ospf6_lsdb_maxage_remover (oi->lsdb))
253 {
254 reschedule = 1;
255 }
256 }
paul1eb8ef22005-04-07 07:30:20 +0000257
Dinesh Dutt2449fcd2013-08-24 07:54:17 +0000258 if (ospf6_lsdb_maxage_remover (oa->lsdb))
259 {
260 reschedule = 1;
261 }
hasso508e53e2004-05-18 18:57:06 +0000262 }
Dinesh Dutt2449fcd2013-08-24 07:54:17 +0000263
264 if (ospf6_lsdb_maxage_remover (o->lsdb))
265 {
266 reschedule = 1;
267 }
268
269 if (reschedule)
270 {
271 ospf6_maxage_remove (o);
272 }
hasso508e53e2004-05-18 18:57:06 +0000273
paul718e3742002-12-13 20:15:29 +0000274 return 0;
275}
276
277void
hasso508e53e2004-05-18 18:57:06 +0000278ospf6_maxage_remove (struct ospf6 *o)
paul718e3742002-12-13 20:15:29 +0000279{
hasso508e53e2004-05-18 18:57:06 +0000280 if (o && ! o->maxage_remover)
Dinesh Dutt2449fcd2013-08-24 07:54:17 +0000281 o->maxage_remover = thread_add_timer (master, ospf6_maxage_remover, o,
282 OSPF_LSA_MAXAGE_REMOVE_DELAY_DEFAULT);
hasso508e53e2004-05-18 18:57:06 +0000283}
paul718e3742002-12-13 20:15:29 +0000284
hasso508e53e2004-05-18 18:57:06 +0000285/* start ospf6 */
286DEFUN (router_ospf6,
287 router_ospf6_cmd,
288 "router ospf6",
289 ROUTER_STR
290 OSPF6_STR)
291{
292 if (ospf6 == NULL)
293 ospf6 = ospf6_create ();
hasso508e53e2004-05-18 18:57:06 +0000294
295 /* set current ospf point. */
296 vty->node = OSPF6_NODE;
297 vty->index = ospf6;
298
299 return CMD_SUCCESS;
300}
301
302/* stop ospf6 */
303DEFUN (no_router_ospf6,
304 no_router_ospf6_cmd,
305 "no router ospf6",
306 NO_STR
307 OSPF6_ROUTER_STR)
308{
Christian Franked9628722013-03-08 21:47:35 +0100309 if (ospf6 == NULL)
310 vty_out (vty, "OSPFv3 is not configured%s", VNL);
hasso508e53e2004-05-18 18:57:06 +0000311 else
Christian Franked9628722013-03-08 21:47:35 +0100312 {
313 ospf6_delete (ospf6);
314 ospf6 = NULL;
315 }
hasso508e53e2004-05-18 18:57:06 +0000316
317 /* return to config node . */
318 vty->node = CONFIG_NODE;
319 vty->index = NULL;
320
321 return CMD_SUCCESS;
322}
323
324/* change Router_ID commands. */
325DEFUN (ospf6_router_id,
326 ospf6_router_id_cmd,
327 "router-id A.B.C.D",
328 "Configure OSPF Router-ID\n"
329 V4NOTATION_STR)
330{
331 int ret;
332 u_int32_t router_id;
333 struct ospf6 *o;
334
335 o = (struct ospf6 *) vty->index;
336
337 ret = inet_pton (AF_INET, argv[0], &router_id);
338 if (ret == 0)
339 {
hasso049207c2004-08-04 20:02:13 +0000340 vty_out (vty, "malformed OSPF Router-ID: %s%s", argv[0], VNL);
hasso508e53e2004-05-18 18:57:06 +0000341 return CMD_SUCCESS;
342 }
343
hassoc8a440e2004-10-11 17:02:40 +0000344 o->router_id_static = router_id;
345 if (o->router_id == 0)
346 o->router_id = router_id;
347
hasso508e53e2004-05-18 18:57:06 +0000348 return CMD_SUCCESS;
349}
350
Dinesh Dutt3d35ca42013-08-26 03:40:16 +0000351DEFUN (ospf6_log_adjacency_changes,
352 ospf6_log_adjacency_changes_cmd,
353 "log-adjacency-changes",
354 "Log changes in adjacency state\n")
355{
356 struct ospf6 *ospf6 = vty->index;
357
358 SET_FLAG(ospf6->config_flags, OSPF6_LOG_ADJACENCY_CHANGES);
359 return CMD_SUCCESS;
360}
361
362DEFUN (ospf6_log_adjacency_changes_detail,
363 ospf6_log_adjacency_changes_detail_cmd,
364 "log-adjacency-changes detail",
365 "Log changes in adjacency state\n"
366 "Log all state changes\n")
367{
368 struct ospf6 *ospf6 = vty->index;
369
370 SET_FLAG(ospf6->config_flags, OSPF6_LOG_ADJACENCY_CHANGES);
371 SET_FLAG(ospf6->config_flags, OSPF6_LOG_ADJACENCY_DETAIL);
372 return CMD_SUCCESS;
373}
374
375DEFUN (no_ospf6_log_adjacency_changes,
376 no_ospf6_log_adjacency_changes_cmd,
377 "no log-adjacency-changes",
378 NO_STR
379 "Log changes in adjacency state\n")
380{
381 struct ospf6 *ospf6 = vty->index;
382
383 UNSET_FLAG(ospf6->config_flags, OSPF6_LOG_ADJACENCY_DETAIL);
384 UNSET_FLAG(ospf6->config_flags, OSPF6_LOG_ADJACENCY_CHANGES);
385 return CMD_SUCCESS;
386}
387
388DEFUN (no_ospf6_log_adjacency_changes_detail,
389 no_ospf6_log_adjacency_changes_detail_cmd,
390 "no log-adjacency-changes detail",
391 NO_STR
392 "Log changes in adjacency state\n"
393 "Log all state changes\n")
394{
395 struct ospf6 *ospf6 = vty->index;
396
397 UNSET_FLAG(ospf6->config_flags, OSPF6_LOG_ADJACENCY_DETAIL);
398 return CMD_SUCCESS;
399}
400
hasso508e53e2004-05-18 18:57:06 +0000401DEFUN (ospf6_interface_area,
402 ospf6_interface_area_cmd,
403 "interface IFNAME area A.B.C.D",
404 "Enable routing on an IPv6 interface\n"
405 IFNAME_STR
406 "Specify the OSPF6 area ID\n"
407 "OSPF6 area ID in IPv4 address notation\n"
408 )
409{
410 struct ospf6 *o;
hasso3b687352004-08-19 06:56:53 +0000411 struct ospf6_area *oa;
hasso508e53e2004-05-18 18:57:06 +0000412 struct ospf6_interface *oi;
413 struct interface *ifp;
414 u_int32_t area_id;
415
416 o = (struct ospf6 *) vty->index;
417
418 /* find/create ospf6 interface */
419 ifp = if_get_by_name (argv[0]);
420 oi = (struct ospf6_interface *) ifp->info;
421 if (oi == NULL)
422 oi = ospf6_interface_create (ifp);
423 if (oi->area)
424 {
425 vty_out (vty, "%s already attached to Area %s%s",
hasso049207c2004-08-04 20:02:13 +0000426 oi->interface->name, oi->area->name, VNL);
hasso508e53e2004-05-18 18:57:06 +0000427 return CMD_SUCCESS;
428 }
429
430 /* parse Area-ID */
431 if (inet_pton (AF_INET, argv[1], &area_id) != 1)
432 {
hasso049207c2004-08-04 20:02:13 +0000433 vty_out (vty, "Invalid Area-ID: %s%s", argv[1], VNL);
hasso508e53e2004-05-18 18:57:06 +0000434 return CMD_SUCCESS;
435 }
436
437 /* find/create ospf6 area */
438 oa = ospf6_area_lookup (area_id, o);
439 if (oa == NULL)
440 oa = ospf6_area_create (area_id, o);
441
442 /* attach interface to area */
443 listnode_add (oa->if_list, oi); /* sort ?? */
444 oi->area = oa;
445
hasso6452df02004-08-15 05:52:07 +0000446 SET_FLAG (oa->flag, OSPF6_AREA_ENABLE);
447
Christian Franked9628722013-03-08 21:47:35 +0100448 /* ospf6 process is currently disabled, not much more to do */
449 if (CHECK_FLAG (o->flag, OSPF6_DISABLED))
450 return CMD_SUCCESS;
451
hasso508e53e2004-05-18 18:57:06 +0000452 /* start up */
Christian Franked9628722013-03-08 21:47:35 +0100453 ospf6_interface_enable (oi);
hasso6452df02004-08-15 05:52:07 +0000454
hasso3b687352004-08-19 06:56:53 +0000455 /* If the router is ABR, originate summary routes */
456 if (ospf6_is_router_abr (o))
457 ospf6_abr_enable_area (oa);
hasso6452df02004-08-15 05:52:07 +0000458
hasso508e53e2004-05-18 18:57:06 +0000459 return CMD_SUCCESS;
460}
461
462DEFUN (no_ospf6_interface_area,
463 no_ospf6_interface_area_cmd,
464 "no interface IFNAME area A.B.C.D",
465 NO_STR
466 "Disable routing on an IPv6 interface\n"
467 IFNAME_STR
468 "Specify the OSPF6 area ID\n"
469 "OSPF6 area ID in IPv4 address notation\n"
470 )
471{
472 struct ospf6 *o;
473 struct ospf6_interface *oi;
hasso3b687352004-08-19 06:56:53 +0000474 struct ospf6_area *oa;
hasso508e53e2004-05-18 18:57:06 +0000475 struct interface *ifp;
476 u_int32_t area_id;
477
478 o = (struct ospf6 *) vty->index;
479
480 ifp = if_lookup_by_name (argv[0]);
481 if (ifp == NULL)
482 {
hasso049207c2004-08-04 20:02:13 +0000483 vty_out (vty, "No such interface %s%s", argv[0], VNL);
hasso508e53e2004-05-18 18:57:06 +0000484 return CMD_SUCCESS;
485 }
486
487 oi = (struct ospf6_interface *) ifp->info;
488 if (oi == NULL)
489 {
hasso049207c2004-08-04 20:02:13 +0000490 vty_out (vty, "Interface %s not enabled%s", ifp->name, VNL);
hasso508e53e2004-05-18 18:57:06 +0000491 return CMD_SUCCESS;
492 }
493
494 /* parse Area-ID */
495 if (inet_pton (AF_INET, argv[1], &area_id) != 1)
496 {
hasso049207c2004-08-04 20:02:13 +0000497 vty_out (vty, "Invalid Area-ID: %s%s", argv[1], VNL);
hasso508e53e2004-05-18 18:57:06 +0000498 return CMD_SUCCESS;
499 }
500
Jon56abbb82009-02-11 17:30:44 -0800501 /* Verify Area */
502 if (oi->area == NULL)
503 {
504 vty_out (vty, "No such Area-ID: %s%s", argv[1], VNL);
505 return CMD_SUCCESS;
506 }
507
hasso508e53e2004-05-18 18:57:06 +0000508 if (oi->area->area_id != area_id)
509 {
510 vty_out (vty, "Wrong Area-ID: %s is attached to area %s%s",
hasso049207c2004-08-04 20:02:13 +0000511 oi->interface->name, oi->area->name, VNL);
hasso508e53e2004-05-18 18:57:06 +0000512 return CMD_SUCCESS;
513 }
514
515 thread_execute (master, interface_down, oi, 0);
516
hasso6452df02004-08-15 05:52:07 +0000517 oa = oi->area;
hasso508e53e2004-05-18 18:57:06 +0000518 listnode_delete (oi->area->if_list, oi);
519 oi->area = (struct ospf6_area *) NULL;
520
hasso6452df02004-08-15 05:52:07 +0000521 /* Withdraw inter-area routes from this area, if necessary */
522 if (oa->if_list->count == 0)
523 {
524 UNSET_FLAG (oa->flag, OSPF6_AREA_ENABLE);
hasso3b687352004-08-19 06:56:53 +0000525 ospf6_abr_disable_area (oa);
hasso6452df02004-08-15 05:52:07 +0000526 }
527
hasso508e53e2004-05-18 18:57:06 +0000528 return CMD_SUCCESS;
paul718e3742002-12-13 20:15:29 +0000529}
530
Dinesh Duttf41b4a02013-08-24 08:00:37 +0000531DEFUN (ospf6_stub_router_admin,
532 ospf6_stub_router_admin_cmd,
533 "stub-router administrative",
534 "Make router a stub router\n"
535 "Advertise inability to be a transit router\n"
536 "Administratively applied, for an indefinite period\n")
537{
538 struct listnode *node;
539 struct ospf6_area *oa;
540
541 if (!CHECK_FLAG (ospf6->flag, OSPF6_STUB_ROUTER))
542 {
543 for (ALL_LIST_ELEMENTS_RO (ospf6->area_list, node, oa))
544 {
545 OSPF6_OPT_CLEAR (oa->options, OSPF6_OPT_V6);
546 OSPF6_OPT_CLEAR (oa->options, OSPF6_OPT_R);
547 OSPF6_ROUTER_LSA_SCHEDULE (oa);
548 }
549 SET_FLAG (ospf6->flag, OSPF6_STUB_ROUTER);
550 }
551
552 return CMD_SUCCESS;
553}
554
555DEFUN (no_ospf6_stub_router_admin,
556 no_ospf6_stub_router_admin_cmd,
557 "no stub-router administrative",
558 NO_STR
559 "Make router a stub router\n"
560 "Advertise ability to be a transit router\n"
561 "Administratively applied, for an indefinite period\n")
562{
563 struct listnode *node;
564 struct ospf6_area *oa;
565
566 if (CHECK_FLAG (ospf6->flag, OSPF6_STUB_ROUTER))
567 {
568 for (ALL_LIST_ELEMENTS_RO (ospf6->area_list, node, oa))
569 {
570 OSPF6_OPT_SET (oa->options, OSPF6_OPT_V6);
571 OSPF6_OPT_SET (oa->options, OSPF6_OPT_R);
572 OSPF6_ROUTER_LSA_SCHEDULE (oa);
573 }
574 UNSET_FLAG (ospf6->flag, OSPF6_STUB_ROUTER);
575 }
576
577 return CMD_SUCCESS;
578}
579
580DEFUN (ospf6_stub_router_startup,
581 ospf6_stub_router_startup_cmd,
582 "stub-router on-startup <5-86400>",
583 "Make router a stub router\n"
584 "Advertise inability to be a transit router\n"
585 "Automatically advertise as stub-router on startup of OSPF6\n"
586 "Time (seconds) to advertise self as stub-router\n")
587{
588 return CMD_SUCCESS;
589}
590
591DEFUN (no_ospf6_stub_router_startup,
592 no_ospf6_stub_router_startup_cmd,
593 "no stub-router on-startup",
594 NO_STR
595 "Make router a stub router\n"
596 "Advertise inability to be a transit router\n"
597 "Automatically advertise as stub-router on startup of OSPF6\n"
598 "Time (seconds) to advertise self as stub-router\n")
599{
600 return CMD_SUCCESS;
601}
602
603DEFUN (ospf6_stub_router_shutdown,
604 ospf6_stub_router_shutdown_cmd,
605 "stub-router on-shutdown <5-86400>",
606 "Make router a stub router\n"
607 "Advertise inability to be a transit router\n"
608 "Automatically advertise as stub-router before shutdown\n"
609 "Time (seconds) to advertise self as stub-router\n")
610{
611 return CMD_SUCCESS;
612}
613
614DEFUN (no_ospf6_stub_router_shutdown,
615 no_ospf6_stub_router_shutdown_cmd,
616 "no stub-router on-shutdown",
617 NO_STR
618 "Make router a stub router\n"
619 "Advertise inability to be a transit router\n"
620 "Automatically advertise as stub-router before shutdown\n"
621 "Time (seconds) to advertise self as stub-router\n")
622{
623 return CMD_SUCCESS;
624}
625
Paul Jakma6ac29a52008-08-15 13:45:30 +0100626static void
hasso508e53e2004-05-18 18:57:06 +0000627ospf6_show (struct vty *vty, struct ospf6 *o)
paul718e3742002-12-13 20:15:29 +0000628{
hasso52dc7ee2004-09-23 19:18:23 +0000629 struct listnode *n;
hasso508e53e2004-05-18 18:57:06 +0000630 struct ospf6_area *oa;
631 char router_id[16], duration[32];
Dinesh Dutta0edf672013-08-26 03:40:23 +0000632 struct timeval now, running, result;
633 char buf[32], rbuf[32];
paul718e3742002-12-13 20:15:29 +0000634
635 /* process id, router id */
hasso508e53e2004-05-18 18:57:06 +0000636 inet_ntop (AF_INET, &o->router_id, router_id, sizeof (router_id));
637 vty_out (vty, " OSPFv3 Routing Process (0) with Router-ID %s%s",
hasso049207c2004-08-04 20:02:13 +0000638 router_id, VNL);
paul718e3742002-12-13 20:15:29 +0000639
640 /* running time */
Takashi Sogabe86f72dc2009-06-22 13:07:02 +0900641 quagga_gettime (QUAGGA_CLK_MONOTONIC, &now);
hasso508e53e2004-05-18 18:57:06 +0000642 timersub (&now, &o->starttime, &running);
643 timerstring (&running, duration, sizeof (duration));
hasso049207c2004-08-04 20:02:13 +0000644 vty_out (vty, " Running %s%s", duration, VNL);
paul718e3742002-12-13 20:15:29 +0000645
hasso508e53e2004-05-18 18:57:06 +0000646 /* Redistribute configuration */
647 /* XXX */
paul718e3742002-12-13 20:15:29 +0000648
Dinesh Dutta0edf672013-08-26 03:40:23 +0000649 /* Show SPF parameters */
650 vty_out(vty, " Initial SPF scheduling delay %d millisec(s)%s"
651 " Minimum hold time between consecutive SPFs %d millsecond(s)%s"
652 " Maximum hold time between consecutive SPFs %d millsecond(s)%s"
653 " Hold time multiplier is currently %d%s",
654 o->spf_delay, VNL,
655 o->spf_holdtime, VNL,
656 o->spf_max_holdtime, VNL,
657 o->spf_hold_multiplier, VNL);
658
659 vty_out(vty, " SPF algorithm ");
660 if (o->ts_spf.tv_sec || o->ts_spf.tv_usec)
661 {
662 timersub(&now, &o->ts_spf, &result);
663 timerstring(&result, buf, sizeof(buf));
664 ospf6_spf_reason_string(o->last_spf_reason, rbuf, sizeof(rbuf));
665 vty_out(vty, "last executed %s ago, reason %s%s", buf, rbuf, VNL);
666 vty_out (vty, " Last SPF duration %ld sec %ld usec%s",
667 o->ts_spf_duration.tv_sec, o->ts_spf_duration.tv_usec, VNL);
668 }
669 else
670 vty_out(vty, "has not been run$%s", VNL);
671 threadtimer_string(now, o->t_spf_calc, buf, sizeof(buf));
672 vty_out (vty, " SPF timer %s%s%s",
673 (o->t_spf_calc ? "due in " : "is "), buf, VNL);
674
Dinesh Duttf41b4a02013-08-24 08:00:37 +0000675 if (CHECK_FLAG (o->flag, OSPF6_STUB_ROUTER))
676 vty_out (vty, " Router Is Stub Router%s", VNL);
677
paul718e3742002-12-13 20:15:29 +0000678 /* LSAs */
679 vty_out (vty, " Number of AS scoped LSAs is %u%s",
hasso049207c2004-08-04 20:02:13 +0000680 o->lsdb->count, VNL);
paul718e3742002-12-13 20:15:29 +0000681
682 /* Areas */
683 vty_out (vty, " Number of areas in this router is %u%s",
hasso049207c2004-08-04 20:02:13 +0000684 listcount (o->area_list), VNL);
paul1eb8ef22005-04-07 07:30:20 +0000685
Dinesh Dutt3d35ca42013-08-26 03:40:16 +0000686 if (CHECK_FLAG(o->config_flags, OSPF6_LOG_ADJACENCY_CHANGES))
687 {
688 if (CHECK_FLAG(o->config_flags, OSPF6_LOG_ADJACENCY_DETAIL))
689 vty_out(vty, " All adjacency changes are logged%s",VTY_NEWLINE);
690 else
691 vty_out(vty, " Adjacency changes are logged%s",VTY_NEWLINE);
692 }
693
694 vty_out (vty, "%s",VTY_NEWLINE);
695
paul1eb8ef22005-04-07 07:30:20 +0000696 for (ALL_LIST_ELEMENTS_RO (o->area_list, n, oa))
697 ospf6_area_show (vty, oa);
paul718e3742002-12-13 20:15:29 +0000698}
699
hasso508e53e2004-05-18 18:57:06 +0000700/* show top level structures */
701DEFUN (show_ipv6_ospf6,
702 show_ipv6_ospf6_cmd,
703 "show ipv6 ospf6",
704 SHOW_STR
705 IP6_STR
706 OSPF6_STR)
paul718e3742002-12-13 20:15:29 +0000707{
hasso508e53e2004-05-18 18:57:06 +0000708 OSPF6_CMD_CHECK_RUNNING ();
paul718e3742002-12-13 20:15:29 +0000709
hasso508e53e2004-05-18 18:57:06 +0000710 ospf6_show (vty, ospf6);
711 return CMD_SUCCESS;
paul718e3742002-12-13 20:15:29 +0000712}
713
714DEFUN (show_ipv6_ospf6_route,
715 show_ipv6_ospf6_route_cmd,
716 "show ipv6 ospf6 route",
717 SHOW_STR
718 IP6_STR
719 OSPF6_STR
hasso508e53e2004-05-18 18:57:06 +0000720 ROUTE_STR
paul718e3742002-12-13 20:15:29 +0000721 )
722{
hasso508e53e2004-05-18 18:57:06 +0000723 ospf6_route_table_show (vty, argc, argv, ospf6->route_table);
724 return CMD_SUCCESS;
paul718e3742002-12-13 20:15:29 +0000725}
726
727ALIAS (show_ipv6_ospf6_route,
hasso508e53e2004-05-18 18:57:06 +0000728 show_ipv6_ospf6_route_detail_cmd,
hasso4846ef62004-09-03 06:04:00 +0000729 "show ipv6 ospf6 route (X:X::X:X|X:X::X:X/M|detail|summary)",
paul718e3742002-12-13 20:15:29 +0000730 SHOW_STR
731 IP6_STR
732 OSPF6_STR
hasso508e53e2004-05-18 18:57:06 +0000733 ROUTE_STR
734 "Specify IPv6 address\n"
735 "Specify IPv6 prefix\n"
736 "Detailed information\n"
737 "Summary of route table\n"
Paul Jakma6ac29a52008-08-15 13:45:30 +0100738 )
paul718e3742002-12-13 20:15:29 +0000739
hasso508e53e2004-05-18 18:57:06 +0000740DEFUN (show_ipv6_ospf6_route_match,
741 show_ipv6_ospf6_route_match_cmd,
hasso4846ef62004-09-03 06:04:00 +0000742 "show ipv6 ospf6 route X:X::X:X/M match",
paul718e3742002-12-13 20:15:29 +0000743 SHOW_STR
744 IP6_STR
745 OSPF6_STR
hasso508e53e2004-05-18 18:57:06 +0000746 ROUTE_STR
747 "Specify IPv6 prefix\n"
748 "Display routes which match the specified route\n"
paul718e3742002-12-13 20:15:29 +0000749 )
750{
paul0c083ee2004-10-10 12:54:58 +0000751 const char *sargv[CMD_ARGC_MAX];
hasso508e53e2004-05-18 18:57:06 +0000752 int i, sargc;
753
754 /* copy argv to sargv and then append "match" */
755 for (i = 0; i < argc; i++)
756 sargv[i] = argv[i];
757 sargc = argc;
758 sargv[sargc++] = "match";
759 sargv[sargc] = NULL;
760
761 ospf6_route_table_show (vty, sargc, sargv, ospf6->route_table);
762 return CMD_SUCCESS;
paul718e3742002-12-13 20:15:29 +0000763}
764
hasso508e53e2004-05-18 18:57:06 +0000765DEFUN (show_ipv6_ospf6_route_match_detail,
766 show_ipv6_ospf6_route_match_detail_cmd,
hasso4846ef62004-09-03 06:04:00 +0000767 "show ipv6 ospf6 route X:X::X:X/M match detail",
paul718e3742002-12-13 20:15:29 +0000768 SHOW_STR
769 IP6_STR
770 OSPF6_STR
hasso508e53e2004-05-18 18:57:06 +0000771 ROUTE_STR
772 "Specify IPv6 prefix\n"
773 "Display routes which match the specified route\n"
paul718e3742002-12-13 20:15:29 +0000774 "Detailed information\n"
775 )
hasso508e53e2004-05-18 18:57:06 +0000776{
paul0c083ee2004-10-10 12:54:58 +0000777 const char *sargv[CMD_ARGC_MAX];
hasso508e53e2004-05-18 18:57:06 +0000778 int i, sargc;
paul718e3742002-12-13 20:15:29 +0000779
hasso508e53e2004-05-18 18:57:06 +0000780 /* copy argv to sargv and then append "match" and "detail" */
781 for (i = 0; i < argc; i++)
782 sargv[i] = argv[i];
783 sargc = argc;
784 sargv[sargc++] = "match";
785 sargv[sargc++] = "detail";
786 sargv[sargc] = NULL;
paul718e3742002-12-13 20:15:29 +0000787
hasso508e53e2004-05-18 18:57:06 +0000788 ospf6_route_table_show (vty, sargc, sargv, ospf6->route_table);
789 return CMD_SUCCESS;
790}
791
Paul Jakmacb4b8842006-05-15 10:39:30 +0000792ALIAS (show_ipv6_ospf6_route_match,
793 show_ipv6_ospf6_route_longer_cmd,
794 "show ipv6 ospf6 route X:X::X:X/M longer",
795 SHOW_STR
796 IP6_STR
797 OSPF6_STR
798 ROUTE_STR
799 "Specify IPv6 prefix\n"
800 "Display routes longer than the specified route\n"
Paul Jakma6ac29a52008-08-15 13:45:30 +0100801 )
Paul Jakmacb4b8842006-05-15 10:39:30 +0000802
803DEFUN (show_ipv6_ospf6_route_match_detail,
804 show_ipv6_ospf6_route_longer_detail_cmd,
805 "show ipv6 ospf6 route X:X::X:X/M longer detail",
806 SHOW_STR
807 IP6_STR
808 OSPF6_STR
809 ROUTE_STR
810 "Specify IPv6 prefix\n"
811 "Display routes longer than the specified route\n"
812 "Detailed information\n"
813 );
814
hasso4846ef62004-09-03 06:04:00 +0000815ALIAS (show_ipv6_ospf6_route,
816 show_ipv6_ospf6_route_type_cmd,
817 "show ipv6 ospf6 route (intra-area|inter-area|external-1|external-2)",
818 SHOW_STR
819 IP6_STR
820 OSPF6_STR
821 ROUTE_STR
Denis Ovsienkoea402192011-08-19 16:27:16 +0400822 "Display Intra-Area routes\n"
823 "Display Inter-Area routes\n"
824 "Display Type-1 External routes\n"
825 "Display Type-2 External routes\n"
Paul Jakma6ac29a52008-08-15 13:45:30 +0100826 )
hasso4846ef62004-09-03 06:04:00 +0000827
828DEFUN (show_ipv6_ospf6_route_type_detail,
829 show_ipv6_ospf6_route_type_detail_cmd,
830 "show ipv6 ospf6 route (intra-area|inter-area|external-1|external-2) detail",
831 SHOW_STR
832 IP6_STR
833 OSPF6_STR
834 ROUTE_STR
Denis Ovsienkoea402192011-08-19 16:27:16 +0400835 "Display Intra-Area routes\n"
836 "Display Inter-Area routes\n"
837 "Display Type-1 External routes\n"
838 "Display Type-2 External routes\n"
hasso4846ef62004-09-03 06:04:00 +0000839 "Detailed information\n"
840 )
841{
paul0c083ee2004-10-10 12:54:58 +0000842 const char *sargv[CMD_ARGC_MAX];
hasso4846ef62004-09-03 06:04:00 +0000843 int i, sargc;
844
845 /* copy argv to sargv and then append "detail" */
846 for (i = 0; i < argc; i++)
847 sargv[i] = argv[i];
848 sargc = argc;
849 sargv[sargc++] = "detail";
850 sargv[sargc] = NULL;
851
852 ospf6_route_table_show (vty, sargc, sargv, ospf6->route_table);
853 return CMD_SUCCESS;
854}
hasso508e53e2004-05-18 18:57:06 +0000855
Dinesh Duttf41b4a02013-08-24 08:00:37 +0000856static void
857ospf6_stub_router_config_write (struct vty *vty)
858{
859 if (CHECK_FLAG (ospf6->flag, OSPF6_STUB_ROUTER))
860 {
861 vty_out (vty, " stub-router administrative%s", VNL);
862 }
863 return;
864}
865
hasso508e53e2004-05-18 18:57:06 +0000866/* OSPF configuration write function. */
Paul Jakma6ac29a52008-08-15 13:45:30 +0100867static int
hasso508e53e2004-05-18 18:57:06 +0000868config_write_ospf6 (struct vty *vty)
869{
870 char router_id[16];
hasso52dc7ee2004-09-23 19:18:23 +0000871 struct listnode *j, *k;
hasso508e53e2004-05-18 18:57:06 +0000872 struct ospf6_area *oa;
873 struct ospf6_interface *oi;
874
875 /* OSPFv6 configuration. */
876 if (ospf6 == NULL)
877 return CMD_SUCCESS;
hasso508e53e2004-05-18 18:57:06 +0000878
hassoc8a440e2004-10-11 17:02:40 +0000879 inet_ntop (AF_INET, &ospf6->router_id_static, router_id, sizeof (router_id));
hasso049207c2004-08-04 20:02:13 +0000880 vty_out (vty, "router ospf6%s", VNL);
hassoc8a440e2004-10-11 17:02:40 +0000881 if (ospf6->router_id_static != 0)
882 vty_out (vty, " router-id %s%s", router_id, VNL);
hasso508e53e2004-05-18 18:57:06 +0000883
Dinesh Dutt3d35ca42013-08-26 03:40:16 +0000884 /* log-adjacency-changes flag print. */
885 if (CHECK_FLAG(ospf6->config_flags, OSPF6_LOG_ADJACENCY_CHANGES))
886 {
887 vty_out(vty, " log-adjacency-changes");
888 if (CHECK_FLAG(ospf6->config_flags, OSPF6_LOG_ADJACENCY_DETAIL))
889 vty_out(vty, " detail");
890 vty_out(vty, "%s", VTY_NEWLINE);
891 }
892
Dinesh Duttf41b4a02013-08-24 08:00:37 +0000893 ospf6_stub_router_config_write (vty);
hasso508e53e2004-05-18 18:57:06 +0000894 ospf6_redistribute_config_write (vty);
hasso6452df02004-08-15 05:52:07 +0000895 ospf6_area_config_write (vty);
Dinesh Dutt3810e062013-08-24 07:54:09 +0000896 ospf6_spf_config_write (vty);
hasso508e53e2004-05-18 18:57:06 +0000897
paul1eb8ef22005-04-07 07:30:20 +0000898 for (ALL_LIST_ELEMENTS_RO (ospf6->area_list, j, oa))
hasso508e53e2004-05-18 18:57:06 +0000899 {
paul1eb8ef22005-04-07 07:30:20 +0000900 for (ALL_LIST_ELEMENTS_RO (oa->if_list, k, oi))
901 vty_out (vty, " interface %s area %s%s",
902 oi->interface->name, oa->name, VNL);
hasso508e53e2004-05-18 18:57:06 +0000903 }
hasso049207c2004-08-04 20:02:13 +0000904 vty_out (vty, "!%s", VNL);
hasso508e53e2004-05-18 18:57:06 +0000905 return 0;
906}
907
908/* OSPF6 node structure. */
Stephen Hemminger7fc626d2008-12-01 11:10:34 -0800909static struct cmd_node ospf6_node =
hasso508e53e2004-05-18 18:57:06 +0000910{
911 OSPF6_NODE,
912 "%s(config-ospf6)# ",
hasso69b4a812004-08-26 18:10:36 +0000913 1 /* VTYSH */
hasso508e53e2004-05-18 18:57:06 +0000914};
915
916/* Install ospf related commands. */
paul718e3742002-12-13 20:15:29 +0000917void
Paul Jakma6ac29a52008-08-15 13:45:30 +0100918ospf6_top_init (void)
paul718e3742002-12-13 20:15:29 +0000919{
hasso508e53e2004-05-18 18:57:06 +0000920 /* Install ospf6 top node. */
921 install_node (&ospf6_node, config_write_ospf6);
922
923 install_element (VIEW_NODE, &show_ipv6_ospf6_cmd);
924 install_element (ENABLE_NODE, &show_ipv6_ospf6_cmd);
925 install_element (CONFIG_NODE, &router_ospf6_cmd);
Jon6c19d262009-02-11 17:19:07 -0800926 install_element (CONFIG_NODE, &no_router_ospf6_cmd);
hasso508e53e2004-05-18 18:57:06 +0000927
paul718e3742002-12-13 20:15:29 +0000928 install_element (VIEW_NODE, &show_ipv6_ospf6_route_cmd);
hasso508e53e2004-05-18 18:57:06 +0000929 install_element (VIEW_NODE, &show_ipv6_ospf6_route_detail_cmd);
930 install_element (VIEW_NODE, &show_ipv6_ospf6_route_match_cmd);
931 install_element (VIEW_NODE, &show_ipv6_ospf6_route_match_detail_cmd);
Paul Jakmacb4b8842006-05-15 10:39:30 +0000932 install_element (VIEW_NODE, &show_ipv6_ospf6_route_longer_cmd);
933 install_element (VIEW_NODE, &show_ipv6_ospf6_route_longer_detail_cmd);
hasso4846ef62004-09-03 06:04:00 +0000934 install_element (VIEW_NODE, &show_ipv6_ospf6_route_type_cmd);
935 install_element (VIEW_NODE, &show_ipv6_ospf6_route_type_detail_cmd);
paul718e3742002-12-13 20:15:29 +0000936 install_element (ENABLE_NODE, &show_ipv6_ospf6_route_cmd);
hasso508e53e2004-05-18 18:57:06 +0000937 install_element (ENABLE_NODE, &show_ipv6_ospf6_route_detail_cmd);
938 install_element (ENABLE_NODE, &show_ipv6_ospf6_route_match_cmd);
939 install_element (ENABLE_NODE, &show_ipv6_ospf6_route_match_detail_cmd);
Paul Jakmacb4b8842006-05-15 10:39:30 +0000940 install_element (ENABLE_NODE, &show_ipv6_ospf6_route_longer_cmd);
941 install_element (ENABLE_NODE, &show_ipv6_ospf6_route_longer_detail_cmd);
hasso4846ef62004-09-03 06:04:00 +0000942 install_element (ENABLE_NODE, &show_ipv6_ospf6_route_type_cmd);
943 install_element (ENABLE_NODE, &show_ipv6_ospf6_route_type_detail_cmd);
hasso508e53e2004-05-18 18:57:06 +0000944
945 install_default (OSPF6_NODE);
946 install_element (OSPF6_NODE, &ospf6_router_id_cmd);
Dinesh Dutt3d35ca42013-08-26 03:40:16 +0000947 install_element (OSPF6_NODE, &ospf6_log_adjacency_changes_cmd);
948 install_element (OSPF6_NODE, &ospf6_log_adjacency_changes_detail_cmd);
949 install_element (OSPF6_NODE, &no_ospf6_log_adjacency_changes_cmd);
950 install_element (OSPF6_NODE, &no_ospf6_log_adjacency_changes_detail_cmd);
hasso508e53e2004-05-18 18:57:06 +0000951 install_element (OSPF6_NODE, &ospf6_interface_area_cmd);
952 install_element (OSPF6_NODE, &no_ospf6_interface_area_cmd);
Dinesh Duttf41b4a02013-08-24 08:00:37 +0000953 install_element (OSPF6_NODE, &ospf6_stub_router_admin_cmd);
954 install_element (OSPF6_NODE, &no_ospf6_stub_router_admin_cmd);
955 /* For a later time
956 install_element (OSPF6_NODE, &ospf6_stub_router_startup_cmd);
957 install_element (OSPF6_NODE, &no_ospf6_stub_router_startup_cmd);
958 install_element (OSPF6_NODE, &ospf6_stub_router_shutdown_cmd);
959 install_element (OSPF6_NODE, &no_ospf6_stub_router_shutdown_cmd);
960 */
paul718e3742002-12-13 20:15:29 +0000961}
962
hasso508e53e2004-05-18 18:57:06 +0000963