blob: b3d45167b55fab143914d6e371caaba397a4b0fd [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"
hasso049207c2004-08-04 20:02:13 +000049#include "ospf6d.h"
paul718e3742002-12-13 20:15:29 +000050
51/* global ospf6d variable */
52struct ospf6 *ospf6;
53
hasso508e53e2004-05-18 18:57:06 +000054void
55ospf6_top_lsdb_hook_add (struct ospf6_lsa *lsa)
paul718e3742002-12-13 20:15:29 +000056{
hasso508e53e2004-05-18 18:57:06 +000057 switch (ntohs (lsa->header->type))
paul718e3742002-12-13 20:15:29 +000058 {
hasso508e53e2004-05-18 18:57:06 +000059 case OSPF6_LSTYPE_AS_EXTERNAL:
60 ospf6_asbr_lsa_add (lsa);
61 break;
62
63 default:
hasso508e53e2004-05-18 18:57:06 +000064 break;
paul718e3742002-12-13 20:15:29 +000065 }
66}
67
hasso508e53e2004-05-18 18:57:06 +000068void
69ospf6_top_lsdb_hook_remove (struct ospf6_lsa *lsa)
paul718e3742002-12-13 20:15:29 +000070{
hasso508e53e2004-05-18 18:57:06 +000071 switch (ntohs (lsa->header->type))
paul718e3742002-12-13 20:15:29 +000072 {
hasso508e53e2004-05-18 18:57:06 +000073 case OSPF6_LSTYPE_AS_EXTERNAL:
74 ospf6_asbr_lsa_remove (lsa);
75 break;
76
77 default:
hasso508e53e2004-05-18 18:57:06 +000078 break;
paul718e3742002-12-13 20:15:29 +000079 }
80}
81
hasso049207c2004-08-04 20:02:13 +000082void
83ospf6_top_route_hook_add (struct ospf6_route *route)
84{
hasso6452df02004-08-15 05:52:07 +000085 ospf6_abr_originate_summary (route);
hasso049207c2004-08-04 20:02:13 +000086 ospf6_zebra_route_update_add (route);
87}
88
89void
90ospf6_top_route_hook_remove (struct ospf6_route *route)
91{
hasso6452df02004-08-15 05:52:07 +000092 ospf6_abr_originate_summary (route);
hasso049207c2004-08-04 20:02:13 +000093 ospf6_zebra_route_update_remove (route);
94}
95
hasso6452df02004-08-15 05:52:07 +000096void
97ospf6_top_brouter_hook_add (struct ospf6_route *route)
98{
hassoccb59b12004-08-25 09:10:37 +000099 ospf6_abr_examin_brouter (ADV_ROUTER_IN_PREFIX (&route->prefix));
hasso6452df02004-08-15 05:52:07 +0000100 ospf6_asbr_lsentry_add (route);
hassoccb59b12004-08-25 09:10:37 +0000101 ospf6_abr_originate_summary (route);
hasso6452df02004-08-15 05:52:07 +0000102}
103
104void
105ospf6_top_brouter_hook_remove (struct ospf6_route *route)
106{
hassoccb59b12004-08-25 09:10:37 +0000107 ospf6_abr_examin_brouter (ADV_ROUTER_IN_PREFIX (&route->prefix));
hasso6452df02004-08-15 05:52:07 +0000108 ospf6_asbr_lsentry_remove (route);
hassoccb59b12004-08-25 09:10:37 +0000109 ospf6_abr_originate_summary (route);
hasso6452df02004-08-15 05:52:07 +0000110}
111
hasso508e53e2004-05-18 18:57:06 +0000112struct ospf6 *
113ospf6_create ()
paul718e3742002-12-13 20:15:29 +0000114{
hasso508e53e2004-05-18 18:57:06 +0000115 struct ospf6 *o;
paul718e3742002-12-13 20:15:29 +0000116
hasso508e53e2004-05-18 18:57:06 +0000117 o = XMALLOC (MTYPE_OSPF6_TOP, sizeof (struct ospf6));
118 memset (o, 0, sizeof (struct ospf6));
119
120 /* initialize */
121 gettimeofday (&o->starttime, (struct timezone *) NULL);
122 o->area_list = list_new ();
123 o->area_list->cmp = ospf6_area_cmp;
hasso6452df02004-08-15 05:52:07 +0000124 o->lsdb = ospf6_lsdb_create (o);
125 o->lsdb_self = ospf6_lsdb_create (o);
hasso508e53e2004-05-18 18:57:06 +0000126 o->lsdb->hook_add = ospf6_top_lsdb_hook_add;
127 o->lsdb->hook_remove = ospf6_top_lsdb_hook_remove;
128
129 o->route_table = ospf6_route_table_create ();
hasso049207c2004-08-04 20:02:13 +0000130 o->route_table->hook_add = ospf6_top_route_hook_add;
131 o->route_table->hook_remove = ospf6_top_route_hook_remove;
hasso508e53e2004-05-18 18:57:06 +0000132
hasso049207c2004-08-04 20:02:13 +0000133 o->brouter_table = ospf6_route_table_create ();
hasso6452df02004-08-15 05:52:07 +0000134 o->brouter_table->hook_add = ospf6_top_brouter_hook_add;
135 o->brouter_table->hook_remove = ospf6_top_brouter_hook_remove;
hasso049207c2004-08-04 20:02:13 +0000136
hasso508e53e2004-05-18 18:57:06 +0000137 o->external_table = ospf6_route_table_create ();
138 o->external_id_table = route_table_init ();
139
140 return o;
141}
142
143void
144ospf6_delete (struct ospf6 *o)
145{
paul1eb8ef22005-04-07 07:30:20 +0000146 struct listnode *node, *nnode;
hasso508e53e2004-05-18 18:57:06 +0000147 struct ospf6_area *oa;
148
paul1eb8ef22005-04-07 07:30:20 +0000149 for (ALL_LIST_ELEMENTS (o->area_list, node, nnode, oa))
150 ospf6_area_delete (oa);
hasso508e53e2004-05-18 18:57:06 +0000151
152 ospf6_lsdb_delete (o->lsdb);
hasso6452df02004-08-15 05:52:07 +0000153 ospf6_lsdb_delete (o->lsdb_self);
hasso508e53e2004-05-18 18:57:06 +0000154
155 ospf6_route_table_delete (o->route_table);
hasso049207c2004-08-04 20:02:13 +0000156 ospf6_route_table_delete (o->brouter_table);
hasso508e53e2004-05-18 18:57:06 +0000157
158 ospf6_route_table_delete (o->external_table);
159 route_table_finish (o->external_id_table);
160
161 XFREE (MTYPE_OSPF6_TOP, o);
162}
163
164void
165ospf6_enable (struct ospf6 *o)
166{
paul1eb8ef22005-04-07 07:30:20 +0000167 struct listnode *node, *nnode;
hasso508e53e2004-05-18 18:57:06 +0000168 struct ospf6_area *oa;
169
170 if (CHECK_FLAG (o->flag, OSPF6_DISABLED))
171 {
172 UNSET_FLAG (o->flag, OSPF6_DISABLED);
paul1eb8ef22005-04-07 07:30:20 +0000173 for (ALL_LIST_ELEMENTS (o->area_list, node, nnode, oa))
174 ospf6_area_enable (oa);
paul718e3742002-12-13 20:15:29 +0000175 }
176}
177
hasso508e53e2004-05-18 18:57:06 +0000178void
179ospf6_disable (struct ospf6 *o)
paul718e3742002-12-13 20:15:29 +0000180{
paul1eb8ef22005-04-07 07:30:20 +0000181 struct listnode *node, *nnode;
hasso508e53e2004-05-18 18:57:06 +0000182 struct ospf6_area *oa;
paul718e3742002-12-13 20:15:29 +0000183
hasso508e53e2004-05-18 18:57:06 +0000184 if (! CHECK_FLAG (o->flag, OSPF6_DISABLED))
185 {
186 SET_FLAG (o->flag, OSPF6_DISABLED);
paul1eb8ef22005-04-07 07:30:20 +0000187
188 for (ALL_LIST_ELEMENTS (o->area_list, node, nnode, oa))
189 ospf6_area_disable (oa);
paul718e3742002-12-13 20:15:29 +0000190
hasso508e53e2004-05-18 18:57:06 +0000191 ospf6_lsdb_remove_all (o->lsdb);
192 ospf6_route_remove_all (o->route_table);
hasso6452df02004-08-15 05:52:07 +0000193 ospf6_route_remove_all (o->brouter_table);
hasso508e53e2004-05-18 18:57:06 +0000194 }
195}
paul718e3742002-12-13 20:15:29 +0000196
hasso508e53e2004-05-18 18:57:06 +0000197int
198ospf6_maxage_remover (struct thread *thread)
199{
200 struct ospf6 *o = (struct ospf6 *) THREAD_ARG (thread);
201 struct ospf6_area *oa;
202 struct ospf6_interface *oi;
203 struct ospf6_neighbor *on;
hasso52dc7ee2004-09-23 19:18:23 +0000204 struct listnode *i, *j, *k;
hasso508e53e2004-05-18 18:57:06 +0000205
206 o->maxage_remover = (struct thread *) NULL;
hasso508e53e2004-05-18 18:57:06 +0000207
paul1eb8ef22005-04-07 07:30:20 +0000208 for (ALL_LIST_ELEMENTS_RO (o->area_list, i, oa))
hasso508e53e2004-05-18 18:57:06 +0000209 {
paul1eb8ef22005-04-07 07:30:20 +0000210 for (ALL_LIST_ELEMENTS_RO (oa->if_list, j, oi))
hasso508e53e2004-05-18 18:57:06 +0000211 {
paul1eb8ef22005-04-07 07:30:20 +0000212 for (ALL_LIST_ELEMENTS_RO (oi->neighbor_list, k, on))
hasso508e53e2004-05-18 18:57:06 +0000213 {
hasso508e53e2004-05-18 18:57:06 +0000214 if (on->state != OSPF6_NEIGHBOR_EXCHANGE &&
215 on->state != OSPF6_NEIGHBOR_LOADING)
216 continue;
217
hasso508e53e2004-05-18 18:57:06 +0000218 return 0;
219 }
220 }
221 }
222
paul1eb8ef22005-04-07 07:30:20 +0000223 for (ALL_LIST_ELEMENTS_RO (o->area_list, i, oa))
hasso508e53e2004-05-18 18:57:06 +0000224 {
paul1eb8ef22005-04-07 07:30:20 +0000225 for (ALL_LIST_ELEMENTS_RO (oa->if_list, j, oi))
226 OSPF6_LSDB_MAXAGE_REMOVER (oi->lsdb);
227
hasso508e53e2004-05-18 18:57:06 +0000228 OSPF6_LSDB_MAXAGE_REMOVER (oa->lsdb);
229 }
230 OSPF6_LSDB_MAXAGE_REMOVER (o->lsdb);
231
paul718e3742002-12-13 20:15:29 +0000232 return 0;
233}
234
235void
hasso508e53e2004-05-18 18:57:06 +0000236ospf6_maxage_remove (struct ospf6 *o)
paul718e3742002-12-13 20:15:29 +0000237{
hasso508e53e2004-05-18 18:57:06 +0000238 if (o && ! o->maxage_remover)
239 o->maxage_remover = thread_add_event (master, ospf6_maxage_remover, o, 0);
240}
paul718e3742002-12-13 20:15:29 +0000241
hasso508e53e2004-05-18 18:57:06 +0000242/* start ospf6 */
243DEFUN (router_ospf6,
244 router_ospf6_cmd,
245 "router ospf6",
246 ROUTER_STR
247 OSPF6_STR)
248{
249 if (ospf6 == NULL)
250 ospf6 = ospf6_create ();
251 if (CHECK_FLAG (ospf6->flag, OSPF6_DISABLED))
252 ospf6_enable (ospf6);
253
254 /* set current ospf point. */
255 vty->node = OSPF6_NODE;
256 vty->index = ospf6;
257
258 return CMD_SUCCESS;
259}
260
261/* stop ospf6 */
262DEFUN (no_router_ospf6,
263 no_router_ospf6_cmd,
264 "no router ospf6",
265 NO_STR
266 OSPF6_ROUTER_STR)
267{
268 if (ospf6 == NULL || CHECK_FLAG (ospf6->flag, OSPF6_DISABLED))
hasso049207c2004-08-04 20:02:13 +0000269 vty_out (vty, "OSPFv3 is not running%s", VNL);
hasso508e53e2004-05-18 18:57:06 +0000270 else
271 ospf6_disable (ospf6);
272
273 /* return to config node . */
274 vty->node = CONFIG_NODE;
275 vty->index = NULL;
276
277 return CMD_SUCCESS;
278}
279
280/* change Router_ID commands. */
281DEFUN (ospf6_router_id,
282 ospf6_router_id_cmd,
283 "router-id A.B.C.D",
284 "Configure OSPF Router-ID\n"
285 V4NOTATION_STR)
286{
287 int ret;
288 u_int32_t router_id;
289 struct ospf6 *o;
290
291 o = (struct ospf6 *) vty->index;
292
293 ret = inet_pton (AF_INET, argv[0], &router_id);
294 if (ret == 0)
295 {
hasso049207c2004-08-04 20:02:13 +0000296 vty_out (vty, "malformed OSPF Router-ID: %s%s", argv[0], VNL);
hasso508e53e2004-05-18 18:57:06 +0000297 return CMD_SUCCESS;
298 }
299
hassoc8a440e2004-10-11 17:02:40 +0000300 o->router_id_static = router_id;
301 if (o->router_id == 0)
302 o->router_id = router_id;
303
hasso508e53e2004-05-18 18:57:06 +0000304 return CMD_SUCCESS;
305}
306
307DEFUN (ospf6_interface_area,
308 ospf6_interface_area_cmd,
309 "interface IFNAME area A.B.C.D",
310 "Enable routing on an IPv6 interface\n"
311 IFNAME_STR
312 "Specify the OSPF6 area ID\n"
313 "OSPF6 area ID in IPv4 address notation\n"
314 )
315{
316 struct ospf6 *o;
hasso3b687352004-08-19 06:56:53 +0000317 struct ospf6_area *oa;
hasso508e53e2004-05-18 18:57:06 +0000318 struct ospf6_interface *oi;
319 struct interface *ifp;
320 u_int32_t area_id;
321
322 o = (struct ospf6 *) vty->index;
323
324 /* find/create ospf6 interface */
325 ifp = if_get_by_name (argv[0]);
326 oi = (struct ospf6_interface *) ifp->info;
327 if (oi == NULL)
328 oi = ospf6_interface_create (ifp);
329 if (oi->area)
330 {
331 vty_out (vty, "%s already attached to Area %s%s",
hasso049207c2004-08-04 20:02:13 +0000332 oi->interface->name, oi->area->name, VNL);
hasso508e53e2004-05-18 18:57:06 +0000333 return CMD_SUCCESS;
334 }
335
336 /* parse Area-ID */
337 if (inet_pton (AF_INET, argv[1], &area_id) != 1)
338 {
hasso049207c2004-08-04 20:02:13 +0000339 vty_out (vty, "Invalid Area-ID: %s%s", argv[1], VNL);
hasso508e53e2004-05-18 18:57:06 +0000340 return CMD_SUCCESS;
341 }
342
343 /* find/create ospf6 area */
344 oa = ospf6_area_lookup (area_id, o);
345 if (oa == NULL)
346 oa = ospf6_area_create (area_id, o);
347
348 /* attach interface to area */
349 listnode_add (oa->if_list, oi); /* sort ?? */
350 oi->area = oa;
351
hasso6452df02004-08-15 05:52:07 +0000352 SET_FLAG (oa->flag, OSPF6_AREA_ENABLE);
353
hasso508e53e2004-05-18 18:57:06 +0000354 /* start up */
355 thread_add_event (master, interface_up, oi, 0);
hasso6452df02004-08-15 05:52:07 +0000356
hasso3b687352004-08-19 06:56:53 +0000357 /* If the router is ABR, originate summary routes */
358 if (ospf6_is_router_abr (o))
359 ospf6_abr_enable_area (oa);
hasso6452df02004-08-15 05:52:07 +0000360
hasso508e53e2004-05-18 18:57:06 +0000361 return CMD_SUCCESS;
362}
363
364DEFUN (no_ospf6_interface_area,
365 no_ospf6_interface_area_cmd,
366 "no interface IFNAME area A.B.C.D",
367 NO_STR
368 "Disable routing on an IPv6 interface\n"
369 IFNAME_STR
370 "Specify the OSPF6 area ID\n"
371 "OSPF6 area ID in IPv4 address notation\n"
372 )
373{
374 struct ospf6 *o;
375 struct ospf6_interface *oi;
hasso3b687352004-08-19 06:56:53 +0000376 struct ospf6_area *oa;
hasso508e53e2004-05-18 18:57:06 +0000377 struct interface *ifp;
378 u_int32_t area_id;
379
380 o = (struct ospf6 *) vty->index;
381
382 ifp = if_lookup_by_name (argv[0]);
383 if (ifp == NULL)
384 {
hasso049207c2004-08-04 20:02:13 +0000385 vty_out (vty, "No such interface %s%s", argv[0], VNL);
hasso508e53e2004-05-18 18:57:06 +0000386 return CMD_SUCCESS;
387 }
388
389 oi = (struct ospf6_interface *) ifp->info;
390 if (oi == NULL)
391 {
hasso049207c2004-08-04 20:02:13 +0000392 vty_out (vty, "Interface %s not enabled%s", ifp->name, VNL);
hasso508e53e2004-05-18 18:57:06 +0000393 return CMD_SUCCESS;
394 }
395
396 /* parse Area-ID */
397 if (inet_pton (AF_INET, argv[1], &area_id) != 1)
398 {
hasso049207c2004-08-04 20:02:13 +0000399 vty_out (vty, "Invalid Area-ID: %s%s", argv[1], VNL);
hasso508e53e2004-05-18 18:57:06 +0000400 return CMD_SUCCESS;
401 }
402
403 if (oi->area->area_id != area_id)
404 {
405 vty_out (vty, "Wrong Area-ID: %s is attached to area %s%s",
hasso049207c2004-08-04 20:02:13 +0000406 oi->interface->name, oi->area->name, VNL);
hasso508e53e2004-05-18 18:57:06 +0000407 return CMD_SUCCESS;
408 }
409
410 thread_execute (master, interface_down, oi, 0);
411
hasso6452df02004-08-15 05:52:07 +0000412 oa = oi->area;
hasso508e53e2004-05-18 18:57:06 +0000413 listnode_delete (oi->area->if_list, oi);
414 oi->area = (struct ospf6_area *) NULL;
415
hasso6452df02004-08-15 05:52:07 +0000416 /* Withdraw inter-area routes from this area, if necessary */
417 if (oa->if_list->count == 0)
418 {
419 UNSET_FLAG (oa->flag, OSPF6_AREA_ENABLE);
hasso3b687352004-08-19 06:56:53 +0000420 ospf6_abr_disable_area (oa);
hasso6452df02004-08-15 05:52:07 +0000421 }
422
hasso508e53e2004-05-18 18:57:06 +0000423 return CMD_SUCCESS;
paul718e3742002-12-13 20:15:29 +0000424}
425
426void
hasso508e53e2004-05-18 18:57:06 +0000427ospf6_show (struct vty *vty, struct ospf6 *o)
paul718e3742002-12-13 20:15:29 +0000428{
hasso52dc7ee2004-09-23 19:18:23 +0000429 struct listnode *n;
hasso508e53e2004-05-18 18:57:06 +0000430 struct ospf6_area *oa;
431 char router_id[16], duration[32];
paul718e3742002-12-13 20:15:29 +0000432 struct timeval now, running;
433
434 /* process id, router id */
hasso508e53e2004-05-18 18:57:06 +0000435 inet_ntop (AF_INET, &o->router_id, router_id, sizeof (router_id));
436 vty_out (vty, " OSPFv3 Routing Process (0) with Router-ID %s%s",
hasso049207c2004-08-04 20:02:13 +0000437 router_id, VNL);
paul718e3742002-12-13 20:15:29 +0000438
439 /* running time */
440 gettimeofday (&now, (struct timezone *)NULL);
hasso508e53e2004-05-18 18:57:06 +0000441 timersub (&now, &o->starttime, &running);
442 timerstring (&running, duration, sizeof (duration));
hasso049207c2004-08-04 20:02:13 +0000443 vty_out (vty, " Running %s%s", duration, VNL);
paul718e3742002-12-13 20:15:29 +0000444
hasso508e53e2004-05-18 18:57:06 +0000445 /* Redistribute configuration */
446 /* XXX */
paul718e3742002-12-13 20:15:29 +0000447
448 /* LSAs */
449 vty_out (vty, " Number of AS scoped LSAs is %u%s",
hasso049207c2004-08-04 20:02:13 +0000450 o->lsdb->count, VNL);
paul718e3742002-12-13 20:15:29 +0000451
452 /* Areas */
453 vty_out (vty, " Number of areas in this router is %u%s",
hasso049207c2004-08-04 20:02:13 +0000454 listcount (o->area_list), VNL);
paul1eb8ef22005-04-07 07:30:20 +0000455
456 for (ALL_LIST_ELEMENTS_RO (o->area_list, n, oa))
457 ospf6_area_show (vty, oa);
paul718e3742002-12-13 20:15:29 +0000458}
459
hasso508e53e2004-05-18 18:57:06 +0000460/* show top level structures */
461DEFUN (show_ipv6_ospf6,
462 show_ipv6_ospf6_cmd,
463 "show ipv6 ospf6",
464 SHOW_STR
465 IP6_STR
466 OSPF6_STR)
paul718e3742002-12-13 20:15:29 +0000467{
hasso508e53e2004-05-18 18:57:06 +0000468 OSPF6_CMD_CHECK_RUNNING ();
paul718e3742002-12-13 20:15:29 +0000469
hasso508e53e2004-05-18 18:57:06 +0000470 ospf6_show (vty, ospf6);
471 return CMD_SUCCESS;
paul718e3742002-12-13 20:15:29 +0000472}
473
474DEFUN (show_ipv6_ospf6_route,
475 show_ipv6_ospf6_route_cmd,
476 "show ipv6 ospf6 route",
477 SHOW_STR
478 IP6_STR
479 OSPF6_STR
hasso508e53e2004-05-18 18:57:06 +0000480 ROUTE_STR
paul718e3742002-12-13 20:15:29 +0000481 )
482{
hasso508e53e2004-05-18 18:57:06 +0000483 ospf6_route_table_show (vty, argc, argv, ospf6->route_table);
484 return CMD_SUCCESS;
paul718e3742002-12-13 20:15:29 +0000485}
486
487ALIAS (show_ipv6_ospf6_route,
hasso508e53e2004-05-18 18:57:06 +0000488 show_ipv6_ospf6_route_detail_cmd,
hasso4846ef62004-09-03 06:04:00 +0000489 "show ipv6 ospf6 route (X:X::X:X|X:X::X:X/M|detail|summary)",
paul718e3742002-12-13 20:15:29 +0000490 SHOW_STR
491 IP6_STR
492 OSPF6_STR
hasso508e53e2004-05-18 18:57:06 +0000493 ROUTE_STR
494 "Specify IPv6 address\n"
495 "Specify IPv6 prefix\n"
496 "Detailed information\n"
497 "Summary of route table\n"
498 );
paul718e3742002-12-13 20:15:29 +0000499
hasso508e53e2004-05-18 18:57:06 +0000500DEFUN (show_ipv6_ospf6_route_match,
501 show_ipv6_ospf6_route_match_cmd,
hasso4846ef62004-09-03 06:04:00 +0000502 "show ipv6 ospf6 route X:X::X:X/M match",
paul718e3742002-12-13 20:15:29 +0000503 SHOW_STR
504 IP6_STR
505 OSPF6_STR
hasso508e53e2004-05-18 18:57:06 +0000506 ROUTE_STR
507 "Specify IPv6 prefix\n"
508 "Display routes which match the specified route\n"
paul718e3742002-12-13 20:15:29 +0000509 )
510{
paul0c083ee2004-10-10 12:54:58 +0000511 const char *sargv[CMD_ARGC_MAX];
hasso508e53e2004-05-18 18:57:06 +0000512 int i, sargc;
513
514 /* copy argv to sargv and then append "match" */
515 for (i = 0; i < argc; i++)
516 sargv[i] = argv[i];
517 sargc = argc;
518 sargv[sargc++] = "match";
519 sargv[sargc] = NULL;
520
521 ospf6_route_table_show (vty, sargc, sargv, ospf6->route_table);
522 return CMD_SUCCESS;
paul718e3742002-12-13 20:15:29 +0000523}
524
hasso508e53e2004-05-18 18:57:06 +0000525DEFUN (show_ipv6_ospf6_route_match_detail,
526 show_ipv6_ospf6_route_match_detail_cmd,
hasso4846ef62004-09-03 06:04:00 +0000527 "show ipv6 ospf6 route X:X::X:X/M match detail",
paul718e3742002-12-13 20:15:29 +0000528 SHOW_STR
529 IP6_STR
530 OSPF6_STR
hasso508e53e2004-05-18 18:57:06 +0000531 ROUTE_STR
532 "Specify IPv6 prefix\n"
533 "Display routes which match the specified route\n"
paul718e3742002-12-13 20:15:29 +0000534 "Detailed information\n"
535 )
hasso508e53e2004-05-18 18:57:06 +0000536{
paul0c083ee2004-10-10 12:54:58 +0000537 const char *sargv[CMD_ARGC_MAX];
hasso508e53e2004-05-18 18:57:06 +0000538 int i, sargc;
paul718e3742002-12-13 20:15:29 +0000539
hasso508e53e2004-05-18 18:57:06 +0000540 /* copy argv to sargv and then append "match" and "detail" */
541 for (i = 0; i < argc; i++)
542 sargv[i] = argv[i];
543 sargc = argc;
544 sargv[sargc++] = "match";
545 sargv[sargc++] = "detail";
546 sargv[sargc] = NULL;
paul718e3742002-12-13 20:15:29 +0000547
hasso508e53e2004-05-18 18:57:06 +0000548 ospf6_route_table_show (vty, sargc, sargv, ospf6->route_table);
549 return CMD_SUCCESS;
550}
551
hasso4846ef62004-09-03 06:04:00 +0000552ALIAS (show_ipv6_ospf6_route,
553 show_ipv6_ospf6_route_type_cmd,
554 "show ipv6 ospf6 route (intra-area|inter-area|external-1|external-2)",
555 SHOW_STR
556 IP6_STR
557 OSPF6_STR
558 ROUTE_STR
559 "Dispaly Intra-Area routes\n"
560 "Dispaly Inter-Area routes\n"
561 "Dispaly Type-1 External routes\n"
562 "Dispaly Type-2 External routes\n"
563 );
564
565DEFUN (show_ipv6_ospf6_route_type_detail,
566 show_ipv6_ospf6_route_type_detail_cmd,
567 "show ipv6 ospf6 route (intra-area|inter-area|external-1|external-2) detail",
568 SHOW_STR
569 IP6_STR
570 OSPF6_STR
571 ROUTE_STR
572 "Dispaly Intra-Area routes\n"
573 "Dispaly Inter-Area routes\n"
574 "Dispaly Type-1 External routes\n"
575 "Dispaly Type-2 External routes\n"
576 "Detailed information\n"
577 )
578{
paul0c083ee2004-10-10 12:54:58 +0000579 const char *sargv[CMD_ARGC_MAX];
hasso4846ef62004-09-03 06:04:00 +0000580 int i, sargc;
581
582 /* copy argv to sargv and then append "detail" */
583 for (i = 0; i < argc; i++)
584 sargv[i] = argv[i];
585 sargc = argc;
586 sargv[sargc++] = "detail";
587 sargv[sargc] = NULL;
588
589 ospf6_route_table_show (vty, sargc, sargv, ospf6->route_table);
590 return CMD_SUCCESS;
591}
hasso508e53e2004-05-18 18:57:06 +0000592
593/* OSPF configuration write function. */
594int
595config_write_ospf6 (struct vty *vty)
596{
597 char router_id[16];
hasso52dc7ee2004-09-23 19:18:23 +0000598 struct listnode *j, *k;
hasso508e53e2004-05-18 18:57:06 +0000599 struct ospf6_area *oa;
600 struct ospf6_interface *oi;
601
602 /* OSPFv6 configuration. */
603 if (ospf6 == NULL)
604 return CMD_SUCCESS;
605 if (CHECK_FLAG (ospf6->flag, OSPF6_DISABLED))
606 return CMD_SUCCESS;
607
hassoc8a440e2004-10-11 17:02:40 +0000608 inet_ntop (AF_INET, &ospf6->router_id_static, router_id, sizeof (router_id));
hasso049207c2004-08-04 20:02:13 +0000609 vty_out (vty, "router ospf6%s", VNL);
hassoc8a440e2004-10-11 17:02:40 +0000610 if (ospf6->router_id_static != 0)
611 vty_out (vty, " router-id %s%s", router_id, VNL);
hasso508e53e2004-05-18 18:57:06 +0000612
613 ospf6_redistribute_config_write (vty);
hasso6452df02004-08-15 05:52:07 +0000614 ospf6_area_config_write (vty);
hasso508e53e2004-05-18 18:57:06 +0000615
paul1eb8ef22005-04-07 07:30:20 +0000616 for (ALL_LIST_ELEMENTS_RO (ospf6->area_list, j, oa))
hasso508e53e2004-05-18 18:57:06 +0000617 {
paul1eb8ef22005-04-07 07:30:20 +0000618 for (ALL_LIST_ELEMENTS_RO (oa->if_list, k, oi))
619 vty_out (vty, " interface %s area %s%s",
620 oi->interface->name, oa->name, VNL);
hasso508e53e2004-05-18 18:57:06 +0000621 }
hasso049207c2004-08-04 20:02:13 +0000622 vty_out (vty, "!%s", VNL);
hasso508e53e2004-05-18 18:57:06 +0000623 return 0;
624}
625
626/* OSPF6 node structure. */
627struct cmd_node ospf6_node =
628{
629 OSPF6_NODE,
630 "%s(config-ospf6)# ",
hasso69b4a812004-08-26 18:10:36 +0000631 1 /* VTYSH */
hasso508e53e2004-05-18 18:57:06 +0000632};
633
634/* Install ospf related commands. */
paul718e3742002-12-13 20:15:29 +0000635void
636ospf6_top_init ()
637{
hasso508e53e2004-05-18 18:57:06 +0000638 /* Install ospf6 top node. */
639 install_node (&ospf6_node, config_write_ospf6);
640
641 install_element (VIEW_NODE, &show_ipv6_ospf6_cmd);
642 install_element (ENABLE_NODE, &show_ipv6_ospf6_cmd);
643 install_element (CONFIG_NODE, &router_ospf6_cmd);
644
paul718e3742002-12-13 20:15:29 +0000645 install_element (VIEW_NODE, &show_ipv6_ospf6_route_cmd);
hasso508e53e2004-05-18 18:57:06 +0000646 install_element (VIEW_NODE, &show_ipv6_ospf6_route_detail_cmd);
647 install_element (VIEW_NODE, &show_ipv6_ospf6_route_match_cmd);
648 install_element (VIEW_NODE, &show_ipv6_ospf6_route_match_detail_cmd);
hasso4846ef62004-09-03 06:04:00 +0000649 install_element (VIEW_NODE, &show_ipv6_ospf6_route_type_cmd);
650 install_element (VIEW_NODE, &show_ipv6_ospf6_route_type_detail_cmd);
paul718e3742002-12-13 20:15:29 +0000651 install_element (ENABLE_NODE, &show_ipv6_ospf6_route_cmd);
hasso508e53e2004-05-18 18:57:06 +0000652 install_element (ENABLE_NODE, &show_ipv6_ospf6_route_detail_cmd);
653 install_element (ENABLE_NODE, &show_ipv6_ospf6_route_match_cmd);
654 install_element (ENABLE_NODE, &show_ipv6_ospf6_route_match_detail_cmd);
hasso4846ef62004-09-03 06:04:00 +0000655 install_element (ENABLE_NODE, &show_ipv6_ospf6_route_type_cmd);
656 install_element (ENABLE_NODE, &show_ipv6_ospf6_route_type_detail_cmd);
hasso508e53e2004-05-18 18:57:06 +0000657
658 install_default (OSPF6_NODE);
659 install_element (OSPF6_NODE, &ospf6_router_id_cmd);
660 install_element (OSPF6_NODE, &ospf6_interface_area_cmd);
661 install_element (OSPF6_NODE, &no_ospf6_interface_area_cmd);
662 install_element (OSPF6_NODE, &no_router_ospf6_cmd);
paul718e3742002-12-13 20:15:29 +0000663}
664
hasso508e53e2004-05-18 18:57:06 +0000665