blob: 1c1f2fc6c01714017a1cdec50bff6b7065ff670e [file] [log] [blame]
paul718e3742002-12-13 20:15:29 +00001/* OSPF VTY interface.
2 * Copyright (C) 2000 Toshiaki Takada
3 *
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 Free
18 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
19 * 02111-1307, USA.
20 */
21
22#include <zebra.h>
23
24#include "memory.h"
25#include "thread.h"
26#include "prefix.h"
27#include "table.h"
28#include "vty.h"
29#include "command.h"
30#include "plist.h"
31#include "log.h"
32#include "zclient.h"
33
34#include "ospfd/ospfd.h"
35#include "ospfd/ospf_asbr.h"
36#include "ospfd/ospf_lsa.h"
37#include "ospfd/ospf_lsdb.h"
38#include "ospfd/ospf_ism.h"
39#include "ospfd/ospf_interface.h"
40#include "ospfd/ospf_nsm.h"
41#include "ospfd/ospf_neighbor.h"
42#include "ospfd/ospf_flood.h"
43#include "ospfd/ospf_abr.h"
44#include "ospfd/ospf_spf.h"
45#include "ospfd/ospf_route.h"
46#include "ospfd/ospf_zebra.h"
47/*#include "ospfd/ospf_routemap.h" */
48#include "ospfd/ospf_vty.h"
49#include "ospfd/ospf_dump.h"
50
51
hassoeb1ce602004-10-08 08:17:22 +000052const static char *ospf_network_type_str[] =
paul718e3742002-12-13 20:15:29 +000053{
54 "Null",
55 "POINTOPOINT",
56 "BROADCAST",
57 "NBMA",
58 "POINTOMULTIPOINT",
59 "VIRTUALLINK",
60 "LOOPBACK"
61};
62
63
64/* Utility functions. */
paul4dadc292005-05-06 21:37:42 +000065static int
paul6c835672004-10-11 11:00:30 +000066ospf_str2area_id (const char *str, struct in_addr *area_id, int *format)
paul718e3742002-12-13 20:15:29 +000067{
68 char *endptr = NULL;
69 unsigned long ret;
70
71 /* match "A.B.C.D". */
72 if (strchr (str, '.') != NULL)
73 {
74 ret = inet_aton (str, area_id);
75 if (!ret)
76 return -1;
77 *format = OSPF_AREA_ID_FORMAT_ADDRESS;
78 }
79 /* match "<0-4294967295>". */
80 else
81 {
82 ret = strtoul (str, &endptr, 10);
83 if (*endptr != '\0' || (ret == ULONG_MAX && errno == ERANGE))
84 return -1;
85
86 area_id->s_addr = htonl (ret);
87 *format = OSPF_AREA_ID_FORMAT_DECIMAL;
88 }
89
90 return 0;
91}
92
93
paul4dadc292005-05-06 21:37:42 +000094static int
paul6c835672004-10-11 11:00:30 +000095str2distribute_source (const char *str, int *source)
paul718e3742002-12-13 20:15:29 +000096{
97 /* Sanity check. */
98 if (str == NULL)
99 return 0;
100
101 if (strncmp (str, "k", 1) == 0)
102 *source = ZEBRA_ROUTE_KERNEL;
103 else if (strncmp (str, "c", 1) == 0)
104 *source = ZEBRA_ROUTE_CONNECT;
105 else if (strncmp (str, "s", 1) == 0)
106 *source = ZEBRA_ROUTE_STATIC;
107 else if (strncmp (str, "r", 1) == 0)
108 *source = ZEBRA_ROUTE_RIP;
109 else if (strncmp (str, "b", 1) == 0)
110 *source = ZEBRA_ROUTE_BGP;
111 else
112 return 0;
113
114 return 1;
115}
116
paul4dadc292005-05-06 21:37:42 +0000117static int
paul6c835672004-10-11 11:00:30 +0000118str2metric (const char *str, int *metric)
paul718e3742002-12-13 20:15:29 +0000119{
120 /* Sanity check. */
121 if (str == NULL)
122 return 0;
123
124 *metric = strtol (str, NULL, 10);
125 if (*metric < 0 && *metric > 16777214)
126 {
127 /* vty_out (vty, "OSPF metric value is invalid%s", VTY_NEWLINE); */
128 return 0;
129 }
130
131 return 1;
132}
133
paul4dadc292005-05-06 21:37:42 +0000134static int
paul6c835672004-10-11 11:00:30 +0000135str2metric_type (const char *str, int *metric_type)
paul718e3742002-12-13 20:15:29 +0000136{
137 /* Sanity check. */
138 if (str == NULL)
139 return 0;
140
141 if (strncmp (str, "1", 1) == 0)
142 *metric_type = EXTERNAL_METRIC_TYPE_1;
143 else if (strncmp (str, "2", 1) == 0)
144 *metric_type = EXTERNAL_METRIC_TYPE_2;
145 else
146 return 0;
147
148 return 1;
149}
150
151int
152ospf_oi_count (struct interface *ifp)
153{
154 struct route_node *rn;
155 int i = 0;
156
157 for (rn = route_top (IF_OIFS (ifp)); rn; rn = route_next (rn))
158 if (rn->info)
159 i++;
160
161 return i;
162}
163
164
165DEFUN (router_ospf,
166 router_ospf_cmd,
167 "router ospf",
168 "Enable a routing process\n"
169 "Start OSPF configuration\n")
170{
171 vty->node = OSPF_NODE;
172 vty->index = ospf_get ();
173
174 return CMD_SUCCESS;
175}
176
177DEFUN (no_router_ospf,
178 no_router_ospf_cmd,
179 "no router ospf",
180 NO_STR
181 "Enable a routing process\n"
182 "Start OSPF configuration\n")
183{
paul020709f2003-04-04 02:44:16 +0000184 struct ospf *ospf;
185
186 ospf = ospf_lookup ();
187 if (ospf == NULL)
paul718e3742002-12-13 20:15:29 +0000188 {
paul020709f2003-04-04 02:44:16 +0000189 vty_out (vty, "There isn't active ospf instance%s", VTY_NEWLINE);
paul718e3742002-12-13 20:15:29 +0000190 return CMD_WARNING;
191 }
192
paul020709f2003-04-04 02:44:16 +0000193 ospf_finish (ospf);
paul718e3742002-12-13 20:15:29 +0000194
195 return CMD_SUCCESS;
196}
197
198DEFUN (ospf_router_id,
199 ospf_router_id_cmd,
200 "ospf router-id A.B.C.D",
201 "OSPF specific commands\n"
202 "router-id for the OSPF process\n"
203 "OSPF router-id in IP address format\n")
204{
paul68980082003-03-25 05:07:42 +0000205 struct ospf *ospf = vty->index;
paul718e3742002-12-13 20:15:29 +0000206 struct in_addr router_id;
paul68980082003-03-25 05:07:42 +0000207 int ret;
paul718e3742002-12-13 20:15:29 +0000208
209 ret = inet_aton (argv[0], &router_id);
210 if (!ret)
211 {
212 vty_out (vty, "Please specify Router ID by A.B.C.D%s", VTY_NEWLINE);
213 return CMD_WARNING;
214 }
215
paul68980082003-03-25 05:07:42 +0000216 ospf->router_id_static = router_id;
paul718e3742002-12-13 20:15:29 +0000217
paul68980082003-03-25 05:07:42 +0000218 if (ospf->t_router_id_update == NULL)
paul020709f2003-04-04 02:44:16 +0000219 OSPF_TIMER_ON (ospf->t_router_id_update, ospf_router_id_update_timer,
220 OSPF_ROUTER_ID_UPDATE_DELAY);
paul718e3742002-12-13 20:15:29 +0000221
222 return CMD_SUCCESS;
223}
224
225ALIAS (ospf_router_id,
paula2c62832003-04-23 17:01:31 +0000226 router_ospf_id_cmd,
paul718e3742002-12-13 20:15:29 +0000227 "router-id A.B.C.D",
228 "router-id for the OSPF process\n"
229 "OSPF router-id in IP address format\n")
230
231DEFUN (no_ospf_router_id,
232 no_ospf_router_id_cmd,
233 "no ospf router-id",
234 NO_STR
235 "OSPF specific commands\n"
236 "router-id for the OSPF process\n")
237{
paul68980082003-03-25 05:07:42 +0000238 struct ospf *ospf = vty->index;
paul718e3742002-12-13 20:15:29 +0000239
paul68980082003-03-25 05:07:42 +0000240 ospf->router_id_static.s_addr = 0;
241
242 ospf_router_id_update (ospf);
paul718e3742002-12-13 20:15:29 +0000243
244 return CMD_SUCCESS;
245}
246
247ALIAS (no_ospf_router_id,
paula2c62832003-04-23 17:01:31 +0000248 no_router_ospf_id_cmd,
paul718e3742002-12-13 20:15:29 +0000249 "no router-id",
250 NO_STR
251 "router-id for the OSPF process\n")
252
paula2c62832003-04-23 17:01:31 +0000253DEFUN (ospf_passive_interface,
254 ospf_passive_interface_addr_cmd,
paul718e3742002-12-13 20:15:29 +0000255 "passive-interface IFNAME A.B.C.D",
256 "Suppress routing updates on an interface\n"
257 "Interface's name\n")
258{
259 struct interface *ifp;
260 struct in_addr addr;
261 int ret;
262 struct ospf_if_params *params;
ajsba6454e2005-02-08 15:37:30 +0000263 struct route_node *rn;
paul718e3742002-12-13 20:15:29 +0000264
265 ifp = if_lookup_by_name (argv[0]);
266
267 if (ifp == NULL)
268 {
269 vty_out (vty, "Please specify an existing interface%s", VTY_NEWLINE);
270 return CMD_WARNING;
271 }
272
273 params = IF_DEF_PARAMS (ifp);
274
275 if (argc == 2)
276 {
277 ret = inet_aton(argv[1], &addr);
278 if (!ret)
279 {
280 vty_out (vty, "Please specify interface address by A.B.C.D%s",
281 VTY_NEWLINE);
282 return CMD_WARNING;
283 }
284
285 params = ospf_get_if_params (ifp, addr);
286 ospf_if_update_params (ifp, addr);
287 }
288
289 SET_IF_PARAM (params, passive_interface);
290 params->passive_interface = OSPF_IF_PASSIVE;
ajsba6454e2005-02-08 15:37:30 +0000291
292 /* XXX We should call ospf_if_set_multicast on exactly those
293 * interfaces for which the passive property changed. It is too much
294 * work to determine this set, so we do this for every interface.
295 * This is safe and reasonable because ospf_if_set_multicast uses a
296 * record of joined groups to avoid systems calls if the desired
297 * memberships match the current memership.
298 */
299 for (rn = route_top(IF_OIFS(ifp)); rn; rn = route_next (rn))
300 {
301 struct ospf_interface *oi = rn->info;
302
303 if (oi && (OSPF_IF_PARAM(oi, passive_interface) == OSPF_IF_PASSIVE))
304 ospf_if_set_multicast(oi);
305 }
306 /*
307 * XXX It is not clear what state transitions the interface needs to
308 * undergo when going from active to passive. Fixing this will
309 * require precise identification of interfaces having such a
310 * transition.
311 */
312
paul718e3742002-12-13 20:15:29 +0000313 return CMD_SUCCESS;
314}
315
paula2c62832003-04-23 17:01:31 +0000316ALIAS (ospf_passive_interface,
317 ospf_passive_interface_cmd,
paul718e3742002-12-13 20:15:29 +0000318 "passive-interface IFNAME",
319 "Suppress routing updates on an interface\n"
320 "Interface's name\n")
321
paula2c62832003-04-23 17:01:31 +0000322DEFUN (no_ospf_passive_interface,
323 no_ospf_passive_interface_addr_cmd,
paul718e3742002-12-13 20:15:29 +0000324 "no passive-interface IFNAME A.B.C.D",
325 NO_STR
326 "Allow routing updates on an interface\n"
327 "Interface's name\n")
328{
329 struct interface *ifp;
330 struct in_addr addr;
331 struct ospf_if_params *params;
332 int ret;
ajsba6454e2005-02-08 15:37:30 +0000333 struct route_node *rn;
paul718e3742002-12-13 20:15:29 +0000334
335 ifp = if_lookup_by_name (argv[0]);
336
337 if (ifp == NULL)
338 {
339 vty_out (vty, "Please specify an existing interface%s", VTY_NEWLINE);
340 return CMD_WARNING;
341 }
342
343 params = IF_DEF_PARAMS (ifp);
344
345 if (argc == 2)
346 {
347 ret = inet_aton(argv[1], &addr);
348 if (!ret)
349 {
350 vty_out (vty, "Please specify interface address by A.B.C.D%s",
351 VTY_NEWLINE);
352 return CMD_WARNING;
353 }
354
355 params = ospf_lookup_if_params (ifp, addr);
356 if (params == NULL)
357 return CMD_SUCCESS;
358 }
359
360 UNSET_IF_PARAM (params, passive_interface);
361 params->passive_interface = OSPF_IF_ACTIVE;
362
363 if (params != IF_DEF_PARAMS (ifp))
364 {
365 ospf_free_if_params (ifp, addr);
366 ospf_if_update_params (ifp, addr);
367 }
ajsba6454e2005-02-08 15:37:30 +0000368
369 /* XXX We should call ospf_if_set_multicast on exactly those
370 * interfaces for which the passive property changed. It is too much
371 * work to determine this set, so we do this for every interface.
372 * This is safe and reasonable because ospf_if_set_multicast uses a
373 * record of joined groups to avoid systems calls if the desired
374 * memberships match the current memership.
375 */
376 for (rn = route_top(IF_OIFS(ifp)); rn; rn = route_next (rn))
377 {
378 struct ospf_interface *oi = rn->info;
379
380 if (oi && (OSPF_IF_PARAM(oi, passive_interface) == OSPF_IF_ACTIVE))
381 ospf_if_set_multicast(oi);
382 }
383
paul718e3742002-12-13 20:15:29 +0000384 return CMD_SUCCESS;
385}
386
paula2c62832003-04-23 17:01:31 +0000387ALIAS (no_ospf_passive_interface,
388 no_ospf_passive_interface_cmd,
paul718e3742002-12-13 20:15:29 +0000389 "no passive-interface IFNAME",
390 NO_STR
391 "Allow routing updates on an interface\n"
392 "Interface's name\n")
393
paula2c62832003-04-23 17:01:31 +0000394DEFUN (ospf_network_area,
395 ospf_network_area_cmd,
paul718e3742002-12-13 20:15:29 +0000396 "network A.B.C.D/M area (A.B.C.D|<0-4294967295>)",
397 "Enable routing on an IP network\n"
398 "OSPF network prefix\n"
399 "Set the OSPF area ID\n"
400 "OSPF area ID in IP address format\n"
401 "OSPF area ID as a decimal value\n")
402{
403 struct ospf *ospf= vty->index;
404 struct prefix_ipv4 p;
405 struct in_addr area_id;
406 int ret, format;
407
408 /* Get network prefix and Area ID. */
409 VTY_GET_IPV4_PREFIX ("network prefix", p, argv[0]);
410 VTY_GET_OSPF_AREA_ID (area_id, format, argv[1]);
411
412 ret = ospf_network_set (ospf, &p, area_id);
413 if (ret == 0)
414 {
415 vty_out (vty, "There is already same network statement.%s", VTY_NEWLINE);
416 return CMD_WARNING;
417 }
418
419 return CMD_SUCCESS;
420}
421
paula2c62832003-04-23 17:01:31 +0000422DEFUN (no_ospf_network_area,
423 no_ospf_network_area_cmd,
paul718e3742002-12-13 20:15:29 +0000424 "no network A.B.C.D/M area (A.B.C.D|<0-4294967295>)",
425 NO_STR
426 "Enable routing on an IP network\n"
427 "OSPF network prefix\n"
428 "Set the OSPF area ID\n"
429 "OSPF area ID in IP address format\n"
430 "OSPF area ID as a decimal value\n")
431{
432 struct ospf *ospf = (struct ospf *) vty->index;
433 struct prefix_ipv4 p;
434 struct in_addr area_id;
435 int ret, format;
436
437 /* Get network prefix and Area ID. */
438 VTY_GET_IPV4_PREFIX ("network prefix", p, argv[0]);
439 VTY_GET_OSPF_AREA_ID (area_id, format, argv[1]);
440
441 ret = ospf_network_unset (ospf, &p, area_id);
442 if (ret == 0)
443 {
444 vty_out (vty, "Can't find specified network area configuration.%s",
445 VTY_NEWLINE);
446 return CMD_WARNING;
447 }
448
449 return CMD_SUCCESS;
450}
451
452
paula2c62832003-04-23 17:01:31 +0000453DEFUN (ospf_area_range,
454 ospf_area_range_cmd,
paul718e3742002-12-13 20:15:29 +0000455 "area (A.B.C.D|<0-4294967295>) range A.B.C.D/M",
456 "OSPF area parameters\n"
457 "OSPF area ID in IP address format\n"
458 "OSPF area ID as a decimal value\n"
459 "Summarize routes matching address/mask (border routers only)\n"
460 "Area range prefix\n")
461{
462 struct ospf *ospf = vty->index;
463 struct prefix_ipv4 p;
464 struct in_addr area_id;
465 int format;
466 u_int32_t cost;
467
468 VTY_GET_OSPF_AREA_ID (area_id, format, argv[0]);
469 VTY_GET_IPV4_PREFIX ("area range", p, argv[1]);
470
471 ospf_area_range_set (ospf, area_id, &p, OSPF_AREA_RANGE_ADVERTISE);
472 if (argc > 2)
473 {
paul4dadc292005-05-06 21:37:42 +0000474 VTY_GET_INTEGER ("range cost", cost, argv[2]);
paul718e3742002-12-13 20:15:29 +0000475 ospf_area_range_cost_set (ospf, area_id, &p, cost);
476 }
477
478 return CMD_SUCCESS;
479}
480
paula2c62832003-04-23 17:01:31 +0000481ALIAS (ospf_area_range,
482 ospf_area_range_advertise_cmd,
paul718e3742002-12-13 20:15:29 +0000483 "area (A.B.C.D|<0-4294967295>) range A.B.C.D/M advertise",
484 "OSPF area parameters\n"
485 "OSPF area ID in IP address format\n"
486 "OSPF area ID as a decimal value\n"
487 "OSPF area range for route advertise (default)\n"
488 "Area range prefix\n"
489 "Advertise this range (default)\n")
490
paula2c62832003-04-23 17:01:31 +0000491ALIAS (ospf_area_range,
492 ospf_area_range_cost_cmd,
paul718e3742002-12-13 20:15:29 +0000493 "area (A.B.C.D|<0-4294967295>) range A.B.C.D/M cost <0-16777215>",
494 "OSPF area parameters\n"
495 "OSPF area ID in IP address format\n"
496 "OSPF area ID as a decimal value\n"
497 "Summarize routes matching address/mask (border routers only)\n"
498 "Area range prefix\n"
499 "User specified metric for this range\n"
500 "Advertised metric for this range\n")
501
paula2c62832003-04-23 17:01:31 +0000502ALIAS (ospf_area_range,
503 ospf_area_range_advertise_cost_cmd,
paul718e3742002-12-13 20:15:29 +0000504 "area (A.B.C.D|<0-4294967295>) range A.B.C.D/M advertise cost <0-16777215>",
505 "OSPF area parameters\n"
506 "OSPF area ID in IP address format\n"
507 "OSPF area ID as a decimal value\n"
508 "Summarize routes matching address/mask (border routers only)\n"
509 "Area range prefix\n"
510 "Advertise this range (default)\n"
511 "User specified metric for this range\n"
512 "Advertised metric for this range\n")
513
paula2c62832003-04-23 17:01:31 +0000514DEFUN (ospf_area_range_not_advertise,
515 ospf_area_range_not_advertise_cmd,
paul718e3742002-12-13 20:15:29 +0000516 "area (A.B.C.D|<0-4294967295>) range A.B.C.D/M not-advertise",
517 "OSPF area parameters\n"
518 "OSPF area ID in IP address format\n"
519 "OSPF area ID as a decimal value\n"
520 "Summarize routes matching address/mask (border routers only)\n"
521 "Area range prefix\n"
522 "DoNotAdvertise this range\n")
523{
524 struct ospf *ospf = vty->index;
525 struct prefix_ipv4 p;
526 struct in_addr area_id;
527 int format;
528
529 VTY_GET_OSPF_AREA_ID (area_id, format, argv[0]);
530 VTY_GET_IPV4_PREFIX ("area range", p, argv[1]);
531
532 ospf_area_range_set (ospf, area_id, &p, 0);
533
534 return CMD_SUCCESS;
535}
536
paula2c62832003-04-23 17:01:31 +0000537DEFUN (no_ospf_area_range,
538 no_ospf_area_range_cmd,
paul718e3742002-12-13 20:15:29 +0000539 "no area (A.B.C.D|<0-4294967295>) range A.B.C.D/M",
540 NO_STR
541 "OSPF area parameters\n"
542 "OSPF area ID in IP address format\n"
543 "OSPF area ID as a decimal value\n"
544 "Summarize routes matching address/mask (border routers only)\n"
545 "Area range prefix\n")
546{
547 struct ospf *ospf = vty->index;
548 struct prefix_ipv4 p;
549 struct in_addr area_id;
550 int format;
551
552 VTY_GET_OSPF_AREA_ID (area_id, format, argv[0]);
553 VTY_GET_IPV4_PREFIX ("area range", p, argv[1]);
554
555 ospf_area_range_unset (ospf, area_id, &p);
556
557 return CMD_SUCCESS;
558}
559
paula2c62832003-04-23 17:01:31 +0000560ALIAS (no_ospf_area_range,
561 no_ospf_area_range_advertise_cmd,
paul718e3742002-12-13 20:15:29 +0000562 "no area (A.B.C.D|<0-4294967295>) range A.B.C.D/M (advertise|not-advertise)",
563 NO_STR
564 "OSPF area parameters\n"
565 "OSPF area ID in IP address format\n"
566 "OSPF area ID as a decimal value\n"
567 "Summarize routes matching address/mask (border routers only)\n"
568 "Area range prefix\n"
569 "Advertise this range (default)\n"
570 "DoNotAdvertise this range\n")
571
paula2c62832003-04-23 17:01:31 +0000572ALIAS (no_ospf_area_range,
573 no_ospf_area_range_cost_cmd,
paul718e3742002-12-13 20:15:29 +0000574 "no area (A.B.C.D|<0-4294967295>) range A.B.C.D/M cost <0-16777215>",
575 NO_STR
576 "OSPF area parameters\n"
577 "OSPF area ID in IP address format\n"
578 "OSPF area ID as a decimal value\n"
579 "Summarize routes matching address/mask (border routers only)\n"
580 "Area range prefix\n"
581 "User specified metric for this range\n"
582 "Advertised metric for this range\n")
583
paula2c62832003-04-23 17:01:31 +0000584ALIAS (no_ospf_area_range,
585 no_ospf_area_range_advertise_cost_cmd,
paul718e3742002-12-13 20:15:29 +0000586 "no area (A.B.C.D|<0-4294967295>) range A.B.C.D/M advertise cost <0-16777215>",
587 NO_STR
588 "OSPF area parameters\n"
589 "OSPF area ID in IP address format\n"
590 "OSPF area ID as a decimal value\n"
591 "Summarize routes matching address/mask (border routers only)\n"
592 "Area range prefix\n"
593 "Advertise this range (default)\n"
594 "User specified metric for this range\n"
595 "Advertised metric for this range\n")
596
paula2c62832003-04-23 17:01:31 +0000597DEFUN (ospf_area_range_substitute,
598 ospf_area_range_substitute_cmd,
paul718e3742002-12-13 20:15:29 +0000599 "area (A.B.C.D|<0-4294967295>) range A.B.C.D/M substitute A.B.C.D/M",
600 "OSPF area parameters\n"
601 "OSPF area ID in IP address format\n"
602 "OSPF area ID as a decimal value\n"
603 "Summarize routes matching address/mask (border routers only)\n"
604 "Area range prefix\n"
605 "Announce area range as another prefix\n"
606 "Network prefix to be announced instead of range\n")
607{
608 struct ospf *ospf = vty->index;
609 struct prefix_ipv4 p, s;
610 struct in_addr area_id;
611 int format;
612
613 VTY_GET_OSPF_AREA_ID (area_id, format, argv[0]);
614 VTY_GET_IPV4_PREFIX ("area range", p, argv[1]);
615 VTY_GET_IPV4_PREFIX ("substituted network prefix", s, argv[2]);
616
617 ospf_area_range_substitute_set (ospf, area_id, &p, &s);
618
619 return CMD_SUCCESS;
620}
621
paula2c62832003-04-23 17:01:31 +0000622DEFUN (no_ospf_area_range_substitute,
623 no_ospf_area_range_substitute_cmd,
paul718e3742002-12-13 20:15:29 +0000624 "no area (A.B.C.D|<0-4294967295>) range A.B.C.D/M substitute A.B.C.D/M",
625 NO_STR
626 "OSPF area parameters\n"
627 "OSPF area ID in IP address format\n"
628 "OSPF area ID as a decimal value\n"
629 "Summarize routes matching address/mask (border routers only)\n"
630 "Area range prefix\n"
631 "Announce area range as another prefix\n"
632 "Network prefix to be announced instead of range\n")
633{
634 struct ospf *ospf = vty->index;
635 struct prefix_ipv4 p, s;
636 struct in_addr area_id;
637 int format;
638
639 VTY_GET_OSPF_AREA_ID (area_id, format, argv[0]);
640 VTY_GET_IPV4_PREFIX ("area range", p, argv[1]);
641 VTY_GET_IPV4_PREFIX ("substituted network prefix", s, argv[2]);
642
643 ospf_area_range_substitute_unset (ospf, area_id, &p);
644
645 return CMD_SUCCESS;
646}
647
648
649/* Command Handler Logic in VLink stuff is delicate!!
650
651 ALTER AT YOUR OWN RISK!!!!
652
653 Various dummy values are used to represent 'NoChange' state for
654 VLink configuration NOT being changed by a VLink command, and
655 special syntax is used within the command strings so that the
656 typed in command verbs can be seen in the configuration command
657 bacckend handler. This is to drastically reduce the verbeage
658 required to coe up with a reasonably compatible Cisco VLink command
659
660 - Matthew Grant <grantma@anathoth.gen.nz>
661 Wed, 21 Feb 2001 15:13:52 +1300
662 */
663
664
665/* Configuration data for virtual links
666 */
667struct ospf_vl_config_data {
668 struct vty *vty; /* vty stuff */
669 struct in_addr area_id; /* area ID from command line */
670 int format; /* command line area ID format */
671 struct in_addr vl_peer; /* command line vl_peer */
672 int auth_type; /* Authehntication type, if given */
673 char *auth_key; /* simple password if present */
674 int crypto_key_id; /* Cryptographic key ID */
675 char *md5_key; /* MD5 authentication key */
676 int hello_interval; /* Obvious what these are... */
677 int retransmit_interval;
678 int transmit_delay;
679 int dead_interval;
680};
681
paul4dadc292005-05-06 21:37:42 +0000682static void
paul718e3742002-12-13 20:15:29 +0000683ospf_vl_config_data_init (struct ospf_vl_config_data *vl_config,
684 struct vty *vty)
685{
686 memset (vl_config, 0, sizeof (struct ospf_vl_config_data));
687 vl_config->auth_type = OSPF_AUTH_CMD_NOTSEEN;
688 vl_config->vty = vty;
689}
690
paul4dadc292005-05-06 21:37:42 +0000691static struct ospf_vl_data *
paul68980082003-03-25 05:07:42 +0000692ospf_find_vl_data (struct ospf *ospf, struct ospf_vl_config_data *vl_config)
paul718e3742002-12-13 20:15:29 +0000693{
694 struct ospf_area *area;
695 struct ospf_vl_data *vl_data;
696 struct vty *vty;
697 struct in_addr area_id;
698
699 vty = vl_config->vty;
700 area_id = vl_config->area_id;
701
702 if (area_id.s_addr == OSPF_AREA_BACKBONE)
703 {
704 vty_out (vty,
705 "Configuring VLs over the backbone is not allowed%s",
706 VTY_NEWLINE);
707 return NULL;
708 }
paul68980082003-03-25 05:07:42 +0000709 area = ospf_area_get (ospf, area_id, vl_config->format);
paul718e3742002-12-13 20:15:29 +0000710
711 if (area->external_routing != OSPF_AREA_DEFAULT)
712 {
713 if (vl_config->format == OSPF_AREA_ID_FORMAT_ADDRESS)
714 vty_out (vty, "Area %s is %s%s",
715 inet_ntoa (area_id),
paul718e3742002-12-13 20:15:29 +0000716 area->external_routing == OSPF_AREA_NSSA?"nssa":"stub",
paul718e3742002-12-13 20:15:29 +0000717 VTY_NEWLINE);
718 else
719 vty_out (vty, "Area %ld is %s%s",
720 (u_long)ntohl (area_id.s_addr),
paul718e3742002-12-13 20:15:29 +0000721 area->external_routing == OSPF_AREA_NSSA?"nssa":"stub",
paul718e3742002-12-13 20:15:29 +0000722 VTY_NEWLINE);
723 return NULL;
724 }
725
726 if ((vl_data = ospf_vl_lookup (area, vl_config->vl_peer)) == NULL)
727 {
728 vl_data = ospf_vl_data_new (area, vl_config->vl_peer);
729 if (vl_data->vl_oi == NULL)
730 {
paul68980082003-03-25 05:07:42 +0000731 vl_data->vl_oi = ospf_vl_new (ospf, vl_data);
732 ospf_vl_add (ospf, vl_data);
733 ospf_spf_calculate_schedule (ospf);
paul718e3742002-12-13 20:15:29 +0000734 }
735 }
736 return vl_data;
737}
738
739
paul4dadc292005-05-06 21:37:42 +0000740static int
paul718e3742002-12-13 20:15:29 +0000741ospf_vl_set_security (struct ospf_vl_data *vl_data,
742 struct ospf_vl_config_data *vl_config)
743{
744 struct crypt_key *ck;
745 struct vty *vty;
746 struct interface *ifp = vl_data->vl_oi->ifp;
747
748 vty = vl_config->vty;
749
750 if (vl_config->auth_type != OSPF_AUTH_CMD_NOTSEEN)
751 {
752 SET_IF_PARAM (IF_DEF_PARAMS (ifp), auth_type);
753 IF_DEF_PARAMS (ifp)->auth_type = vl_config->auth_type;
754 }
755
756 if (vl_config->auth_key)
757 {
758 memset(IF_DEF_PARAMS (ifp)->auth_simple, 0, OSPF_AUTH_SIMPLE_SIZE+1);
hassoc9e52be2004-09-26 16:09:34 +0000759 strncpy ((char *) IF_DEF_PARAMS (ifp)->auth_simple, vl_config->auth_key,
paul718e3742002-12-13 20:15:29 +0000760 OSPF_AUTH_SIMPLE_SIZE);
761 }
762 else if (vl_config->md5_key)
763 {
764 if (ospf_crypt_key_lookup (IF_DEF_PARAMS (ifp)->auth_crypt, vl_config->crypto_key_id)
765 != NULL)
766 {
767 vty_out (vty, "OSPF: Key %d already exists%s",
768 vl_config->crypto_key_id, VTY_NEWLINE);
769 return CMD_WARNING;
770 }
771 ck = ospf_crypt_key_new ();
772 ck->key_id = vl_config->crypto_key_id;
773 memset(ck->auth_key, 0, OSPF_AUTH_MD5_SIZE+1);
hassoc9e52be2004-09-26 16:09:34 +0000774 strncpy ((char *) ck->auth_key, vl_config->md5_key, OSPF_AUTH_MD5_SIZE);
paul718e3742002-12-13 20:15:29 +0000775
776 ospf_crypt_key_add (IF_DEF_PARAMS (ifp)->auth_crypt, ck);
777 }
778 else if (vl_config->crypto_key_id != 0)
779 {
780 /* Delete a key */
781
782 if (ospf_crypt_key_lookup (IF_DEF_PARAMS (ifp)->auth_crypt,
783 vl_config->crypto_key_id) == NULL)
784 {
785 vty_out (vty, "OSPF: Key %d does not exist%s",
786 vl_config->crypto_key_id, VTY_NEWLINE);
787 return CMD_WARNING;
788 }
789
790 ospf_crypt_key_delete (IF_DEF_PARAMS (ifp)->auth_crypt, vl_config->crypto_key_id);
791
792 }
793
794 return CMD_SUCCESS;
795}
796
paul4dadc292005-05-06 21:37:42 +0000797static int
paul718e3742002-12-13 20:15:29 +0000798ospf_vl_set_timers (struct ospf_vl_data *vl_data,
799 struct ospf_vl_config_data *vl_config)
800{
801 struct interface *ifp = ifp = vl_data->vl_oi->ifp;
802 /* Virtual Link data initialised to defaults, so only set
803 if a value given */
804 if (vl_config->hello_interval)
805 {
806 SET_IF_PARAM (IF_DEF_PARAMS (ifp), v_hello);
807 IF_DEF_PARAMS (ifp)->v_hello = vl_config->hello_interval;
808 }
809
810 if (vl_config->dead_interval)
811 {
812 SET_IF_PARAM (IF_DEF_PARAMS (ifp), v_wait);
813 IF_DEF_PARAMS (ifp)->v_wait = vl_config->dead_interval;
814 }
815
816 if (vl_config->retransmit_interval)
817 {
818 SET_IF_PARAM (IF_DEF_PARAMS (ifp), retransmit_interval);
819 IF_DEF_PARAMS (ifp)->retransmit_interval = vl_config->retransmit_interval;
820 }
821
822 if (vl_config->transmit_delay)
823 {
824 SET_IF_PARAM (IF_DEF_PARAMS (ifp), transmit_delay);
825 IF_DEF_PARAMS (ifp)->transmit_delay = vl_config->transmit_delay;
826 }
827
828 return CMD_SUCCESS;
829}
830
831
832
833/* The business end of all of the above */
paul4dadc292005-05-06 21:37:42 +0000834static int
paul68980082003-03-25 05:07:42 +0000835ospf_vl_set (struct ospf *ospf, struct ospf_vl_config_data *vl_config)
paul718e3742002-12-13 20:15:29 +0000836{
837 struct ospf_vl_data *vl_data;
838 int ret;
839
paul68980082003-03-25 05:07:42 +0000840 vl_data = ospf_find_vl_data (ospf, vl_config);
paul718e3742002-12-13 20:15:29 +0000841 if (!vl_data)
842 return CMD_WARNING;
843
844 /* Process this one first as it can have a fatal result, which can
845 only logically occur if the virtual link exists already
846 Thus a command error does not result in a change to the
847 running configuration such as unexpectedly altered timer
848 values etc.*/
849 ret = ospf_vl_set_security (vl_data, vl_config);
850 if (ret != CMD_SUCCESS)
851 return ret;
852
853 /* Set any time based parameters, these area already range checked */
854
855 ret = ospf_vl_set_timers (vl_data, vl_config);
856 if (ret != CMD_SUCCESS)
857 return ret;
858
859 return CMD_SUCCESS;
860
861}
862
863/* This stuff exists to make specifying all the alias commands A LOT simpler
864 */
865#define VLINK_HELPSTR_IPADDR \
866 "OSPF area parameters\n" \
867 "OSPF area ID in IP address format\n" \
868 "OSPF area ID as a decimal value\n" \
869 "Configure a virtual link\n" \
870 "Router ID of the remote ABR\n"
871
872#define VLINK_HELPSTR_AUTHTYPE_SIMPLE \
873 "Enable authentication on this virtual link\n" \
874 "dummy string \n"
875
876#define VLINK_HELPSTR_AUTHTYPE_ALL \
877 VLINK_HELPSTR_AUTHTYPE_SIMPLE \
878 "Use null authentication\n" \
879 "Use message-digest authentication\n"
880
881#define VLINK_HELPSTR_TIME_PARAM_NOSECS \
882 "Time between HELLO packets\n" \
883 "Time between retransmitting lost link state advertisements\n" \
884 "Link state transmit delay\n" \
885 "Interval after which a neighbor is declared dead\n"
886
887#define VLINK_HELPSTR_TIME_PARAM \
888 VLINK_HELPSTR_TIME_PARAM_NOSECS \
889 "Seconds\n"
890
891#define VLINK_HELPSTR_AUTH_SIMPLE \
892 "Authentication password (key)\n" \
893 "The OSPF password (key)"
894
895#define VLINK_HELPSTR_AUTH_MD5 \
896 "Message digest authentication password (key)\n" \
897 "dummy string \n" \
898 "Key ID\n" \
899 "Use MD5 algorithm\n" \
900 "The OSPF password (key)"
901
paula2c62832003-04-23 17:01:31 +0000902DEFUN (ospf_area_vlink,
903 ospf_area_vlink_cmd,
paul718e3742002-12-13 20:15:29 +0000904 "area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D",
905 VLINK_HELPSTR_IPADDR)
906{
paul68980082003-03-25 05:07:42 +0000907 struct ospf *ospf = vty->index;
paul718e3742002-12-13 20:15:29 +0000908 struct ospf_vl_config_data vl_config;
909 char auth_key[OSPF_AUTH_SIMPLE_SIZE+1];
910 char md5_key[OSPF_AUTH_MD5_SIZE+1];
911 int i;
912 int ret;
913
914 ospf_vl_config_data_init(&vl_config, vty);
915
916 /* Read off first 2 parameters and check them */
917 ret = ospf_str2area_id (argv[0], &vl_config.area_id, &vl_config.format);
918 if (ret < 0)
919 {
920 vty_out (vty, "OSPF area ID is invalid%s", VTY_NEWLINE);
921 return CMD_WARNING;
922 }
923
924 ret = inet_aton (argv[1], &vl_config.vl_peer);
925 if (! ret)
926 {
927 vty_out (vty, "Please specify valid Router ID as a.b.c.d%s",
928 VTY_NEWLINE);
929 return CMD_WARNING;
930 }
931
932 if (argc <=2)
933 {
934 /* Thats all folks! - BUGS B. strikes again!!!*/
935
paul68980082003-03-25 05:07:42 +0000936 return ospf_vl_set (ospf, &vl_config);
paul718e3742002-12-13 20:15:29 +0000937 }
938
939 /* Deal with other parameters */
940 for (i=2; i < argc; i++)
941 {
942
943 /* vty_out (vty, "argv[%d] - %s%s", i, argv[i], VTY_NEWLINE); */
944
945 switch (argv[i][0])
946 {
947
948 case 'a':
949 if (i > 2 || strncmp (argv[i], "authentication-", 15) == 0)
950 {
951 /* authentication-key - this option can occur anywhere on
952 command line. At start of command line
953 must check for authentication option. */
954 memset (auth_key, 0, OSPF_AUTH_SIMPLE_SIZE + 1);
955 strncpy (auth_key, argv[i+1], OSPF_AUTH_SIMPLE_SIZE);
956 vl_config.auth_key = auth_key;
957 i++;
958 }
959 else if (strncmp (argv[i], "authentication", 14) == 0)
960 {
961 /* authentication - this option can only occur at start
962 of command line */
963 vl_config.auth_type = OSPF_AUTH_SIMPLE;
964 if ((i+1) < argc)
965 {
966 if (strncmp (argv[i+1], "n", 1) == 0)
967 {
968 /* "authentication null" */
969 vl_config.auth_type = OSPF_AUTH_NULL;
970 i++;
971 }
972 else if (strncmp (argv[i+1], "m", 1) == 0
973 && strcmp (argv[i+1], "message-digest-") != 0)
974 {
975 /* "authentication message-digest" */
976 vl_config.auth_type = OSPF_AUTH_CRYPTOGRAPHIC;
977 i++;
978 }
979 }
980 }
981 break;
982
983 case 'm':
984 /* message-digest-key */
985 i++;
986 vl_config.crypto_key_id = strtol (argv[i], NULL, 10);
987 if (vl_config.crypto_key_id < 0)
988 return CMD_WARNING;
989 i++;
990 memset(md5_key, 0, OSPF_AUTH_MD5_SIZE+1);
991 strncpy (md5_key, argv[i], OSPF_AUTH_MD5_SIZE);
992 vl_config.md5_key = md5_key;
993 break;
994
995 case 'h':
996 /* Hello interval */
997 i++;
998 vl_config.hello_interval = strtol (argv[i], NULL, 10);
999 if (vl_config.hello_interval < 0)
1000 return CMD_WARNING;
1001 break;
1002
1003 case 'r':
1004 /* Retransmit Interval */
1005 i++;
1006 vl_config.retransmit_interval = strtol (argv[i], NULL, 10);
1007 if (vl_config.retransmit_interval < 0)
1008 return CMD_WARNING;
1009 break;
1010
1011 case 't':
1012 /* Transmit Delay */
1013 i++;
1014 vl_config.transmit_delay = strtol (argv[i], NULL, 10);
1015 if (vl_config.transmit_delay < 0)
1016 return CMD_WARNING;
1017 break;
1018
1019 case 'd':
1020 /* Dead Interval */
1021 i++;
1022 vl_config.dead_interval = strtol (argv[i], NULL, 10);
1023 if (vl_config.dead_interval < 0)
1024 return CMD_WARNING;
1025 break;
1026 }
1027 }
1028
1029
1030 /* Action configuration */
1031
paul68980082003-03-25 05:07:42 +00001032 return ospf_vl_set (ospf, &vl_config);
paul718e3742002-12-13 20:15:29 +00001033
1034}
1035
paula2c62832003-04-23 17:01:31 +00001036DEFUN (no_ospf_area_vlink,
1037 no_ospf_area_vlink_cmd,
paul718e3742002-12-13 20:15:29 +00001038 "no area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D",
1039 NO_STR
1040 VLINK_HELPSTR_IPADDR)
1041{
paul68980082003-03-25 05:07:42 +00001042 struct ospf *ospf = vty->index;
paul718e3742002-12-13 20:15:29 +00001043 struct ospf_area *area;
1044 struct ospf_vl_config_data vl_config;
1045 struct ospf_vl_data *vl_data = NULL;
1046 char auth_key[OSPF_AUTH_SIMPLE_SIZE+1];
1047 int i;
1048 int ret, format;
1049
1050 ospf_vl_config_data_init(&vl_config, vty);
1051
1052 ret = ospf_str2area_id (argv[0], &vl_config.area_id, &format);
1053 if (ret < 0)
1054 {
1055 vty_out (vty, "OSPF area ID is invalid%s", VTY_NEWLINE);
1056 return CMD_WARNING;
1057 }
1058
paul68980082003-03-25 05:07:42 +00001059 area = ospf_area_lookup_by_area_id (ospf, vl_config.area_id);
paul718e3742002-12-13 20:15:29 +00001060 if (!area)
1061 {
1062 vty_out (vty, "Area does not exist%s", VTY_NEWLINE);
1063 return CMD_WARNING;
1064 }
1065
1066 ret = inet_aton (argv[1], &vl_config.vl_peer);
1067 if (! ret)
1068 {
1069 vty_out (vty, "Please specify valid Router ID as a.b.c.d%s",
1070 VTY_NEWLINE);
1071 return CMD_WARNING;
1072 }
1073
1074 if (argc <=2)
1075 {
1076 /* Basic VLink no command */
1077 /* Thats all folks! - BUGS B. strikes again!!!*/
1078 if ((vl_data = ospf_vl_lookup (area, vl_config.vl_peer)))
paul68980082003-03-25 05:07:42 +00001079 ospf_vl_delete (ospf, vl_data);
paul718e3742002-12-13 20:15:29 +00001080
paul68980082003-03-25 05:07:42 +00001081 ospf_area_check_free (ospf, vl_config.area_id);
paul718e3742002-12-13 20:15:29 +00001082
1083 return CMD_SUCCESS;
1084 }
1085
1086 /* If we are down here, we are reseting parameters */
1087
1088 /* Deal with other parameters */
1089 for (i=2; i < argc; i++)
1090 {
paul718e3742002-12-13 20:15:29 +00001091 /* vty_out (vty, "argv[%d] - %s%s", i, argv[i], VTY_NEWLINE); */
1092
1093 switch (argv[i][0])
1094 {
1095
1096 case 'a':
1097 if (i > 2 || strncmp (argv[i], "authentication-", 15) == 0)
1098 {
1099 /* authentication-key - this option can occur anywhere on
1100 command line. At start of command line
1101 must check for authentication option. */
1102 memset (auth_key, 0, OSPF_AUTH_SIMPLE_SIZE + 1);
1103 vl_config.auth_key = auth_key;
1104 }
1105 else if (strncmp (argv[i], "authentication", 14) == 0)
1106 {
1107 /* authentication - this option can only occur at start
1108 of command line */
1109 vl_config.auth_type = OSPF_AUTH_NOTSET;
1110 }
1111 break;
1112
1113 case 'm':
1114 /* message-digest-key */
1115 /* Delete one key */
1116 i++;
1117 vl_config.crypto_key_id = strtol (argv[i], NULL, 10);
1118 if (vl_config.crypto_key_id < 0)
1119 return CMD_WARNING;
1120 vl_config.md5_key = NULL;
1121 break;
1122
1123 case 'h':
1124 /* Hello interval */
1125 vl_config.hello_interval = OSPF_HELLO_INTERVAL_DEFAULT;
1126 break;
1127
1128 case 'r':
1129 /* Retransmit Interval */
1130 vl_config.retransmit_interval = OSPF_RETRANSMIT_INTERVAL_DEFAULT;
1131 break;
1132
1133 case 't':
1134 /* Transmit Delay */
1135 vl_config.transmit_delay = OSPF_TRANSMIT_DELAY_DEFAULT;
1136 break;
1137
1138 case 'd':
1139 /* Dead Interval */
1140 i++;
1141 vl_config.dead_interval = OSPF_ROUTER_DEAD_INTERVAL_DEFAULT;
1142 break;
1143 }
1144 }
1145
1146
1147 /* Action configuration */
1148
paul68980082003-03-25 05:07:42 +00001149 return ospf_vl_set (ospf, &vl_config);
paul718e3742002-12-13 20:15:29 +00001150}
1151
paula2c62832003-04-23 17:01:31 +00001152ALIAS (ospf_area_vlink,
1153 ospf_area_vlink_param1_cmd,
paul718e3742002-12-13 20:15:29 +00001154 "area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D "
1155 "(hello-interval|retransmit-interval|transmit-delay|dead-interval) <1-65535>",
1156 VLINK_HELPSTR_IPADDR
1157 VLINK_HELPSTR_TIME_PARAM)
1158
paula2c62832003-04-23 17:01:31 +00001159ALIAS (no_ospf_area_vlink,
1160 no_ospf_area_vlink_param1_cmd,
paul718e3742002-12-13 20:15:29 +00001161 "no area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D "
1162 "(hello-interval|retransmit-interval|transmit-delay|dead-interval)",
1163 NO_STR
1164 VLINK_HELPSTR_IPADDR
1165 VLINK_HELPSTR_TIME_PARAM)
1166
paula2c62832003-04-23 17:01:31 +00001167ALIAS (ospf_area_vlink,
1168 ospf_area_vlink_param2_cmd,
paul718e3742002-12-13 20:15:29 +00001169 "area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D "
1170 "(hello-interval|retransmit-interval|transmit-delay|dead-interval) <1-65535> "
1171 "(hello-interval|retransmit-interval|transmit-delay|dead-interval) <1-65535>",
1172 VLINK_HELPSTR_IPADDR
1173 VLINK_HELPSTR_TIME_PARAM
1174 VLINK_HELPSTR_TIME_PARAM)
1175
paula2c62832003-04-23 17:01:31 +00001176ALIAS (no_ospf_area_vlink,
1177 no_ospf_area_vlink_param2_cmd,
paul718e3742002-12-13 20:15:29 +00001178 "no area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D "
1179 "(hello-interval|retransmit-interval|transmit-delay|dead-interval) "
1180 "(hello-interval|retransmit-interval|transmit-delay|dead-interval)",
1181 NO_STR
1182 VLINK_HELPSTR_IPADDR
1183 VLINK_HELPSTR_TIME_PARAM
1184 VLINK_HELPSTR_TIME_PARAM)
1185
paula2c62832003-04-23 17:01:31 +00001186ALIAS (ospf_area_vlink,
1187 ospf_area_vlink_param3_cmd,
paul718e3742002-12-13 20:15:29 +00001188 "area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D "
1189 "(hello-interval|retransmit-interval|transmit-delay|dead-interval) <1-65535> "
1190 "(hello-interval|retransmit-interval|transmit-delay|dead-interval) <1-65535> "
1191 "(hello-interval|retransmit-interval|transmit-delay|dead-interval) <1-65535>",
1192 VLINK_HELPSTR_IPADDR
1193 VLINK_HELPSTR_TIME_PARAM
1194 VLINK_HELPSTR_TIME_PARAM
1195 VLINK_HELPSTR_TIME_PARAM)
1196
paula2c62832003-04-23 17:01:31 +00001197ALIAS (no_ospf_area_vlink,
1198 no_ospf_area_vlink_param3_cmd,
paul718e3742002-12-13 20:15:29 +00001199 "no area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D "
1200 "(hello-interval|retransmit-interval|transmit-delay|dead-interval) "
1201 "(hello-interval|retransmit-interval|transmit-delay|dead-interval) "
1202 "(hello-interval|retransmit-interval|transmit-delay|dead-interval)",
1203 NO_STR
1204 VLINK_HELPSTR_IPADDR
1205 VLINK_HELPSTR_TIME_PARAM
1206 VLINK_HELPSTR_TIME_PARAM
1207 VLINK_HELPSTR_TIME_PARAM)
1208
paula2c62832003-04-23 17:01:31 +00001209ALIAS (ospf_area_vlink,
1210 ospf_area_vlink_param4_cmd,
paul718e3742002-12-13 20:15:29 +00001211 "area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D "
1212 "(hello-interval|retransmit-interval|transmit-delay|dead-interval) <1-65535> "
1213 "(hello-interval|retransmit-interval|transmit-delay|dead-interval) <1-65535> "
1214 "(hello-interval|retransmit-interval|transmit-delay|dead-interval) <1-65535> "
1215 "(hello-interval|retransmit-interval|transmit-delay|dead-interval) <1-65535>",
1216 VLINK_HELPSTR_IPADDR
1217 VLINK_HELPSTR_TIME_PARAM
1218 VLINK_HELPSTR_TIME_PARAM
1219 VLINK_HELPSTR_TIME_PARAM
1220 VLINK_HELPSTR_TIME_PARAM)
1221
paula2c62832003-04-23 17:01:31 +00001222ALIAS (no_ospf_area_vlink,
1223 no_ospf_area_vlink_param4_cmd,
paul718e3742002-12-13 20:15:29 +00001224 "no area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D "
1225 "(hello-interval|retransmit-interval|transmit-delay|dead-interval) "
1226 "(hello-interval|retransmit-interval|transmit-delay|dead-interval) "
1227 "(hello-interval|retransmit-interval|transmit-delay|dead-interval) "
1228 "(hello-interval|retransmit-interval|transmit-delay|dead-interval)",
1229 NO_STR
1230 VLINK_HELPSTR_IPADDR
1231 VLINK_HELPSTR_TIME_PARAM
1232 VLINK_HELPSTR_TIME_PARAM
1233 VLINK_HELPSTR_TIME_PARAM
1234 VLINK_HELPSTR_TIME_PARAM)
1235
paula2c62832003-04-23 17:01:31 +00001236ALIAS (ospf_area_vlink,
1237 ospf_area_vlink_authtype_args_cmd,
paul718e3742002-12-13 20:15:29 +00001238 "area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D "
1239 "(authentication|) (message-digest|null)",
1240 VLINK_HELPSTR_IPADDR
1241 VLINK_HELPSTR_AUTHTYPE_ALL)
1242
paula2c62832003-04-23 17:01:31 +00001243ALIAS (ospf_area_vlink,
1244 ospf_area_vlink_authtype_cmd,
paul718e3742002-12-13 20:15:29 +00001245 "area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D "
1246 "(authentication|)",
1247 VLINK_HELPSTR_IPADDR
1248 VLINK_HELPSTR_AUTHTYPE_SIMPLE)
1249
paula2c62832003-04-23 17:01:31 +00001250ALIAS (no_ospf_area_vlink,
1251 no_ospf_area_vlink_authtype_cmd,
paul718e3742002-12-13 20:15:29 +00001252 "no area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D "
1253 "(authentication|)",
1254 NO_STR
1255 VLINK_HELPSTR_IPADDR
1256 VLINK_HELPSTR_AUTHTYPE_SIMPLE)
1257
paula2c62832003-04-23 17:01:31 +00001258ALIAS (ospf_area_vlink,
1259 ospf_area_vlink_md5_cmd,
paul718e3742002-12-13 20:15:29 +00001260 "area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D "
1261 "(message-digest-key|) <1-255> md5 KEY",
1262 VLINK_HELPSTR_IPADDR
1263 VLINK_HELPSTR_AUTH_MD5)
1264
paula2c62832003-04-23 17:01:31 +00001265ALIAS (no_ospf_area_vlink,
1266 no_ospf_area_vlink_md5_cmd,
paul718e3742002-12-13 20:15:29 +00001267 "no area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D "
1268 "(message-digest-key|) <1-255>",
1269 NO_STR
1270 VLINK_HELPSTR_IPADDR
1271 VLINK_HELPSTR_AUTH_MD5)
1272
paula2c62832003-04-23 17:01:31 +00001273ALIAS (ospf_area_vlink,
1274 ospf_area_vlink_authkey_cmd,
paul718e3742002-12-13 20:15:29 +00001275 "area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D "
1276 "(authentication-key|) AUTH_KEY",
1277 VLINK_HELPSTR_IPADDR
1278 VLINK_HELPSTR_AUTH_SIMPLE)
1279
paula2c62832003-04-23 17:01:31 +00001280ALIAS (no_ospf_area_vlink,
1281 no_ospf_area_vlink_authkey_cmd,
paul718e3742002-12-13 20:15:29 +00001282 "no area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D "
1283 "(authentication-key|)",
1284 NO_STR
1285 VLINK_HELPSTR_IPADDR
1286 VLINK_HELPSTR_AUTH_SIMPLE)
1287
paula2c62832003-04-23 17:01:31 +00001288ALIAS (ospf_area_vlink,
1289 ospf_area_vlink_authtype_args_authkey_cmd,
paul718e3742002-12-13 20:15:29 +00001290 "area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D "
1291 "(authentication|) (message-digest|null) "
1292 "(authentication-key|) AUTH_KEY",
1293 VLINK_HELPSTR_IPADDR
1294 VLINK_HELPSTR_AUTHTYPE_ALL
1295 VLINK_HELPSTR_AUTH_SIMPLE)
1296
paula2c62832003-04-23 17:01:31 +00001297ALIAS (ospf_area_vlink,
1298 ospf_area_vlink_authtype_authkey_cmd,
paul718e3742002-12-13 20:15:29 +00001299 "area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D "
1300 "(authentication|) "
1301 "(authentication-key|) AUTH_KEY",
1302 VLINK_HELPSTR_IPADDR
1303 VLINK_HELPSTR_AUTHTYPE_SIMPLE
1304 VLINK_HELPSTR_AUTH_SIMPLE)
1305
paula2c62832003-04-23 17:01:31 +00001306ALIAS (no_ospf_area_vlink,
1307 no_ospf_area_vlink_authtype_authkey_cmd,
paul718e3742002-12-13 20:15:29 +00001308 "no area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D "
1309 "(authentication|) "
1310 "(authentication-key|)",
1311 NO_STR
1312 VLINK_HELPSTR_IPADDR
1313 VLINK_HELPSTR_AUTHTYPE_SIMPLE
1314 VLINK_HELPSTR_AUTH_SIMPLE)
1315
paula2c62832003-04-23 17:01:31 +00001316ALIAS (ospf_area_vlink,
1317 ospf_area_vlink_authtype_args_md5_cmd,
paul718e3742002-12-13 20:15:29 +00001318 "area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D "
1319 "(authentication|) (message-digest|null) "
1320 "(message-digest-key|) <1-255> md5 KEY",
1321 VLINK_HELPSTR_IPADDR
1322 VLINK_HELPSTR_AUTHTYPE_ALL
1323 VLINK_HELPSTR_AUTH_MD5)
1324
paula2c62832003-04-23 17:01:31 +00001325ALIAS (ospf_area_vlink,
1326 ospf_area_vlink_authtype_md5_cmd,
paul718e3742002-12-13 20:15:29 +00001327 "area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D "
1328 "(authentication|) "
1329 "(message-digest-key|) <1-255> md5 KEY",
1330 VLINK_HELPSTR_IPADDR
1331 VLINK_HELPSTR_AUTHTYPE_SIMPLE
1332 VLINK_HELPSTR_AUTH_MD5)
1333
paula2c62832003-04-23 17:01:31 +00001334ALIAS (no_ospf_area_vlink,
1335 no_ospf_area_vlink_authtype_md5_cmd,
paul718e3742002-12-13 20:15:29 +00001336 "no area (A.B.C.D|<0-4294967295>) virtual-link A.B.C.D "
1337 "(authentication|) "
1338 "(message-digest-key|)",
1339 NO_STR
1340 VLINK_HELPSTR_IPADDR
1341 VLINK_HELPSTR_AUTHTYPE_SIMPLE
1342 VLINK_HELPSTR_AUTH_MD5)
1343
1344
paula2c62832003-04-23 17:01:31 +00001345DEFUN (ospf_area_shortcut,
1346 ospf_area_shortcut_cmd,
paul718e3742002-12-13 20:15:29 +00001347 "area (A.B.C.D|<0-4294967295>) shortcut (default|enable|disable)",
1348 "OSPF area parameters\n"
1349 "OSPF area ID in IP address format\n"
1350 "OSPF area ID as a decimal value\n"
1351 "Configure the area's shortcutting mode\n"
1352 "Set default shortcutting behavior\n"
1353 "Enable shortcutting through the area\n"
1354 "Disable shortcutting through the area\n")
1355{
paul68980082003-03-25 05:07:42 +00001356 struct ospf *ospf = vty->index;
paul718e3742002-12-13 20:15:29 +00001357 struct ospf_area *area;
1358 struct in_addr area_id;
1359 int mode;
1360 int format;
1361
1362 VTY_GET_OSPF_AREA_ID_NO_BB ("shortcut", area_id, format, argv[0]);
1363
paul68980082003-03-25 05:07:42 +00001364 area = ospf_area_get (ospf, area_id, format);
paul718e3742002-12-13 20:15:29 +00001365
1366 if (strncmp (argv[1], "de", 2) == 0)
1367 mode = OSPF_SHORTCUT_DEFAULT;
1368 else if (strncmp (argv[1], "di", 2) == 0)
1369 mode = OSPF_SHORTCUT_DISABLE;
1370 else if (strncmp (argv[1], "e", 1) == 0)
1371 mode = OSPF_SHORTCUT_ENABLE;
1372 else
1373 return CMD_WARNING;
1374
paul68980082003-03-25 05:07:42 +00001375 ospf_area_shortcut_set (ospf, area, mode);
paul718e3742002-12-13 20:15:29 +00001376
paul68980082003-03-25 05:07:42 +00001377 if (ospf->abr_type != OSPF_ABR_SHORTCUT)
paul718e3742002-12-13 20:15:29 +00001378 vty_out (vty, "Shortcut area setting will take effect "
1379 "only when the router is configured as Shortcut ABR%s",
1380 VTY_NEWLINE);
1381
1382 return CMD_SUCCESS;
1383}
1384
paula2c62832003-04-23 17:01:31 +00001385DEFUN (no_ospf_area_shortcut,
1386 no_ospf_area_shortcut_cmd,
paul718e3742002-12-13 20:15:29 +00001387 "no area (A.B.C.D|<0-4294967295>) shortcut (enable|disable)",
1388 NO_STR
1389 "OSPF area parameters\n"
1390 "OSPF area ID in IP address format\n"
1391 "OSPF area ID as a decimal value\n"
1392 "Deconfigure the area's shortcutting mode\n"
1393 "Deconfigure enabled shortcutting through the area\n"
1394 "Deconfigure disabled shortcutting through the area\n")
1395{
paul68980082003-03-25 05:07:42 +00001396 struct ospf *ospf = vty->index;
paul718e3742002-12-13 20:15:29 +00001397 struct ospf_area *area;
1398 struct in_addr area_id;
1399 int format;
1400
1401 VTY_GET_OSPF_AREA_ID_NO_BB ("shortcut", area_id, format, argv[0]);
1402
paul68980082003-03-25 05:07:42 +00001403 area = ospf_area_lookup_by_area_id (ospf, area_id);
paul718e3742002-12-13 20:15:29 +00001404 if (!area)
1405 return CMD_SUCCESS;
1406
paul68980082003-03-25 05:07:42 +00001407 ospf_area_shortcut_unset (ospf, area);
paul718e3742002-12-13 20:15:29 +00001408
1409 return CMD_SUCCESS;
1410}
1411
1412
paula2c62832003-04-23 17:01:31 +00001413DEFUN (ospf_area_stub,
1414 ospf_area_stub_cmd,
paul718e3742002-12-13 20:15:29 +00001415 "area (A.B.C.D|<0-4294967295>) stub",
1416 "OSPF area parameters\n"
1417 "OSPF area ID in IP address format\n"
1418 "OSPF area ID as a decimal value\n"
1419 "Configure OSPF area as stub\n")
1420{
1421 struct ospf *ospf = vty->index;
1422 struct in_addr area_id;
1423 int ret, format;
1424
1425 VTY_GET_OSPF_AREA_ID_NO_BB ("stub", area_id, format, argv[0]);
1426
1427 ret = ospf_area_stub_set (ospf, area_id);
1428 if (ret == 0)
1429 {
1430 vty_out (vty, "First deconfigure all virtual link through this area%s",
1431 VTY_NEWLINE);
1432 return CMD_WARNING;
1433 }
1434
1435 ospf_area_no_summary_unset (ospf, area_id);
1436
1437 return CMD_SUCCESS;
1438}
1439
paula2c62832003-04-23 17:01:31 +00001440DEFUN (ospf_area_stub_no_summary,
1441 ospf_area_stub_no_summary_cmd,
paul718e3742002-12-13 20:15:29 +00001442 "area (A.B.C.D|<0-4294967295>) stub no-summary",
1443 "OSPF stub parameters\n"
1444 "OSPF area ID in IP address format\n"
1445 "OSPF area ID as a decimal value\n"
1446 "Configure OSPF area as stub\n"
1447 "Do not inject inter-area routes into stub\n")
1448{
1449 struct ospf *ospf = vty->index;
1450 struct in_addr area_id;
1451 int ret, format;
1452
1453 VTY_GET_OSPF_AREA_ID_NO_BB ("stub", area_id, format, argv[0]);
1454
1455 ret = ospf_area_stub_set (ospf, area_id);
1456 if (ret == 0)
1457 {
paulb0a053b2003-06-22 09:04:47 +00001458 vty_out (vty, "%% Area cannot be stub as it contains a virtual link%s",
paul718e3742002-12-13 20:15:29 +00001459 VTY_NEWLINE);
1460 return CMD_WARNING;
1461 }
1462
1463 ospf_area_no_summary_set (ospf, area_id);
1464
1465 return CMD_SUCCESS;
1466}
1467
paula2c62832003-04-23 17:01:31 +00001468DEFUN (no_ospf_area_stub,
1469 no_ospf_area_stub_cmd,
paul718e3742002-12-13 20:15:29 +00001470 "no area (A.B.C.D|<0-4294967295>) stub",
1471 NO_STR
1472 "OSPF area parameters\n"
1473 "OSPF area ID in IP address format\n"
1474 "OSPF area ID as a decimal value\n"
1475 "Configure OSPF area as stub\n")
1476{
1477 struct ospf *ospf = vty->index;
1478 struct in_addr area_id;
1479 int format;
1480
1481 VTY_GET_OSPF_AREA_ID_NO_BB ("stub", area_id, format, argv[0]);
1482
1483 ospf_area_stub_unset (ospf, area_id);
1484 ospf_area_no_summary_unset (ospf, area_id);
1485
1486 return CMD_SUCCESS;
1487}
1488
paula2c62832003-04-23 17:01:31 +00001489DEFUN (no_ospf_area_stub_no_summary,
1490 no_ospf_area_stub_no_summary_cmd,
paul718e3742002-12-13 20:15:29 +00001491 "no area (A.B.C.D|<0-4294967295>) stub no-summary",
1492 NO_STR
1493 "OSPF area parameters\n"
1494 "OSPF area ID in IP address format\n"
1495 "OSPF area ID as a decimal value\n"
1496 "Configure OSPF area as stub\n"
1497 "Do not inject inter-area routes into area\n")
1498{
1499 struct ospf *ospf = vty->index;
1500 struct in_addr area_id;
1501 int format;
1502
1503 VTY_GET_OSPF_AREA_ID_NO_BB ("stub", area_id, format, argv[0]);
1504 ospf_area_no_summary_unset (ospf, area_id);
1505
1506 return CMD_SUCCESS;
1507}
1508
paul4dadc292005-05-06 21:37:42 +00001509static int
paul6c835672004-10-11 11:00:30 +00001510ospf_area_nssa_cmd_handler (struct vty *vty, int argc, const char *argv[],
1511 int nosum)
paul718e3742002-12-13 20:15:29 +00001512{
1513 struct ospf *ospf = vty->index;
1514 struct in_addr area_id;
1515 int ret, format;
1516
1517 VTY_GET_OSPF_AREA_ID_NO_BB ("NSSA", area_id, format, argv[0]);
1518
1519 ret = ospf_area_nssa_set (ospf, area_id);
1520 if (ret == 0)
1521 {
1522 vty_out (vty, "%% Area cannot be nssa as it contains a virtual link%s",
1523 VTY_NEWLINE);
1524 return CMD_WARNING;
1525 }
1526
1527 if (argc > 1)
1528 {
1529 if (strncmp (argv[1], "translate-c", 11) == 0)
paulb0a053b2003-06-22 09:04:47 +00001530 ospf_area_nssa_translator_role_set (ospf, area_id,
paul718e3742002-12-13 20:15:29 +00001531 OSPF_NSSA_ROLE_CANDIDATE);
1532 else if (strncmp (argv[1], "translate-n", 11) == 0)
paulb0a053b2003-06-22 09:04:47 +00001533 ospf_area_nssa_translator_role_set (ospf, area_id,
paul718e3742002-12-13 20:15:29 +00001534 OSPF_NSSA_ROLE_NEVER);
1535 else if (strncmp (argv[1], "translate-a", 11) == 0)
paulb0a053b2003-06-22 09:04:47 +00001536 ospf_area_nssa_translator_role_set (ospf, area_id,
paul718e3742002-12-13 20:15:29 +00001537 OSPF_NSSA_ROLE_ALWAYS);
1538 }
paulb0a053b2003-06-22 09:04:47 +00001539 else
1540 {
1541 ospf_area_nssa_translator_role_set (ospf, area_id,
1542 OSPF_NSSA_ROLE_CANDIDATE);
1543 }
paul718e3742002-12-13 20:15:29 +00001544
paulb0a053b2003-06-22 09:04:47 +00001545 if (nosum)
paul718e3742002-12-13 20:15:29 +00001546 ospf_area_no_summary_set (ospf, area_id);
paulb0a053b2003-06-22 09:04:47 +00001547 else
1548 ospf_area_no_summary_unset (ospf, area_id);
paul718e3742002-12-13 20:15:29 +00001549
paulb0a053b2003-06-22 09:04:47 +00001550 ospf_schedule_abr_task (ospf);
1551
paul718e3742002-12-13 20:15:29 +00001552 return CMD_SUCCESS;
1553}
1554
paulb0a053b2003-06-22 09:04:47 +00001555DEFUN (ospf_area_nssa_translate_no_summary,
paula2c62832003-04-23 17:01:31 +00001556 ospf_area_nssa_translate_no_summary_cmd,
paulb0a053b2003-06-22 09:04:47 +00001557 "area (A.B.C.D|<0-4294967295>) nssa (translate-candidate|translate-never|translate-always) no-summary",
paul718e3742002-12-13 20:15:29 +00001558 "OSPF area parameters\n"
1559 "OSPF area ID in IP address format\n"
1560 "OSPF area ID as a decimal value\n"
1561 "Configure OSPF area as nssa\n"
1562 "Configure NSSA-ABR for translate election (default)\n"
1563 "Configure NSSA-ABR to never translate\n"
1564 "Configure NSSA-ABR to always translate\n"
paulb0a053b2003-06-22 09:04:47 +00001565 "Do not inject inter-area routes into nssa\n")
1566{
1567 return ospf_area_nssa_cmd_handler (vty, argc, argv, 1);
1568}
paul718e3742002-12-13 20:15:29 +00001569
paulb0a053b2003-06-22 09:04:47 +00001570DEFUN (ospf_area_nssa_translate,
paula2c62832003-04-23 17:01:31 +00001571 ospf_area_nssa_translate_cmd,
paul718e3742002-12-13 20:15:29 +00001572 "area (A.B.C.D|<0-4294967295>) nssa (translate-candidate|translate-never|translate-always)",
1573 "OSPF area parameters\n"
1574 "OSPF area ID in IP address format\n"
1575 "OSPF area ID as a decimal value\n"
1576 "Configure OSPF area as nssa\n"
1577 "Configure NSSA-ABR for translate election (default)\n"
1578 "Configure NSSA-ABR to never translate\n"
1579 "Configure NSSA-ABR to always translate\n")
paulb0a053b2003-06-22 09:04:47 +00001580{
1581 return ospf_area_nssa_cmd_handler (vty, argc, argv, 0);
1582}
1583
1584DEFUN (ospf_area_nssa,
1585 ospf_area_nssa_cmd,
1586 "area (A.B.C.D|<0-4294967295>) nssa",
1587 "OSPF area parameters\n"
1588 "OSPF area ID in IP address format\n"
1589 "OSPF area ID as a decimal value\n"
1590 "Configure OSPF area as nssa\n")
1591{
1592 return ospf_area_nssa_cmd_handler (vty, argc, argv, 0);
1593}
paul718e3742002-12-13 20:15:29 +00001594
paula2c62832003-04-23 17:01:31 +00001595DEFUN (ospf_area_nssa_no_summary,
1596 ospf_area_nssa_no_summary_cmd,
paul718e3742002-12-13 20:15:29 +00001597 "area (A.B.C.D|<0-4294967295>) nssa no-summary",
1598 "OSPF area parameters\n"
1599 "OSPF area ID in IP address format\n"
1600 "OSPF area ID as a decimal value\n"
1601 "Configure OSPF area as nssa\n"
1602 "Do not inject inter-area routes into nssa\n")
1603{
paulb0a053b2003-06-22 09:04:47 +00001604 return ospf_area_nssa_cmd_handler (vty, argc, argv, 1);
paul718e3742002-12-13 20:15:29 +00001605}
1606
paula2c62832003-04-23 17:01:31 +00001607DEFUN (no_ospf_area_nssa,
1608 no_ospf_area_nssa_cmd,
paul718e3742002-12-13 20:15:29 +00001609 "no area (A.B.C.D|<0-4294967295>) nssa",
1610 NO_STR
1611 "OSPF area parameters\n"
1612 "OSPF area ID in IP address format\n"
1613 "OSPF area ID as a decimal value\n"
1614 "Configure OSPF area as nssa\n")
1615{
1616 struct ospf *ospf = vty->index;
1617 struct in_addr area_id;
1618 int format;
1619
1620 VTY_GET_OSPF_AREA_ID_NO_BB ("NSSA", area_id, format, argv[0]);
1621
1622 ospf_area_nssa_unset (ospf, area_id);
1623 ospf_area_no_summary_unset (ospf, area_id);
1624
paulb0a053b2003-06-22 09:04:47 +00001625 ospf_schedule_abr_task (ospf);
1626
paul718e3742002-12-13 20:15:29 +00001627 return CMD_SUCCESS;
1628}
1629
paula2c62832003-04-23 17:01:31 +00001630DEFUN (no_ospf_area_nssa_no_summary,
1631 no_ospf_area_nssa_no_summary_cmd,
paul718e3742002-12-13 20:15:29 +00001632 "no area (A.B.C.D|<0-4294967295>) nssa no-summary",
1633 NO_STR
1634 "OSPF area parameters\n"
1635 "OSPF area ID in IP address format\n"
1636 "OSPF area ID as a decimal value\n"
1637 "Configure OSPF area as nssa\n"
1638 "Do not inject inter-area routes into nssa\n")
1639{
1640 struct ospf *ospf = vty->index;
1641 struct in_addr area_id;
1642 int format;
1643
1644 VTY_GET_OSPF_AREA_ID_NO_BB ("NSSA", area_id, format, argv[0]);
1645 ospf_area_no_summary_unset (ospf, area_id);
1646
1647 return CMD_SUCCESS;
1648}
1649
paula2c62832003-04-23 17:01:31 +00001650DEFUN (ospf_area_default_cost,
1651 ospf_area_default_cost_cmd,
paul718e3742002-12-13 20:15:29 +00001652 "area (A.B.C.D|<0-4294967295>) default-cost <0-16777215>",
1653 "OSPF area parameters\n"
1654 "OSPF area ID in IP address format\n"
1655 "OSPF area ID as a decimal value\n"
1656 "Set the summary-default cost of a NSSA or stub area\n"
1657 "Stub's advertised default summary cost\n")
1658{
paul68980082003-03-25 05:07:42 +00001659 struct ospf *ospf = vty->index;
paul718e3742002-12-13 20:15:29 +00001660 struct ospf_area *area;
1661 struct in_addr area_id;
1662 u_int32_t cost;
1663 int format;
1664
1665 VTY_GET_OSPF_AREA_ID_NO_BB ("default-cost", area_id, format, argv[0]);
1666 VTY_GET_INTEGER_RANGE ("stub default cost", cost, argv[1], 0, 16777215);
1667
paul68980082003-03-25 05:07:42 +00001668 area = ospf_area_get (ospf, area_id, format);
paul718e3742002-12-13 20:15:29 +00001669
1670 if (area->external_routing == OSPF_AREA_DEFAULT)
1671 {
1672 vty_out (vty, "The area is neither stub, nor NSSA%s", VTY_NEWLINE);
1673 return CMD_WARNING;
1674 }
1675
1676 area->default_cost = cost;
1677
1678 return CMD_SUCCESS;
1679}
1680
paula2c62832003-04-23 17:01:31 +00001681DEFUN (no_ospf_area_default_cost,
1682 no_ospf_area_default_cost_cmd,
paul718e3742002-12-13 20:15:29 +00001683 "no area (A.B.C.D|<0-4294967295>) default-cost <0-16777215>",
1684 NO_STR
1685 "OSPF area parameters\n"
1686 "OSPF area ID in IP address format\n"
1687 "OSPF area ID as a decimal value\n"
1688 "Set the summary-default cost of a NSSA or stub area\n"
1689 "Stub's advertised default summary cost\n")
1690{
paul68980082003-03-25 05:07:42 +00001691 struct ospf *ospf = vty->index;
paul718e3742002-12-13 20:15:29 +00001692 struct ospf_area *area;
1693 struct in_addr area_id;
1694 u_int32_t cost;
1695 int format;
1696
1697 VTY_GET_OSPF_AREA_ID_NO_BB ("default-cost", area_id, format, argv[0]);
1698 VTY_GET_INTEGER_RANGE ("stub default cost", cost, argv[1], 0, 16777215);
1699
paul68980082003-03-25 05:07:42 +00001700 area = ospf_area_lookup_by_area_id (ospf, area_id);
paul718e3742002-12-13 20:15:29 +00001701 if (area == NULL)
1702 return CMD_SUCCESS;
1703
1704 if (area->external_routing == OSPF_AREA_DEFAULT)
1705 {
1706 vty_out (vty, "The area is neither stub, nor NSSA%s", VTY_NEWLINE);
1707 return CMD_WARNING;
1708 }
1709
1710 area->default_cost = 1;
1711
paul68980082003-03-25 05:07:42 +00001712 ospf_area_check_free (ospf, area_id);
paul718e3742002-12-13 20:15:29 +00001713
1714 return CMD_SUCCESS;
1715}
1716
paula2c62832003-04-23 17:01:31 +00001717DEFUN (ospf_area_export_list,
1718 ospf_area_export_list_cmd,
paul718e3742002-12-13 20:15:29 +00001719 "area (A.B.C.D|<0-4294967295>) export-list NAME",
1720 "OSPF area parameters\n"
1721 "OSPF area ID in IP address format\n"
1722 "OSPF area ID as a decimal value\n"
1723 "Set the filter for networks announced to other areas\n"
1724 "Name of the access-list\n")
1725{
paul68980082003-03-25 05:07:42 +00001726 struct ospf *ospf = vty->index;
paul718e3742002-12-13 20:15:29 +00001727 struct ospf_area *area;
1728 struct in_addr area_id;
1729 int format;
1730
hasso52930762004-04-19 18:26:53 +00001731 VTY_GET_OSPF_AREA_ID (area_id, format, argv[0]);
1732
paul68980082003-03-25 05:07:42 +00001733 area = ospf_area_get (ospf, area_id, format);
1734 ospf_area_export_list_set (ospf, area, argv[1]);
paul718e3742002-12-13 20:15:29 +00001735
1736 return CMD_SUCCESS;
1737}
1738
paula2c62832003-04-23 17:01:31 +00001739DEFUN (no_ospf_area_export_list,
1740 no_ospf_area_export_list_cmd,
paul718e3742002-12-13 20:15:29 +00001741 "no area (A.B.C.D|<0-4294967295>) export-list NAME",
1742 NO_STR
1743 "OSPF area parameters\n"
1744 "OSPF area ID in IP address format\n"
1745 "OSPF area ID as a decimal value\n"
1746 "Unset the filter for networks announced to other areas\n"
1747 "Name of the access-list\n")
1748{
paul68980082003-03-25 05:07:42 +00001749 struct ospf *ospf = vty->index;
paul718e3742002-12-13 20:15:29 +00001750 struct ospf_area *area;
1751 struct in_addr area_id;
1752 int format;
1753
hasso52930762004-04-19 18:26:53 +00001754 VTY_GET_OSPF_AREA_ID (area_id, format, argv[0]);
1755
paul68980082003-03-25 05:07:42 +00001756 area = ospf_area_lookup_by_area_id (ospf, area_id);
paul718e3742002-12-13 20:15:29 +00001757 if (area == NULL)
1758 return CMD_SUCCESS;
1759
paul68980082003-03-25 05:07:42 +00001760 ospf_area_export_list_unset (ospf, area);
paul718e3742002-12-13 20:15:29 +00001761
1762 return CMD_SUCCESS;
1763}
1764
1765
paula2c62832003-04-23 17:01:31 +00001766DEFUN (ospf_area_import_list,
1767 ospf_area_import_list_cmd,
paul718e3742002-12-13 20:15:29 +00001768 "area (A.B.C.D|<0-4294967295>) import-list NAME",
1769 "OSPF area parameters\n"
1770 "OSPF area ID in IP address format\n"
1771 "OSPF area ID as a decimal value\n"
1772 "Set the filter for networks from other areas announced to the specified one\n"
1773 "Name of the access-list\n")
1774{
paul68980082003-03-25 05:07:42 +00001775 struct ospf *ospf = vty->index;
paul718e3742002-12-13 20:15:29 +00001776 struct ospf_area *area;
1777 struct in_addr area_id;
1778 int format;
1779
hasso52930762004-04-19 18:26:53 +00001780 VTY_GET_OSPF_AREA_ID (area_id, format, argv[0]);
1781
paul68980082003-03-25 05:07:42 +00001782 area = ospf_area_get (ospf, area_id, format);
1783 ospf_area_import_list_set (ospf, area, argv[1]);
paul718e3742002-12-13 20:15:29 +00001784
1785 return CMD_SUCCESS;
1786}
1787
paula2c62832003-04-23 17:01:31 +00001788DEFUN (no_ospf_area_import_list,
1789 no_ospf_area_import_list_cmd,
paul718e3742002-12-13 20:15:29 +00001790 "no area (A.B.C.D|<0-4294967295>) import-list NAME",
1791 NO_STR
1792 "OSPF area parameters\n"
1793 "OSPF area ID in IP address format\n"
1794 "OSPF area ID as a decimal value\n"
1795 "Unset the filter for networks announced to other areas\n"
1796 "Name of the access-list\n")
1797{
paul68980082003-03-25 05:07:42 +00001798 struct ospf *ospf = vty->index;
paul718e3742002-12-13 20:15:29 +00001799 struct ospf_area *area;
1800 struct in_addr area_id;
1801 int format;
1802
hasso52930762004-04-19 18:26:53 +00001803 VTY_GET_OSPF_AREA_ID (area_id, format, argv[0]);
1804
paul68980082003-03-25 05:07:42 +00001805 area = ospf_area_lookup_by_area_id (ospf, area_id);
paul718e3742002-12-13 20:15:29 +00001806 if (area == NULL)
1807 return CMD_SUCCESS;
1808
paul68980082003-03-25 05:07:42 +00001809 ospf_area_import_list_unset (ospf, area);
paul718e3742002-12-13 20:15:29 +00001810
1811 return CMD_SUCCESS;
1812}
1813
paula2c62832003-04-23 17:01:31 +00001814DEFUN (ospf_area_filter_list,
1815 ospf_area_filter_list_cmd,
paul718e3742002-12-13 20:15:29 +00001816 "area (A.B.C.D|<0-4294967295>) filter-list prefix WORD (in|out)",
1817 "OSPF area parameters\n"
1818 "OSPF area ID in IP address format\n"
1819 "OSPF area ID as a decimal value\n"
1820 "Filter networks between OSPF areas\n"
1821 "Filter prefixes between OSPF areas\n"
1822 "Name of an IP prefix-list\n"
1823 "Filter networks sent to this area\n"
1824 "Filter networks sent from this area\n")
1825{
paul68980082003-03-25 05:07:42 +00001826 struct ospf *ospf = vty->index;
paul718e3742002-12-13 20:15:29 +00001827 struct ospf_area *area;
1828 struct in_addr area_id;
1829 struct prefix_list *plist;
1830 int format;
1831
1832 VTY_GET_OSPF_AREA_ID (area_id, format, argv[0]);
1833
paul68980082003-03-25 05:07:42 +00001834 area = ospf_area_get (ospf, area_id, format);
paul718e3742002-12-13 20:15:29 +00001835 plist = prefix_list_lookup (AFI_IP, argv[1]);
1836 if (strncmp (argv[2], "in", 2) == 0)
1837 {
1838 PREFIX_LIST_IN (area) = plist;
1839 if (PREFIX_NAME_IN (area))
1840 free (PREFIX_NAME_IN (area));
1841
1842 PREFIX_NAME_IN (area) = strdup (argv[1]);
paul68980082003-03-25 05:07:42 +00001843 ospf_schedule_abr_task (ospf);
paul718e3742002-12-13 20:15:29 +00001844 }
1845 else
1846 {
1847 PREFIX_LIST_OUT (area) = plist;
1848 if (PREFIX_NAME_OUT (area))
1849 free (PREFIX_NAME_OUT (area));
1850
1851 PREFIX_NAME_OUT (area) = strdup (argv[1]);
paul68980082003-03-25 05:07:42 +00001852 ospf_schedule_abr_task (ospf);
paul718e3742002-12-13 20:15:29 +00001853 }
1854
1855 return CMD_SUCCESS;
1856}
1857
paula2c62832003-04-23 17:01:31 +00001858DEFUN (no_ospf_area_filter_list,
1859 no_ospf_area_filter_list_cmd,
paul718e3742002-12-13 20:15:29 +00001860 "no area (A.B.C.D|<0-4294967295>) filter-list prefix WORD (in|out)",
1861 NO_STR
1862 "OSPF area parameters\n"
1863 "OSPF area ID in IP address format\n"
1864 "OSPF area ID as a decimal value\n"
1865 "Filter networks between OSPF areas\n"
1866 "Filter prefixes between OSPF areas\n"
1867 "Name of an IP prefix-list\n"
1868 "Filter networks sent to this area\n"
1869 "Filter networks sent from this area\n")
1870{
paul68980082003-03-25 05:07:42 +00001871 struct ospf *ospf = vty->index;
paul718e3742002-12-13 20:15:29 +00001872 struct ospf_area *area;
1873 struct in_addr area_id;
1874 struct prefix_list *plist;
1875 int format;
1876
1877 VTY_GET_OSPF_AREA_ID (area_id, format, argv[0]);
1878
paul68980082003-03-25 05:07:42 +00001879 area = ospf_area_lookup_by_area_id (ospf, area_id);
paul718e3742002-12-13 20:15:29 +00001880 plist = prefix_list_lookup (AFI_IP, argv[1]);
1881 if (strncmp (argv[2], "in", 2) == 0)
1882 {
1883 if (PREFIX_NAME_IN (area))
1884 if (strcmp (PREFIX_NAME_IN (area), argv[1]) != 0)
1885 return CMD_SUCCESS;
1886
1887 PREFIX_LIST_IN (area) = NULL;
1888 if (PREFIX_NAME_IN (area))
1889 free (PREFIX_NAME_IN (area));
1890
1891 PREFIX_NAME_IN (area) = NULL;
1892
paul68980082003-03-25 05:07:42 +00001893 ospf_schedule_abr_task (ospf);
paul718e3742002-12-13 20:15:29 +00001894 }
1895 else
1896 {
1897 if (PREFIX_NAME_OUT (area))
1898 if (strcmp (PREFIX_NAME_OUT (area), argv[1]) != 0)
1899 return CMD_SUCCESS;
1900
1901 PREFIX_LIST_OUT (area) = NULL;
1902 if (PREFIX_NAME_OUT (area))
1903 free (PREFIX_NAME_OUT (area));
1904
1905 PREFIX_NAME_OUT (area) = NULL;
1906
paul68980082003-03-25 05:07:42 +00001907 ospf_schedule_abr_task (ospf);
paul718e3742002-12-13 20:15:29 +00001908 }
1909
1910 return CMD_SUCCESS;
1911}
1912
1913
paula2c62832003-04-23 17:01:31 +00001914DEFUN (ospf_area_authentication_message_digest,
1915 ospf_area_authentication_message_digest_cmd,
paul718e3742002-12-13 20:15:29 +00001916 "area (A.B.C.D|<0-4294967295>) authentication message-digest",
1917 "OSPF area parameters\n"
1918 "Enable authentication\n"
1919 "Use message-digest authentication\n")
1920{
paul68980082003-03-25 05:07:42 +00001921 struct ospf *ospf = vty->index;
paul718e3742002-12-13 20:15:29 +00001922 struct ospf_area *area;
1923 struct in_addr area_id;
1924 int format;
1925
1926 VTY_GET_OSPF_AREA_ID (area_id, format, argv[0]);
1927
paul68980082003-03-25 05:07:42 +00001928 area = ospf_area_get (ospf, area_id, format);
paul718e3742002-12-13 20:15:29 +00001929 area->auth_type = OSPF_AUTH_CRYPTOGRAPHIC;
1930
1931 return CMD_SUCCESS;
1932}
1933
paula2c62832003-04-23 17:01:31 +00001934DEFUN (ospf_area_authentication,
1935 ospf_area_authentication_cmd,
paul718e3742002-12-13 20:15:29 +00001936 "area (A.B.C.D|<0-4294967295>) authentication",
1937 "OSPF area parameters\n"
1938 "OSPF area ID in IP address format\n"
1939 "OSPF area ID as a decimal value\n"
1940 "Enable authentication\n")
1941{
paul68980082003-03-25 05:07:42 +00001942 struct ospf *ospf = vty->index;
paul718e3742002-12-13 20:15:29 +00001943 struct ospf_area *area;
1944 struct in_addr area_id;
1945 int format;
1946
1947 VTY_GET_OSPF_AREA_ID (area_id, format, argv[0]);
1948
paul68980082003-03-25 05:07:42 +00001949 area = ospf_area_get (ospf, area_id, format);
paul718e3742002-12-13 20:15:29 +00001950 area->auth_type = OSPF_AUTH_SIMPLE;
1951
1952 return CMD_SUCCESS;
1953}
1954
paula2c62832003-04-23 17:01:31 +00001955DEFUN (no_ospf_area_authentication,
1956 no_ospf_area_authentication_cmd,
paul718e3742002-12-13 20:15:29 +00001957 "no area (A.B.C.D|<0-4294967295>) authentication",
1958 NO_STR
1959 "OSPF area parameters\n"
1960 "OSPF area ID in IP address format\n"
1961 "OSPF area ID as a decimal value\n"
1962 "Enable authentication\n")
1963{
paul68980082003-03-25 05:07:42 +00001964 struct ospf *ospf = vty->index;
paul718e3742002-12-13 20:15:29 +00001965 struct ospf_area *area;
1966 struct in_addr area_id;
1967 int format;
1968
1969 VTY_GET_OSPF_AREA_ID (area_id, format, argv[0]);
1970
paul68980082003-03-25 05:07:42 +00001971 area = ospf_area_lookup_by_area_id (ospf, area_id);
paul718e3742002-12-13 20:15:29 +00001972 if (area == NULL)
1973 return CMD_SUCCESS;
1974
1975 area->auth_type = OSPF_AUTH_NULL;
1976
paul68980082003-03-25 05:07:42 +00001977 ospf_area_check_free (ospf, area_id);
paul718e3742002-12-13 20:15:29 +00001978
1979 return CMD_SUCCESS;
1980}
1981
1982
1983DEFUN (ospf_abr_type,
1984 ospf_abr_type_cmd,
1985 "ospf abr-type (cisco|ibm|shortcut|standard)",
1986 "OSPF specific commands\n"
1987 "Set OSPF ABR type\n"
1988 "Alternative ABR, cisco implementation\n"
1989 "Alternative ABR, IBM implementation\n"
1990 "Shortcut ABR\n"
1991 "Standard behavior (RFC2328)\n")
1992{
paul68980082003-03-25 05:07:42 +00001993 struct ospf *ospf = vty->index;
paul718e3742002-12-13 20:15:29 +00001994 u_char abr_type = OSPF_ABR_UNKNOWN;
1995
1996 if (strncmp (argv[0], "c", 1) == 0)
1997 abr_type = OSPF_ABR_CISCO;
1998 else if (strncmp (argv[0], "i", 1) == 0)
1999 abr_type = OSPF_ABR_IBM;
2000 else if (strncmp (argv[0], "sh", 2) == 0)
2001 abr_type = OSPF_ABR_SHORTCUT;
2002 else if (strncmp (argv[0], "st", 2) == 0)
2003 abr_type = OSPF_ABR_STAND;
2004 else
2005 return CMD_WARNING;
2006
2007 /* If ABR type value is changed, schedule ABR task. */
paul68980082003-03-25 05:07:42 +00002008 if (ospf->abr_type != abr_type)
paul718e3742002-12-13 20:15:29 +00002009 {
paul68980082003-03-25 05:07:42 +00002010 ospf->abr_type = abr_type;
2011 ospf_schedule_abr_task (ospf);
paul718e3742002-12-13 20:15:29 +00002012 }
2013
2014 return CMD_SUCCESS;
2015}
2016
2017DEFUN (no_ospf_abr_type,
2018 no_ospf_abr_type_cmd,
pauld57834f2005-07-12 20:04:22 +00002019 "no ospf abr-type (cisco|ibm|shortcut|standard)",
paul718e3742002-12-13 20:15:29 +00002020 NO_STR
2021 "OSPF specific commands\n"
2022 "Set OSPF ABR type\n"
2023 "Alternative ABR, cisco implementation\n"
2024 "Alternative ABR, IBM implementation\n"
2025 "Shortcut ABR\n")
2026{
paul68980082003-03-25 05:07:42 +00002027 struct ospf *ospf = vty->index;
paul718e3742002-12-13 20:15:29 +00002028 u_char abr_type = OSPF_ABR_UNKNOWN;
2029
2030 if (strncmp (argv[0], "c", 1) == 0)
2031 abr_type = OSPF_ABR_CISCO;
2032 else if (strncmp (argv[0], "i", 1) == 0)
2033 abr_type = OSPF_ABR_IBM;
2034 else if (strncmp (argv[0], "s", 1) == 0)
2035 abr_type = OSPF_ABR_SHORTCUT;
2036 else
2037 return CMD_WARNING;
2038
2039 /* If ABR type value is changed, schedule ABR task. */
paul68980082003-03-25 05:07:42 +00002040 if (ospf->abr_type == abr_type)
paul718e3742002-12-13 20:15:29 +00002041 {
pauld57834f2005-07-12 20:04:22 +00002042 ospf->abr_type = OSPF_ABR_DEFAULT;
paul68980082003-03-25 05:07:42 +00002043 ospf_schedule_abr_task (ospf);
paul718e3742002-12-13 20:15:29 +00002044 }
2045
2046 return CMD_SUCCESS;
2047}
2048
2049DEFUN (ospf_compatible_rfc1583,
2050 ospf_compatible_rfc1583_cmd,
2051 "compatible rfc1583",
2052 "OSPF compatibility list\n"
2053 "compatible with RFC 1583\n")
2054{
2055 struct ospf *ospf = vty->index;
2056
2057 if (!CHECK_FLAG (ospf->config, OSPF_RFC1583_COMPATIBLE))
2058 {
2059 SET_FLAG (ospf->config, OSPF_RFC1583_COMPATIBLE);
paul68980082003-03-25 05:07:42 +00002060 ospf_spf_calculate_schedule (ospf);
paul718e3742002-12-13 20:15:29 +00002061 }
2062 return CMD_SUCCESS;
2063}
2064
2065DEFUN (no_ospf_compatible_rfc1583,
2066 no_ospf_compatible_rfc1583_cmd,
2067 "no compatible rfc1583",
2068 NO_STR
2069 "OSPF compatibility list\n"
2070 "compatible with RFC 1583\n")
2071{
2072 struct ospf *ospf = vty->index;
2073
2074 if (CHECK_FLAG (ospf->config, OSPF_RFC1583_COMPATIBLE))
2075 {
2076 UNSET_FLAG (ospf->config, OSPF_RFC1583_COMPATIBLE);
paul68980082003-03-25 05:07:42 +00002077 ospf_spf_calculate_schedule (ospf);
paul718e3742002-12-13 20:15:29 +00002078 }
2079 return CMD_SUCCESS;
2080}
2081
2082ALIAS (ospf_compatible_rfc1583,
2083 ospf_rfc1583_flag_cmd,
2084 "ospf rfc1583compatibility",
2085 "OSPF specific commands\n"
2086 "Enable the RFC1583Compatibility flag\n")
2087
2088ALIAS (no_ospf_compatible_rfc1583,
2089 no_ospf_rfc1583_flag_cmd,
2090 "no ospf rfc1583compatibility",
2091 NO_STR
2092 "OSPF specific commands\n"
2093 "Disable the RFC1583Compatibility flag\n")
2094
paula2c62832003-04-23 17:01:31 +00002095DEFUN (ospf_timers_spf,
2096 ospf_timers_spf_cmd,
paul718e3742002-12-13 20:15:29 +00002097 "timers spf <0-4294967295> <0-4294967295>",
2098 "Adjust routing timers\n"
2099 "OSPF SPF timers\n"
2100 "Delay between receiving a change to SPF calculation\n"
2101 "Hold time between consecutive SPF calculations\n")
2102{
2103 struct ospf *ospf = vty->index;
2104 u_int32_t delay, hold;
2105
paul4dadc292005-05-06 21:37:42 +00002106 VTY_GET_INTEGER ("SPF delay timer", delay, argv[0]);
2107 VTY_GET_INTEGER ("SPF hold timer", hold, argv[1]);
paul718e3742002-12-13 20:15:29 +00002108
2109 ospf_timers_spf_set (ospf, delay, hold);
2110
2111 return CMD_SUCCESS;
2112}
2113
paula2c62832003-04-23 17:01:31 +00002114DEFUN (no_ospf_timers_spf,
2115 no_ospf_timers_spf_cmd,
paul718e3742002-12-13 20:15:29 +00002116 "no timers spf",
2117 NO_STR
2118 "Adjust routing timers\n"
2119 "OSPF SPF timers\n")
2120{
paul68980082003-03-25 05:07:42 +00002121 struct ospf *ospf = vty->index;
2122
2123 ospf->spf_delay = OSPF_SPF_DELAY_DEFAULT;
2124 ospf->spf_holdtime = OSPF_SPF_HOLDTIME_DEFAULT;
paul718e3742002-12-13 20:15:29 +00002125
2126 return CMD_SUCCESS;
2127}
2128
2129
paula2c62832003-04-23 17:01:31 +00002130DEFUN (ospf_neighbor,
2131 ospf_neighbor_cmd,
paul718e3742002-12-13 20:15:29 +00002132 "neighbor A.B.C.D",
2133 NEIGHBOR_STR
2134 "Neighbor IP address\n")
2135{
2136 struct ospf *ospf = vty->index;
2137 struct in_addr nbr_addr;
hassoeb1ce602004-10-08 08:17:22 +00002138 unsigned int priority = OSPF_NEIGHBOR_PRIORITY_DEFAULT;
2139 unsigned int interval = OSPF_POLL_INTERVAL_DEFAULT;
paul718e3742002-12-13 20:15:29 +00002140
2141 VTY_GET_IPV4_ADDRESS ("neighbor address", nbr_addr, argv[0]);
2142
2143 if (argc > 1)
2144 VTY_GET_INTEGER_RANGE ("neighbor priority", priority, argv[1], 0, 255);
2145
2146 if (argc > 2)
2147 VTY_GET_INTEGER_RANGE ("poll interval", interval, argv[2], 1, 65535);
2148
2149 ospf_nbr_nbma_set (ospf, nbr_addr);
2150 if (argc > 1)
2151 ospf_nbr_nbma_priority_set (ospf, nbr_addr, priority);
2152 if (argc > 2)
2153 ospf_nbr_nbma_poll_interval_set (ospf, nbr_addr, priority);
2154
2155 return CMD_SUCCESS;
2156}
2157
paula2c62832003-04-23 17:01:31 +00002158ALIAS (ospf_neighbor,
2159 ospf_neighbor_priority_poll_interval_cmd,
paul718e3742002-12-13 20:15:29 +00002160 "neighbor A.B.C.D priority <0-255> poll-interval <1-65535>",
2161 NEIGHBOR_STR
2162 "Neighbor IP address\n"
2163 "Neighbor Priority\n"
2164 "Priority\n"
2165 "Dead Neighbor Polling interval\n"
2166 "Seconds\n")
2167
paula2c62832003-04-23 17:01:31 +00002168ALIAS (ospf_neighbor,
2169 ospf_neighbor_priority_cmd,
paul718e3742002-12-13 20:15:29 +00002170 "neighbor A.B.C.D priority <0-255>",
2171 NEIGHBOR_STR
2172 "Neighbor IP address\n"
2173 "Neighbor Priority\n"
2174 "Seconds\n")
2175
paula2c62832003-04-23 17:01:31 +00002176DEFUN (ospf_neighbor_poll_interval,
2177 ospf_neighbor_poll_interval_cmd,
paul718e3742002-12-13 20:15:29 +00002178 "neighbor A.B.C.D poll-interval <1-65535>",
2179 NEIGHBOR_STR
2180 "Neighbor IP address\n"
2181 "Dead Neighbor Polling interval\n"
2182 "Seconds\n")
2183{
2184 struct ospf *ospf = vty->index;
2185 struct in_addr nbr_addr;
hassoeb1ce602004-10-08 08:17:22 +00002186 unsigned int priority = OSPF_NEIGHBOR_PRIORITY_DEFAULT;
2187 unsigned int interval = OSPF_POLL_INTERVAL_DEFAULT;
paul718e3742002-12-13 20:15:29 +00002188
2189 VTY_GET_IPV4_ADDRESS ("neighbor address", nbr_addr, argv[0]);
2190
2191 if (argc > 1)
2192 VTY_GET_INTEGER_RANGE ("poll interval", interval, argv[1], 1, 65535);
2193
2194 if (argc > 2)
2195 VTY_GET_INTEGER_RANGE ("neighbor priority", priority, argv[2], 0, 255);
2196
2197 ospf_nbr_nbma_set (ospf, nbr_addr);
2198 if (argc > 1)
2199 ospf_nbr_nbma_poll_interval_set (ospf, nbr_addr, interval);
2200 if (argc > 2)
2201 ospf_nbr_nbma_priority_set (ospf, nbr_addr, priority);
2202
2203 return CMD_SUCCESS;
2204}
2205
paula2c62832003-04-23 17:01:31 +00002206ALIAS (ospf_neighbor_poll_interval,
2207 ospf_neighbor_poll_interval_priority_cmd,
paul718e3742002-12-13 20:15:29 +00002208 "neighbor A.B.C.D poll-interval <1-65535> priority <0-255>",
2209 NEIGHBOR_STR
2210 "Neighbor address\n"
2211 "OSPF dead-router polling interval\n"
2212 "Seconds\n"
2213 "OSPF priority of non-broadcast neighbor\n"
2214 "Priority\n")
2215
paula2c62832003-04-23 17:01:31 +00002216DEFUN (no_ospf_neighbor,
2217 no_ospf_neighbor_cmd,
paul718e3742002-12-13 20:15:29 +00002218 "no neighbor A.B.C.D",
2219 NO_STR
2220 NEIGHBOR_STR
2221 "Neighbor IP address\n")
2222{
2223 struct ospf *ospf = vty->index;
2224 struct in_addr nbr_addr;
2225 int ret;
2226
2227 VTY_GET_IPV4_ADDRESS ("neighbor address", nbr_addr, argv[0]);
2228
2229 ret = ospf_nbr_nbma_unset (ospf, nbr_addr);
2230
2231 return CMD_SUCCESS;
2232}
2233
paula2c62832003-04-23 17:01:31 +00002234ALIAS (no_ospf_neighbor,
2235 no_ospf_neighbor_priority_cmd,
paul718e3742002-12-13 20:15:29 +00002236 "no neighbor A.B.C.D priority <0-255>",
2237 NO_STR
2238 NEIGHBOR_STR
2239 "Neighbor IP address\n"
2240 "Neighbor Priority\n"
2241 "Priority\n")
2242
paula2c62832003-04-23 17:01:31 +00002243ALIAS (no_ospf_neighbor,
2244 no_ospf_neighbor_poll_interval_cmd,
paul718e3742002-12-13 20:15:29 +00002245 "no neighbor A.B.C.D poll-interval <1-65535>",
2246 NO_STR
2247 NEIGHBOR_STR
2248 "Neighbor IP address\n"
2249 "Dead Neighbor Polling interval\n"
2250 "Seconds\n")
2251
paula2c62832003-04-23 17:01:31 +00002252ALIAS (no_ospf_neighbor,
2253 no_ospf_neighbor_priority_pollinterval_cmd,
paul718e3742002-12-13 20:15:29 +00002254 "no neighbor A.B.C.D priority <0-255> poll-interval <1-65535>",
2255 NO_STR
2256 NEIGHBOR_STR
2257 "Neighbor IP address\n"
2258 "Neighbor Priority\n"
2259 "Priority\n"
2260 "Dead Neighbor Polling interval\n"
2261 "Seconds\n")
2262
2263
paula2c62832003-04-23 17:01:31 +00002264DEFUN (ospf_refresh_timer, ospf_refresh_timer_cmd,
paul718e3742002-12-13 20:15:29 +00002265 "refresh timer <10-1800>",
2266 "Adjust refresh parameters\n"
2267 "Set refresh timer\n"
2268 "Timer value in seconds\n")
2269{
2270 struct ospf *ospf = vty->index;
hassoeb1ce602004-10-08 08:17:22 +00002271 unsigned int interval;
paul718e3742002-12-13 20:15:29 +00002272
2273 VTY_GET_INTEGER_RANGE ("refresh timer", interval, argv[0], 10, 1800);
2274 interval = (interval / 10) * 10;
2275
2276 ospf_timers_refresh_set (ospf, interval);
2277
2278 return CMD_SUCCESS;
2279}
2280
paula2c62832003-04-23 17:01:31 +00002281DEFUN (no_ospf_refresh_timer, no_ospf_refresh_timer_val_cmd,
paul718e3742002-12-13 20:15:29 +00002282 "no refresh timer <10-1800>",
2283 "Adjust refresh parameters\n"
2284 "Unset refresh timer\n"
2285 "Timer value in seconds\n")
2286{
2287 struct ospf *ospf = vty->index;
hassoeb1ce602004-10-08 08:17:22 +00002288 unsigned int interval;
paul718e3742002-12-13 20:15:29 +00002289
2290 if (argc == 1)
2291 {
2292 VTY_GET_INTEGER_RANGE ("refresh timer", interval, argv[0], 10, 1800);
2293
2294 if (ospf->lsa_refresh_interval != interval ||
2295 interval == OSPF_LSA_REFRESH_INTERVAL_DEFAULT)
2296 return CMD_SUCCESS;
2297 }
2298
2299 ospf_timers_refresh_unset (ospf);
2300
2301 return CMD_SUCCESS;
2302}
2303
paula2c62832003-04-23 17:01:31 +00002304ALIAS (no_ospf_refresh_timer,
2305 no_ospf_refresh_timer_cmd,
paul718e3742002-12-13 20:15:29 +00002306 "no refresh timer",
2307 "Adjust refresh parameters\n"
2308 "Unset refresh timer\n")
2309
paula2c62832003-04-23 17:01:31 +00002310DEFUN (ospf_auto_cost_reference_bandwidth,
2311 ospf_auto_cost_reference_bandwidth_cmd,
paul718e3742002-12-13 20:15:29 +00002312 "auto-cost reference-bandwidth <1-4294967>",
2313 "Calculate OSPF interface cost according to bandwidth\n"
2314 "Use reference bandwidth method to assign OSPF cost\n"
2315 "The reference bandwidth in terms of Mbits per second\n")
2316{
paul68980082003-03-25 05:07:42 +00002317 struct ospf *ospf = vty->index;
paul718e3742002-12-13 20:15:29 +00002318 u_int32_t refbw;
hasso52dc7ee2004-09-23 19:18:23 +00002319 struct listnode *node;
paul1eb8ef22005-04-07 07:30:20 +00002320 struct interface *ifp;
paul718e3742002-12-13 20:15:29 +00002321
2322 refbw = strtol (argv[0], NULL, 10);
2323 if (refbw < 1 || refbw > 4294967)
2324 {
2325 vty_out (vty, "reference-bandwidth value is invalid%s", VTY_NEWLINE);
2326 return CMD_WARNING;
2327 }
2328
2329 /* If reference bandwidth is changed. */
paul68980082003-03-25 05:07:42 +00002330 if ((refbw * 1000) == ospf->ref_bandwidth)
paul718e3742002-12-13 20:15:29 +00002331 return CMD_SUCCESS;
2332
paul68980082003-03-25 05:07:42 +00002333 ospf->ref_bandwidth = refbw * 1000;
paul718e3742002-12-13 20:15:29 +00002334 vty_out (vty, "%% OSPF: Reference bandwidth is changed.%s", VTY_NEWLINE);
2335 vty_out (vty, " Please ensure reference bandwidth is consistent across all routers%s", VTY_NEWLINE);
2336
paul1eb8ef22005-04-07 07:30:20 +00002337 for (ALL_LIST_ELEMENTS_RO (om->iflist, node, ifp))
2338 ospf_if_recalculate_output_cost (ifp);
paul718e3742002-12-13 20:15:29 +00002339
2340 return CMD_SUCCESS;
2341}
2342
paula2c62832003-04-23 17:01:31 +00002343DEFUN (no_ospf_auto_cost_reference_bandwidth,
2344 no_ospf_auto_cost_reference_bandwidth_cmd,
paul718e3742002-12-13 20:15:29 +00002345 "no auto-cost reference-bandwidth",
2346 NO_STR
2347 "Calculate OSPF interface cost according to bandwidth\n"
2348 "Use reference bandwidth method to assign OSPF cost\n")
2349{
paul68980082003-03-25 05:07:42 +00002350 struct ospf *ospf = vty->index;
paul1eb8ef22005-04-07 07:30:20 +00002351 struct listnode *node, *nnode;
2352 struct interface *ifp;
paul718e3742002-12-13 20:15:29 +00002353
paul68980082003-03-25 05:07:42 +00002354 if (ospf->ref_bandwidth == OSPF_DEFAULT_REF_BANDWIDTH)
paul718e3742002-12-13 20:15:29 +00002355 return CMD_SUCCESS;
2356
paul68980082003-03-25 05:07:42 +00002357 ospf->ref_bandwidth = OSPF_DEFAULT_REF_BANDWIDTH;
paul718e3742002-12-13 20:15:29 +00002358 vty_out (vty, "%% OSPF: Reference bandwidth is changed.%s", VTY_NEWLINE);
2359 vty_out (vty, " Please ensure reference bandwidth is consistent across all routers%s", VTY_NEWLINE);
2360
paul1eb8ef22005-04-07 07:30:20 +00002361 for (ALL_LIST_ELEMENTS (om->iflist, node, nnode, ifp))
2362 ospf_if_recalculate_output_cost (ifp);
paul718e3742002-12-13 20:15:29 +00002363
2364 return CMD_SUCCESS;
2365}
2366
hassoeb1ce602004-10-08 08:17:22 +00002367const char *ospf_abr_type_descr_str[] =
paul718e3742002-12-13 20:15:29 +00002368{
2369 "Unknown",
2370 "Standard (RFC2328)",
2371 "Alternative IBM",
2372 "Alternative Cisco",
2373 "Alternative Shortcut"
2374};
2375
hassoeb1ce602004-10-08 08:17:22 +00002376const char *ospf_shortcut_mode_descr_str[] =
paul718e3742002-12-13 20:15:29 +00002377{
2378 "Default",
2379 "Enabled",
2380 "Disabled"
2381};
2382
2383
2384
paul4dadc292005-05-06 21:37:42 +00002385static void
paul718e3742002-12-13 20:15:29 +00002386show_ip_ospf_area (struct vty *vty, struct ospf_area *area)
2387{
2388 /* Show Area ID. */
2389 vty_out (vty, " Area ID: %s", inet_ntoa (area->area_id));
2390
2391 /* Show Area type/mode. */
2392 if (OSPF_IS_AREA_BACKBONE (area))
2393 vty_out (vty, " (Backbone)%s", VTY_NEWLINE);
2394 else
2395 {
2396 if (area->external_routing == OSPF_AREA_STUB)
paulb0a053b2003-06-22 09:04:47 +00002397 vty_out (vty, " (Stub%s%s)",
2398 area->no_summary ? ", no summary" : "",
2399 area->shortcut_configured ? "; " : "");
paul718e3742002-12-13 20:15:29 +00002400
paulb0a053b2003-06-22 09:04:47 +00002401 else if (area->external_routing == OSPF_AREA_NSSA)
2402 vty_out (vty, " (NSSA%s%s)",
2403 area->no_summary ? ", no summary" : "",
2404 area->shortcut_configured ? "; " : "");
paul718e3742002-12-13 20:15:29 +00002405
2406 vty_out (vty, "%s", VTY_NEWLINE);
2407 vty_out (vty, " Shortcutting mode: %s",
paulb0a053b2003-06-22 09:04:47 +00002408 ospf_shortcut_mode_descr_str[area->shortcut_configured]);
paul718e3742002-12-13 20:15:29 +00002409 vty_out (vty, ", S-bit consensus: %s%s",
paulb0a053b2003-06-22 09:04:47 +00002410 area->shortcut_capability ? "ok" : "no", VTY_NEWLINE);
paul718e3742002-12-13 20:15:29 +00002411 }
2412
2413 /* Show number of interfaces. */
2414 vty_out (vty, " Number of interfaces in this area: Total: %d, "
2415 "Active: %d%s", listcount (area->oiflist),
2416 area->act_ints, VTY_NEWLINE);
2417
paul718e3742002-12-13 20:15:29 +00002418 if (area->external_routing == OSPF_AREA_NSSA)
2419 {
2420 vty_out (vty, " It is an NSSA configuration. %s Elected NSSA/ABR performs type-7/type-5 LSA translation. %s", VTY_NEWLINE, VTY_NEWLINE);
paul020709f2003-04-04 02:44:16 +00002421 if (! IS_OSPF_ABR (area->ospf))
paulb0a053b2003-06-22 09:04:47 +00002422 vty_out (vty, " It is not ABR, therefore not Translator. %s",
2423 VTY_NEWLINE);
2424 else if (area->NSSATranslatorState)
2425 {
2426 vty_out (vty, " We are an ABR and ");
2427 if (area->NSSATranslatorRole == OSPF_NSSA_ROLE_CANDIDATE)
2428 vty_out (vty, "the NSSA Elected Translator. %s",
2429 VTY_NEWLINE);
2430 else if (area->NSSATranslatorRole == OSPF_NSSA_ROLE_ALWAYS)
2431 vty_out (vty, "always an NSSA Translator. %s",
2432 VTY_NEWLINE);
2433 }
paul718e3742002-12-13 20:15:29 +00002434 else
paulb0a053b2003-06-22 09:04:47 +00002435 {
2436 vty_out (vty, " We are an ABR, but ");
2437 if (area->NSSATranslatorRole == OSPF_NSSA_ROLE_CANDIDATE)
2438 vty_out (vty, "not the NSSA Elected Translator. %s",
2439 VTY_NEWLINE);
2440 else
hassoc6b87812004-12-22 13:09:59 +00002441 vty_out (vty, "never an NSSA Translator. %s",
paulb0a053b2003-06-22 09:04:47 +00002442 VTY_NEWLINE);
2443 }
paul718e3742002-12-13 20:15:29 +00002444 }
paul718e3742002-12-13 20:15:29 +00002445
2446 /* Show number of fully adjacent neighbors. */
2447 vty_out (vty, " Number of fully adjacent neighbors in this area:"
paulb0a053b2003-06-22 09:04:47 +00002448 " %d%s", area->full_nbrs, VTY_NEWLINE);
paul718e3742002-12-13 20:15:29 +00002449
2450 /* Show authentication type. */
2451 vty_out (vty, " Area has ");
2452 if (area->auth_type == OSPF_AUTH_NULL)
2453 vty_out (vty, "no authentication%s", VTY_NEWLINE);
2454 else if (area->auth_type == OSPF_AUTH_SIMPLE)
2455 vty_out (vty, "simple password authentication%s", VTY_NEWLINE);
2456 else if (area->auth_type == OSPF_AUTH_CRYPTOGRAPHIC)
2457 vty_out (vty, "message digest authentication%s", VTY_NEWLINE);
2458
2459 if (!OSPF_IS_AREA_BACKBONE (area))
2460 vty_out (vty, " Number of full virtual adjacencies going through"
2461 " this area: %d%s", area->full_vls, VTY_NEWLINE);
2462
2463 /* Show SPF calculation times. */
2464 vty_out (vty, " SPF algorithm executed %d times%s",
2465 area->spf_calculation, VTY_NEWLINE);
2466
2467 /* Show number of LSA. */
2468 vty_out (vty, " Number of LSA %ld%s", area->lsdb->total, VTY_NEWLINE);
hassofe71a972004-12-22 16:16:02 +00002469 vty_out (vty, " Number of router LSA %ld. Checksum Sum 0x%08x%s",
2470 ospf_lsdb_count (area->lsdb, OSPF_ROUTER_LSA),
2471 ospf_lsdb_checksum (area->lsdb, OSPF_ROUTER_LSA), VTY_NEWLINE);
2472 vty_out (vty, " Number of network LSA %ld. Checksum Sum 0x%08x%s",
2473 ospf_lsdb_count (area->lsdb, OSPF_NETWORK_LSA),
2474 ospf_lsdb_checksum (area->lsdb, OSPF_NETWORK_LSA), VTY_NEWLINE);
2475 vty_out (vty, " Number of summary LSA %ld. Checksum Sum 0x%08x%s",
2476 ospf_lsdb_count (area->lsdb, OSPF_SUMMARY_LSA),
2477 ospf_lsdb_checksum (area->lsdb, OSPF_SUMMARY_LSA), VTY_NEWLINE);
2478 vty_out (vty, " Number of ASBR summary LSA %ld. Checksum Sum 0x%08x%s",
2479 ospf_lsdb_count (area->lsdb, OSPF_ASBR_SUMMARY_LSA),
2480 ospf_lsdb_checksum (area->lsdb, OSPF_ASBR_SUMMARY_LSA), VTY_NEWLINE);
2481 vty_out (vty, " Number of NSSA LSA %ld. Checksum Sum 0x%08x%s",
2482 ospf_lsdb_count (area->lsdb, OSPF_AS_NSSA_LSA),
2483 ospf_lsdb_checksum (area->lsdb, OSPF_AS_NSSA_LSA), VTY_NEWLINE);
2484#ifdef HAVE_OPAQUE_LSA
2485 vty_out (vty, " Number of opaque link LSA %ld. Checksum Sum 0x%08x%s",
2486 ospf_lsdb_count (area->lsdb, OSPF_OPAQUE_LINK_LSA),
2487 ospf_lsdb_checksum (area->lsdb, OSPF_OPAQUE_LINK_LSA), VTY_NEWLINE);
2488 vty_out (vty, " Number of opaque area LSA %ld. Checksum Sum 0x%08x%s",
2489 ospf_lsdb_count (area->lsdb, OSPF_OPAQUE_AREA_LSA),
2490 ospf_lsdb_checksum (area->lsdb, OSPF_OPAQUE_AREA_LSA), VTY_NEWLINE);
2491#endif /* HAVE_OPAQUE_LSA */
paul718e3742002-12-13 20:15:29 +00002492 vty_out (vty, "%s", VTY_NEWLINE);
2493}
2494
2495DEFUN (show_ip_ospf,
2496 show_ip_ospf_cmd,
2497 "show ip ospf",
2498 SHOW_STR
2499 IP_STR
2500 "OSPF information\n")
2501{
paul1eb8ef22005-04-07 07:30:20 +00002502 struct listnode *node, *nnode;
paul718e3742002-12-13 20:15:29 +00002503 struct ospf_area * area;
paul020709f2003-04-04 02:44:16 +00002504 struct ospf *ospf;
paul718e3742002-12-13 20:15:29 +00002505
2506 /* Check OSPF is enable. */
paul020709f2003-04-04 02:44:16 +00002507 ospf = ospf_lookup ();
paul68980082003-03-25 05:07:42 +00002508 if (ospf == NULL)
paul718e3742002-12-13 20:15:29 +00002509 {
2510 vty_out (vty, " OSPF Routing Process not enabled%s", VTY_NEWLINE);
2511 return CMD_SUCCESS;
2512 }
2513
2514 /* Show Router ID. */
2515 vty_out (vty, " OSPF Routing Process, Router ID: %s%s",
paul68980082003-03-25 05:07:42 +00002516 inet_ntoa (ospf->router_id),
paul718e3742002-12-13 20:15:29 +00002517 VTY_NEWLINE);
2518
2519 /* Show capability. */
2520 vty_out (vty, " Supports only single TOS (TOS0) routes%s", VTY_NEWLINE);
2521 vty_out (vty, " This implementation conforms to RFC2328%s", VTY_NEWLINE);
2522 vty_out (vty, " RFC1583Compatibility flag is %s%s",
paul68980082003-03-25 05:07:42 +00002523 CHECK_FLAG (ospf->config, OSPF_RFC1583_COMPATIBLE) ?
paul718e3742002-12-13 20:15:29 +00002524 "enabled" : "disabled", VTY_NEWLINE);
2525#ifdef HAVE_OPAQUE_LSA
2526 vty_out (vty, " OpaqueCapability flag is %s%s%s",
paul68980082003-03-25 05:07:42 +00002527 CHECK_FLAG (ospf->config, OSPF_OPAQUE_CAPABLE) ?
paul718e3742002-12-13 20:15:29 +00002528 "enabled" : "disabled",
paul68980082003-03-25 05:07:42 +00002529 IS_OPAQUE_LSA_ORIGINATION_BLOCKED (ospf->opaque) ?
paul718e3742002-12-13 20:15:29 +00002530 " (origination blocked)" : "",
2531 VTY_NEWLINE);
2532#endif /* HAVE_OPAQUE_LSA */
2533
2534 /* Show SPF timers. */
2535 vty_out (vty, " SPF schedule delay %d secs, Hold time between two SPFs %d secs%s",
paul68980082003-03-25 05:07:42 +00002536 ospf->spf_delay, ospf->spf_holdtime, VTY_NEWLINE);
paul718e3742002-12-13 20:15:29 +00002537
2538 /* Show refresh parameters. */
2539 vty_out (vty, " Refresh timer %d secs%s",
paul68980082003-03-25 05:07:42 +00002540 ospf->lsa_refresh_interval, VTY_NEWLINE);
paul718e3742002-12-13 20:15:29 +00002541
2542 /* Show ABR/ASBR flags. */
paul68980082003-03-25 05:07:42 +00002543 if (CHECK_FLAG (ospf->flags, OSPF_FLAG_ABR))
paul718e3742002-12-13 20:15:29 +00002544 vty_out (vty, " This router is an ABR, ABR type is: %s%s",
paul68980082003-03-25 05:07:42 +00002545 ospf_abr_type_descr_str[ospf->abr_type], VTY_NEWLINE);
paul718e3742002-12-13 20:15:29 +00002546
paul68980082003-03-25 05:07:42 +00002547 if (CHECK_FLAG (ospf->flags, OSPF_FLAG_ASBR))
paul718e3742002-12-13 20:15:29 +00002548 vty_out (vty, " This router is an ASBR "
2549 "(injecting external routing information)%s", VTY_NEWLINE);
2550
2551 /* Show Number of AS-external-LSAs. */
hassofe71a972004-12-22 16:16:02 +00002552 vty_out (vty, " Number of external LSA %ld. Checksum Sum 0x%08x%s",
2553 ospf_lsdb_count (ospf->lsdb, OSPF_AS_EXTERNAL_LSA),
2554 ospf_lsdb_checksum (ospf->lsdb, OSPF_AS_EXTERNAL_LSA), VTY_NEWLINE);
2555#ifdef HAVE_OPAQUE_LSA
2556 vty_out (vty, " Number of opaque AS LSA %ld. Checksum Sum 0x%08x%s",
2557 ospf_lsdb_count (ospf->lsdb, OSPF_OPAQUE_AS_LSA),
2558 ospf_lsdb_checksum (ospf->lsdb, OSPF_OPAQUE_AS_LSA), VTY_NEWLINE);
2559#endif /* HAVE_OPAQUE_LSA */
paul718e3742002-12-13 20:15:29 +00002560 /* Show number of areas attached. */
2561 vty_out (vty, " Number of areas attached to this router: %d%s%s",
paul68980082003-03-25 05:07:42 +00002562 listcount (ospf->areas), VTY_NEWLINE, VTY_NEWLINE);
paul718e3742002-12-13 20:15:29 +00002563
2564 /* Show each area status. */
paul1eb8ef22005-04-07 07:30:20 +00002565 for (ALL_LIST_ELEMENTS (ospf->areas, node, nnode, area))
2566 show_ip_ospf_area (vty, area);
paul718e3742002-12-13 20:15:29 +00002567
2568 return CMD_SUCCESS;
2569}
2570
2571
ajsfd651fa2005-03-29 16:08:16 +00002572static void
paul68980082003-03-25 05:07:42 +00002573show_ip_ospf_interface_sub (struct vty *vty, struct ospf *ospf,
2574 struct interface *ifp)
paul718e3742002-12-13 20:15:29 +00002575{
ajsfd651fa2005-03-29 16:08:16 +00002576 int is_up;
paul718e3742002-12-13 20:15:29 +00002577 struct ospf_neighbor *nbr;
paul718e3742002-12-13 20:15:29 +00002578 struct route_node *rn;
2579 char buf[9];
2580
paul718e3742002-12-13 20:15:29 +00002581 /* Is interface up? */
ajsfd651fa2005-03-29 16:08:16 +00002582 vty_out (vty, "%s is %s%s", ifp->name,
2583 ((is_up = if_is_operative(ifp)) ? "up" : "down"), VTY_NEWLINE);
ajsd2fc8892005-04-02 18:38:43 +00002584 vty_out (vty, " ifindex %u, MTU %u bytes, BW %u Kbit %s%s",
2585 ifp->ifindex, ifp->mtu, ifp->bandwidth, if_flag_dump(ifp->flags),
2586 VTY_NEWLINE);
paul718e3742002-12-13 20:15:29 +00002587
2588 /* Is interface OSPF enabled? */
ajsfd651fa2005-03-29 16:08:16 +00002589 if (ospf_oi_count(ifp) == 0)
paul718e3742002-12-13 20:15:29 +00002590 {
2591 vty_out (vty, " OSPF not enabled on this interface%s", VTY_NEWLINE);
2592 return;
2593 }
ajsfd651fa2005-03-29 16:08:16 +00002594 else if (!is_up)
2595 {
2596 vty_out (vty, " OSPF is enabled, but not running on this interface%s",
2597 VTY_NEWLINE);
2598 return;
2599 }
2600
paul718e3742002-12-13 20:15:29 +00002601 for (rn = route_top (IF_OIFS (ifp)); rn; rn = route_next (rn))
2602 {
2603 struct ospf_interface *oi = rn->info;
2604
2605 if (oi == NULL)
2606 continue;
2607
2608 /* Show OSPF interface information. */
2609 vty_out (vty, " Internet Address %s/%d,",
2610 inet_ntoa (oi->address->u.prefix4), oi->address->prefixlen);
2611
hasso3fb9cd62004-10-19 19:44:43 +00002612 if (oi->connected->destination)
2613 vty_out (vty, " %s %s,",
2614 ((ifp->flags & IFF_POINTOPOINT) ? "Peer" : "Broadcast"),
2615 inet_ntoa (oi->connected->destination->u.prefix4));
2616
paul718e3742002-12-13 20:15:29 +00002617 vty_out (vty, " Area %s%s", ospf_area_desc_string (oi->area),
2618 VTY_NEWLINE);
2619
2620 vty_out (vty, " Router ID %s, Network Type %s, Cost: %d%s",
paul68980082003-03-25 05:07:42 +00002621 inet_ntoa (ospf->router_id), ospf_network_type_str[oi->type],
paul718e3742002-12-13 20:15:29 +00002622 oi->output_cost, VTY_NEWLINE);
2623
2624 vty_out (vty, " Transmit Delay is %d sec, State %s, Priority %d%s",
2625 OSPF_IF_PARAM (oi,transmit_delay), LOOKUP (ospf_ism_state_msg, oi->state),
2626 PRIORITY (oi), VTY_NEWLINE);
2627
2628 /* Show DR information. */
2629 if (DR (oi).s_addr == 0)
2630 vty_out (vty, " No designated router on this network%s", VTY_NEWLINE);
2631 else
2632 {
2633 nbr = ospf_nbr_lookup_by_addr (oi->nbrs, &DR (oi));
2634 if (nbr == NULL)
2635 vty_out (vty, " No designated router on this network%s", VTY_NEWLINE);
2636 else
2637 {
2638 vty_out (vty, " Designated Router (ID) %s,",
2639 inet_ntoa (nbr->router_id));
2640 vty_out (vty, " Interface Address %s%s",
2641 inet_ntoa (nbr->address.u.prefix4), VTY_NEWLINE);
2642 }
2643 }
2644
2645 /* Show BDR information. */
2646 if (BDR (oi).s_addr == 0)
2647 vty_out (vty, " No backup designated router on this network%s",
2648 VTY_NEWLINE);
2649 else
2650 {
2651 nbr = ospf_nbr_lookup_by_addr (oi->nbrs, &BDR (oi));
2652 if (nbr == NULL)
2653 vty_out (vty, " No backup designated router on this network%s",
2654 VTY_NEWLINE);
2655 else
2656 {
2657 vty_out (vty, " Backup Designated Router (ID) %s,",
2658 inet_ntoa (nbr->router_id));
2659 vty_out (vty, " Interface Address %s%s",
2660 inet_ntoa (nbr->address.u.prefix4), VTY_NEWLINE);
2661 }
2662 }
ajsba6454e2005-02-08 15:37:30 +00002663
2664 vty_out (vty, " Multicast group memberships:");
2665 if (CHECK_FLAG(oi->multicast_memberships, MEMBER_ALLROUTERS))
2666 vty_out (vty, " OSPFAllRouters");
2667 if (CHECK_FLAG(oi->multicast_memberships, MEMBER_DROUTERS))
2668 vty_out (vty, " OSPFDesignatedRouters");
2669 if (!CHECK_FLAG(oi->multicast_memberships,
2670 MEMBER_ALLROUTERS|MEMBER_DROUTERS))
2671 vty_out (vty, " <None>");
2672 vty_out (vty, "%s", VTY_NEWLINE);
2673
paul718e3742002-12-13 20:15:29 +00002674 vty_out (vty, " Timer intervals configured,");
2675 vty_out (vty, " Hello %d, Dead %d, Wait %d, Retransmit %d%s",
2676 OSPF_IF_PARAM (oi, v_hello), OSPF_IF_PARAM (oi, v_wait),
2677 OSPF_IF_PARAM (oi, v_wait),
2678 OSPF_IF_PARAM (oi, retransmit_interval),
2679 VTY_NEWLINE);
2680
2681 if (OSPF_IF_PARAM (oi, passive_interface) == OSPF_IF_ACTIVE)
2682 vty_out (vty, " Hello due in %s%s",
2683 ospf_timer_dump (oi->t_hello, buf, 9), VTY_NEWLINE);
2684 else /* OSPF_IF_PASSIVE is set */
2685 vty_out (vty, " No Hellos (Passive interface)%s", VTY_NEWLINE);
2686
2687 vty_out (vty, " Neighbor Count is %d, Adjacent neighbor count is %d%s",
paul68980082003-03-25 05:07:42 +00002688 ospf_nbr_count (oi, 0), ospf_nbr_count (oi, NSM_Full),
paul718e3742002-12-13 20:15:29 +00002689 VTY_NEWLINE);
2690 }
2691}
2692
2693DEFUN (show_ip_ospf_interface,
2694 show_ip_ospf_interface_cmd,
2695 "show ip ospf interface [INTERFACE]",
2696 SHOW_STR
2697 IP_STR
2698 "OSPF information\n"
2699 "Interface information\n"
2700 "Interface name\n")
2701{
2702 struct interface *ifp;
paul020709f2003-04-04 02:44:16 +00002703 struct ospf *ospf;
hasso52dc7ee2004-09-23 19:18:23 +00002704 struct listnode *node;
paul718e3742002-12-13 20:15:29 +00002705
paul020709f2003-04-04 02:44:16 +00002706 ospf = ospf_lookup ();
2707
paul718e3742002-12-13 20:15:29 +00002708 /* Show All Interfaces. */
2709 if (argc == 0)
paul1eb8ef22005-04-07 07:30:20 +00002710 for (ALL_LIST_ELEMENTS_RO (iflist, node, ifp))
2711 show_ip_ospf_interface_sub (vty, ospf, ifp);
paul718e3742002-12-13 20:15:29 +00002712 /* Interface name is specified. */
2713 else
2714 {
2715 if ((ifp = if_lookup_by_name (argv[0])) == NULL)
2716 vty_out (vty, "No such interface name%s", VTY_NEWLINE);
2717 else
paul68980082003-03-25 05:07:42 +00002718 show_ip_ospf_interface_sub (vty, ospf, ifp);
paul718e3742002-12-13 20:15:29 +00002719 }
2720
2721 return CMD_SUCCESS;
2722}
2723
paul4dadc292005-05-06 21:37:42 +00002724static void
paul718e3742002-12-13 20:15:29 +00002725show_ip_ospf_neighbor_sub (struct vty *vty, struct ospf_interface *oi)
2726{
2727 struct route_node *rn;
2728 struct ospf_neighbor *nbr;
2729 char msgbuf[16];
2730 char timebuf[9];
2731
2732 for (rn = route_top (oi->nbrs); rn; rn = route_next (rn))
2733 if ((nbr = rn->info))
2734 /* Do not show myself. */
2735 if (nbr != oi->nbr_self)
2736 /* Down state is not shown. */
2737 if (nbr->state != NSM_Down)
2738 {
2739 ospf_nbr_state_message (nbr, msgbuf, 16);
2740
2741 if (nbr->state == NSM_Attempt && nbr->router_id.s_addr == 0)
2742 vty_out (vty, "%-15s %3d %-15s %8s ",
2743 "-", nbr->priority,
2744 msgbuf, ospf_timer_dump (nbr->t_inactivity, timebuf, 9));
2745 else
2746 vty_out (vty, "%-15s %3d %-15s %8s ",
2747 inet_ntoa (nbr->router_id), nbr->priority,
2748 msgbuf, ospf_timer_dump (nbr->t_inactivity, timebuf, 9));
2749 vty_out (vty, "%-15s ", inet_ntoa (nbr->src));
2750 vty_out (vty, "%-15s %5ld %5ld %5d%s",
2751 IF_NAME (oi), ospf_ls_retransmit_count (nbr),
2752 ospf_ls_request_count (nbr), ospf_db_summary_count (nbr),
2753 VTY_NEWLINE);
2754 }
2755}
2756
2757DEFUN (show_ip_ospf_neighbor,
2758 show_ip_ospf_neighbor_cmd,
2759 "show ip ospf neighbor",
2760 SHOW_STR
2761 IP_STR
2762 "OSPF information\n"
2763 "Neighbor list\n")
2764{
paul020709f2003-04-04 02:44:16 +00002765 struct ospf *ospf;
paul1eb8ef22005-04-07 07:30:20 +00002766 struct ospf_interface *oi;
hasso52dc7ee2004-09-23 19:18:23 +00002767 struct listnode *node;
paul718e3742002-12-13 20:15:29 +00002768
paul020709f2003-04-04 02:44:16 +00002769 ospf = ospf_lookup ();
paul68980082003-03-25 05:07:42 +00002770 if (ospf == NULL)
paul718e3742002-12-13 20:15:29 +00002771 {
2772 vty_out (vty, " OSPF Routing Process not enabled%s", VTY_NEWLINE);
2773 return CMD_SUCCESS;
2774 }
2775
2776 /* Show All neighbors. */
2777 vty_out (vty, "%sNeighbor ID Pri State Dead "
2778 "Time Address Interface RXmtL "
2779 "RqstL DBsmL%s", VTY_NEWLINE, VTY_NEWLINE);
2780
paul1eb8ef22005-04-07 07:30:20 +00002781 for (ALL_LIST_ELEMENTS_RO (ospf->oiflist, node, oi))
2782 show_ip_ospf_neighbor_sub (vty, oi);
paul718e3742002-12-13 20:15:29 +00002783
2784 return CMD_SUCCESS;
2785}
2786
2787DEFUN (show_ip_ospf_neighbor_all,
2788 show_ip_ospf_neighbor_all_cmd,
2789 "show ip ospf neighbor all",
2790 SHOW_STR
2791 IP_STR
2792 "OSPF information\n"
2793 "Neighbor list\n"
2794 "include down status neighbor\n")
2795{
paul68980082003-03-25 05:07:42 +00002796 struct ospf *ospf = vty->index;
hasso52dc7ee2004-09-23 19:18:23 +00002797 struct listnode *node;
paul1eb8ef22005-04-07 07:30:20 +00002798 struct ospf_interface *oi;
paul718e3742002-12-13 20:15:29 +00002799
paul68980082003-03-25 05:07:42 +00002800 if (ospf == NULL)
paul718e3742002-12-13 20:15:29 +00002801 {
2802 vty_out (vty, " OSPF Routing Process not enabled%s", VTY_NEWLINE);
2803 return CMD_SUCCESS;
2804 }
2805
2806 /* Show All neighbors. */
2807 vty_out (vty, "%sNeighbor ID Pri State Dead "
2808 "Time Address Interface RXmtL "
2809 "RqstL DBsmL%s", VTY_NEWLINE, VTY_NEWLINE);
2810
paul1eb8ef22005-04-07 07:30:20 +00002811 for (ALL_LIST_ELEMENTS_RO (ospf->oiflist, node, oi))
paul718e3742002-12-13 20:15:29 +00002812 {
hasso52dc7ee2004-09-23 19:18:23 +00002813 struct listnode *nbr_node;
paul1eb8ef22005-04-07 07:30:20 +00002814 struct ospf_nbr_nbma *nbr_nbma;
paul718e3742002-12-13 20:15:29 +00002815
2816 show_ip_ospf_neighbor_sub (vty, oi);
2817
2818 /* print Down neighbor status */
paul1eb8ef22005-04-07 07:30:20 +00002819 for (ALL_LIST_ELEMENTS_RO (oi->nbr_nbma, nbr_node, nbr_nbma))
paul718e3742002-12-13 20:15:29 +00002820 {
paul718e3742002-12-13 20:15:29 +00002821 if (nbr_nbma->nbr == NULL
2822 || nbr_nbma->nbr->state == NSM_Down)
2823 {
2824 vty_out (vty, "%-15s %3d %-15s %8s ",
2825 "-", nbr_nbma->priority, "Down", "-");
2826 vty_out (vty, "%-15s %-15s %5d %5d %5d%s",
2827 inet_ntoa (nbr_nbma->addr), IF_NAME (oi),
2828 0, 0, 0, VTY_NEWLINE);
2829 }
2830 }
2831 }
2832
2833 return CMD_SUCCESS;
2834}
2835
2836DEFUN (show_ip_ospf_neighbor_int,
2837 show_ip_ospf_neighbor_int_cmd,
hassobb5b7552005-08-21 20:01:15 +00002838 "show ip ospf neighbor IFNAME",
paul718e3742002-12-13 20:15:29 +00002839 SHOW_STR
2840 IP_STR
2841 "OSPF information\n"
2842 "Neighbor list\n"
2843 "Interface name\n")
2844{
paul020709f2003-04-04 02:44:16 +00002845 struct ospf *ospf;
hassobb5b7552005-08-21 20:01:15 +00002846 struct interface *ifp;
2847 struct route_node *rn;
2848
2849 ifp = if_lookup_by_name (argv[0]);
2850 if (!ifp)
paul718e3742002-12-13 20:15:29 +00002851 {
hassobb5b7552005-08-21 20:01:15 +00002852 vty_out (vty, "No such interface.%s", VTY_NEWLINE);
paul718e3742002-12-13 20:15:29 +00002853 return CMD_WARNING;
2854 }
2855
paul020709f2003-04-04 02:44:16 +00002856 ospf = ospf_lookup ();
2857 if (ospf == NULL)
2858 {
2859 vty_out (vty, " OSPF Routing Process not enabled%s", VTY_NEWLINE);
2860 return CMD_SUCCESS;
2861 }
2862
hassobb5b7552005-08-21 20:01:15 +00002863 vty_out (vty, "%sNeighbor ID Pri State Dead "
2864 "Time Address Interface RXmtL "
2865 "RqstL DBsmL%s", VTY_NEWLINE, VTY_NEWLINE);
2866
2867 for (rn = route_top (IF_OIFS (ifp)); rn; rn = route_next (rn))
paul718e3742002-12-13 20:15:29 +00002868 {
hassobb5b7552005-08-21 20:01:15 +00002869 struct ospf_interface *oi = rn->info;
2870
2871 if (oi == NULL)
2872 continue;
2873
paul718e3742002-12-13 20:15:29 +00002874 show_ip_ospf_neighbor_sub (vty, oi);
2875 }
2876
2877 return CMD_SUCCESS;
2878}
2879
paul4dadc292005-05-06 21:37:42 +00002880static void
paul718e3742002-12-13 20:15:29 +00002881show_ip_ospf_nbr_nbma_detail_sub (struct vty *vty, struct ospf_interface *oi,
2882 struct ospf_nbr_nbma *nbr_nbma)
2883{
2884 char timebuf[9];
2885
2886 /* Show neighbor ID. */
2887 vty_out (vty, " Neighbor %s,", "-");
2888
2889 /* Show interface address. */
2890 vty_out (vty, " interface address %s%s",
2891 inet_ntoa (nbr_nbma->addr), VTY_NEWLINE);
2892 /* Show Area ID. */
2893 vty_out (vty, " In the area %s via interface %s%s",
2894 ospf_area_desc_string (oi->area), IF_NAME (oi), VTY_NEWLINE);
2895 /* Show neighbor priority and state. */
2896 vty_out (vty, " Neighbor priority is %d, State is %s,",
2897 nbr_nbma->priority, "Down");
2898 /* Show state changes. */
2899 vty_out (vty, " %d state changes%s", nbr_nbma->state_change, VTY_NEWLINE);
2900
2901 /* Show PollInterval */
2902 vty_out (vty, " Poll interval %d%s", nbr_nbma->v_poll, VTY_NEWLINE);
2903
2904 /* Show poll-interval timer. */
2905 vty_out (vty, " Poll timer due in %s%s",
2906 ospf_timer_dump (nbr_nbma->t_poll, timebuf, 9), VTY_NEWLINE);
2907
2908 /* Show poll-interval timer thread. */
2909 vty_out (vty, " Thread Poll Timer %s%s",
2910 nbr_nbma->t_poll != NULL ? "on" : "off", VTY_NEWLINE);
2911}
2912
paul4dadc292005-05-06 21:37:42 +00002913static void
paul718e3742002-12-13 20:15:29 +00002914show_ip_ospf_neighbor_detail_sub (struct vty *vty, struct ospf_interface *oi,
2915 struct ospf_neighbor *nbr)
2916{
2917 char timebuf[9];
2918
2919 /* Show neighbor ID. */
2920 if (nbr->state == NSM_Attempt && nbr->router_id.s_addr == 0)
2921 vty_out (vty, " Neighbor %s,", "-");
2922 else
2923 vty_out (vty, " Neighbor %s,", inet_ntoa (nbr->router_id));
2924
2925 /* Show interface address. */
2926 vty_out (vty, " interface address %s%s",
2927 inet_ntoa (nbr->address.u.prefix4), VTY_NEWLINE);
2928 /* Show Area ID. */
2929 vty_out (vty, " In the area %s via interface %s%s",
2930 ospf_area_desc_string (oi->area), oi->ifp->name, VTY_NEWLINE);
2931 /* Show neighbor priority and state. */
2932 vty_out (vty, " Neighbor priority is %d, State is %s,",
2933 nbr->priority, LOOKUP (ospf_nsm_state_msg, nbr->state));
2934 /* Show state changes. */
2935 vty_out (vty, " %d state changes%s", nbr->state_change, VTY_NEWLINE);
2936
2937 /* Show Designated Rotuer ID. */
2938 vty_out (vty, " DR is %s,", inet_ntoa (nbr->d_router));
2939 /* Show Backup Designated Rotuer ID. */
2940 vty_out (vty, " BDR is %s%s", inet_ntoa (nbr->bd_router), VTY_NEWLINE);
2941 /* Show options. */
2942 vty_out (vty, " Options %d %s%s", nbr->options,
2943 ospf_options_dump (nbr->options), VTY_NEWLINE);
2944 /* Show Router Dead interval timer. */
2945 vty_out (vty, " Dead timer due in %s%s",
2946 ospf_timer_dump (nbr->t_inactivity, timebuf, 9), VTY_NEWLINE);
2947 /* Show Database Summary list. */
2948 vty_out (vty, " Database Summary List %d%s",
2949 ospf_db_summary_count (nbr), VTY_NEWLINE);
2950 /* Show Link State Request list. */
2951 vty_out (vty, " Link State Request List %ld%s",
2952 ospf_ls_request_count (nbr), VTY_NEWLINE);
2953 /* Show Link State Retransmission list. */
2954 vty_out (vty, " Link State Retransmission List %ld%s",
2955 ospf_ls_retransmit_count (nbr), VTY_NEWLINE);
2956 /* Show inactivity timer thread. */
2957 vty_out (vty, " Thread Inactivity Timer %s%s",
2958 nbr->t_inactivity != NULL ? "on" : "off", VTY_NEWLINE);
2959 /* Show Database Description retransmission thread. */
2960 vty_out (vty, " Thread Database Description Retransmision %s%s",
2961 nbr->t_db_desc != NULL ? "on" : "off", VTY_NEWLINE);
2962 /* Show Link State Request Retransmission thread. */
2963 vty_out (vty, " Thread Link State Request Retransmission %s%s",
2964 nbr->t_ls_req != NULL ? "on" : "off", VTY_NEWLINE);
2965 /* Show Link State Update Retransmission thread. */
2966 vty_out (vty, " Thread Link State Update Retransmission %s%s%s",
2967 nbr->t_ls_upd != NULL ? "on" : "off", VTY_NEWLINE, VTY_NEWLINE);
2968}
2969
2970DEFUN (show_ip_ospf_neighbor_id,
2971 show_ip_ospf_neighbor_id_cmd,
2972 "show ip ospf neighbor A.B.C.D",
2973 SHOW_STR
2974 IP_STR
2975 "OSPF information\n"
2976 "Neighbor list\n"
2977 "Neighbor ID\n")
2978{
paul020709f2003-04-04 02:44:16 +00002979 struct ospf *ospf;
hasso52dc7ee2004-09-23 19:18:23 +00002980 struct listnode *node;
paul718e3742002-12-13 20:15:29 +00002981 struct ospf_neighbor *nbr;
paul1eb8ef22005-04-07 07:30:20 +00002982 struct ospf_interface *oi;
paul718e3742002-12-13 20:15:29 +00002983 struct in_addr router_id;
2984 int ret;
2985
2986 ret = inet_aton (argv[0], &router_id);
2987 if (!ret)
2988 {
2989 vty_out (vty, "Please specify Neighbor ID by A.B.C.D%s", VTY_NEWLINE);
2990 return CMD_WARNING;
2991 }
2992
paul020709f2003-04-04 02:44:16 +00002993 ospf = ospf_lookup ();
2994 if (ospf == NULL)
2995 {
2996 vty_out (vty, " OSPF Routing Process not enabled%s", VTY_NEWLINE);
2997 return CMD_SUCCESS;
2998 }
2999
paul1eb8ef22005-04-07 07:30:20 +00003000 for (ALL_LIST_ELEMENTS_RO (ospf->oiflist, node, oi))
3001 if ((nbr = ospf_nbr_lookup_by_routerid (oi->nbrs, &router_id)))
3002 {
3003 show_ip_ospf_neighbor_detail_sub (vty, oi, nbr);
3004 return CMD_SUCCESS;
3005 }
paul718e3742002-12-13 20:15:29 +00003006
3007 /* Nothing to show. */
3008 return CMD_SUCCESS;
3009}
3010
3011DEFUN (show_ip_ospf_neighbor_detail,
3012 show_ip_ospf_neighbor_detail_cmd,
3013 "show ip ospf neighbor detail",
3014 SHOW_STR
3015 IP_STR
3016 "OSPF information\n"
3017 "Neighbor list\n"
3018 "detail of all neighbors\n")
3019{
paul020709f2003-04-04 02:44:16 +00003020 struct ospf *ospf;
paul1eb8ef22005-04-07 07:30:20 +00003021 struct ospf_interface *oi;
hasso52dc7ee2004-09-23 19:18:23 +00003022 struct listnode *node;
paul718e3742002-12-13 20:15:29 +00003023
paul020709f2003-04-04 02:44:16 +00003024 ospf = ospf_lookup ();
paul68980082003-03-25 05:07:42 +00003025 if (ospf == NULL)
paul020709f2003-04-04 02:44:16 +00003026 {
3027 vty_out (vty, " OSPF Routing Process not enabled%s", VTY_NEWLINE);
3028 return CMD_SUCCESS;
3029 }
paul718e3742002-12-13 20:15:29 +00003030
paul1eb8ef22005-04-07 07:30:20 +00003031 for (ALL_LIST_ELEMENTS_RO (ospf->oiflist, node, oi))
paul718e3742002-12-13 20:15:29 +00003032 {
paul718e3742002-12-13 20:15:29 +00003033 struct route_node *rn;
3034 struct ospf_neighbor *nbr;
3035
3036 for (rn = route_top (oi->nbrs); rn; rn = route_next (rn))
3037 if ((nbr = rn->info))
3038 if (nbr != oi->nbr_self)
3039 if (nbr->state != NSM_Down)
3040 show_ip_ospf_neighbor_detail_sub (vty, oi, nbr);
3041 }
3042
3043 return CMD_SUCCESS;
3044}
3045
3046DEFUN (show_ip_ospf_neighbor_detail_all,
3047 show_ip_ospf_neighbor_detail_all_cmd,
3048 "show ip ospf neighbor detail all",
3049 SHOW_STR
3050 IP_STR
3051 "OSPF information\n"
3052 "Neighbor list\n"
3053 "detail of all neighbors\n"
3054 "include down status neighbor\n")
3055{
paul020709f2003-04-04 02:44:16 +00003056 struct ospf *ospf;
hasso52dc7ee2004-09-23 19:18:23 +00003057 struct listnode *node;
paul1eb8ef22005-04-07 07:30:20 +00003058 struct ospf_interface *oi;
paul718e3742002-12-13 20:15:29 +00003059
paul020709f2003-04-04 02:44:16 +00003060 ospf = ospf_lookup ();
paul68980082003-03-25 05:07:42 +00003061 if (ospf == NULL)
paul020709f2003-04-04 02:44:16 +00003062 {
3063 vty_out (vty, " OSPF Routing Process not enabled%s", VTY_NEWLINE);
3064 return CMD_SUCCESS;
3065 }
paul718e3742002-12-13 20:15:29 +00003066
paul1eb8ef22005-04-07 07:30:20 +00003067 for (ALL_LIST_ELEMENTS_RO (ospf->oiflist, node, oi))
paul718e3742002-12-13 20:15:29 +00003068 {
paul718e3742002-12-13 20:15:29 +00003069 struct route_node *rn;
3070 struct ospf_neighbor *nbr;
paul1eb8ef22005-04-07 07:30:20 +00003071 struct ospf_nbr_nbma *nbr_nbma;
paul718e3742002-12-13 20:15:29 +00003072
3073 for (rn = route_top (oi->nbrs); rn; rn = route_next (rn))
3074 if ((nbr = rn->info))
3075 if (nbr != oi->nbr_self)
3076 if (oi->type == OSPF_IFTYPE_NBMA && nbr->state != NSM_Down)
3077 show_ip_ospf_neighbor_detail_sub (vty, oi, rn->info);
3078
3079 if (oi->type == OSPF_IFTYPE_NBMA)
3080 {
hasso52dc7ee2004-09-23 19:18:23 +00003081 struct listnode *nd;
paul718e3742002-12-13 20:15:29 +00003082
paul1eb8ef22005-04-07 07:30:20 +00003083 for (ALL_LIST_ELEMENTS_RO (oi->nbr_nbma, nd, nbr_nbma))
3084 if (nbr_nbma->nbr == NULL
3085 || nbr_nbma->nbr->state == NSM_Down)
3086 show_ip_ospf_nbr_nbma_detail_sub (vty, oi, nbr_nbma);
paul718e3742002-12-13 20:15:29 +00003087 }
3088 }
3089
3090 return CMD_SUCCESS;
3091}
3092
3093DEFUN (show_ip_ospf_neighbor_int_detail,
3094 show_ip_ospf_neighbor_int_detail_cmd,
hassobb5b7552005-08-21 20:01:15 +00003095 "show ip ospf neighbor IFNAME detail",
paul718e3742002-12-13 20:15:29 +00003096 SHOW_STR
3097 IP_STR
3098 "OSPF information\n"
3099 "Neighbor list\n"
hassobb5b7552005-08-21 20:01:15 +00003100 "Interface name\n"
paul718e3742002-12-13 20:15:29 +00003101 "detail of all neighbors")
3102{
paul020709f2003-04-04 02:44:16 +00003103 struct ospf *ospf;
paul718e3742002-12-13 20:15:29 +00003104 struct ospf_interface *oi;
hassobb5b7552005-08-21 20:01:15 +00003105 struct interface *ifp;
3106 struct route_node *rn, *nrn;
3107 struct ospf_neighbor *nbr;
3108
3109 ifp = if_lookup_by_name (argv[0]);
3110 if (!ifp)
paul718e3742002-12-13 20:15:29 +00003111 {
hassobb5b7552005-08-21 20:01:15 +00003112 vty_out (vty, "No such interface.%s", VTY_NEWLINE);
paul718e3742002-12-13 20:15:29 +00003113 return CMD_WARNING;
3114 }
3115
paul020709f2003-04-04 02:44:16 +00003116 ospf = ospf_lookup ();
3117 if (ospf == NULL)
3118 {
3119 vty_out (vty, " OSPF Routing Process not enabled%s", VTY_NEWLINE);
3120 return CMD_SUCCESS;
3121 }
paul68980082003-03-25 05:07:42 +00003122
paul718e3742002-12-13 20:15:29 +00003123
hassobb5b7552005-08-21 20:01:15 +00003124 for (rn = route_top (IF_OIFS (ifp)); rn; rn = route_next (rn))
3125 if ((oi = rn->info))
3126 for (nrn = route_top (oi->nbrs); nrn; nrn = route_next (nrn))
3127 if ((nbr = nrn->info))
paul718e3742002-12-13 20:15:29 +00003128 if (nbr != oi->nbr_self)
3129 if (nbr->state != NSM_Down)
3130 show_ip_ospf_neighbor_detail_sub (vty, oi, nbr);
paul718e3742002-12-13 20:15:29 +00003131
3132 return CMD_SUCCESS;
3133}
3134
3135
3136/* Show functions */
paul4dadc292005-05-06 21:37:42 +00003137static int
paul020709f2003-04-04 02:44:16 +00003138show_lsa_summary (struct vty *vty, struct ospf_lsa *lsa, int self)
paul718e3742002-12-13 20:15:29 +00003139{
paul718e3742002-12-13 20:15:29 +00003140 struct router_lsa *rl;
3141 struct summary_lsa *sl;
3142 struct as_external_lsa *asel;
3143 struct prefix_ipv4 p;
3144
3145 if (lsa != NULL)
3146 /* If self option is set, check LSA self flag. */
3147 if (self == 0 || IS_LSA_SELF (lsa))
3148 {
3149 /* LSA common part show. */
3150 vty_out (vty, "%-15s ", inet_ntoa (lsa->data->id));
3151 vty_out (vty, "%-15s %4d 0x%08lx 0x%04x",
3152 inet_ntoa (lsa->data->adv_router), LS_AGE (lsa),
3153 (u_long)ntohl (lsa->data->ls_seqnum), ntohs (lsa->data->checksum));
3154 /* LSA specific part show. */
3155 switch (lsa->data->type)
3156 {
3157 case OSPF_ROUTER_LSA:
3158 rl = (struct router_lsa *) lsa->data;
3159 vty_out (vty, " %-d", ntohs (rl->links));
3160 break;
3161 case OSPF_SUMMARY_LSA:
3162 sl = (struct summary_lsa *) lsa->data;
3163
3164 p.family = AF_INET;
3165 p.prefix = sl->header.id;
3166 p.prefixlen = ip_masklen (sl->mask);
3167 apply_mask_ipv4 (&p);
3168
3169 vty_out (vty, " %s/%d", inet_ntoa (p.prefix), p.prefixlen);
3170 break;
3171 case OSPF_AS_EXTERNAL_LSA:
paul551a8972003-05-18 15:22:55 +00003172 case OSPF_AS_NSSA_LSA:
paul718e3742002-12-13 20:15:29 +00003173 asel = (struct as_external_lsa *) lsa->data;
3174
3175 p.family = AF_INET;
3176 p.prefix = asel->header.id;
3177 p.prefixlen = ip_masklen (asel->mask);
3178 apply_mask_ipv4 (&p);
3179
3180 vty_out (vty, " %s %s/%d [0x%lx]",
3181 IS_EXTERNAL_METRIC (asel->e[0].tos) ? "E2" : "E1",
3182 inet_ntoa (p.prefix), p.prefixlen,
3183 (u_long)ntohl (asel->e[0].route_tag));
3184 break;
3185 case OSPF_NETWORK_LSA:
3186 case OSPF_ASBR_SUMMARY_LSA:
3187#ifdef HAVE_OPAQUE_LSA
3188 case OSPF_OPAQUE_LINK_LSA:
3189 case OSPF_OPAQUE_AREA_LSA:
3190 case OSPF_OPAQUE_AS_LSA:
3191#endif /* HAVE_OPAQUE_LSA */
3192 default:
3193 break;
3194 }
3195 vty_out (vty, VTY_NEWLINE);
3196 }
3197
3198 return 0;
3199}
3200
hassoeb1ce602004-10-08 08:17:22 +00003201const char *show_database_desc[] =
paul718e3742002-12-13 20:15:29 +00003202{
3203 "unknown",
3204 "Router Link States",
3205 "Net Link States",
3206 "Summary Link States",
3207 "ASBR-Summary Link States",
3208 "AS External Link States",
paul718e3742002-12-13 20:15:29 +00003209 "Group Membership LSA",
3210 "NSSA-external Link States",
paul718e3742002-12-13 20:15:29 +00003211#ifdef HAVE_OPAQUE_LSA
3212 "Type-8 LSA",
3213 "Link-Local Opaque-LSA",
3214 "Area-Local Opaque-LSA",
3215 "AS-external Opaque-LSA",
3216#endif /* HAVE_OPAQUE_LSA */
3217};
3218
3219#define SHOW_OSPF_COMMON_HEADER \
3220 "Link ID ADV Router Age Seq# CkSum"
3221
hassoeb1ce602004-10-08 08:17:22 +00003222const char *show_database_header[] =
paul718e3742002-12-13 20:15:29 +00003223{
3224 "",
3225 "Link ID ADV Router Age Seq# CkSum Link count",
3226 "Link ID ADV Router Age Seq# CkSum",
3227 "Link ID ADV Router Age Seq# CkSum Route",
3228 "Link ID ADV Router Age Seq# CkSum",
3229 "Link ID ADV Router Age Seq# CkSum Route",
paul718e3742002-12-13 20:15:29 +00003230 " --- header for Group Member ----",
3231 "Link ID ADV Router Age Seq# CkSum Route",
paul718e3742002-12-13 20:15:29 +00003232#ifdef HAVE_OPAQUE_LSA
paul718e3742002-12-13 20:15:29 +00003233 " --- type-8 ---",
3234 "Opaque-Type/Id ADV Router Age Seq# CkSum",
3235 "Opaque-Type/Id ADV Router Age Seq# CkSum",
3236 "Opaque-Type/Id ADV Router Age Seq# CkSum",
3237#endif /* HAVE_OPAQUE_LSA */
3238};
3239
hassoeb1ce602004-10-08 08:17:22 +00003240const char *show_lsa_flags[] =
paul4957f492003-06-27 01:28:45 +00003241{
3242 "Self-originated",
3243 "Checked",
3244 "Received",
3245 "Approved",
3246 "Discard",
paul4957f492003-06-27 01:28:45 +00003247 "Translated",
paul4957f492003-06-27 01:28:45 +00003248};
3249
paul4dadc292005-05-06 21:37:42 +00003250static void
paul718e3742002-12-13 20:15:29 +00003251show_ip_ospf_database_header (struct vty *vty, struct ospf_lsa *lsa)
3252{
3253 struct router_lsa *rlsa = (struct router_lsa*) lsa->data;
paul4957f492003-06-27 01:28:45 +00003254
paul718e3742002-12-13 20:15:29 +00003255 vty_out (vty, " LS age: %d%s", LS_AGE (lsa), VTY_NEWLINE);
paul4957f492003-06-27 01:28:45 +00003256 vty_out (vty, " Options: 0x%-2x : %s%s",
3257 lsa->data->options,
3258 ospf_options_dump(lsa->data->options),
3259 VTY_NEWLINE);
3260 vty_out (vty, " LS Flags: 0x%-2x %s%s",
paul9d526032003-06-30 22:46:14 +00003261 lsa->flags,
paul4957f492003-06-27 01:28:45 +00003262 ((lsa->flags & OSPF_LSA_LOCAL_XLT) ? "(Translated from Type-7)" : ""),
3263 VTY_NEWLINE);
paul718e3742002-12-13 20:15:29 +00003264
3265 if (lsa->data->type == OSPF_ROUTER_LSA)
3266 {
3267 vty_out (vty, " Flags: 0x%x" , rlsa->flags);
3268
3269 if (rlsa->flags)
3270 vty_out (vty, " :%s%s%s%s",
3271 IS_ROUTER_LSA_BORDER (rlsa) ? " ABR" : "",
3272 IS_ROUTER_LSA_EXTERNAL (rlsa) ? " ASBR" : "",
3273 IS_ROUTER_LSA_VIRTUAL (rlsa) ? " VL-endpoint" : "",
3274 IS_ROUTER_LSA_SHORTCUT (rlsa) ? " Shortcut" : "");
3275
3276 vty_out (vty, "%s", VTY_NEWLINE);
3277 }
3278 vty_out (vty, " LS Type: %s%s",
3279 LOOKUP (ospf_lsa_type_msg, lsa->data->type), VTY_NEWLINE);
3280 vty_out (vty, " Link State ID: %s %s%s", inet_ntoa (lsa->data->id),
3281 LOOKUP (ospf_link_state_id_type_msg, lsa->data->type), VTY_NEWLINE);
3282 vty_out (vty, " Advertising Router: %s%s",
3283 inet_ntoa (lsa->data->adv_router), VTY_NEWLINE);
3284 vty_out (vty, " LS Seq Number: %08lx%s", (u_long)ntohl (lsa->data->ls_seqnum),
3285 VTY_NEWLINE);
3286 vty_out (vty, " Checksum: 0x%04x%s", ntohs (lsa->data->checksum),
3287 VTY_NEWLINE);
3288 vty_out (vty, " Length: %d%s", ntohs (lsa->data->length), VTY_NEWLINE);
3289}
3290
hassoeb1ce602004-10-08 08:17:22 +00003291const char *link_type_desc[] =
paul718e3742002-12-13 20:15:29 +00003292{
3293 "(null)",
3294 "another Router (point-to-point)",
3295 "a Transit Network",
3296 "Stub Network",
3297 "a Virtual Link",
3298};
3299
hassoeb1ce602004-10-08 08:17:22 +00003300const char *link_id_desc[] =
paul718e3742002-12-13 20:15:29 +00003301{
3302 "(null)",
3303 "Neighboring Router ID",
3304 "Designated Router address",
paul68980082003-03-25 05:07:42 +00003305 "Net",
paul718e3742002-12-13 20:15:29 +00003306 "Neighboring Router ID",
3307};
3308
hassoeb1ce602004-10-08 08:17:22 +00003309const char *link_data_desc[] =
paul718e3742002-12-13 20:15:29 +00003310{
3311 "(null)",
3312 "Router Interface address",
3313 "Router Interface address",
3314 "Network Mask",
3315 "Router Interface address",
3316};
3317
3318/* Show router-LSA each Link information. */
paul4dadc292005-05-06 21:37:42 +00003319static void
paul718e3742002-12-13 20:15:29 +00003320show_ip_ospf_database_router_links (struct vty *vty,
3321 struct router_lsa *rl)
3322{
3323 int len, i, type;
3324
3325 len = ntohs (rl->header.length) - 4;
3326 for (i = 0; i < ntohs (rl->links) && len > 0; len -= 12, i++)
3327 {
3328 type = rl->link[i].type;
3329
3330 vty_out (vty, " Link connected to: %s%s",
3331 link_type_desc[type], VTY_NEWLINE);
3332 vty_out (vty, " (Link ID) %s: %s%s", link_id_desc[type],
3333 inet_ntoa (rl->link[i].link_id), VTY_NEWLINE);
3334 vty_out (vty, " (Link Data) %s: %s%s", link_data_desc[type],
3335 inet_ntoa (rl->link[i].link_data), VTY_NEWLINE);
3336 vty_out (vty, " Number of TOS metrics: 0%s", VTY_NEWLINE);
3337 vty_out (vty, " TOS 0 Metric: %d%s",
3338 ntohs (rl->link[i].metric), VTY_NEWLINE);
3339 vty_out (vty, "%s", VTY_NEWLINE);
3340 }
3341}
3342
3343/* Show router-LSA detail information. */
paul4dadc292005-05-06 21:37:42 +00003344static int
paul718e3742002-12-13 20:15:29 +00003345show_router_lsa_detail (struct vty *vty, struct ospf_lsa *lsa)
3346{
3347 if (lsa != NULL)
3348 {
3349 struct router_lsa *rl = (struct router_lsa *) lsa->data;
3350
3351 show_ip_ospf_database_header (vty, lsa);
3352
3353 vty_out (vty, " Number of Links: %d%s%s", ntohs (rl->links),
3354 VTY_NEWLINE, VTY_NEWLINE);
3355
3356 show_ip_ospf_database_router_links (vty, rl);
paulb0a053b2003-06-22 09:04:47 +00003357 vty_out (vty, "%s", VTY_NEWLINE);
paul718e3742002-12-13 20:15:29 +00003358 }
3359
3360 return 0;
3361}
3362
3363/* Show network-LSA detail information. */
paul4dadc292005-05-06 21:37:42 +00003364static int
paul718e3742002-12-13 20:15:29 +00003365show_network_lsa_detail (struct vty *vty, struct ospf_lsa *lsa)
3366{
3367 int length, i;
3368
3369 if (lsa != NULL)
3370 {
3371 struct network_lsa *nl = (struct network_lsa *) lsa->data;
3372
3373 show_ip_ospf_database_header (vty, lsa);
3374
3375 vty_out (vty, " Network Mask: /%d%s",
3376 ip_masklen (nl->mask), VTY_NEWLINE);
3377
3378 length = ntohs (lsa->data->length) - OSPF_LSA_HEADER_SIZE - 4;
3379
3380 for (i = 0; length > 0; i++, length -= 4)
3381 vty_out (vty, " Attached Router: %s%s",
3382 inet_ntoa (nl->routers[i]), VTY_NEWLINE);
3383
3384 vty_out (vty, "%s", VTY_NEWLINE);
3385 }
3386
3387 return 0;
3388}
3389
3390/* Show summary-LSA detail information. */
paul4dadc292005-05-06 21:37:42 +00003391static int
paul718e3742002-12-13 20:15:29 +00003392show_summary_lsa_detail (struct vty *vty, struct ospf_lsa *lsa)
3393{
3394 if (lsa != NULL)
3395 {
3396 struct summary_lsa *sl = (struct summary_lsa *) lsa->data;
3397
3398 show_ip_ospf_database_header (vty, lsa);
3399
3400 vty_out (vty, " Network Mask: /%d%s", ip_masklen (sl->mask),
3401 VTY_NEWLINE);
3402 vty_out (vty, " TOS: 0 Metric: %d%s", GET_METRIC (sl->metric),
3403 VTY_NEWLINE);
paulb0a053b2003-06-22 09:04:47 +00003404 vty_out (vty, "%s", VTY_NEWLINE);
paul718e3742002-12-13 20:15:29 +00003405 }
3406
3407 return 0;
3408}
3409
3410/* Show summary-ASBR-LSA detail information. */
paul4dadc292005-05-06 21:37:42 +00003411static int
paul718e3742002-12-13 20:15:29 +00003412show_summary_asbr_lsa_detail (struct vty *vty, struct ospf_lsa *lsa)
3413{
3414 if (lsa != NULL)
3415 {
3416 struct summary_lsa *sl = (struct summary_lsa *) lsa->data;
3417
3418 show_ip_ospf_database_header (vty, lsa);
3419
3420 vty_out (vty, " Network Mask: /%d%s",
3421 ip_masklen (sl->mask), VTY_NEWLINE);
3422 vty_out (vty, " TOS: 0 Metric: %d%s", GET_METRIC (sl->metric),
3423 VTY_NEWLINE);
paulb0a053b2003-06-22 09:04:47 +00003424 vty_out (vty, "%s", VTY_NEWLINE);
paul718e3742002-12-13 20:15:29 +00003425 }
3426
3427 return 0;
3428}
3429
3430/* Show AS-external-LSA detail information. */
paul4dadc292005-05-06 21:37:42 +00003431static int
paul718e3742002-12-13 20:15:29 +00003432show_as_external_lsa_detail (struct vty *vty, struct ospf_lsa *lsa)
3433{
3434 if (lsa != NULL)
3435 {
3436 struct as_external_lsa *al = (struct as_external_lsa *) lsa->data;
3437
3438 show_ip_ospf_database_header (vty, lsa);
3439
3440 vty_out (vty, " Network Mask: /%d%s",
3441 ip_masklen (al->mask), VTY_NEWLINE);
3442 vty_out (vty, " Metric Type: %s%s",
3443 IS_EXTERNAL_METRIC (al->e[0].tos) ?
3444 "2 (Larger than any link state path)" : "1", VTY_NEWLINE);
3445 vty_out (vty, " TOS: 0%s", VTY_NEWLINE);
3446 vty_out (vty, " Metric: %d%s",
3447 GET_METRIC (al->e[0].metric), VTY_NEWLINE);
3448 vty_out (vty, " Forward Address: %s%s",
3449 inet_ntoa (al->e[0].fwd_addr), VTY_NEWLINE);
3450
3451 vty_out (vty, " External Route Tag: %lu%s%s",
3452 (u_long)ntohl (al->e[0].route_tag), VTY_NEWLINE, VTY_NEWLINE);
3453 }
3454
3455 return 0;
3456}
3457
ajs2a42e282004-12-08 18:43:03 +00003458/* N.B. This function currently seems to be unused. */
paul4dadc292005-05-06 21:37:42 +00003459static int
paul718e3742002-12-13 20:15:29 +00003460show_as_external_lsa_stdvty (struct ospf_lsa *lsa)
3461{
3462 struct as_external_lsa *al = (struct as_external_lsa *) lsa->data;
3463
3464 /* show_ip_ospf_database_header (vty, lsa); */
3465
ajs2a42e282004-12-08 18:43:03 +00003466 zlog_debug( " Network Mask: /%d%s",
paul718e3742002-12-13 20:15:29 +00003467 ip_masklen (al->mask), "\n");
ajs2a42e282004-12-08 18:43:03 +00003468 zlog_debug( " Metric Type: %s%s",
paul718e3742002-12-13 20:15:29 +00003469 IS_EXTERNAL_METRIC (al->e[0].tos) ?
3470 "2 (Larger than any link state path)" : "1", "\n");
ajs2a42e282004-12-08 18:43:03 +00003471 zlog_debug( " TOS: 0%s", "\n");
3472 zlog_debug( " Metric: %d%s",
paul718e3742002-12-13 20:15:29 +00003473 GET_METRIC (al->e[0].metric), "\n");
ajs2a42e282004-12-08 18:43:03 +00003474 zlog_debug( " Forward Address: %s%s",
paul718e3742002-12-13 20:15:29 +00003475 inet_ntoa (al->e[0].fwd_addr), "\n");
3476
ajs2a42e282004-12-08 18:43:03 +00003477 zlog_debug( " External Route Tag: %u%s%s",
paul718e3742002-12-13 20:15:29 +00003478 ntohl (al->e[0].route_tag), "\n", "\n");
3479
3480 return 0;
3481}
3482
3483/* Show AS-NSSA-LSA detail information. */
paul4dadc292005-05-06 21:37:42 +00003484static int
paul718e3742002-12-13 20:15:29 +00003485show_as_nssa_lsa_detail (struct vty *vty, struct ospf_lsa *lsa)
3486{
3487 if (lsa != NULL)
3488 {
3489 struct as_external_lsa *al = (struct as_external_lsa *) lsa->data;
3490
3491 show_ip_ospf_database_header (vty, lsa);
3492
3493 vty_out (vty, " Network Mask: /%d%s",
3494 ip_masklen (al->mask), VTY_NEWLINE);
3495 vty_out (vty, " Metric Type: %s%s",
3496 IS_EXTERNAL_METRIC (al->e[0].tos) ?
3497 "2 (Larger than any link state path)" : "1", VTY_NEWLINE);
3498 vty_out (vty, " TOS: 0%s", VTY_NEWLINE);
3499 vty_out (vty, " Metric: %d%s",
3500 GET_METRIC (al->e[0].metric), VTY_NEWLINE);
3501 vty_out (vty, " NSSA: Forward Address: %s%s",
3502 inet_ntoa (al->e[0].fwd_addr), VTY_NEWLINE);
3503
3504 vty_out (vty, " External Route Tag: %u%s%s",
3505 ntohl (al->e[0].route_tag), VTY_NEWLINE, VTY_NEWLINE);
3506 }
3507
3508 return 0;
3509}
3510
paul4dadc292005-05-06 21:37:42 +00003511static int
paul718e3742002-12-13 20:15:29 +00003512show_func_dummy (struct vty *vty, struct ospf_lsa *lsa)
3513{
3514 return 0;
3515}
3516
3517#ifdef HAVE_OPAQUE_LSA
paul4dadc292005-05-06 21:37:42 +00003518static int
paul718e3742002-12-13 20:15:29 +00003519show_opaque_lsa_detail (struct vty *vty, struct ospf_lsa *lsa)
3520{
3521 if (lsa != NULL)
3522 {
3523 show_ip_ospf_database_header (vty, lsa);
3524 show_opaque_info_detail (vty, lsa);
3525
3526 vty_out (vty, "%s", VTY_NEWLINE);
3527 }
3528 return 0;
3529}
3530#endif /* HAVE_OPAQUE_LSA */
3531
3532int (*show_function[])(struct vty *, struct ospf_lsa *) =
3533{
3534 NULL,
3535 show_router_lsa_detail,
3536 show_network_lsa_detail,
3537 show_summary_lsa_detail,
3538 show_summary_asbr_lsa_detail,
3539 show_as_external_lsa_detail,
paul718e3742002-12-13 20:15:29 +00003540 show_func_dummy,
3541 show_as_nssa_lsa_detail, /* almost same as external */
paul718e3742002-12-13 20:15:29 +00003542#ifdef HAVE_OPAQUE_LSA
paul718e3742002-12-13 20:15:29 +00003543 NULL, /* type-8 */
3544 show_opaque_lsa_detail,
3545 show_opaque_lsa_detail,
3546 show_opaque_lsa_detail,
3547#endif /* HAVE_OPAQUE_LSA */
3548};
3549
paul4dadc292005-05-06 21:37:42 +00003550static void
paul718e3742002-12-13 20:15:29 +00003551show_lsa_prefix_set (struct vty *vty, struct prefix_ls *lp, struct in_addr *id,
3552 struct in_addr *adv_router)
3553{
3554 memset (lp, 0, sizeof (struct prefix_ls));
3555 lp->family = 0;
3556 if (id == NULL)
3557 lp->prefixlen = 0;
3558 else if (adv_router == NULL)
3559 {
3560 lp->prefixlen = 32;
3561 lp->id = *id;
3562 }
3563 else
3564 {
3565 lp->prefixlen = 64;
3566 lp->id = *id;
3567 lp->adv_router = *adv_router;
3568 }
3569}
3570
paul4dadc292005-05-06 21:37:42 +00003571static void
paul718e3742002-12-13 20:15:29 +00003572show_lsa_detail_proc (struct vty *vty, struct route_table *rt,
3573 struct in_addr *id, struct in_addr *adv_router)
3574{
3575 struct prefix_ls lp;
3576 struct route_node *rn, *start;
3577 struct ospf_lsa *lsa;
3578
3579 show_lsa_prefix_set (vty, &lp, id, adv_router);
3580 start = route_node_get (rt, (struct prefix *) &lp);
3581 if (start)
3582 {
3583 route_lock_node (start);
3584 for (rn = start; rn; rn = route_next_until (rn, start))
3585 if ((lsa = rn->info))
3586 {
paul718e3742002-12-13 20:15:29 +00003587 if (show_function[lsa->data->type] != NULL)
3588 show_function[lsa->data->type] (vty, lsa);
3589 }
3590 route_unlock_node (start);
3591 }
3592}
3593
3594/* Show detail LSA information
3595 -- if id is NULL then show all LSAs. */
paul4dadc292005-05-06 21:37:42 +00003596static void
paul020709f2003-04-04 02:44:16 +00003597show_lsa_detail (struct vty *vty, struct ospf *ospf, int type,
paul718e3742002-12-13 20:15:29 +00003598 struct in_addr *id, struct in_addr *adv_router)
3599{
hasso52dc7ee2004-09-23 19:18:23 +00003600 struct listnode *node;
paul1eb8ef22005-04-07 07:30:20 +00003601 struct ospf_area *area;
3602
paul718e3742002-12-13 20:15:29 +00003603 switch (type)
3604 {
3605 case OSPF_AS_EXTERNAL_LSA:
3606#ifdef HAVE_OPAQUE_LSA
3607 case OSPF_OPAQUE_AS_LSA:
3608#endif /* HAVE_OPAQUE_LSA */
3609 vty_out (vty, " %s %s%s",
3610 show_database_desc[type],
3611 VTY_NEWLINE, VTY_NEWLINE);
paul68980082003-03-25 05:07:42 +00003612 show_lsa_detail_proc (vty, AS_LSDB (ospf, type), id, adv_router);
paul718e3742002-12-13 20:15:29 +00003613 break;
3614 default:
paul1eb8ef22005-04-07 07:30:20 +00003615 for (ALL_LIST_ELEMENTS_RO (ospf->areas, node, area))
paul718e3742002-12-13 20:15:29 +00003616 {
paul718e3742002-12-13 20:15:29 +00003617 vty_out (vty, "%s %s (Area %s)%s%s",
3618 VTY_NEWLINE, show_database_desc[type],
3619 ospf_area_desc_string (area), VTY_NEWLINE, VTY_NEWLINE);
3620 show_lsa_detail_proc (vty, AREA_LSDB (area, type), id, adv_router);
3621 }
3622 break;
3623 }
3624}
3625
paul4dadc292005-05-06 21:37:42 +00003626static void
paul718e3742002-12-13 20:15:29 +00003627show_lsa_detail_adv_router_proc (struct vty *vty, struct route_table *rt,
3628 struct in_addr *adv_router)
3629{
3630 struct route_node *rn;
3631 struct ospf_lsa *lsa;
3632
3633 for (rn = route_top (rt); rn; rn = route_next (rn))
3634 if ((lsa = rn->info))
3635 if (IPV4_ADDR_SAME (adv_router, &lsa->data->adv_router))
3636 {
paul718e3742002-12-13 20:15:29 +00003637 if (CHECK_FLAG (lsa->flags, OSPF_LSA_LOCAL_XLT))
3638 continue;
paul718e3742002-12-13 20:15:29 +00003639 if (show_function[lsa->data->type] != NULL)
3640 show_function[lsa->data->type] (vty, lsa);
3641 }
3642}
3643
3644/* Show detail LSA information. */
paul4dadc292005-05-06 21:37:42 +00003645static void
paul020709f2003-04-04 02:44:16 +00003646show_lsa_detail_adv_router (struct vty *vty, struct ospf *ospf, int type,
paul718e3742002-12-13 20:15:29 +00003647 struct in_addr *adv_router)
3648{
hasso52dc7ee2004-09-23 19:18:23 +00003649 struct listnode *node;
paul1eb8ef22005-04-07 07:30:20 +00003650 struct ospf_area *area;
paul718e3742002-12-13 20:15:29 +00003651
3652 switch (type)
3653 {
3654 case OSPF_AS_EXTERNAL_LSA:
3655#ifdef HAVE_OPAQUE_LSA
3656 case OSPF_OPAQUE_AS_LSA:
3657#endif /* HAVE_OPAQUE_LSA */
3658 vty_out (vty, " %s %s%s",
3659 show_database_desc[type],
3660 VTY_NEWLINE, VTY_NEWLINE);
paul68980082003-03-25 05:07:42 +00003661 show_lsa_detail_adv_router_proc (vty, AS_LSDB (ospf, type),
paul718e3742002-12-13 20:15:29 +00003662 adv_router);
3663 break;
3664 default:
paul1eb8ef22005-04-07 07:30:20 +00003665 for (ALL_LIST_ELEMENTS_RO (ospf->areas, node, area))
paul718e3742002-12-13 20:15:29 +00003666 {
paul718e3742002-12-13 20:15:29 +00003667 vty_out (vty, "%s %s (Area %s)%s%s",
3668 VTY_NEWLINE, show_database_desc[type],
3669 ospf_area_desc_string (area), VTY_NEWLINE, VTY_NEWLINE);
3670 show_lsa_detail_adv_router_proc (vty, AREA_LSDB (area, type),
3671 adv_router);
3672 }
3673 break;
3674 }
3675}
3676
paul4dadc292005-05-06 21:37:42 +00003677static void
paul020709f2003-04-04 02:44:16 +00003678show_ip_ospf_database_summary (struct vty *vty, struct ospf *ospf, int self)
paul718e3742002-12-13 20:15:29 +00003679{
paul020709f2003-04-04 02:44:16 +00003680 struct ospf_lsa *lsa;
3681 struct route_node *rn;
paul1eb8ef22005-04-07 07:30:20 +00003682 struct ospf_area *area;
hasso52dc7ee2004-09-23 19:18:23 +00003683 struct listnode *node;
paul718e3742002-12-13 20:15:29 +00003684 int type;
3685
paul1eb8ef22005-04-07 07:30:20 +00003686 for (ALL_LIST_ELEMENTS_RO (ospf->areas, node, area))
paul718e3742002-12-13 20:15:29 +00003687 {
paul718e3742002-12-13 20:15:29 +00003688 for (type = OSPF_MIN_LSA; type < OSPF_MAX_LSA; type++)
3689 {
3690 switch (type)
3691 {
3692 case OSPF_AS_EXTERNAL_LSA:
3693#ifdef HAVE_OPAQUE_LSA
3694 case OSPF_OPAQUE_AS_LSA:
3695#endif /* HAVE_OPAQUE_LSA */
3696 continue;
3697 default:
3698 break;
3699 }
3700 if (ospf_lsdb_count_self (area->lsdb, type) > 0 ||
3701 (!self && ospf_lsdb_count (area->lsdb, type) > 0))
3702 {
3703 vty_out (vty, " %s (Area %s)%s%s",
3704 show_database_desc[type],
3705 ospf_area_desc_string (area),
3706 VTY_NEWLINE, VTY_NEWLINE);
3707 vty_out (vty, "%s%s", show_database_header[type], VTY_NEWLINE);
3708
paul020709f2003-04-04 02:44:16 +00003709 LSDB_LOOP (AREA_LSDB (area, type), rn, lsa)
3710 show_lsa_summary (vty, lsa, self);
paul718e3742002-12-13 20:15:29 +00003711
3712 vty_out (vty, "%s", VTY_NEWLINE);
3713 }
3714 }
3715 }
3716
3717 for (type = OSPF_MIN_LSA; type < OSPF_MAX_LSA; type++)
3718 {
3719 switch (type)
3720 {
3721 case OSPF_AS_EXTERNAL_LSA:
3722#ifdef HAVE_OPAQUE_LSA
3723 case OSPF_OPAQUE_AS_LSA:
3724#endif /* HAVE_OPAQUE_LSA */
3725 break;;
3726 default:
3727 continue;
3728 }
paul68980082003-03-25 05:07:42 +00003729 if (ospf_lsdb_count_self (ospf->lsdb, type) ||
3730 (!self && ospf_lsdb_count (ospf->lsdb, type)))
paul718e3742002-12-13 20:15:29 +00003731 {
3732 vty_out (vty, " %s%s%s",
3733 show_database_desc[type],
3734 VTY_NEWLINE, VTY_NEWLINE);
3735 vty_out (vty, "%s%s", show_database_header[type],
3736 VTY_NEWLINE);
paul020709f2003-04-04 02:44:16 +00003737
3738 LSDB_LOOP (AS_LSDB (ospf, type), rn, lsa)
3739 show_lsa_summary (vty, lsa, self);
3740
paul718e3742002-12-13 20:15:29 +00003741 vty_out (vty, "%s", VTY_NEWLINE);
3742 }
3743 }
3744
3745 vty_out (vty, "%s", VTY_NEWLINE);
3746}
3747
paul4dadc292005-05-06 21:37:42 +00003748static void
paul020709f2003-04-04 02:44:16 +00003749show_ip_ospf_database_maxage (struct vty *vty, struct ospf *ospf)
paul718e3742002-12-13 20:15:29 +00003750{
hasso52dc7ee2004-09-23 19:18:23 +00003751 struct listnode *node;
paul718e3742002-12-13 20:15:29 +00003752 struct ospf_lsa *lsa;
3753
3754 vty_out (vty, "%s MaxAge Link States:%s%s",
3755 VTY_NEWLINE, VTY_NEWLINE, VTY_NEWLINE);
3756
paul1eb8ef22005-04-07 07:30:20 +00003757 for (ALL_LIST_ELEMENTS_RO (ospf->maxage_lsa, node, lsa))
3758 {
3759 vty_out (vty, "Link type: %d%s", lsa->data->type, VTY_NEWLINE);
3760 vty_out (vty, "Link State ID: %s%s",
3761 inet_ntoa (lsa->data->id), VTY_NEWLINE);
3762 vty_out (vty, "Advertising Router: %s%s",
3763 inet_ntoa (lsa->data->adv_router), VTY_NEWLINE);
3764 vty_out (vty, "LSA lock count: %d%s", lsa->lock, VTY_NEWLINE);
3765 vty_out (vty, "%s", VTY_NEWLINE);
3766 }
paul718e3742002-12-13 20:15:29 +00003767}
3768
paul718e3742002-12-13 20:15:29 +00003769#define OSPF_LSA_TYPE_NSSA_DESC "NSSA external link state\n"
3770#define OSPF_LSA_TYPE_NSSA_CMD_STR "|nssa-external"
paul718e3742002-12-13 20:15:29 +00003771
3772#ifdef HAVE_OPAQUE_LSA
3773#define OSPF_LSA_TYPE_OPAQUE_LINK_DESC "Link local Opaque-LSA\n"
3774#define OSPF_LSA_TYPE_OPAQUE_AREA_DESC "Link area Opaque-LSA\n"
3775#define OSPF_LSA_TYPE_OPAQUE_AS_DESC "Link AS Opaque-LSA\n"
3776#define OSPF_LSA_TYPE_OPAQUE_CMD_STR "|opaque-link|opaque-area|opaque-as"
3777#else /* HAVE_OPAQUE_LSA */
3778#define OSPF_LSA_TYPE_OPAQUE_LINK_DESC ""
3779#define OSPF_LSA_TYPE_OPAQUE_AREA_DESC ""
3780#define OSPF_LSA_TYPE_OPAQUE_AS_DESC ""
3781#define OSPF_LSA_TYPE_OPAQUE_CMD_STR ""
3782#endif /* HAVE_OPAQUE_LSA */
3783
3784#define OSPF_LSA_TYPES_CMD_STR \
3785 "asbr-summary|external|network|router|summary" \
3786 OSPF_LSA_TYPE_NSSA_CMD_STR \
3787 OSPF_LSA_TYPE_OPAQUE_CMD_STR
3788
3789#define OSPF_LSA_TYPES_DESC \
3790 "ASBR summary link states\n" \
3791 "External link states\n" \
3792 "Network link states\n" \
3793 "Router link states\n" \
3794 "Network summary link states\n" \
3795 OSPF_LSA_TYPE_NSSA_DESC \
3796 OSPF_LSA_TYPE_OPAQUE_LINK_DESC \
3797 OSPF_LSA_TYPE_OPAQUE_AREA_DESC \
3798 OSPF_LSA_TYPE_OPAQUE_AS_DESC
3799
3800DEFUN (show_ip_ospf_database,
3801 show_ip_ospf_database_cmd,
3802 "show ip ospf database",
3803 SHOW_STR
3804 IP_STR
3805 "OSPF information\n"
3806 "Database summary\n")
3807{
paul020709f2003-04-04 02:44:16 +00003808 struct ospf *ospf;
paul718e3742002-12-13 20:15:29 +00003809 int type, ret;
3810 struct in_addr id, adv_router;
3811
paul020709f2003-04-04 02:44:16 +00003812 ospf = ospf_lookup ();
paul68980082003-03-25 05:07:42 +00003813 if (ospf == NULL)
paul718e3742002-12-13 20:15:29 +00003814 return CMD_SUCCESS;
3815
3816 vty_out (vty, "%s OSPF Router with ID (%s)%s%s", VTY_NEWLINE,
paul68980082003-03-25 05:07:42 +00003817 inet_ntoa (ospf->router_id), VTY_NEWLINE, VTY_NEWLINE);
paul718e3742002-12-13 20:15:29 +00003818
3819 /* Show all LSA. */
3820 if (argc == 0)
3821 {
paul020709f2003-04-04 02:44:16 +00003822 show_ip_ospf_database_summary (vty, ospf, 0);
paul718e3742002-12-13 20:15:29 +00003823 return CMD_SUCCESS;
3824 }
3825
3826 /* Set database type to show. */
3827 if (strncmp (argv[0], "r", 1) == 0)
3828 type = OSPF_ROUTER_LSA;
3829 else if (strncmp (argv[0], "ne", 2) == 0)
3830 type = OSPF_NETWORK_LSA;
paul718e3742002-12-13 20:15:29 +00003831 else if (strncmp (argv[0], "ns", 2) == 0)
3832 type = OSPF_AS_NSSA_LSA;
paul718e3742002-12-13 20:15:29 +00003833 else if (strncmp (argv[0], "su", 2) == 0)
3834 type = OSPF_SUMMARY_LSA;
3835 else if (strncmp (argv[0], "a", 1) == 0)
3836 type = OSPF_ASBR_SUMMARY_LSA;
3837 else if (strncmp (argv[0], "e", 1) == 0)
3838 type = OSPF_AS_EXTERNAL_LSA;
3839 else if (strncmp (argv[0], "se", 2) == 0)
3840 {
paul020709f2003-04-04 02:44:16 +00003841 show_ip_ospf_database_summary (vty, ospf, 1);
paul718e3742002-12-13 20:15:29 +00003842 return CMD_SUCCESS;
3843 }
3844 else if (strncmp (argv[0], "m", 1) == 0)
3845 {
paul020709f2003-04-04 02:44:16 +00003846 show_ip_ospf_database_maxage (vty, ospf);
paul718e3742002-12-13 20:15:29 +00003847 return CMD_SUCCESS;
3848 }
3849#ifdef HAVE_OPAQUE_LSA
3850 else if (strncmp (argv[0], "opaque-l", 8) == 0)
3851 type = OSPF_OPAQUE_LINK_LSA;
3852 else if (strncmp (argv[0], "opaque-ar", 9) == 0)
3853 type = OSPF_OPAQUE_AREA_LSA;
3854 else if (strncmp (argv[0], "opaque-as", 9) == 0)
3855 type = OSPF_OPAQUE_AS_LSA;
3856#endif /* HAVE_OPAQUE_LSA */
3857 else
3858 return CMD_WARNING;
3859
3860 /* `show ip ospf database LSA'. */
3861 if (argc == 1)
paul020709f2003-04-04 02:44:16 +00003862 show_lsa_detail (vty, ospf, type, NULL, NULL);
paul718e3742002-12-13 20:15:29 +00003863 else if (argc >= 2)
3864 {
3865 ret = inet_aton (argv[1], &id);
3866 if (!ret)
3867 return CMD_WARNING;
3868
3869 /* `show ip ospf database LSA ID'. */
3870 if (argc == 2)
paul020709f2003-04-04 02:44:16 +00003871 show_lsa_detail (vty, ospf, type, &id, NULL);
paul718e3742002-12-13 20:15:29 +00003872 /* `show ip ospf database LSA ID adv-router ADV_ROUTER'. */
3873 else if (argc == 3)
3874 {
3875 if (strncmp (argv[2], "s", 1) == 0)
paul68980082003-03-25 05:07:42 +00003876 adv_router = ospf->router_id;
paul718e3742002-12-13 20:15:29 +00003877 else
3878 {
3879 ret = inet_aton (argv[2], &adv_router);
3880 if (!ret)
3881 return CMD_WARNING;
3882 }
paul020709f2003-04-04 02:44:16 +00003883 show_lsa_detail (vty, ospf, type, &id, &adv_router);
paul718e3742002-12-13 20:15:29 +00003884 }
3885 }
3886
3887 return CMD_SUCCESS;
3888}
3889
3890ALIAS (show_ip_ospf_database,
3891 show_ip_ospf_database_type_cmd,
3892 "show ip ospf database (" OSPF_LSA_TYPES_CMD_STR "|max-age|self-originate)",
3893 SHOW_STR
3894 IP_STR
3895 "OSPF information\n"
3896 "Database summary\n"
3897 OSPF_LSA_TYPES_DESC
3898 "LSAs in MaxAge list\n"
3899 "Self-originated link states\n")
3900
3901ALIAS (show_ip_ospf_database,
3902 show_ip_ospf_database_type_id_cmd,
3903 "show ip ospf database (" OSPF_LSA_TYPES_CMD_STR ") A.B.C.D",
3904 SHOW_STR
3905 IP_STR
3906 "OSPF information\n"
3907 "Database summary\n"
3908 OSPF_LSA_TYPES_DESC
3909 "Link State ID (as an IP address)\n")
3910
3911ALIAS (show_ip_ospf_database,
3912 show_ip_ospf_database_type_id_adv_router_cmd,
3913 "show ip ospf database (" OSPF_LSA_TYPES_CMD_STR ") A.B.C.D adv-router A.B.C.D",
3914 SHOW_STR
3915 IP_STR
3916 "OSPF information\n"
3917 "Database summary\n"
3918 OSPF_LSA_TYPES_DESC
3919 "Link State ID (as an IP address)\n"
3920 "Advertising Router link states\n"
3921 "Advertising Router (as an IP address)\n")
3922
3923ALIAS (show_ip_ospf_database,
3924 show_ip_ospf_database_type_id_self_cmd,
3925 "show ip ospf database (" OSPF_LSA_TYPES_CMD_STR ") A.B.C.D (self-originate|)",
3926 SHOW_STR
3927 IP_STR
3928 "OSPF information\n"
3929 "Database summary\n"
3930 OSPF_LSA_TYPES_DESC
3931 "Link State ID (as an IP address)\n"
3932 "Self-originated link states\n"
3933 "\n")
3934
3935DEFUN (show_ip_ospf_database_type_adv_router,
3936 show_ip_ospf_database_type_adv_router_cmd,
3937 "show ip ospf database (" OSPF_LSA_TYPES_CMD_STR ") adv-router A.B.C.D",
3938 SHOW_STR
3939 IP_STR
3940 "OSPF information\n"
3941 "Database summary\n"
3942 OSPF_LSA_TYPES_DESC
3943 "Advertising Router link states\n"
3944 "Advertising Router (as an IP address)\n")
3945{
paul020709f2003-04-04 02:44:16 +00003946 struct ospf *ospf;
paul718e3742002-12-13 20:15:29 +00003947 int type, ret;
3948 struct in_addr adv_router;
3949
paul020709f2003-04-04 02:44:16 +00003950 ospf = ospf_lookup ();
paul68980082003-03-25 05:07:42 +00003951 if (ospf == NULL)
paul718e3742002-12-13 20:15:29 +00003952 return CMD_SUCCESS;
3953
3954 vty_out (vty, "%s OSPF Router with ID (%s)%s%s", VTY_NEWLINE,
paul68980082003-03-25 05:07:42 +00003955 inet_ntoa (ospf->router_id), VTY_NEWLINE, VTY_NEWLINE);
paul718e3742002-12-13 20:15:29 +00003956
3957 if (argc != 2)
3958 return CMD_WARNING;
3959
3960 /* Set database type to show. */
3961 if (strncmp (argv[0], "r", 1) == 0)
3962 type = OSPF_ROUTER_LSA;
3963 else if (strncmp (argv[0], "ne", 2) == 0)
3964 type = OSPF_NETWORK_LSA;
paul718e3742002-12-13 20:15:29 +00003965 else if (strncmp (argv[0], "ns", 2) == 0)
3966 type = OSPF_AS_NSSA_LSA;
paul718e3742002-12-13 20:15:29 +00003967 else if (strncmp (argv[0], "s", 1) == 0)
3968 type = OSPF_SUMMARY_LSA;
3969 else if (strncmp (argv[0], "a", 1) == 0)
3970 type = OSPF_ASBR_SUMMARY_LSA;
3971 else if (strncmp (argv[0], "e", 1) == 0)
3972 type = OSPF_AS_EXTERNAL_LSA;
3973#ifdef HAVE_OPAQUE_LSA
3974 else if (strncmp (argv[0], "opaque-l", 8) == 0)
3975 type = OSPF_OPAQUE_LINK_LSA;
3976 else if (strncmp (argv[0], "opaque-ar", 9) == 0)
3977 type = OSPF_OPAQUE_AREA_LSA;
3978 else if (strncmp (argv[0], "opaque-as", 9) == 0)
3979 type = OSPF_OPAQUE_AS_LSA;
3980#endif /* HAVE_OPAQUE_LSA */
3981 else
3982 return CMD_WARNING;
3983
3984 /* `show ip ospf database LSA adv-router ADV_ROUTER'. */
3985 if (strncmp (argv[1], "s", 1) == 0)
paul68980082003-03-25 05:07:42 +00003986 adv_router = ospf->router_id;
paul718e3742002-12-13 20:15:29 +00003987 else
3988 {
3989 ret = inet_aton (argv[1], &adv_router);
3990 if (!ret)
3991 return CMD_WARNING;
3992 }
3993
paul020709f2003-04-04 02:44:16 +00003994 show_lsa_detail_adv_router (vty, ospf, type, &adv_router);
paul718e3742002-12-13 20:15:29 +00003995
3996 return CMD_SUCCESS;
3997}
3998
3999ALIAS (show_ip_ospf_database_type_adv_router,
4000 show_ip_ospf_database_type_self_cmd,
4001 "show ip ospf database (" OSPF_LSA_TYPES_CMD_STR ") (self-originate|)",
4002 SHOW_STR
4003 IP_STR
4004 "OSPF information\n"
4005 "Database summary\n"
4006 OSPF_LSA_TYPES_DESC
4007 "Self-originated link states\n")
4008
4009
4010DEFUN (ip_ospf_authentication_args,
4011 ip_ospf_authentication_args_addr_cmd,
4012 "ip ospf authentication (null|message-digest) A.B.C.D",
4013 "IP Information\n"
4014 "OSPF interface commands\n"
4015 "Enable authentication on this interface\n"
4016 "Use null authentication\n"
4017 "Use message-digest authentication\n"
4018 "Address of interface")
4019{
4020 struct interface *ifp;
4021 struct in_addr addr;
4022 int ret;
4023 struct ospf_if_params *params;
4024
4025 ifp = vty->index;
4026 params = IF_DEF_PARAMS (ifp);
4027
4028 if (argc == 2)
4029 {
4030 ret = inet_aton(argv[1], &addr);
4031 if (!ret)
4032 {
4033 vty_out (vty, "Please specify interface address by A.B.C.D%s",
4034 VTY_NEWLINE);
4035 return CMD_WARNING;
4036 }
4037
4038 params = ospf_get_if_params (ifp, addr);
4039 ospf_if_update_params (ifp, addr);
4040 }
4041
4042 /* Handle null authentication */
4043 if ( argv[0][0] == 'n' )
4044 {
4045 SET_IF_PARAM (params, auth_type);
4046 params->auth_type = OSPF_AUTH_NULL;
4047 return CMD_SUCCESS;
4048 }
4049
4050 /* Handle message-digest authentication */
4051 if ( argv[0][0] == 'm' )
4052 {
4053 SET_IF_PARAM (params, auth_type);
4054 params->auth_type = OSPF_AUTH_CRYPTOGRAPHIC;
4055 return CMD_SUCCESS;
4056 }
4057
4058 vty_out (vty, "You shouldn't get here!%s", VTY_NEWLINE);
4059 return CMD_WARNING;
4060}
4061
4062ALIAS (ip_ospf_authentication_args,
4063 ip_ospf_authentication_args_cmd,
4064 "ip ospf authentication (null|message-digest)",
4065 "IP Information\n"
4066 "OSPF interface commands\n"
4067 "Enable authentication on this interface\n"
4068 "Use null authentication\n"
4069 "Use message-digest authentication\n")
4070
4071DEFUN (ip_ospf_authentication,
4072 ip_ospf_authentication_addr_cmd,
4073 "ip ospf authentication A.B.C.D",
4074 "IP Information\n"
4075 "OSPF interface commands\n"
4076 "Enable authentication on this interface\n"
4077 "Address of interface")
4078{
4079 struct interface *ifp;
4080 struct in_addr addr;
4081 int ret;
4082 struct ospf_if_params *params;
4083
4084 ifp = vty->index;
4085 params = IF_DEF_PARAMS (ifp);
4086
4087 if (argc == 1)
4088 {
4089 ret = inet_aton(argv[1], &addr);
4090 if (!ret)
4091 {
4092 vty_out (vty, "Please specify interface address by A.B.C.D%s",
4093 VTY_NEWLINE);
4094 return CMD_WARNING;
4095 }
4096
4097 params = ospf_get_if_params (ifp, addr);
4098 ospf_if_update_params (ifp, addr);
4099 }
4100
4101 SET_IF_PARAM (params, auth_type);
4102 params->auth_type = OSPF_AUTH_SIMPLE;
4103
4104 return CMD_SUCCESS;
4105}
4106
4107ALIAS (ip_ospf_authentication,
4108 ip_ospf_authentication_cmd,
4109 "ip ospf authentication",
4110 "IP Information\n"
4111 "OSPF interface commands\n"
4112 "Enable authentication on this interface\n")
4113
4114DEFUN (no_ip_ospf_authentication,
4115 no_ip_ospf_authentication_addr_cmd,
4116 "no ip ospf authentication A.B.C.D",
4117 NO_STR
4118 "IP Information\n"
4119 "OSPF interface commands\n"
4120 "Enable authentication on this interface\n"
4121 "Address of interface")
4122{
4123 struct interface *ifp;
4124 struct in_addr addr;
4125 int ret;
4126 struct ospf_if_params *params;
4127
4128 ifp = vty->index;
4129 params = IF_DEF_PARAMS (ifp);
4130
4131 if (argc == 1)
4132 {
4133 ret = inet_aton(argv[1], &addr);
4134 if (!ret)
4135 {
4136 vty_out (vty, "Please specify interface address by A.B.C.D%s",
4137 VTY_NEWLINE);
4138 return CMD_WARNING;
4139 }
4140
4141 params = ospf_lookup_if_params (ifp, addr);
4142 if (params == NULL)
4143 return CMD_SUCCESS;
4144 }
4145
4146 params->auth_type = OSPF_AUTH_NOTSET;
4147 UNSET_IF_PARAM (params, auth_type);
4148
4149 if (params != IF_DEF_PARAMS (ifp))
4150 {
4151 ospf_free_if_params (ifp, addr);
4152 ospf_if_update_params (ifp, addr);
4153 }
4154
4155 return CMD_SUCCESS;
4156}
4157
4158ALIAS (no_ip_ospf_authentication,
4159 no_ip_ospf_authentication_cmd,
4160 "no ip ospf authentication",
4161 NO_STR
4162 "IP Information\n"
4163 "OSPF interface commands\n"
4164 "Enable authentication on this interface\n")
4165
4166DEFUN (ip_ospf_authentication_key,
4167 ip_ospf_authentication_key_addr_cmd,
4168 "ip ospf authentication-key AUTH_KEY A.B.C.D",
4169 "IP Information\n"
4170 "OSPF interface commands\n"
4171 "Authentication password (key)\n"
4172 "The OSPF password (key)\n"
4173 "Address of interface")
4174{
4175 struct interface *ifp;
4176 struct in_addr addr;
4177 int ret;
4178 struct ospf_if_params *params;
4179
4180 ifp = vty->index;
4181 params = IF_DEF_PARAMS (ifp);
4182
4183 if (argc == 2)
4184 {
4185 ret = inet_aton(argv[1], &addr);
4186 if (!ret)
4187 {
4188 vty_out (vty, "Please specify interface address by A.B.C.D%s",
4189 VTY_NEWLINE);
4190 return CMD_WARNING;
4191 }
4192
4193 params = ospf_get_if_params (ifp, addr);
4194 ospf_if_update_params (ifp, addr);
4195 }
4196
4197
4198 memset (params->auth_simple, 0, OSPF_AUTH_SIMPLE_SIZE + 1);
hassoc9e52be2004-09-26 16:09:34 +00004199 strncpy ((char *) params->auth_simple, argv[0], OSPF_AUTH_SIMPLE_SIZE);
paul718e3742002-12-13 20:15:29 +00004200 SET_IF_PARAM (params, auth_simple);
4201
4202 return CMD_SUCCESS;
4203}
4204
4205ALIAS (ip_ospf_authentication_key,
4206 ip_ospf_authentication_key_cmd,
4207 "ip ospf authentication-key AUTH_KEY",
4208 "IP Information\n"
4209 "OSPF interface commands\n"
4210 "Authentication password (key)\n"
4211 "The OSPF password (key)")
4212
4213ALIAS (ip_ospf_authentication_key,
4214 ospf_authentication_key_cmd,
4215 "ospf authentication-key AUTH_KEY",
4216 "OSPF interface commands\n"
4217 "Authentication password (key)\n"
4218 "The OSPF password (key)")
4219
4220DEFUN (no_ip_ospf_authentication_key,
4221 no_ip_ospf_authentication_key_addr_cmd,
4222 "no ip ospf authentication-key A.B.C.D",
4223 NO_STR
4224 "IP Information\n"
4225 "OSPF interface commands\n"
4226 "Authentication password (key)\n"
4227 "Address of interface")
4228{
4229 struct interface *ifp;
4230 struct in_addr addr;
4231 int ret;
4232 struct ospf_if_params *params;
4233
4234 ifp = vty->index;
4235 params = IF_DEF_PARAMS (ifp);
4236
4237 if (argc == 2)
4238 {
4239 ret = inet_aton(argv[1], &addr);
4240 if (!ret)
4241 {
4242 vty_out (vty, "Please specify interface address by A.B.C.D%s",
4243 VTY_NEWLINE);
4244 return CMD_WARNING;
4245 }
4246
4247 params = ospf_lookup_if_params (ifp, addr);
4248 if (params == NULL)
4249 return CMD_SUCCESS;
4250 }
4251
4252 memset (params->auth_simple, 0, OSPF_AUTH_SIMPLE_SIZE);
4253 UNSET_IF_PARAM (params, auth_simple);
4254
4255 if (params != IF_DEF_PARAMS (ifp))
4256 {
4257 ospf_free_if_params (ifp, addr);
4258 ospf_if_update_params (ifp, addr);
4259 }
4260
4261 return CMD_SUCCESS;
4262}
4263
4264ALIAS (no_ip_ospf_authentication_key,
4265 no_ip_ospf_authentication_key_cmd,
4266 "no ip ospf authentication-key",
4267 NO_STR
4268 "IP Information\n"
4269 "OSPF interface commands\n"
4270 "Authentication password (key)\n")
4271
4272ALIAS (no_ip_ospf_authentication_key,
4273 no_ospf_authentication_key_cmd,
4274 "no ospf authentication-key",
4275 NO_STR
4276 "OSPF interface commands\n"
4277 "Authentication password (key)\n")
4278
4279DEFUN (ip_ospf_message_digest_key,
4280 ip_ospf_message_digest_key_addr_cmd,
4281 "ip ospf message-digest-key <1-255> md5 KEY A.B.C.D",
4282 "IP Information\n"
4283 "OSPF interface commands\n"
4284 "Message digest authentication password (key)\n"
4285 "Key ID\n"
4286 "Use MD5 algorithm\n"
4287 "The OSPF password (key)"
4288 "Address of interface")
4289{
4290 struct interface *ifp;
4291 struct crypt_key *ck;
4292 u_char key_id;
4293 struct in_addr addr;
4294 int ret;
4295 struct ospf_if_params *params;
4296
4297 ifp = vty->index;
4298 params = IF_DEF_PARAMS (ifp);
4299
4300 if (argc == 3)
4301 {
4302 ret = inet_aton(argv[2], &addr);
4303 if (!ret)
4304 {
4305 vty_out (vty, "Please specify interface address by A.B.C.D%s",
4306 VTY_NEWLINE);
4307 return CMD_WARNING;
4308 }
4309
4310 params = ospf_get_if_params (ifp, addr);
4311 ospf_if_update_params (ifp, addr);
4312 }
4313
4314 key_id = strtol (argv[0], NULL, 10);
4315 if (ospf_crypt_key_lookup (params->auth_crypt, key_id) != NULL)
4316 {
4317 vty_out (vty, "OSPF: Key %d already exists%s", key_id, VTY_NEWLINE);
4318 return CMD_WARNING;
4319 }
4320
4321 ck = ospf_crypt_key_new ();
4322 ck->key_id = (u_char) key_id;
4323 memset (ck->auth_key, 0, OSPF_AUTH_MD5_SIZE+1);
hassoc9e52be2004-09-26 16:09:34 +00004324 strncpy ((char *) ck->auth_key, argv[1], OSPF_AUTH_MD5_SIZE);
paul718e3742002-12-13 20:15:29 +00004325
4326 ospf_crypt_key_add (params->auth_crypt, ck);
4327 SET_IF_PARAM (params, auth_crypt);
4328
4329 return CMD_SUCCESS;
4330}
4331
4332ALIAS (ip_ospf_message_digest_key,
4333 ip_ospf_message_digest_key_cmd,
4334 "ip ospf message-digest-key <1-255> md5 KEY",
4335 "IP Information\n"
4336 "OSPF interface commands\n"
4337 "Message digest authentication password (key)\n"
4338 "Key ID\n"
4339 "Use MD5 algorithm\n"
4340 "The OSPF password (key)")
4341
4342ALIAS (ip_ospf_message_digest_key,
4343 ospf_message_digest_key_cmd,
4344 "ospf message-digest-key <1-255> md5 KEY",
4345 "OSPF interface commands\n"
4346 "Message digest authentication password (key)\n"
4347 "Key ID\n"
4348 "Use MD5 algorithm\n"
4349 "The OSPF password (key)")
4350
4351DEFUN (no_ip_ospf_message_digest_key,
4352 no_ip_ospf_message_digest_key_addr_cmd,
4353 "no ip ospf message-digest-key <1-255> A.B.C.D",
4354 NO_STR
4355 "IP Information\n"
4356 "OSPF interface commands\n"
4357 "Message digest authentication password (key)\n"
4358 "Key ID\n"
4359 "Address of interface")
4360{
4361 struct interface *ifp;
4362 struct crypt_key *ck;
4363 int key_id;
4364 struct in_addr addr;
4365 int ret;
4366 struct ospf_if_params *params;
4367
4368 ifp = vty->index;
4369 params = IF_DEF_PARAMS (ifp);
4370
4371 if (argc == 2)
4372 {
4373 ret = inet_aton(argv[1], &addr);
4374 if (!ret)
4375 {
4376 vty_out (vty, "Please specify interface address by A.B.C.D%s",
4377 VTY_NEWLINE);
4378 return CMD_WARNING;
4379 }
4380
4381 params = ospf_lookup_if_params (ifp, addr);
4382 if (params == NULL)
4383 return CMD_SUCCESS;
4384 }
4385
4386 key_id = strtol (argv[0], NULL, 10);
4387 ck = ospf_crypt_key_lookup (params->auth_crypt, key_id);
4388 if (ck == NULL)
4389 {
4390 vty_out (vty, "OSPF: Key %d does not exist%s", key_id, VTY_NEWLINE);
4391 return CMD_WARNING;
4392 }
4393
4394 ospf_crypt_key_delete (params->auth_crypt, key_id);
4395
4396 if (params != IF_DEF_PARAMS (ifp))
4397 {
4398 ospf_free_if_params (ifp, addr);
4399 ospf_if_update_params (ifp, addr);
4400 }
4401
4402 return CMD_SUCCESS;
4403}
4404
4405ALIAS (no_ip_ospf_message_digest_key,
4406 no_ip_ospf_message_digest_key_cmd,
4407 "no ip ospf message-digest-key <1-255>",
4408 NO_STR
4409 "IP Information\n"
4410 "OSPF interface commands\n"
4411 "Message digest authentication password (key)\n"
4412 "Key ID\n")
4413
4414ALIAS (no_ip_ospf_message_digest_key,
4415 no_ospf_message_digest_key_cmd,
4416 "no ospf message-digest-key <1-255>",
4417 NO_STR
4418 "OSPF interface commands\n"
4419 "Message digest authentication password (key)\n"
4420 "Key ID\n")
4421
4422DEFUN (ip_ospf_cost,
4423 ip_ospf_cost_addr_cmd,
4424 "ip ospf cost <1-65535> A.B.C.D",
4425 "IP Information\n"
4426 "OSPF interface commands\n"
4427 "Interface cost\n"
4428 "Cost\n"
4429 "Address of interface")
4430{
4431 struct interface *ifp = vty->index;
4432 u_int32_t cost;
4433 struct in_addr addr;
4434 int ret;
4435 struct ospf_if_params *params;
4436
4437 params = IF_DEF_PARAMS (ifp);
4438
4439 cost = strtol (argv[0], NULL, 10);
4440
4441 /* cost range is <1-65535>. */
4442 if (cost < 1 || cost > 65535)
4443 {
4444 vty_out (vty, "Interface output cost is invalid%s", VTY_NEWLINE);
4445 return CMD_WARNING;
4446 }
4447
4448 if (argc == 2)
4449 {
4450 ret = inet_aton(argv[1], &addr);
4451 if (!ret)
4452 {
4453 vty_out (vty, "Please specify interface address by A.B.C.D%s",
4454 VTY_NEWLINE);
4455 return CMD_WARNING;
4456 }
4457
4458 params = ospf_get_if_params (ifp, addr);
4459 ospf_if_update_params (ifp, addr);
4460 }
4461
4462 SET_IF_PARAM (params, output_cost_cmd);
4463 params->output_cost_cmd = cost;
4464
4465 ospf_if_recalculate_output_cost (ifp);
4466
4467 return CMD_SUCCESS;
4468}
4469
4470ALIAS (ip_ospf_cost,
4471 ip_ospf_cost_cmd,
4472 "ip ospf cost <1-65535>",
4473 "IP Information\n"
4474 "OSPF interface commands\n"
4475 "Interface cost\n"
4476 "Cost")
4477
4478ALIAS (ip_ospf_cost,
4479 ospf_cost_cmd,
4480 "ospf cost <1-65535>",
4481 "OSPF interface commands\n"
4482 "Interface cost\n"
4483 "Cost")
4484
4485DEFUN (no_ip_ospf_cost,
4486 no_ip_ospf_cost_addr_cmd,
4487 "no ip ospf cost A.B.C.D",
4488 NO_STR
4489 "IP Information\n"
4490 "OSPF interface commands\n"
4491 "Interface cost\n"
4492 "Address of interface")
4493{
4494 struct interface *ifp = vty->index;
4495 struct in_addr addr;
4496 int ret;
4497 struct ospf_if_params *params;
4498
4499 ifp = vty->index;
4500 params = IF_DEF_PARAMS (ifp);
4501
4502 if (argc == 1)
4503 {
4504 ret = inet_aton(argv[0], &addr);
4505 if (!ret)
4506 {
4507 vty_out (vty, "Please specify interface address by A.B.C.D%s",
4508 VTY_NEWLINE);
4509 return CMD_WARNING;
4510 }
4511
4512 params = ospf_lookup_if_params (ifp, addr);
4513 if (params == NULL)
4514 return CMD_SUCCESS;
4515 }
4516
4517 UNSET_IF_PARAM (params, output_cost_cmd);
4518
4519 if (params != IF_DEF_PARAMS (ifp))
4520 {
4521 ospf_free_if_params (ifp, addr);
4522 ospf_if_update_params (ifp, addr);
4523 }
4524
4525 ospf_if_recalculate_output_cost (ifp);
4526
4527 return CMD_SUCCESS;
4528}
4529
4530ALIAS (no_ip_ospf_cost,
4531 no_ip_ospf_cost_cmd,
4532 "no ip ospf cost",
4533 NO_STR
4534 "IP Information\n"
4535 "OSPF interface commands\n"
4536 "Interface cost\n")
4537
4538ALIAS (no_ip_ospf_cost,
4539 no_ospf_cost_cmd,
4540 "no ospf cost",
4541 NO_STR
4542 "OSPF interface commands\n"
4543 "Interface cost\n")
4544
paul4dadc292005-05-06 21:37:42 +00004545static void
paul718e3742002-12-13 20:15:29 +00004546ospf_nbr_timer_update (struct ospf_interface *oi)
4547{
4548 struct route_node *rn;
4549 struct ospf_neighbor *nbr;
4550
4551 for (rn = route_top (oi->nbrs); rn; rn = route_next (rn))
4552 if ((nbr = rn->info))
4553 {
4554 nbr->v_inactivity = OSPF_IF_PARAM (oi, v_wait);
4555 nbr->v_db_desc = OSPF_IF_PARAM (oi, retransmit_interval);
4556 nbr->v_ls_req = OSPF_IF_PARAM (oi, retransmit_interval);
4557 nbr->v_ls_upd = OSPF_IF_PARAM (oi, retransmit_interval);
4558 }
4559}
4560
4561DEFUN (ip_ospf_dead_interval,
4562 ip_ospf_dead_interval_addr_cmd,
4563 "ip ospf dead-interval <1-65535> A.B.C.D",
4564 "IP Information\n"
4565 "OSPF interface commands\n"
4566 "Interval after which a neighbor is declared dead\n"
4567 "Seconds\n"
4568 "Address of interface")
4569{
4570 struct interface *ifp = vty->index;
4571 u_int32_t seconds;
4572 struct in_addr addr;
4573 int ret;
4574 struct ospf_if_params *params;
4575 struct ospf_interface *oi;
4576 struct route_node *rn;
paul020709f2003-04-04 02:44:16 +00004577 struct ospf *ospf;
paul718e3742002-12-13 20:15:29 +00004578
paul020709f2003-04-04 02:44:16 +00004579 ospf = ospf_lookup ();
4580
paul718e3742002-12-13 20:15:29 +00004581 params = IF_DEF_PARAMS (ifp);
4582
4583 seconds = strtol (argv[0], NULL, 10);
4584
4585 /* dead_interval range is <1-65535>. */
4586 if (seconds < 1 || seconds > 65535)
4587 {
4588 vty_out (vty, "Router Dead Interval is invalid%s", VTY_NEWLINE);
4589 return CMD_WARNING;
4590 }
4591
4592 if (argc == 2)
4593 {
4594 ret = inet_aton(argv[1], &addr);
4595 if (!ret)
4596 {
4597 vty_out (vty, "Please specify interface address by A.B.C.D%s",
4598 VTY_NEWLINE);
4599 return CMD_WARNING;
4600 }
4601
4602 params = ospf_get_if_params (ifp, addr);
4603 ospf_if_update_params (ifp, addr);
4604 }
4605
4606 SET_IF_PARAM (params, v_wait);
4607 params->v_wait = seconds;
4608
4609 /* Update timer values in neighbor structure. */
4610 if (argc == 2)
4611 {
paul68980082003-03-25 05:07:42 +00004612 if (ospf)
4613 {
4614 oi = ospf_if_lookup_by_local_addr (ospf, ifp, addr);
4615 if (oi)
4616 ospf_nbr_timer_update (oi);
4617 }
paul718e3742002-12-13 20:15:29 +00004618 }
4619 else
4620 {
4621 for (rn = route_top (IF_OIFS (ifp)); rn; rn = route_next (rn))
4622 if ((oi = rn->info))
4623 ospf_nbr_timer_update (oi);
4624 }
4625
4626 return CMD_SUCCESS;
4627}
4628
4629ALIAS (ip_ospf_dead_interval,
4630 ip_ospf_dead_interval_cmd,
4631 "ip ospf dead-interval <1-65535>",
4632 "IP Information\n"
4633 "OSPF interface commands\n"
4634 "Interval after which a neighbor is declared dead\n"
4635 "Seconds\n")
4636
4637ALIAS (ip_ospf_dead_interval,
4638 ospf_dead_interval_cmd,
4639 "ospf dead-interval <1-65535>",
4640 "OSPF interface commands\n"
4641 "Interval after which a neighbor is declared dead\n"
4642 "Seconds\n")
4643
4644DEFUN (no_ip_ospf_dead_interval,
4645 no_ip_ospf_dead_interval_addr_cmd,
4646 "no ip ospf dead-interval A.B.C.D",
4647 NO_STR
4648 "IP Information\n"
4649 "OSPF interface commands\n"
4650 "Interval after which a neighbor is declared dead\n"
4651 "Address of interface")
4652{
4653 struct interface *ifp = vty->index;
4654 struct in_addr addr;
4655 int ret;
4656 struct ospf_if_params *params;
4657 struct ospf_interface *oi;
4658 struct route_node *rn;
paul020709f2003-04-04 02:44:16 +00004659 struct ospf *ospf;
paul718e3742002-12-13 20:15:29 +00004660
paul020709f2003-04-04 02:44:16 +00004661 ospf = ospf_lookup ();
4662
paul718e3742002-12-13 20:15:29 +00004663 ifp = vty->index;
4664 params = IF_DEF_PARAMS (ifp);
4665
4666 if (argc == 1)
4667 {
4668 ret = inet_aton(argv[0], &addr);
4669 if (!ret)
4670 {
4671 vty_out (vty, "Please specify interface address by A.B.C.D%s",
4672 VTY_NEWLINE);
4673 return CMD_WARNING;
4674 }
4675
4676 params = ospf_lookup_if_params (ifp, addr);
4677 if (params == NULL)
4678 return CMD_SUCCESS;
4679 }
4680
4681 UNSET_IF_PARAM (params, v_wait);
4682 params->v_wait = OSPF_ROUTER_DEAD_INTERVAL_DEFAULT;
4683
4684 if (params != IF_DEF_PARAMS (ifp))
4685 {
4686 ospf_free_if_params (ifp, addr);
4687 ospf_if_update_params (ifp, addr);
4688 }
4689
4690 /* Update timer values in neighbor structure. */
4691 if (argc == 1)
4692 {
paul68980082003-03-25 05:07:42 +00004693 if (ospf)
4694 {
4695 oi = ospf_if_lookup_by_local_addr (ospf, ifp, addr);
4696 if (oi)
4697 ospf_nbr_timer_update (oi);
4698 }
paul718e3742002-12-13 20:15:29 +00004699 }
4700 else
4701 {
4702 for (rn = route_top (IF_OIFS (ifp)); rn; rn = route_next (rn))
4703 if ((oi = rn->info))
4704 ospf_nbr_timer_update (oi);
4705 }
4706
4707 return CMD_SUCCESS;
4708}
4709
4710ALIAS (no_ip_ospf_dead_interval,
4711 no_ip_ospf_dead_interval_cmd,
4712 "no ip ospf dead-interval",
4713 NO_STR
4714 "IP Information\n"
4715 "OSPF interface commands\n"
4716 "Interval after which a neighbor is declared dead\n")
4717
4718ALIAS (no_ip_ospf_dead_interval,
4719 no_ospf_dead_interval_cmd,
4720 "no ospf dead-interval",
4721 NO_STR
4722 "OSPF interface commands\n"
4723 "Interval after which a neighbor is declared dead\n")
4724
4725DEFUN (ip_ospf_hello_interval,
4726 ip_ospf_hello_interval_addr_cmd,
4727 "ip ospf hello-interval <1-65535> A.B.C.D",
4728 "IP Information\n"
4729 "OSPF interface commands\n"
4730 "Time between HELLO packets\n"
4731 "Seconds\n"
4732 "Address of interface")
4733{
4734 struct interface *ifp = vty->index;
4735 u_int32_t seconds;
4736 struct in_addr addr;
4737 int ret;
4738 struct ospf_if_params *params;
4739
4740 params = IF_DEF_PARAMS (ifp);
4741
4742 seconds = strtol (argv[0], NULL, 10);
4743
4744 /* HelloInterval range is <1-65535>. */
4745 if (seconds < 1 || seconds > 65535)
4746 {
4747 vty_out (vty, "Hello Interval is invalid%s", VTY_NEWLINE);
4748 return CMD_WARNING;
4749 }
4750
4751 if (argc == 2)
4752 {
4753 ret = inet_aton(argv[1], &addr);
4754 if (!ret)
4755 {
4756 vty_out (vty, "Please specify interface address by A.B.C.D%s",
4757 VTY_NEWLINE);
4758 return CMD_WARNING;
4759 }
4760
4761 params = ospf_get_if_params (ifp, addr);
4762 ospf_if_update_params (ifp, addr);
4763 }
4764
4765 SET_IF_PARAM (params, v_hello);
4766 params->v_hello = seconds;
4767
4768 return CMD_SUCCESS;
4769}
4770
4771ALIAS (ip_ospf_hello_interval,
4772 ip_ospf_hello_interval_cmd,
4773 "ip ospf hello-interval <1-65535>",
4774 "IP Information\n"
4775 "OSPF interface commands\n"
4776 "Time between HELLO packets\n"
4777 "Seconds\n")
4778
4779ALIAS (ip_ospf_hello_interval,
4780 ospf_hello_interval_cmd,
4781 "ospf hello-interval <1-65535>",
4782 "OSPF interface commands\n"
4783 "Time between HELLO packets\n"
4784 "Seconds\n")
4785
4786DEFUN (no_ip_ospf_hello_interval,
4787 no_ip_ospf_hello_interval_addr_cmd,
4788 "no ip ospf hello-interval A.B.C.D",
4789 NO_STR
4790 "IP Information\n"
4791 "OSPF interface commands\n"
4792 "Time between HELLO packets\n"
4793 "Address of interface")
4794{
4795 struct interface *ifp = vty->index;
4796 struct in_addr addr;
4797 int ret;
4798 struct ospf_if_params *params;
4799
4800 ifp = vty->index;
4801 params = IF_DEF_PARAMS (ifp);
4802
4803 if (argc == 1)
4804 {
4805 ret = inet_aton(argv[0], &addr);
4806 if (!ret)
4807 {
4808 vty_out (vty, "Please specify interface address by A.B.C.D%s",
4809 VTY_NEWLINE);
4810 return CMD_WARNING;
4811 }
4812
4813 params = ospf_lookup_if_params (ifp, addr);
4814 if (params == NULL)
4815 return CMD_SUCCESS;
4816 }
4817
4818 UNSET_IF_PARAM (params, v_hello);
4819 params->v_hello = OSPF_ROUTER_DEAD_INTERVAL_DEFAULT;
4820
4821 if (params != IF_DEF_PARAMS (ifp))
4822 {
4823 ospf_free_if_params (ifp, addr);
4824 ospf_if_update_params (ifp, addr);
4825 }
4826
4827 return CMD_SUCCESS;
4828}
4829
4830ALIAS (no_ip_ospf_hello_interval,
4831 no_ip_ospf_hello_interval_cmd,
4832 "no ip ospf hello-interval",
4833 NO_STR
4834 "IP Information\n"
4835 "OSPF interface commands\n"
4836 "Time between HELLO packets\n")
4837
4838ALIAS (no_ip_ospf_hello_interval,
4839 no_ospf_hello_interval_cmd,
4840 "no ospf hello-interval",
4841 NO_STR
4842 "OSPF interface commands\n"
4843 "Time between HELLO packets\n")
4844
4845DEFUN (ip_ospf_network,
4846 ip_ospf_network_cmd,
4847 "ip ospf network (broadcast|non-broadcast|point-to-multipoint|point-to-point)",
4848 "IP Information\n"
4849 "OSPF interface commands\n"
4850 "Network type\n"
4851 "Specify OSPF broadcast multi-access network\n"
4852 "Specify OSPF NBMA network\n"
4853 "Specify OSPF point-to-multipoint network\n"
4854 "Specify OSPF point-to-point network\n")
4855{
4856 struct interface *ifp = vty->index;
4857 int old_type = IF_DEF_PARAMS (ifp)->type;
4858 struct route_node *rn;
4859
4860 if (strncmp (argv[0], "b", 1) == 0)
4861 IF_DEF_PARAMS (ifp)->type = OSPF_IFTYPE_BROADCAST;
4862 else if (strncmp (argv[0], "n", 1) == 0)
4863 IF_DEF_PARAMS (ifp)->type = OSPF_IFTYPE_NBMA;
4864 else if (strncmp (argv[0], "point-to-m", 10) == 0)
4865 IF_DEF_PARAMS (ifp)->type = OSPF_IFTYPE_POINTOMULTIPOINT;
4866 else if (strncmp (argv[0], "point-to-p", 10) == 0)
4867 IF_DEF_PARAMS (ifp)->type = OSPF_IFTYPE_POINTOPOINT;
4868
4869 if (IF_DEF_PARAMS (ifp)->type == old_type)
4870 return CMD_SUCCESS;
4871
4872 SET_IF_PARAM (IF_DEF_PARAMS (ifp), type);
4873
4874 for (rn = route_top (IF_OIFS (ifp)); rn; rn = route_next (rn))
4875 {
4876 struct ospf_interface *oi = rn->info;
4877
4878 if (!oi)
4879 continue;
4880
4881 oi->type = IF_DEF_PARAMS (ifp)->type;
4882
4883 if (oi->state > ISM_Down)
4884 {
4885 OSPF_ISM_EVENT_EXECUTE (oi, ISM_InterfaceDown);
4886 OSPF_ISM_EVENT_EXECUTE (oi, ISM_InterfaceUp);
4887 }
4888 }
4889
4890 return CMD_SUCCESS;
4891}
4892
4893ALIAS (ip_ospf_network,
4894 ospf_network_cmd,
4895 "ospf network (broadcast|non-broadcast|point-to-multipoint|point-to-point)",
4896 "OSPF interface commands\n"
4897 "Network type\n"
4898 "Specify OSPF broadcast multi-access network\n"
4899 "Specify OSPF NBMA network\n"
4900 "Specify OSPF point-to-multipoint network\n"
4901 "Specify OSPF point-to-point network\n")
4902
4903DEFUN (no_ip_ospf_network,
4904 no_ip_ospf_network_cmd,
4905 "no ip ospf network",
4906 NO_STR
4907 "IP Information\n"
4908 "OSPF interface commands\n"
4909 "Network type\n")
4910{
4911 struct interface *ifp = vty->index;
4912 int old_type = IF_DEF_PARAMS (ifp)->type;
4913 struct route_node *rn;
4914
ajsbc18d612004-12-15 15:07:19 +00004915 IF_DEF_PARAMS (ifp)->type = ospf_default_iftype(ifp);
paul718e3742002-12-13 20:15:29 +00004916
4917 if (IF_DEF_PARAMS (ifp)->type == old_type)
4918 return CMD_SUCCESS;
4919
4920 for (rn = route_top (IF_OIFS (ifp)); rn; rn = route_next (rn))
4921 {
4922 struct ospf_interface *oi = rn->info;
4923
4924 if (!oi)
4925 continue;
4926
4927 oi->type = IF_DEF_PARAMS (ifp)->type;
4928
4929 if (oi->state > ISM_Down)
4930 {
4931 OSPF_ISM_EVENT_EXECUTE (oi, ISM_InterfaceDown);
4932 OSPF_ISM_EVENT_EXECUTE (oi, ISM_InterfaceUp);
4933 }
4934 }
4935
4936 return CMD_SUCCESS;
4937}
4938
4939ALIAS (no_ip_ospf_network,
4940 no_ospf_network_cmd,
4941 "no ospf network",
4942 NO_STR
4943 "OSPF interface commands\n"
4944 "Network type\n")
4945
4946DEFUN (ip_ospf_priority,
4947 ip_ospf_priority_addr_cmd,
4948 "ip ospf priority <0-255> A.B.C.D",
4949 "IP Information\n"
4950 "OSPF interface commands\n"
4951 "Router priority\n"
4952 "Priority\n"
4953 "Address of interface")
4954{
4955 struct interface *ifp = vty->index;
4956 u_int32_t priority;
4957 struct route_node *rn;
4958 struct in_addr addr;
4959 int ret;
4960 struct ospf_if_params *params;
4961
4962 params = IF_DEF_PARAMS (ifp);
4963
4964 priority = strtol (argv[0], NULL, 10);
4965
4966 /* Router Priority range is <0-255>. */
4967 if (priority < 0 || priority > 255)
4968 {
4969 vty_out (vty, "Router Priority is invalid%s", VTY_NEWLINE);
4970 return CMD_WARNING;
4971 }
4972
4973 if (argc == 2)
4974 {
4975 ret = inet_aton(argv[1], &addr);
4976 if (!ret)
4977 {
4978 vty_out (vty, "Please specify interface address by A.B.C.D%s",
4979 VTY_NEWLINE);
4980 return CMD_WARNING;
4981 }
4982
4983 params = ospf_get_if_params (ifp, addr);
4984 ospf_if_update_params (ifp, addr);
4985 }
4986
4987 SET_IF_PARAM (params, priority);
4988 params->priority = priority;
4989
4990 for (rn = route_top (IF_OIFS (ifp)); rn; rn = route_next (rn))
4991 {
4992 struct ospf_interface *oi = rn->info;
4993
4994 if (!oi)
4995 continue;
4996
4997
4998 if (PRIORITY (oi) != OSPF_IF_PARAM (oi, priority))
4999 {
5000 PRIORITY (oi) = OSPF_IF_PARAM (oi, priority);
5001 OSPF_ISM_EVENT_SCHEDULE (oi, ISM_NeighborChange);
5002 }
5003 }
5004
5005 return CMD_SUCCESS;
5006}
5007
5008ALIAS (ip_ospf_priority,
5009 ip_ospf_priority_cmd,
5010 "ip ospf priority <0-255>",
5011 "IP Information\n"
5012 "OSPF interface commands\n"
5013 "Router priority\n"
5014 "Priority\n")
5015
5016ALIAS (ip_ospf_priority,
5017 ospf_priority_cmd,
5018 "ospf priority <0-255>",
5019 "OSPF interface commands\n"
5020 "Router priority\n"
5021 "Priority\n")
5022
5023DEFUN (no_ip_ospf_priority,
5024 no_ip_ospf_priority_addr_cmd,
5025 "no ip ospf priority A.B.C.D",
5026 NO_STR
5027 "IP Information\n"
5028 "OSPF interface commands\n"
5029 "Router priority\n"
5030 "Address of interface")
5031{
5032 struct interface *ifp = vty->index;
5033 struct route_node *rn;
5034 struct in_addr addr;
5035 int ret;
5036 struct ospf_if_params *params;
5037
5038 ifp = vty->index;
5039 params = IF_DEF_PARAMS (ifp);
5040
5041 if (argc == 1)
5042 {
5043 ret = inet_aton(argv[0], &addr);
5044 if (!ret)
5045 {
5046 vty_out (vty, "Please specify interface address by A.B.C.D%s",
5047 VTY_NEWLINE);
5048 return CMD_WARNING;
5049 }
5050
5051 params = ospf_lookup_if_params (ifp, addr);
5052 if (params == NULL)
5053 return CMD_SUCCESS;
5054 }
5055
5056 UNSET_IF_PARAM (params, priority);
5057 params->priority = OSPF_ROUTER_PRIORITY_DEFAULT;
5058
5059 if (params != IF_DEF_PARAMS (ifp))
5060 {
5061 ospf_free_if_params (ifp, addr);
5062 ospf_if_update_params (ifp, addr);
5063 }
5064
5065 for (rn = route_top (IF_OIFS (ifp)); rn; rn = route_next (rn))
5066 {
5067 struct ospf_interface *oi = rn->info;
5068
5069 if (!oi)
5070 continue;
5071
5072
5073 if (PRIORITY (oi) != OSPF_IF_PARAM (oi, priority))
5074 {
5075 PRIORITY (oi) = OSPF_IF_PARAM (oi, priority);
5076 OSPF_ISM_EVENT_SCHEDULE (oi, ISM_NeighborChange);
5077 }
5078 }
5079
5080 return CMD_SUCCESS;
5081}
5082
5083ALIAS (no_ip_ospf_priority,
5084 no_ip_ospf_priority_cmd,
5085 "no ip ospf priority",
5086 NO_STR
5087 "IP Information\n"
5088 "OSPF interface commands\n"
5089 "Router priority\n")
5090
5091ALIAS (no_ip_ospf_priority,
5092 no_ospf_priority_cmd,
5093 "no ospf priority",
5094 NO_STR
5095 "OSPF interface commands\n"
5096 "Router priority\n")
5097
5098DEFUN (ip_ospf_retransmit_interval,
5099 ip_ospf_retransmit_interval_addr_cmd,
5100 "ip ospf retransmit-interval <3-65535> A.B.C.D",
5101 "IP Information\n"
5102 "OSPF interface commands\n"
5103 "Time between retransmitting lost link state advertisements\n"
5104 "Seconds\n"
5105 "Address of interface")
5106{
5107 struct interface *ifp = vty->index;
5108 u_int32_t seconds;
5109 struct in_addr addr;
5110 int ret;
5111 struct ospf_if_params *params;
5112
5113 params = IF_DEF_PARAMS (ifp);
5114 seconds = strtol (argv[0], NULL, 10);
5115
5116 /* Retransmit Interval range is <3-65535>. */
5117 if (seconds < 3 || seconds > 65535)
5118 {
5119 vty_out (vty, "Retransmit Interval is invalid%s", VTY_NEWLINE);
5120 return CMD_WARNING;
5121 }
5122
5123
5124 if (argc == 2)
5125 {
5126 ret = inet_aton(argv[1], &addr);
5127 if (!ret)
5128 {
5129 vty_out (vty, "Please specify interface address by A.B.C.D%s",
5130 VTY_NEWLINE);
5131 return CMD_WARNING;
5132 }
5133
5134 params = ospf_get_if_params (ifp, addr);
5135 ospf_if_update_params (ifp, addr);
5136 }
5137
5138 SET_IF_PARAM (params, retransmit_interval);
5139 params->retransmit_interval = seconds;
5140
5141 return CMD_SUCCESS;
5142}
5143
5144ALIAS (ip_ospf_retransmit_interval,
5145 ip_ospf_retransmit_interval_cmd,
5146 "ip ospf retransmit-interval <3-65535>",
5147 "IP Information\n"
5148 "OSPF interface commands\n"
5149 "Time between retransmitting lost link state advertisements\n"
5150 "Seconds\n")
5151
5152ALIAS (ip_ospf_retransmit_interval,
5153 ospf_retransmit_interval_cmd,
5154 "ospf retransmit-interval <3-65535>",
5155 "OSPF interface commands\n"
5156 "Time between retransmitting lost link state advertisements\n"
5157 "Seconds\n")
5158
5159DEFUN (no_ip_ospf_retransmit_interval,
5160 no_ip_ospf_retransmit_interval_addr_cmd,
5161 "no ip ospf retransmit-interval A.B.C.D",
5162 NO_STR
5163 "IP Information\n"
5164 "OSPF interface commands\n"
5165 "Time between retransmitting lost link state advertisements\n"
5166 "Address of interface")
5167{
5168 struct interface *ifp = vty->index;
5169 struct in_addr addr;
5170 int ret;
5171 struct ospf_if_params *params;
5172
5173 ifp = vty->index;
5174 params = IF_DEF_PARAMS (ifp);
5175
5176 if (argc == 1)
5177 {
5178 ret = inet_aton(argv[0], &addr);
5179 if (!ret)
5180 {
5181 vty_out (vty, "Please specify interface address by A.B.C.D%s",
5182 VTY_NEWLINE);
5183 return CMD_WARNING;
5184 }
5185
5186 params = ospf_lookup_if_params (ifp, addr);
5187 if (params == NULL)
5188 return CMD_SUCCESS;
5189 }
5190
5191 UNSET_IF_PARAM (params, retransmit_interval);
5192 params->retransmit_interval = OSPF_RETRANSMIT_INTERVAL_DEFAULT;
5193
5194 if (params != IF_DEF_PARAMS (ifp))
5195 {
5196 ospf_free_if_params (ifp, addr);
5197 ospf_if_update_params (ifp, addr);
5198 }
5199
5200 return CMD_SUCCESS;
5201}
5202
5203ALIAS (no_ip_ospf_retransmit_interval,
5204 no_ip_ospf_retransmit_interval_cmd,
5205 "no ip ospf retransmit-interval",
5206 NO_STR
5207 "IP Information\n"
5208 "OSPF interface commands\n"
5209 "Time between retransmitting lost link state advertisements\n")
5210
5211ALIAS (no_ip_ospf_retransmit_interval,
5212 no_ospf_retransmit_interval_cmd,
5213 "no ospf retransmit-interval",
5214 NO_STR
5215 "OSPF interface commands\n"
5216 "Time between retransmitting lost link state advertisements\n")
5217
5218DEFUN (ip_ospf_transmit_delay,
5219 ip_ospf_transmit_delay_addr_cmd,
5220 "ip ospf transmit-delay <1-65535> A.B.C.D",
5221 "IP Information\n"
5222 "OSPF interface commands\n"
5223 "Link state transmit delay\n"
5224 "Seconds\n"
5225 "Address of interface")
5226{
5227 struct interface *ifp = vty->index;
5228 u_int32_t seconds;
5229 struct in_addr addr;
5230 int ret;
5231 struct ospf_if_params *params;
5232
5233 params = IF_DEF_PARAMS (ifp);
5234 seconds = strtol (argv[0], NULL, 10);
5235
5236 /* Transmit Delay range is <1-65535>. */
5237 if (seconds < 1 || seconds > 65535)
5238 {
5239 vty_out (vty, "Transmit Delay is invalid%s", VTY_NEWLINE);
5240 return CMD_WARNING;
5241 }
5242
5243 if (argc == 2)
5244 {
5245 ret = inet_aton(argv[1], &addr);
5246 if (!ret)
5247 {
5248 vty_out (vty, "Please specify interface address by A.B.C.D%s",
5249 VTY_NEWLINE);
5250 return CMD_WARNING;
5251 }
5252
5253 params = ospf_get_if_params (ifp, addr);
5254 ospf_if_update_params (ifp, addr);
5255 }
5256
5257 SET_IF_PARAM (params, transmit_delay);
5258 params->transmit_delay = seconds;
5259
5260 return CMD_SUCCESS;
5261}
5262
5263ALIAS (ip_ospf_transmit_delay,
5264 ip_ospf_transmit_delay_cmd,
5265 "ip ospf transmit-delay <1-65535>",
5266 "IP Information\n"
5267 "OSPF interface commands\n"
5268 "Link state transmit delay\n"
5269 "Seconds\n")
5270
5271ALIAS (ip_ospf_transmit_delay,
5272 ospf_transmit_delay_cmd,
5273 "ospf transmit-delay <1-65535>",
5274 "OSPF interface commands\n"
5275 "Link state transmit delay\n"
5276 "Seconds\n")
5277
5278DEFUN (no_ip_ospf_transmit_delay,
5279 no_ip_ospf_transmit_delay_addr_cmd,
5280 "no ip ospf transmit-delay A.B.C.D",
5281 NO_STR
5282 "IP Information\n"
5283 "OSPF interface commands\n"
5284 "Link state transmit delay\n"
5285 "Address of interface")
5286{
5287 struct interface *ifp = vty->index;
5288 struct in_addr addr;
5289 int ret;
5290 struct ospf_if_params *params;
5291
5292 ifp = vty->index;
5293 params = IF_DEF_PARAMS (ifp);
5294
5295 if (argc == 1)
5296 {
5297 ret = inet_aton(argv[0], &addr);
5298 if (!ret)
5299 {
5300 vty_out (vty, "Please specify interface address by A.B.C.D%s",
5301 VTY_NEWLINE);
5302 return CMD_WARNING;
5303 }
5304
5305 params = ospf_lookup_if_params (ifp, addr);
5306 if (params == NULL)
5307 return CMD_SUCCESS;
5308 }
5309
5310 UNSET_IF_PARAM (params, transmit_delay);
5311 params->transmit_delay = OSPF_TRANSMIT_DELAY_DEFAULT;
5312
5313 if (params != IF_DEF_PARAMS (ifp))
5314 {
5315 ospf_free_if_params (ifp, addr);
5316 ospf_if_update_params (ifp, addr);
5317 }
5318
5319 return CMD_SUCCESS;
5320}
5321
5322ALIAS (no_ip_ospf_transmit_delay,
5323 no_ip_ospf_transmit_delay_cmd,
5324 "no ip ospf transmit-delay",
5325 NO_STR
5326 "IP Information\n"
5327 "OSPF interface commands\n"
5328 "Link state transmit delay\n")
5329
5330ALIAS (no_ip_ospf_transmit_delay,
5331 no_ospf_transmit_delay_cmd,
5332 "no ospf transmit-delay",
5333 NO_STR
5334 "OSPF interface commands\n"
5335 "Link state transmit delay\n")
5336
5337
5338DEFUN (ospf_redistribute_source_metric_type,
5339 ospf_redistribute_source_metric_type_routemap_cmd,
5340 "redistribute (kernel|connected|static|rip|bgp) metric <0-16777214> metric-type (1|2) route-map WORD",
5341 "Redistribute information from another routing protocol\n"
5342 "Kernel routes\n"
5343 "Connected\n"
5344 "Static routes\n"
5345 "Routing Information Protocol (RIP)\n"
5346 "Border Gateway Protocol (BGP)\n"
5347 "Metric for redistributed routes\n"
5348 "OSPF default metric\n"
5349 "OSPF exterior metric type for redistributed routes\n"
5350 "Set OSPF External Type 1 metrics\n"
5351 "Set OSPF External Type 2 metrics\n"
5352 "Route map reference\n"
5353 "Pointer to route-map entries\n")
5354{
paul020709f2003-04-04 02:44:16 +00005355 struct ospf *ospf = vty->index;
paul718e3742002-12-13 20:15:29 +00005356 int source;
5357 int type = -1;
5358 int metric = -1;
5359
5360 /* Get distribute source. */
5361 if (!str2distribute_source (argv[0], &source))
5362 return CMD_WARNING;
5363
5364 /* Get metric value. */
5365 if (argc >= 2)
5366 if (!str2metric (argv[1], &metric))
5367 return CMD_WARNING;
5368
5369 /* Get metric type. */
5370 if (argc >= 3)
5371 if (!str2metric_type (argv[2], &type))
5372 return CMD_WARNING;
5373
5374 if (argc == 4)
paul020709f2003-04-04 02:44:16 +00005375 ospf_routemap_set (ospf, source, argv[3]);
paul718e3742002-12-13 20:15:29 +00005376 else
paul020709f2003-04-04 02:44:16 +00005377 ospf_routemap_unset (ospf, source);
paul718e3742002-12-13 20:15:29 +00005378
paul020709f2003-04-04 02:44:16 +00005379 return ospf_redistribute_set (ospf, source, type, metric);
paul718e3742002-12-13 20:15:29 +00005380}
5381
5382ALIAS (ospf_redistribute_source_metric_type,
5383 ospf_redistribute_source_metric_type_cmd,
5384 "redistribute (kernel|connected|static|rip|bgp) metric <0-16777214> metric-type (1|2)",
5385 "Redistribute information from another routing protocol\n"
5386 "Kernel routes\n"
5387 "Connected\n"
5388 "Static routes\n"
5389 "Routing Information Protocol (RIP)\n"
5390 "Border Gateway Protocol (BGP)\n"
5391 "Metric for redistributed routes\n"
5392 "OSPF default metric\n"
5393 "OSPF exterior metric type for redistributed routes\n"
5394 "Set OSPF External Type 1 metrics\n"
5395 "Set OSPF External Type 2 metrics\n")
5396
5397ALIAS (ospf_redistribute_source_metric_type,
5398 ospf_redistribute_source_metric_cmd,
5399 "redistribute (kernel|connected|static|rip|bgp) metric <0-16777214>",
5400 "Redistribute information from another routing protocol\n"
5401 "Kernel routes\n"
5402 "Connected\n"
5403 "Static routes\n"
5404 "Routing Information Protocol (RIP)\n"
5405 "Border Gateway Protocol (BGP)\n"
5406 "Metric for redistributed routes\n"
5407 "OSPF default metric\n")
5408
5409DEFUN (ospf_redistribute_source_type_metric,
5410 ospf_redistribute_source_type_metric_routemap_cmd,
5411 "redistribute (kernel|connected|static|rip|bgp) metric-type (1|2) metric <0-16777214> route-map WORD",
5412 "Redistribute information from another routing protocol\n"
5413 "Kernel routes\n"
5414 "Connected\n"
5415 "Static routes\n"
5416 "Routing Information Protocol (RIP)\n"
5417 "Border Gateway Protocol (BGP)\n"
5418 "OSPF exterior metric type for redistributed routes\n"
5419 "Set OSPF External Type 1 metrics\n"
5420 "Set OSPF External Type 2 metrics\n"
5421 "Metric for redistributed routes\n"
5422 "OSPF default metric\n"
5423 "Route map reference\n"
5424 "Pointer to route-map entries\n")
5425{
paul020709f2003-04-04 02:44:16 +00005426 struct ospf *ospf = vty->index;
paul718e3742002-12-13 20:15:29 +00005427 int source;
5428 int type = -1;
5429 int metric = -1;
5430
5431 /* Get distribute source. */
5432 if (!str2distribute_source (argv[0], &source))
5433 return CMD_WARNING;
5434
5435 /* Get metric value. */
5436 if (argc >= 2)
5437 if (!str2metric_type (argv[1], &type))
5438 return CMD_WARNING;
5439
5440 /* Get metric type. */
5441 if (argc >= 3)
5442 if (!str2metric (argv[2], &metric))
5443 return CMD_WARNING;
5444
5445 if (argc == 4)
paul020709f2003-04-04 02:44:16 +00005446 ospf_routemap_set (ospf, source, argv[3]);
paul718e3742002-12-13 20:15:29 +00005447 else
paul020709f2003-04-04 02:44:16 +00005448 ospf_routemap_unset (ospf, source);
paul718e3742002-12-13 20:15:29 +00005449
paul020709f2003-04-04 02:44:16 +00005450 return ospf_redistribute_set (ospf, source, type, metric);
paul718e3742002-12-13 20:15:29 +00005451}
5452
5453ALIAS (ospf_redistribute_source_type_metric,
5454 ospf_redistribute_source_type_metric_cmd,
5455 "redistribute (kernel|connected|static|rip|bgp) metric-type (1|2) metric <0-16777214>",
5456 "Redistribute information from another routing protocol\n"
5457 "Kernel routes\n"
5458 "Connected\n"
5459 "Static routes\n"
5460 "Routing Information Protocol (RIP)\n"
5461 "Border Gateway Protocol (BGP)\n"
5462 "OSPF exterior metric type for redistributed routes\n"
5463 "Set OSPF External Type 1 metrics\n"
5464 "Set OSPF External Type 2 metrics\n"
5465 "Metric for redistributed routes\n"
5466 "OSPF default metric\n")
5467
5468ALIAS (ospf_redistribute_source_type_metric,
5469 ospf_redistribute_source_type_cmd,
5470 "redistribute (kernel|connected|static|rip|bgp) metric-type (1|2)",
5471 "Redistribute information from another routing protocol\n"
5472 "Kernel routes\n"
5473 "Connected\n"
5474 "Static routes\n"
5475 "Routing Information Protocol (RIP)\n"
5476 "Border Gateway Protocol (BGP)\n"
5477 "OSPF exterior metric type for redistributed routes\n"
5478 "Set OSPF External Type 1 metrics\n"
5479 "Set OSPF External Type 2 metrics\n")
5480
5481ALIAS (ospf_redistribute_source_type_metric,
5482 ospf_redistribute_source_cmd,
5483 "redistribute (kernel|connected|static|rip|bgp)",
5484 "Redistribute information from another routing protocol\n"
5485 "Kernel routes\n"
5486 "Connected\n"
5487 "Static routes\n"
5488 "Routing Information Protocol (RIP)\n"
5489 "Border Gateway Protocol (BGP)\n")
5490
5491DEFUN (ospf_redistribute_source_metric_routemap,
5492 ospf_redistribute_source_metric_routemap_cmd,
5493 "redistribute (kernel|connected|static|rip|bgp) metric <0-16777214> route-map WORD",
5494 "Redistribute information from another routing protocol\n"
5495 "Kernel routes\n"
5496 "Connected\n"
5497 "Static routes\n"
5498 "Routing Information Protocol (RIP)\n"
5499 "Border Gateway Protocol (BGP)\n"
5500 "Metric for redistributed routes\n"
5501 "OSPF default metric\n"
5502 "Route map reference\n"
5503 "Pointer to route-map entries\n")
5504{
paul020709f2003-04-04 02:44:16 +00005505 struct ospf *ospf = vty->index;
paul718e3742002-12-13 20:15:29 +00005506 int source;
5507 int metric = -1;
5508
5509 /* Get distribute source. */
5510 if (!str2distribute_source (argv[0], &source))
5511 return CMD_WARNING;
5512
5513 /* Get metric value. */
5514 if (argc >= 2)
5515 if (!str2metric (argv[1], &metric))
5516 return CMD_WARNING;
5517
5518 if (argc == 3)
paul020709f2003-04-04 02:44:16 +00005519 ospf_routemap_set (ospf, source, argv[2]);
paul718e3742002-12-13 20:15:29 +00005520 else
paul020709f2003-04-04 02:44:16 +00005521 ospf_routemap_unset (ospf, source);
paul718e3742002-12-13 20:15:29 +00005522
paul020709f2003-04-04 02:44:16 +00005523 return ospf_redistribute_set (ospf, source, -1, metric);
paul718e3742002-12-13 20:15:29 +00005524}
5525
5526DEFUN (ospf_redistribute_source_type_routemap,
5527 ospf_redistribute_source_type_routemap_cmd,
5528 "redistribute (kernel|connected|static|rip|bgp) metric-type (1|2) route-map WORD",
5529 "Redistribute information from another routing protocol\n"
5530 "Kernel routes\n"
5531 "Connected\n"
5532 "Static routes\n"
5533 "Routing Information Protocol (RIP)\n"
5534 "Border Gateway Protocol (BGP)\n"
5535 "OSPF exterior metric type for redistributed routes\n"
5536 "Set OSPF External Type 1 metrics\n"
5537 "Set OSPF External Type 2 metrics\n"
5538 "Route map reference\n"
5539 "Pointer to route-map entries\n")
5540{
paul020709f2003-04-04 02:44:16 +00005541 struct ospf *ospf = vty->index;
paul718e3742002-12-13 20:15:29 +00005542 int source;
5543 int type = -1;
5544
5545 /* Get distribute source. */
5546 if (!str2distribute_source (argv[0], &source))
5547 return CMD_WARNING;
5548
5549 /* Get metric value. */
5550 if (argc >= 2)
5551 if (!str2metric_type (argv[1], &type))
5552 return CMD_WARNING;
5553
5554 if (argc == 3)
paul020709f2003-04-04 02:44:16 +00005555 ospf_routemap_set (ospf, source, argv[2]);
paul718e3742002-12-13 20:15:29 +00005556 else
paul020709f2003-04-04 02:44:16 +00005557 ospf_routemap_unset (ospf, source);
paul718e3742002-12-13 20:15:29 +00005558
paul020709f2003-04-04 02:44:16 +00005559 return ospf_redistribute_set (ospf, source, type, -1);
paul718e3742002-12-13 20:15:29 +00005560}
5561
5562DEFUN (ospf_redistribute_source_routemap,
5563 ospf_redistribute_source_routemap_cmd,
5564 "redistribute (kernel|connected|static|rip|bgp) route-map WORD",
5565 "Redistribute information from another routing protocol\n"
5566 "Kernel routes\n"
5567 "Connected\n"
5568 "Static routes\n"
5569 "Routing Information Protocol (RIP)\n"
5570 "Border Gateway Protocol (BGP)\n"
5571 "Route map reference\n"
5572 "Pointer to route-map entries\n")
5573{
paul020709f2003-04-04 02:44:16 +00005574 struct ospf *ospf = vty->index;
paul718e3742002-12-13 20:15:29 +00005575 int source;
5576
5577 /* Get distribute source. */
5578 if (!str2distribute_source (argv[0], &source))
5579 return CMD_WARNING;
5580
5581 if (argc == 2)
paul020709f2003-04-04 02:44:16 +00005582 ospf_routemap_set (ospf, source, argv[1]);
paul718e3742002-12-13 20:15:29 +00005583 else
paul020709f2003-04-04 02:44:16 +00005584 ospf_routemap_unset (ospf, source);
paul718e3742002-12-13 20:15:29 +00005585
paul020709f2003-04-04 02:44:16 +00005586 return ospf_redistribute_set (ospf, source, -1, -1);
paul718e3742002-12-13 20:15:29 +00005587}
5588
5589DEFUN (no_ospf_redistribute_source,
5590 no_ospf_redistribute_source_cmd,
5591 "no redistribute (kernel|connected|static|rip|bgp)",
5592 NO_STR
5593 "Redistribute information from another routing protocol\n"
5594 "Kernel routes\n"
5595 "Connected\n"
5596 "Static routes\n"
5597 "Routing Information Protocol (RIP)\n"
5598 "Border Gateway Protocol (BGP)\n")
5599{
paul020709f2003-04-04 02:44:16 +00005600 struct ospf *ospf = vty->index;
paul718e3742002-12-13 20:15:29 +00005601 int source;
5602
5603 if (!str2distribute_source (argv[0], &source))
5604 return CMD_WARNING;
5605
paul020709f2003-04-04 02:44:16 +00005606 ospf_routemap_unset (ospf, source);
5607 return ospf_redistribute_unset (ospf, source);
paul718e3742002-12-13 20:15:29 +00005608}
5609
5610DEFUN (ospf_distribute_list_out,
5611 ospf_distribute_list_out_cmd,
5612 "distribute-list WORD out (kernel|connected|static|rip|bgp)",
5613 "Filter networks in routing updates\n"
5614 "Access-list name\n"
5615 OUT_STR
5616 "Kernel routes\n"
5617 "Connected\n"
5618 "Static routes\n"
5619 "Routing Information Protocol (RIP)\n"
5620 "Border Gateway Protocol (BGP)\n")
5621{
paul68980082003-03-25 05:07:42 +00005622 struct ospf *ospf = vty->index;
paul718e3742002-12-13 20:15:29 +00005623 int source;
5624
5625 /* Get distribute source. */
5626 if (!str2distribute_source (argv[1], &source))
5627 return CMD_WARNING;
5628
paul68980082003-03-25 05:07:42 +00005629 return ospf_distribute_list_out_set (ospf, source, argv[0]);
paul718e3742002-12-13 20:15:29 +00005630}
5631
5632DEFUN (no_ospf_distribute_list_out,
5633 no_ospf_distribute_list_out_cmd,
5634 "no distribute-list WORD out (kernel|connected|static|rip|bgp)",
5635 NO_STR
5636 "Filter networks in routing updates\n"
5637 "Access-list name\n"
5638 OUT_STR
5639 "Kernel routes\n"
5640 "Connected\n"
5641 "Static routes\n"
5642 "Routing Information Protocol (RIP)\n"
5643 "Border Gateway Protocol (BGP)\n")
5644{
paul68980082003-03-25 05:07:42 +00005645 struct ospf *ospf = vty->index;
paul718e3742002-12-13 20:15:29 +00005646 int source;
5647
5648 if (!str2distribute_source (argv[1], &source))
5649 return CMD_WARNING;
5650
paul68980082003-03-25 05:07:42 +00005651 return ospf_distribute_list_out_unset (ospf, source, argv[0]);
paul718e3742002-12-13 20:15:29 +00005652}
5653
5654/* Default information originate. */
5655DEFUN (ospf_default_information_originate_metric_type_routemap,
5656 ospf_default_information_originate_metric_type_routemap_cmd,
5657 "default-information originate metric <0-16777214> metric-type (1|2) route-map WORD",
5658 "Control distribution of default information\n"
5659 "Distribute a default route\n"
5660 "OSPF default metric\n"
5661 "OSPF metric\n"
5662 "OSPF metric type for default routes\n"
5663 "Set OSPF External Type 1 metrics\n"
5664 "Set OSPF External Type 2 metrics\n"
5665 "Route map reference\n"
5666 "Pointer to route-map entries\n")
5667{
paul020709f2003-04-04 02:44:16 +00005668 struct ospf *ospf = vty->index;
paul718e3742002-12-13 20:15:29 +00005669 int type = -1;
5670 int metric = -1;
5671
5672 /* Get metric value. */
5673 if (argc >= 1)
5674 if (!str2metric (argv[0], &metric))
5675 return CMD_WARNING;
5676
5677 /* Get metric type. */
5678 if (argc >= 2)
5679 if (!str2metric_type (argv[1], &type))
5680 return CMD_WARNING;
5681
5682 if (argc == 3)
paul020709f2003-04-04 02:44:16 +00005683 ospf_routemap_set (ospf, DEFAULT_ROUTE, argv[2]);
paul718e3742002-12-13 20:15:29 +00005684 else
paul020709f2003-04-04 02:44:16 +00005685 ospf_routemap_unset (ospf, DEFAULT_ROUTE);
paul718e3742002-12-13 20:15:29 +00005686
paul020709f2003-04-04 02:44:16 +00005687 return ospf_redistribute_default_set (ospf, DEFAULT_ORIGINATE_ZEBRA,
5688 type, metric);
paul718e3742002-12-13 20:15:29 +00005689}
5690
5691ALIAS (ospf_default_information_originate_metric_type_routemap,
5692 ospf_default_information_originate_metric_type_cmd,
5693 "default-information originate metric <0-16777214> metric-type (1|2)",
5694 "Control distribution of default information\n"
5695 "Distribute a default route\n"
5696 "OSPF default metric\n"
5697 "OSPF metric\n"
5698 "OSPF metric type for default routes\n"
5699 "Set OSPF External Type 1 metrics\n"
5700 "Set OSPF External Type 2 metrics\n")
5701
5702ALIAS (ospf_default_information_originate_metric_type_routemap,
5703 ospf_default_information_originate_metric_cmd,
5704 "default-information originate metric <0-16777214>",
5705 "Control distribution of default information\n"
5706 "Distribute a default route\n"
5707 "OSPF default metric\n"
5708 "OSPF metric\n")
5709
5710ALIAS (ospf_default_information_originate_metric_type_routemap,
5711 ospf_default_information_originate_cmd,
5712 "default-information originate",
5713 "Control distribution of default information\n"
5714 "Distribute a default route\n")
5715
5716/* Default information originate. */
5717DEFUN (ospf_default_information_originate_metric_routemap,
5718 ospf_default_information_originate_metric_routemap_cmd,
5719 "default-information originate metric <0-16777214> route-map WORD",
5720 "Control distribution of default information\n"
5721 "Distribute a default route\n"
5722 "OSPF default metric\n"
5723 "OSPF metric\n"
5724 "Route map reference\n"
5725 "Pointer to route-map entries\n")
5726{
paul020709f2003-04-04 02:44:16 +00005727 struct ospf *ospf = vty->index;
paul718e3742002-12-13 20:15:29 +00005728 int metric = -1;
5729
5730 /* Get metric value. */
5731 if (argc >= 1)
5732 if (!str2metric (argv[0], &metric))
5733 return CMD_WARNING;
5734
5735 if (argc == 2)
paul020709f2003-04-04 02:44:16 +00005736 ospf_routemap_set (ospf, DEFAULT_ROUTE, argv[1]);
paul718e3742002-12-13 20:15:29 +00005737 else
paul020709f2003-04-04 02:44:16 +00005738 ospf_routemap_unset (ospf, DEFAULT_ROUTE);
paul718e3742002-12-13 20:15:29 +00005739
paul020709f2003-04-04 02:44:16 +00005740 return ospf_redistribute_default_set (ospf, DEFAULT_ORIGINATE_ZEBRA,
5741 -1, metric);
paul718e3742002-12-13 20:15:29 +00005742}
5743
5744/* Default information originate. */
5745DEFUN (ospf_default_information_originate_routemap,
5746 ospf_default_information_originate_routemap_cmd,
5747 "default-information originate route-map WORD",
5748 "Control distribution of default information\n"
5749 "Distribute a default route\n"
5750 "Route map reference\n"
5751 "Pointer to route-map entries\n")
5752{
paul020709f2003-04-04 02:44:16 +00005753 struct ospf *ospf = vty->index;
paul718e3742002-12-13 20:15:29 +00005754
paul020709f2003-04-04 02:44:16 +00005755 if (argc == 1)
5756 ospf_routemap_set (ospf, DEFAULT_ROUTE, argv[0]);
5757 else
5758 ospf_routemap_unset (ospf, DEFAULT_ROUTE);
5759
5760 return ospf_redistribute_default_set (ospf, DEFAULT_ORIGINATE_ZEBRA, -1, -1);
paul718e3742002-12-13 20:15:29 +00005761}
5762
5763DEFUN (ospf_default_information_originate_type_metric_routemap,
5764 ospf_default_information_originate_type_metric_routemap_cmd,
5765 "default-information originate metric-type (1|2) metric <0-16777214> route-map WORD",
5766 "Control distribution of default information\n"
5767 "Distribute a default route\n"
5768 "OSPF metric type for default routes\n"
5769 "Set OSPF External Type 1 metrics\n"
5770 "Set OSPF External Type 2 metrics\n"
5771 "OSPF default metric\n"
5772 "OSPF metric\n"
5773 "Route map reference\n"
5774 "Pointer to route-map entries\n")
5775{
paul020709f2003-04-04 02:44:16 +00005776 struct ospf *ospf = vty->index;
paul718e3742002-12-13 20:15:29 +00005777 int type = -1;
5778 int metric = -1;
5779
5780 /* Get metric type. */
5781 if (argc >= 1)
5782 if (!str2metric_type (argv[0], &type))
5783 return CMD_WARNING;
5784
5785 /* Get metric value. */
5786 if (argc >= 2)
5787 if (!str2metric (argv[1], &metric))
5788 return CMD_WARNING;
5789
5790 if (argc == 3)
paul020709f2003-04-04 02:44:16 +00005791 ospf_routemap_set (ospf, DEFAULT_ROUTE, argv[2]);
paul718e3742002-12-13 20:15:29 +00005792 else
paul020709f2003-04-04 02:44:16 +00005793 ospf_routemap_unset (ospf, DEFAULT_ROUTE);
paul718e3742002-12-13 20:15:29 +00005794
paul020709f2003-04-04 02:44:16 +00005795 return ospf_redistribute_default_set (ospf, DEFAULT_ORIGINATE_ZEBRA,
5796 type, metric);
paul718e3742002-12-13 20:15:29 +00005797}
5798
5799ALIAS (ospf_default_information_originate_type_metric_routemap,
5800 ospf_default_information_originate_type_metric_cmd,
5801 "default-information originate metric-type (1|2) metric <0-16777214>",
5802 "Control distribution of default information\n"
5803 "Distribute a default route\n"
5804 "OSPF metric type for default routes\n"
5805 "Set OSPF External Type 1 metrics\n"
5806 "Set OSPF External Type 2 metrics\n"
5807 "OSPF default metric\n"
5808 "OSPF metric\n")
5809
5810ALIAS (ospf_default_information_originate_type_metric_routemap,
5811 ospf_default_information_originate_type_cmd,
5812 "default-information originate metric-type (1|2)",
5813 "Control distribution of default information\n"
5814 "Distribute a default route\n"
5815 "OSPF metric type for default routes\n"
5816 "Set OSPF External Type 1 metrics\n"
5817 "Set OSPF External Type 2 metrics\n")
5818
5819DEFUN (ospf_default_information_originate_type_routemap,
5820 ospf_default_information_originate_type_routemap_cmd,
5821 "default-information originate metric-type (1|2) route-map WORD",
5822 "Control distribution of default information\n"
5823 "Distribute a default route\n"
5824 "OSPF metric type for default routes\n"
5825 "Set OSPF External Type 1 metrics\n"
5826 "Set OSPF External Type 2 metrics\n"
5827 "Route map reference\n"
5828 "Pointer to route-map entries\n")
5829{
paul020709f2003-04-04 02:44:16 +00005830 struct ospf *ospf = vty->index;
paul718e3742002-12-13 20:15:29 +00005831 int type = -1;
5832
5833 /* Get metric type. */
5834 if (argc >= 1)
5835 if (!str2metric_type (argv[0], &type))
5836 return CMD_WARNING;
5837
5838 if (argc == 2)
paul020709f2003-04-04 02:44:16 +00005839 ospf_routemap_set (ospf, DEFAULT_ROUTE, argv[1]);
paul718e3742002-12-13 20:15:29 +00005840 else
paul020709f2003-04-04 02:44:16 +00005841 ospf_routemap_unset (ospf, DEFAULT_ROUTE);
paul718e3742002-12-13 20:15:29 +00005842
paul020709f2003-04-04 02:44:16 +00005843 return ospf_redistribute_default_set (ospf, DEFAULT_ORIGINATE_ZEBRA,
5844 type, -1);
paul718e3742002-12-13 20:15:29 +00005845}
5846
5847DEFUN (ospf_default_information_originate_always_metric_type_routemap,
5848 ospf_default_information_originate_always_metric_type_routemap_cmd,
5849 "default-information originate always metric <0-16777214> metric-type (1|2) route-map WORD",
5850 "Control distribution of default information\n"
5851 "Distribute a default route\n"
5852 "Always advertise default route\n"
5853 "OSPF default metric\n"
5854 "OSPF metric\n"
5855 "OSPF metric type for default routes\n"
5856 "Set OSPF External Type 1 metrics\n"
5857 "Set OSPF External Type 2 metrics\n"
5858 "Route map reference\n"
5859 "Pointer to route-map entries\n")
5860{
paul020709f2003-04-04 02:44:16 +00005861 struct ospf *ospf = vty->index;
paul718e3742002-12-13 20:15:29 +00005862 int type = -1;
5863 int metric = -1;
5864
5865 /* Get metric value. */
5866 if (argc >= 1)
5867 if (!str2metric (argv[0], &metric))
5868 return CMD_WARNING;
5869
5870 /* Get metric type. */
5871 if (argc >= 2)
5872 if (!str2metric_type (argv[1], &type))
5873 return CMD_WARNING;
5874
5875 if (argc == 3)
paul020709f2003-04-04 02:44:16 +00005876 ospf_routemap_set (ospf, DEFAULT_ROUTE, argv[2]);
paul718e3742002-12-13 20:15:29 +00005877 else
paul020709f2003-04-04 02:44:16 +00005878 ospf_routemap_unset (ospf, DEFAULT_ROUTE);
paul718e3742002-12-13 20:15:29 +00005879
paul020709f2003-04-04 02:44:16 +00005880 return ospf_redistribute_default_set (ospf, DEFAULT_ORIGINATE_ALWAYS,
paul718e3742002-12-13 20:15:29 +00005881 type, metric);
5882}
5883
5884ALIAS (ospf_default_information_originate_always_metric_type_routemap,
5885 ospf_default_information_originate_always_metric_type_cmd,
5886 "default-information originate always metric <0-16777214> metric-type (1|2)",
5887 "Control distribution of default information\n"
5888 "Distribute a default route\n"
5889 "Always advertise default route\n"
5890 "OSPF default metric\n"
5891 "OSPF metric\n"
5892 "OSPF metric type for default routes\n"
5893 "Set OSPF External Type 1 metrics\n"
5894 "Set OSPF External Type 2 metrics\n")
5895
5896ALIAS (ospf_default_information_originate_always_metric_type_routemap,
5897 ospf_default_information_originate_always_metric_cmd,
5898 "default-information originate always metric <0-16777214>",
5899 "Control distribution of default information\n"
5900 "Distribute a default route\n"
5901 "Always advertise default route\n"
5902 "OSPF default metric\n"
5903 "OSPF metric\n"
5904 "OSPF metric type for default routes\n")
5905
5906ALIAS (ospf_default_information_originate_always_metric_type_routemap,
5907 ospf_default_information_originate_always_cmd,
5908 "default-information originate always",
5909 "Control distribution of default information\n"
5910 "Distribute a default route\n"
5911 "Always advertise default route\n")
5912
5913DEFUN (ospf_default_information_originate_always_metric_routemap,
5914 ospf_default_information_originate_always_metric_routemap_cmd,
5915 "default-information originate always metric <0-16777214> route-map WORD",
5916 "Control distribution of default information\n"
5917 "Distribute a default route\n"
5918 "Always advertise default route\n"
5919 "OSPF default metric\n"
5920 "OSPF metric\n"
5921 "Route map reference\n"
5922 "Pointer to route-map entries\n")
5923{
paul020709f2003-04-04 02:44:16 +00005924 struct ospf *ospf = vty->index;
paul718e3742002-12-13 20:15:29 +00005925 int metric = -1;
5926
5927 /* Get metric value. */
5928 if (argc >= 1)
5929 if (!str2metric (argv[0], &metric))
5930 return CMD_WARNING;
5931
5932 if (argc == 2)
paul020709f2003-04-04 02:44:16 +00005933 ospf_routemap_set (ospf, DEFAULT_ROUTE, argv[1]);
paul718e3742002-12-13 20:15:29 +00005934 else
paul020709f2003-04-04 02:44:16 +00005935 ospf_routemap_unset (ospf, DEFAULT_ROUTE);
paul718e3742002-12-13 20:15:29 +00005936
paul020709f2003-04-04 02:44:16 +00005937 return ospf_redistribute_default_set (ospf, DEFAULT_ORIGINATE_ALWAYS,
5938 -1, metric);
paul718e3742002-12-13 20:15:29 +00005939}
5940
5941DEFUN (ospf_default_information_originate_always_routemap,
5942 ospf_default_information_originate_always_routemap_cmd,
5943 "default-information originate always route-map WORD",
5944 "Control distribution of default information\n"
5945 "Distribute a default route\n"
5946 "Always advertise default route\n"
5947 "Route map reference\n"
5948 "Pointer to route-map entries\n")
5949{
paul020709f2003-04-04 02:44:16 +00005950 struct ospf *ospf = vty->index;
paul718e3742002-12-13 20:15:29 +00005951
paul020709f2003-04-04 02:44:16 +00005952 if (argc == 1)
5953 ospf_routemap_set (ospf, DEFAULT_ROUTE, argv[0]);
5954 else
5955 ospf_routemap_unset (ospf, DEFAULT_ROUTE);
5956
5957 return ospf_redistribute_default_set (ospf, DEFAULT_ORIGINATE_ALWAYS, -1, -1);
paul718e3742002-12-13 20:15:29 +00005958}
5959
5960DEFUN (ospf_default_information_originate_always_type_metric_routemap,
5961 ospf_default_information_originate_always_type_metric_routemap_cmd,
5962 "default-information originate always metric-type (1|2) metric <0-16777214> route-map WORD",
5963 "Control distribution of default information\n"
5964 "Distribute a default route\n"
5965 "Always advertise default route\n"
5966 "OSPF metric type for default routes\n"
5967 "Set OSPF External Type 1 metrics\n"
5968 "Set OSPF External Type 2 metrics\n"
5969 "OSPF default metric\n"
5970 "OSPF metric\n"
5971 "Route map reference\n"
5972 "Pointer to route-map entries\n")
5973{
paul020709f2003-04-04 02:44:16 +00005974 struct ospf *ospf = vty->index;
paul718e3742002-12-13 20:15:29 +00005975 int type = -1;
5976 int metric = -1;
5977
5978 /* Get metric type. */
5979 if (argc >= 1)
5980 if (!str2metric_type (argv[0], &type))
5981 return CMD_WARNING;
5982
5983 /* Get metric value. */
5984 if (argc >= 2)
5985 if (!str2metric (argv[1], &metric))
5986 return CMD_WARNING;
5987
5988 if (argc == 3)
paul020709f2003-04-04 02:44:16 +00005989 ospf_routemap_set (ospf, DEFAULT_ROUTE, argv[2]);
paul718e3742002-12-13 20:15:29 +00005990 else
paul020709f2003-04-04 02:44:16 +00005991 ospf_routemap_unset (ospf, DEFAULT_ROUTE);
paul718e3742002-12-13 20:15:29 +00005992
paul020709f2003-04-04 02:44:16 +00005993 return ospf_redistribute_default_set (ospf, DEFAULT_ORIGINATE_ALWAYS,
paul718e3742002-12-13 20:15:29 +00005994 type, metric);
5995}
5996
5997ALIAS (ospf_default_information_originate_always_type_metric_routemap,
5998 ospf_default_information_originate_always_type_metric_cmd,
5999 "default-information originate always metric-type (1|2) metric <0-16777214>",
6000 "Control distribution of default information\n"
6001 "Distribute a default route\n"
6002 "Always advertise default route\n"
6003 "OSPF metric type for default routes\n"
6004 "Set OSPF External Type 1 metrics\n"
6005 "Set OSPF External Type 2 metrics\n"
6006 "OSPF default metric\n"
6007 "OSPF metric\n")
6008
6009ALIAS (ospf_default_information_originate_always_type_metric_routemap,
6010 ospf_default_information_originate_always_type_cmd,
6011 "default-information originate always metric-type (1|2)",
6012 "Control distribution of default information\n"
6013 "Distribute a default route\n"
6014 "Always advertise default route\n"
6015 "OSPF metric type for default routes\n"
6016 "Set OSPF External Type 1 metrics\n"
6017 "Set OSPF External Type 2 metrics\n")
6018
6019DEFUN (ospf_default_information_originate_always_type_routemap,
6020 ospf_default_information_originate_always_type_routemap_cmd,
6021 "default-information originate always metric-type (1|2) route-map WORD",
6022 "Control distribution of default information\n"
6023 "Distribute a default route\n"
6024 "Always advertise default route\n"
6025 "OSPF metric type for default routes\n"
6026 "Set OSPF External Type 1 metrics\n"
6027 "Set OSPF External Type 2 metrics\n"
6028 "Route map reference\n"
6029 "Pointer to route-map entries\n")
6030{
paul020709f2003-04-04 02:44:16 +00006031 struct ospf *ospf = vty->index;
paul718e3742002-12-13 20:15:29 +00006032 int type = -1;
6033
6034 /* Get metric type. */
6035 if (argc >= 1)
6036 if (!str2metric_type (argv[0], &type))
6037 return CMD_WARNING;
6038
6039 if (argc == 2)
paul020709f2003-04-04 02:44:16 +00006040 ospf_routemap_set (ospf, DEFAULT_ROUTE, argv[1]);
paul718e3742002-12-13 20:15:29 +00006041 else
paul020709f2003-04-04 02:44:16 +00006042 ospf_routemap_unset (ospf, DEFAULT_ROUTE);
paul718e3742002-12-13 20:15:29 +00006043
paul020709f2003-04-04 02:44:16 +00006044 return ospf_redistribute_default_set (ospf, DEFAULT_ORIGINATE_ALWAYS,
paul718e3742002-12-13 20:15:29 +00006045 type, -1);
6046}
6047
6048DEFUN (no_ospf_default_information_originate,
6049 no_ospf_default_information_originate_cmd,
6050 "no default-information originate",
6051 NO_STR
6052 "Control distribution of default information\n"
6053 "Distribute a default route\n")
6054{
paul68980082003-03-25 05:07:42 +00006055 struct ospf *ospf = vty->index;
paul718e3742002-12-13 20:15:29 +00006056 struct prefix_ipv4 p;
6057 struct in_addr nexthop;
6058
6059 p.family = AF_INET;
6060 p.prefix.s_addr = 0;
6061 p.prefixlen = 0;
6062
paul68980082003-03-25 05:07:42 +00006063 ospf_external_lsa_flush (ospf, DEFAULT_ROUTE, &p, 0, nexthop);
paul718e3742002-12-13 20:15:29 +00006064
6065 if (EXTERNAL_INFO (DEFAULT_ROUTE)) {
6066 ospf_external_info_delete (DEFAULT_ROUTE, p);
6067 route_table_finish (EXTERNAL_INFO (DEFAULT_ROUTE));
6068 EXTERNAL_INFO (DEFAULT_ROUTE) = NULL;
6069 }
6070
paul020709f2003-04-04 02:44:16 +00006071 ospf_routemap_unset (ospf, DEFAULT_ROUTE);
6072 return ospf_redistribute_default_unset (ospf);
paul718e3742002-12-13 20:15:29 +00006073}
6074
6075DEFUN (ospf_default_metric,
6076 ospf_default_metric_cmd,
6077 "default-metric <0-16777214>",
6078 "Set metric of redistributed routes\n"
6079 "Default metric\n")
6080{
paul68980082003-03-25 05:07:42 +00006081 struct ospf *ospf = vty->index;
paul718e3742002-12-13 20:15:29 +00006082 int metric = -1;
6083
6084 if (!str2metric (argv[0], &metric))
6085 return CMD_WARNING;
6086
paul68980082003-03-25 05:07:42 +00006087 ospf->default_metric = metric;
paul718e3742002-12-13 20:15:29 +00006088
6089 return CMD_SUCCESS;
6090}
6091
6092DEFUN (no_ospf_default_metric,
6093 no_ospf_default_metric_cmd,
6094 "no default-metric",
6095 NO_STR
6096 "Set metric of redistributed routes\n")
6097{
paul68980082003-03-25 05:07:42 +00006098 struct ospf *ospf = vty->index;
6099
6100 ospf->default_metric = -1;
6101
paul718e3742002-12-13 20:15:29 +00006102 return CMD_SUCCESS;
6103}
6104
6105ALIAS (no_ospf_default_metric,
6106 no_ospf_default_metric_val_cmd,
6107 "no default-metric <0-16777214>",
6108 NO_STR
6109 "Set metric of redistributed routes\n"
6110 "Default metric\n")
6111
6112DEFUN (ospf_distance,
6113 ospf_distance_cmd,
6114 "distance <1-255>",
6115 "Define an administrative distance\n"
6116 "OSPF Administrative distance\n")
6117{
paul68980082003-03-25 05:07:42 +00006118 struct ospf *ospf = vty->index;
6119
6120 ospf->distance_all = atoi (argv[0]);
6121
paul718e3742002-12-13 20:15:29 +00006122 return CMD_SUCCESS;
6123}
6124
6125DEFUN (no_ospf_distance,
6126 no_ospf_distance_cmd,
6127 "no distance <1-255>",
6128 NO_STR
6129 "Define an administrative distance\n"
6130 "OSPF Administrative distance\n")
6131{
paul68980082003-03-25 05:07:42 +00006132 struct ospf *ospf = vty->index;
6133
6134 ospf->distance_all = 0;
6135
paul718e3742002-12-13 20:15:29 +00006136 return CMD_SUCCESS;
6137}
6138
6139DEFUN (no_ospf_distance_ospf,
6140 no_ospf_distance_ospf_cmd,
6141 "no distance ospf",
6142 NO_STR
6143 "Define an administrative distance\n"
6144 "OSPF Administrative distance\n"
6145 "OSPF Distance\n")
6146{
paul68980082003-03-25 05:07:42 +00006147 struct ospf *ospf = vty->index;
6148
6149 ospf->distance_intra = 0;
6150 ospf->distance_inter = 0;
6151 ospf->distance_external = 0;
6152
paul718e3742002-12-13 20:15:29 +00006153 return CMD_SUCCESS;
6154}
6155
6156DEFUN (ospf_distance_ospf_intra,
6157 ospf_distance_ospf_intra_cmd,
6158 "distance ospf intra-area <1-255>",
6159 "Define an administrative distance\n"
6160 "OSPF Administrative distance\n"
6161 "Intra-area routes\n"
6162 "Distance for intra-area routes\n")
6163{
paul68980082003-03-25 05:07:42 +00006164 struct ospf *ospf = vty->index;
6165
6166 ospf->distance_intra = atoi (argv[0]);
6167
paul718e3742002-12-13 20:15:29 +00006168 return CMD_SUCCESS;
6169}
6170
6171DEFUN (ospf_distance_ospf_intra_inter,
6172 ospf_distance_ospf_intra_inter_cmd,
6173 "distance ospf intra-area <1-255> inter-area <1-255>",
6174 "Define an administrative distance\n"
6175 "OSPF Administrative distance\n"
6176 "Intra-area routes\n"
6177 "Distance for intra-area routes\n"
6178 "Inter-area routes\n"
6179 "Distance for inter-area routes\n")
6180{
paul68980082003-03-25 05:07:42 +00006181 struct ospf *ospf = vty->index;
6182
6183 ospf->distance_intra = atoi (argv[0]);
6184 ospf->distance_inter = atoi (argv[1]);
6185
paul718e3742002-12-13 20:15:29 +00006186 return CMD_SUCCESS;
6187}
6188
6189DEFUN (ospf_distance_ospf_intra_external,
6190 ospf_distance_ospf_intra_external_cmd,
6191 "distance ospf intra-area <1-255> external <1-255>",
6192 "Define an administrative distance\n"
6193 "OSPF Administrative distance\n"
6194 "Intra-area routes\n"
6195 "Distance for intra-area routes\n"
6196 "External routes\n"
6197 "Distance for external routes\n")
6198{
paul68980082003-03-25 05:07:42 +00006199 struct ospf *ospf = vty->index;
6200
6201 ospf->distance_intra = atoi (argv[0]);
6202 ospf->distance_external = atoi (argv[1]);
6203
paul718e3742002-12-13 20:15:29 +00006204 return CMD_SUCCESS;
6205}
6206
6207DEFUN (ospf_distance_ospf_intra_inter_external,
6208 ospf_distance_ospf_intra_inter_external_cmd,
6209 "distance ospf intra-area <1-255> inter-area <1-255> external <1-255>",
6210 "Define an administrative distance\n"
6211 "OSPF Administrative distance\n"
6212 "Intra-area routes\n"
6213 "Distance for intra-area routes\n"
6214 "Inter-area routes\n"
6215 "Distance for inter-area routes\n"
6216 "External routes\n"
6217 "Distance for external routes\n")
6218{
paul68980082003-03-25 05:07:42 +00006219 struct ospf *ospf = vty->index;
6220
6221 ospf->distance_intra = atoi (argv[0]);
6222 ospf->distance_inter = atoi (argv[1]);
6223 ospf->distance_external = atoi (argv[2]);
6224
paul718e3742002-12-13 20:15:29 +00006225 return CMD_SUCCESS;
6226}
6227
6228DEFUN (ospf_distance_ospf_intra_external_inter,
6229 ospf_distance_ospf_intra_external_inter_cmd,
6230 "distance ospf intra-area <1-255> external <1-255> inter-area <1-255>",
6231 "Define an administrative distance\n"
6232 "OSPF Administrative distance\n"
6233 "Intra-area routes\n"
6234 "Distance for intra-area routes\n"
6235 "External routes\n"
6236 "Distance for external routes\n"
6237 "Inter-area routes\n"
6238 "Distance for inter-area routes\n")
6239{
paul68980082003-03-25 05:07:42 +00006240 struct ospf *ospf = vty->index;
6241
6242 ospf->distance_intra = atoi (argv[0]);
6243 ospf->distance_external = atoi (argv[1]);
6244 ospf->distance_inter = atoi (argv[2]);
6245
paul718e3742002-12-13 20:15:29 +00006246 return CMD_SUCCESS;
6247}
6248
6249DEFUN (ospf_distance_ospf_inter,
6250 ospf_distance_ospf_inter_cmd,
6251 "distance ospf inter-area <1-255>",
6252 "Define an administrative distance\n"
6253 "OSPF Administrative distance\n"
6254 "Inter-area routes\n"
6255 "Distance for inter-area routes\n")
6256{
paul68980082003-03-25 05:07:42 +00006257 struct ospf *ospf = vty->index;
6258
6259 ospf->distance_inter = atoi (argv[0]);
6260
paul718e3742002-12-13 20:15:29 +00006261 return CMD_SUCCESS;
6262}
6263
6264DEFUN (ospf_distance_ospf_inter_intra,
6265 ospf_distance_ospf_inter_intra_cmd,
6266 "distance ospf inter-area <1-255> intra-area <1-255>",
6267 "Define an administrative distance\n"
6268 "OSPF Administrative distance\n"
6269 "Inter-area routes\n"
6270 "Distance for inter-area routes\n"
6271 "Intra-area routes\n"
6272 "Distance for intra-area routes\n")
6273{
paul68980082003-03-25 05:07:42 +00006274 struct ospf *ospf = vty->index;
6275
6276 ospf->distance_inter = atoi (argv[0]);
6277 ospf->distance_intra = atoi (argv[1]);
6278
paul718e3742002-12-13 20:15:29 +00006279 return CMD_SUCCESS;
6280}
6281
6282DEFUN (ospf_distance_ospf_inter_external,
6283 ospf_distance_ospf_inter_external_cmd,
6284 "distance ospf inter-area <1-255> external <1-255>",
6285 "Define an administrative distance\n"
6286 "OSPF Administrative distance\n"
6287 "Inter-area routes\n"
6288 "Distance for inter-area routes\n"
6289 "External routes\n"
6290 "Distance for external routes\n")
6291{
paul68980082003-03-25 05:07:42 +00006292 struct ospf *ospf = vty->index;
6293
6294 ospf->distance_inter = atoi (argv[0]);
6295 ospf->distance_external = atoi (argv[1]);
6296
paul718e3742002-12-13 20:15:29 +00006297 return CMD_SUCCESS;
6298}
6299
6300DEFUN (ospf_distance_ospf_inter_intra_external,
6301 ospf_distance_ospf_inter_intra_external_cmd,
6302 "distance ospf inter-area <1-255> intra-area <1-255> external <1-255>",
6303 "Define an administrative distance\n"
6304 "OSPF Administrative distance\n"
6305 "Inter-area routes\n"
6306 "Distance for inter-area routes\n"
6307 "Intra-area routes\n"
6308 "Distance for intra-area routes\n"
6309 "External routes\n"
6310 "Distance for external routes\n")
6311{
paul68980082003-03-25 05:07:42 +00006312 struct ospf *ospf = vty->index;
6313
6314 ospf->distance_inter = atoi (argv[0]);
6315 ospf->distance_intra = atoi (argv[1]);
6316 ospf->distance_external = atoi (argv[2]);
6317
paul718e3742002-12-13 20:15:29 +00006318 return CMD_SUCCESS;
6319}
6320
6321DEFUN (ospf_distance_ospf_inter_external_intra,
6322 ospf_distance_ospf_inter_external_intra_cmd,
6323 "distance ospf inter-area <1-255> external <1-255> intra-area <1-255>",
6324 "Define an administrative distance\n"
6325 "OSPF Administrative distance\n"
6326 "Inter-area routes\n"
6327 "Distance for inter-area routes\n"
6328 "External routes\n"
6329 "Distance for external routes\n"
6330 "Intra-area routes\n"
6331 "Distance for intra-area routes\n")
6332{
paul68980082003-03-25 05:07:42 +00006333 struct ospf *ospf = vty->index;
6334
6335 ospf->distance_inter = atoi (argv[0]);
6336 ospf->distance_external = atoi (argv[1]);
6337 ospf->distance_intra = atoi (argv[2]);
6338
paul718e3742002-12-13 20:15:29 +00006339 return CMD_SUCCESS;
6340}
6341
6342DEFUN (ospf_distance_ospf_external,
6343 ospf_distance_ospf_external_cmd,
6344 "distance ospf external <1-255>",
6345 "Define an administrative distance\n"
6346 "OSPF Administrative distance\n"
6347 "External routes\n"
6348 "Distance for external routes\n")
6349{
paul68980082003-03-25 05:07:42 +00006350 struct ospf *ospf = vty->index;
6351
6352 ospf->distance_external = atoi (argv[0]);
6353
paul718e3742002-12-13 20:15:29 +00006354 return CMD_SUCCESS;
6355}
6356
6357DEFUN (ospf_distance_ospf_external_intra,
6358 ospf_distance_ospf_external_intra_cmd,
6359 "distance ospf external <1-255> intra-area <1-255>",
6360 "Define an administrative distance\n"
6361 "OSPF Administrative distance\n"
6362 "External routes\n"
6363 "Distance for external routes\n"
6364 "Intra-area routes\n"
6365 "Distance for intra-area routes\n")
6366{
paul68980082003-03-25 05:07:42 +00006367 struct ospf *ospf = vty->index;
6368
6369 ospf->distance_external = atoi (argv[0]);
6370 ospf->distance_intra = atoi (argv[1]);
6371
paul718e3742002-12-13 20:15:29 +00006372 return CMD_SUCCESS;
6373}
6374
6375DEFUN (ospf_distance_ospf_external_inter,
6376 ospf_distance_ospf_external_inter_cmd,
6377 "distance ospf external <1-255> inter-area <1-255>",
6378 "Define an administrative distance\n"
6379 "OSPF Administrative distance\n"
6380 "External routes\n"
6381 "Distance for external routes\n"
6382 "Inter-area routes\n"
6383 "Distance for inter-area routes\n")
6384{
paul68980082003-03-25 05:07:42 +00006385 struct ospf *ospf = vty->index;
6386
6387 ospf->distance_external = atoi (argv[0]);
6388 ospf->distance_inter = atoi (argv[1]);
6389
paul718e3742002-12-13 20:15:29 +00006390 return CMD_SUCCESS;
6391}
6392
6393DEFUN (ospf_distance_ospf_external_intra_inter,
6394 ospf_distance_ospf_external_intra_inter_cmd,
6395 "distance ospf external <1-255> intra-area <1-255> inter-area <1-255>",
6396 "Define an administrative distance\n"
6397 "OSPF Administrative distance\n"
6398 "External routes\n"
6399 "Distance for external routes\n"
6400 "Intra-area routes\n"
6401 "Distance for intra-area routes\n"
6402 "Inter-area routes\n"
6403 "Distance for inter-area routes\n")
6404{
paul68980082003-03-25 05:07:42 +00006405 struct ospf *ospf = vty->index;
6406
6407 ospf->distance_external = atoi (argv[0]);
6408 ospf->distance_intra = atoi (argv[1]);
6409 ospf->distance_inter = atoi (argv[2]);
6410
paul718e3742002-12-13 20:15:29 +00006411 return CMD_SUCCESS;
6412}
6413
6414DEFUN (ospf_distance_ospf_external_inter_intra,
6415 ospf_distance_ospf_external_inter_intra_cmd,
6416 "distance ospf external <1-255> inter-area <1-255> intra-area <1-255>",
6417 "Define an administrative distance\n"
6418 "OSPF Administrative distance\n"
6419 "External routes\n"
6420 "Distance for external routes\n"
6421 "Inter-area routes\n"
6422 "Distance for inter-area routes\n"
6423 "Intra-area routes\n"
6424 "Distance for intra-area routes\n")
6425{
paul68980082003-03-25 05:07:42 +00006426 struct ospf *ospf = vty->index;
6427
6428 ospf->distance_external = atoi (argv[0]);
6429 ospf->distance_inter = atoi (argv[1]);
6430 ospf->distance_intra = atoi (argv[2]);
6431
paul718e3742002-12-13 20:15:29 +00006432 return CMD_SUCCESS;
6433}
6434
6435DEFUN (ospf_distance_source,
6436 ospf_distance_source_cmd,
6437 "distance <1-255> A.B.C.D/M",
6438 "Administrative distance\n"
6439 "Distance value\n"
6440 "IP source prefix\n")
6441{
paul020709f2003-04-04 02:44:16 +00006442 struct ospf *ospf = vty->index;
6443
6444 ospf_distance_set (vty, ospf, argv[0], argv[1], NULL);
paul68980082003-03-25 05:07:42 +00006445
paul718e3742002-12-13 20:15:29 +00006446 return CMD_SUCCESS;
6447}
6448
6449DEFUN (no_ospf_distance_source,
6450 no_ospf_distance_source_cmd,
6451 "no distance <1-255> A.B.C.D/M",
6452 NO_STR
6453 "Administrative distance\n"
6454 "Distance value\n"
6455 "IP source prefix\n")
6456{
paul020709f2003-04-04 02:44:16 +00006457 struct ospf *ospf = vty->index;
6458
6459 ospf_distance_unset (vty, ospf, argv[0], argv[1], NULL);
6460
paul718e3742002-12-13 20:15:29 +00006461 return CMD_SUCCESS;
6462}
6463
6464DEFUN (ospf_distance_source_access_list,
6465 ospf_distance_source_access_list_cmd,
6466 "distance <1-255> A.B.C.D/M WORD",
6467 "Administrative distance\n"
6468 "Distance value\n"
6469 "IP source prefix\n"
6470 "Access list name\n")
6471{
paul020709f2003-04-04 02:44:16 +00006472 struct ospf *ospf = vty->index;
6473
6474 ospf_distance_set (vty, ospf, argv[0], argv[1], argv[2]);
6475
paul718e3742002-12-13 20:15:29 +00006476 return CMD_SUCCESS;
6477}
6478
6479DEFUN (no_ospf_distance_source_access_list,
6480 no_ospf_distance_source_access_list_cmd,
6481 "no distance <1-255> A.B.C.D/M WORD",
6482 NO_STR
6483 "Administrative distance\n"
6484 "Distance value\n"
6485 "IP source prefix\n"
6486 "Access list name\n")
6487{
paul020709f2003-04-04 02:44:16 +00006488 struct ospf *ospf = vty->index;
6489
6490 ospf_distance_unset (vty, ospf, argv[0], argv[1], argv[2]);
6491
paul718e3742002-12-13 20:15:29 +00006492 return CMD_SUCCESS;
6493}
6494
paul4dadc292005-05-06 21:37:42 +00006495static void
paul718e3742002-12-13 20:15:29 +00006496show_ip_ospf_route_network (struct vty *vty, struct route_table *rt)
6497{
6498 struct route_node *rn;
6499 struct ospf_route *or;
paul1eb8ef22005-04-07 07:30:20 +00006500 struct listnode *pnode, *pnnode;
paul718e3742002-12-13 20:15:29 +00006501 struct ospf_path *path;
6502
6503 vty_out (vty, "============ OSPF network routing table ============%s",
6504 VTY_NEWLINE);
6505
6506 for (rn = route_top (rt); rn; rn = route_next (rn))
6507 if ((or = rn->info) != NULL)
6508 {
6509 char buf1[19];
6510 snprintf (buf1, 19, "%s/%d",
6511 inet_ntoa (rn->p.u.prefix4), rn->p.prefixlen);
6512
6513 switch (or->path_type)
6514 {
6515 case OSPF_PATH_INTER_AREA:
6516 if (or->type == OSPF_DESTINATION_NETWORK)
6517 vty_out (vty, "N IA %-18s [%d] area: %s%s", buf1, or->cost,
6518 inet_ntoa (or->u.std.area_id), VTY_NEWLINE);
6519 else if (or->type == OSPF_DESTINATION_DISCARD)
6520 vty_out (vty, "D IA %-18s Discard entry%s", buf1, VTY_NEWLINE);
6521 break;
6522 case OSPF_PATH_INTRA_AREA:
6523 vty_out (vty, "N %-18s [%d] area: %s%s", buf1, or->cost,
6524 inet_ntoa (or->u.std.area_id), VTY_NEWLINE);
6525 break;
6526 default:
6527 break;
6528 }
6529
6530 if (or->type == OSPF_DESTINATION_NETWORK)
paul1eb8ef22005-04-07 07:30:20 +00006531 for (ALL_LIST_ELEMENTS (or->paths, pnode, pnnode, path))
paul96735ee2003-08-10 02:51:22 +00006532 {
hasso54bedb52005-08-17 13:31:47 +00006533 if (path->oi != NULL && ospf_if_exists(path->oi))
paul96735ee2003-08-10 02:51:22 +00006534 {
6535 if (path->nexthop.s_addr == 0)
6536 vty_out (vty, "%24s directly attached to %s%s",
6537 "", path->oi->ifp->name, VTY_NEWLINE);
6538 else
6539 vty_out (vty, "%24s via %s, %s%s", "",
6540 inet_ntoa (path->nexthop), path->oi->ifp->name,
6541 VTY_NEWLINE);
6542 }
6543 }
paul718e3742002-12-13 20:15:29 +00006544 }
6545 vty_out (vty, "%s", VTY_NEWLINE);
6546}
6547
paul4dadc292005-05-06 21:37:42 +00006548static void
paul718e3742002-12-13 20:15:29 +00006549show_ip_ospf_route_router (struct vty *vty, struct route_table *rtrs)
6550{
6551 struct route_node *rn;
6552 struct ospf_route *or;
paul1eb8ef22005-04-07 07:30:20 +00006553 struct listnode *pnode;
6554 struct listnode *node;
paul718e3742002-12-13 20:15:29 +00006555 struct ospf_path *path;
6556
6557 vty_out (vty, "============ OSPF router routing table =============%s",
6558 VTY_NEWLINE);
6559 for (rn = route_top (rtrs); rn; rn = route_next (rn))
6560 if (rn->info)
6561 {
6562 int flag = 0;
6563
6564 vty_out (vty, "R %-15s ", inet_ntoa (rn->p.u.prefix4));
6565
paul1eb8ef22005-04-07 07:30:20 +00006566 for (ALL_LIST_ELEMENTS_RO ((struct list *)rn->info, node, or))
6567 {
6568 if (flag++)
6569 vty_out (vty, "%24s", "");
paul718e3742002-12-13 20:15:29 +00006570
paul1eb8ef22005-04-07 07:30:20 +00006571 /* Show path. */
6572 vty_out (vty, "%s [%d] area: %s",
6573 (or->path_type == OSPF_PATH_INTER_AREA ? "IA" : " "),
6574 or->cost, inet_ntoa (or->u.std.area_id));
6575 /* Show flags. */
6576 vty_out (vty, "%s%s%s",
6577 (or->u.std.flags & ROUTER_LSA_BORDER ? ", ABR" : ""),
6578 (or->u.std.flags & ROUTER_LSA_EXTERNAL ? ", ASBR" : ""),
6579 VTY_NEWLINE);
6580
6581 for (ALL_LIST_ELEMENTS_RO (or->paths, pnode, path))
6582 {
hasso54bedb52005-08-17 13:31:47 +00006583 if (path->oi != NULL && ospf_if_exists(path->oi))
6584 {
6585 if (path->nexthop.s_addr == 0)
6586 vty_out (vty, "%24s directly attached to %s%s",
6587 "", path->oi->ifp->name, VTY_NEWLINE);
6588 else
6589 vty_out (vty, "%24s via %s, %s%s", "",
6590 inet_ntoa (path->nexthop),
6591 path->oi->ifp->name, VTY_NEWLINE);
6592 }
paul1eb8ef22005-04-07 07:30:20 +00006593 }
6594 }
paul718e3742002-12-13 20:15:29 +00006595 }
6596 vty_out (vty, "%s", VTY_NEWLINE);
6597}
6598
paul4dadc292005-05-06 21:37:42 +00006599static void
paul718e3742002-12-13 20:15:29 +00006600show_ip_ospf_route_external (struct vty *vty, struct route_table *rt)
6601{
6602 struct route_node *rn;
6603 struct ospf_route *er;
paul1eb8ef22005-04-07 07:30:20 +00006604 struct listnode *pnode, *pnnode;
paul718e3742002-12-13 20:15:29 +00006605 struct ospf_path *path;
6606
6607 vty_out (vty, "============ OSPF external routing table ===========%s",
6608 VTY_NEWLINE);
6609 for (rn = route_top (rt); rn; rn = route_next (rn))
6610 if ((er = rn->info) != NULL)
6611 {
6612 char buf1[19];
6613 snprintf (buf1, 19, "%s/%d",
6614 inet_ntoa (rn->p.u.prefix4), rn->p.prefixlen);
6615
6616 switch (er->path_type)
6617 {
6618 case OSPF_PATH_TYPE1_EXTERNAL:
6619 vty_out (vty, "N E1 %-18s [%d] tag: %u%s", buf1,
6620 er->cost, er->u.ext.tag, VTY_NEWLINE);
6621 break;
6622 case OSPF_PATH_TYPE2_EXTERNAL:
6623 vty_out (vty, "N E2 %-18s [%d/%d] tag: %u%s", buf1, er->cost,
6624 er->u.ext.type2_cost, er->u.ext.tag, VTY_NEWLINE);
6625 break;
6626 }
6627
paul1eb8ef22005-04-07 07:30:20 +00006628 for (ALL_LIST_ELEMENTS (er->paths, pnode, pnnode, path))
paul718e3742002-12-13 20:15:29 +00006629 {
hasso54bedb52005-08-17 13:31:47 +00006630 if (path->oi != NULL && ospf_if_exists(path->oi))
paul718e3742002-12-13 20:15:29 +00006631 {
6632 if (path->nexthop.s_addr == 0)
paul96735ee2003-08-10 02:51:22 +00006633 vty_out (vty, "%24s directly attached to %s%s",
6634 "", path->oi->ifp->name, VTY_NEWLINE);
6635 else
6636 vty_out (vty, "%24s via %s, %s%s", "",
6637 inet_ntoa (path->nexthop), path->oi->ifp->name,
6638 VTY_NEWLINE);
paul718e3742002-12-13 20:15:29 +00006639 }
6640 }
6641 }
6642 vty_out (vty, "%s", VTY_NEWLINE);
6643}
6644
paul718e3742002-12-13 20:15:29 +00006645DEFUN (show_ip_ospf_border_routers,
6646 show_ip_ospf_border_routers_cmd,
6647 "show ip ospf border-routers",
6648 SHOW_STR
6649 IP_STR
6650 "show all the ABR's and ASBR's\n"
6651 "for this area\n")
6652{
paul020709f2003-04-04 02:44:16 +00006653 struct ospf *ospf;
paul68980082003-03-25 05:07:42 +00006654
paul020709f2003-04-04 02:44:16 +00006655 ospf = ospf_lookup ();
paul68980082003-03-25 05:07:42 +00006656 if (ospf == NULL)
paul718e3742002-12-13 20:15:29 +00006657 {
6658 vty_out (vty, "OSPF is not enabled%s", VTY_NEWLINE);
6659 return CMD_SUCCESS;
6660 }
6661
paul68980082003-03-25 05:07:42 +00006662 if (ospf->new_table == NULL)
paul718e3742002-12-13 20:15:29 +00006663 {
6664 vty_out (vty, "No OSPF routing information exist%s", VTY_NEWLINE);
6665 return CMD_SUCCESS;
6666 }
6667
6668 /* Show Network routes.
paul020709f2003-04-04 02:44:16 +00006669 show_ip_ospf_route_network (vty, ospf->new_table); */
paul718e3742002-12-13 20:15:29 +00006670
6671 /* Show Router routes. */
paul68980082003-03-25 05:07:42 +00006672 show_ip_ospf_route_router (vty, ospf->new_rtrs);
paul718e3742002-12-13 20:15:29 +00006673
6674 return CMD_SUCCESS;
6675}
paul718e3742002-12-13 20:15:29 +00006676
6677DEFUN (show_ip_ospf_route,
6678 show_ip_ospf_route_cmd,
6679 "show ip ospf route",
6680 SHOW_STR
6681 IP_STR
6682 "OSPF information\n"
6683 "OSPF routing table\n")
6684{
paul020709f2003-04-04 02:44:16 +00006685 struct ospf *ospf;
paul68980082003-03-25 05:07:42 +00006686
paul020709f2003-04-04 02:44:16 +00006687 ospf = ospf_lookup ();
paul68980082003-03-25 05:07:42 +00006688 if (ospf == NULL)
paul718e3742002-12-13 20:15:29 +00006689 {
6690 vty_out (vty, "OSPF is not enabled%s", VTY_NEWLINE);
6691 return CMD_SUCCESS;
6692 }
6693
paul68980082003-03-25 05:07:42 +00006694 if (ospf->new_table == NULL)
paul718e3742002-12-13 20:15:29 +00006695 {
6696 vty_out (vty, "No OSPF routing information exist%s", VTY_NEWLINE);
6697 return CMD_SUCCESS;
6698 }
6699
6700 /* Show Network routes. */
paul68980082003-03-25 05:07:42 +00006701 show_ip_ospf_route_network (vty, ospf->new_table);
paul718e3742002-12-13 20:15:29 +00006702
6703 /* Show Router routes. */
paul68980082003-03-25 05:07:42 +00006704 show_ip_ospf_route_router (vty, ospf->new_rtrs);
paul718e3742002-12-13 20:15:29 +00006705
6706 /* Show AS External routes. */
paul68980082003-03-25 05:07:42 +00006707 show_ip_ospf_route_external (vty, ospf->old_external_route);
paul718e3742002-12-13 20:15:29 +00006708
6709 return CMD_SUCCESS;
6710}
6711
6712
hassoeb1ce602004-10-08 08:17:22 +00006713const char *ospf_abr_type_str[] =
paul718e3742002-12-13 20:15:29 +00006714{
6715 "unknown",
6716 "standard",
6717 "ibm",
6718 "cisco",
6719 "shortcut"
6720};
6721
hassoeb1ce602004-10-08 08:17:22 +00006722const char *ospf_shortcut_mode_str[] =
paul718e3742002-12-13 20:15:29 +00006723{
6724 "default",
6725 "enable",
6726 "disable"
6727};
6728
6729
paul4dadc292005-05-06 21:37:42 +00006730static void
paul718e3742002-12-13 20:15:29 +00006731area_id2str (char *buf, int length, struct ospf_area *area)
6732{
6733 memset (buf, 0, length);
6734
6735 if (area->format == OSPF_AREA_ID_FORMAT_ADDRESS)
6736 strncpy (buf, inet_ntoa (area->area_id), length);
6737 else
6738 sprintf (buf, "%lu", (unsigned long) ntohl (area->area_id.s_addr));
6739}
6740
6741
hassoeb1ce602004-10-08 08:17:22 +00006742const char *ospf_int_type_str[] =
paul718e3742002-12-13 20:15:29 +00006743{
6744 "unknown", /* should never be used. */
6745 "point-to-point",
6746 "broadcast",
6747 "non-broadcast",
6748 "point-to-multipoint",
6749 "virtual-link", /* should never be used. */
6750 "loopback"
6751};
6752
6753/* Configuration write function for ospfd. */
paul4dadc292005-05-06 21:37:42 +00006754static int
paul718e3742002-12-13 20:15:29 +00006755config_write_interface (struct vty *vty)
6756{
hasso52dc7ee2004-09-23 19:18:23 +00006757 struct listnode *n1, *n2;
paul718e3742002-12-13 20:15:29 +00006758 struct interface *ifp;
6759 struct crypt_key *ck;
6760 int write = 0;
6761 struct route_node *rn = NULL;
6762 struct ospf_if_params *params;
6763
paul1eb8ef22005-04-07 07:30:20 +00006764 for (ALL_LIST_ELEMENTS_RO (iflist, n1, ifp))
paul718e3742002-12-13 20:15:29 +00006765 {
paul718e3742002-12-13 20:15:29 +00006766 if (memcmp (ifp->name, "VLINK", 5) == 0)
6767 continue;
6768
6769 vty_out (vty, "!%s", VTY_NEWLINE);
6770 vty_out (vty, "interface %s%s", ifp->name,
6771 VTY_NEWLINE);
6772 if (ifp->desc)
6773 vty_out (vty, " description %s%s", ifp->desc,
6774 VTY_NEWLINE);
6775
6776 write++;
6777
6778 params = IF_DEF_PARAMS (ifp);
6779
6780 do {
6781 /* Interface Network print. */
6782 if (OSPF_IF_PARAM_CONFIGURED (params, type) &&
paul718e3742002-12-13 20:15:29 +00006783 params->type != OSPF_IFTYPE_LOOPBACK)
6784 {
ajsbc18d612004-12-15 15:07:19 +00006785 if (params->type != ospf_default_iftype(ifp))
hasso7b901432004-08-31 13:37:42 +00006786 {
6787 vty_out (vty, " ip ospf network %s",
6788 ospf_int_type_str[params->type]);
6789 if (params != IF_DEF_PARAMS (ifp))
6790 vty_out (vty, " %s", inet_ntoa (rn->p.u.prefix4));
6791 vty_out (vty, "%s", VTY_NEWLINE);
6792 }
paul718e3742002-12-13 20:15:29 +00006793 }
6794
6795 /* OSPF interface authentication print */
6796 if (OSPF_IF_PARAM_CONFIGURED (params, auth_type) &&
6797 params->auth_type != OSPF_AUTH_NOTSET)
6798 {
hassoeb1ce602004-10-08 08:17:22 +00006799 const char *auth_str;
paul718e3742002-12-13 20:15:29 +00006800
6801 /* Translation tables are not that much help here due to syntax
6802 of the simple option */
6803 switch (params->auth_type)
6804 {
6805
6806 case OSPF_AUTH_NULL:
6807 auth_str = " null";
6808 break;
6809
6810 case OSPF_AUTH_SIMPLE:
6811 auth_str = "";
6812 break;
6813
6814 case OSPF_AUTH_CRYPTOGRAPHIC:
6815 auth_str = " message-digest";
6816 break;
6817
6818 default:
6819 auth_str = "";
6820 break;
6821 }
6822
6823 vty_out (vty, " ip ospf authentication%s", auth_str);
6824 if (params != IF_DEF_PARAMS (ifp))
6825 vty_out (vty, " %s", inet_ntoa (rn->p.u.prefix4));
6826 vty_out (vty, "%s", VTY_NEWLINE);
6827 }
6828
6829 /* Simple Authentication Password print. */
6830 if (OSPF_IF_PARAM_CONFIGURED (params, auth_simple) &&
6831 params->auth_simple[0] != '\0')
6832 {
6833 vty_out (vty, " ip ospf authentication-key %s",
6834 params->auth_simple);
6835 if (params != IF_DEF_PARAMS (ifp))
6836 vty_out (vty, " %s", inet_ntoa (rn->p.u.prefix4));
6837 vty_out (vty, "%s", VTY_NEWLINE);
6838 }
6839
6840 /* Cryptographic Authentication Key print. */
paul1eb8ef22005-04-07 07:30:20 +00006841 for (ALL_LIST_ELEMENTS_RO (params->auth_crypt, n2, ck))
paul718e3742002-12-13 20:15:29 +00006842 {
paul718e3742002-12-13 20:15:29 +00006843 vty_out (vty, " ip ospf message-digest-key %d md5 %s",
6844 ck->key_id, ck->auth_key);
6845 if (params != IF_DEF_PARAMS (ifp))
6846 vty_out (vty, " %s", inet_ntoa (rn->p.u.prefix4));
6847 vty_out (vty, "%s", VTY_NEWLINE);
6848 }
6849
6850 /* Interface Output Cost print. */
6851 if (OSPF_IF_PARAM_CONFIGURED (params, output_cost_cmd))
6852 {
6853 vty_out (vty, " ip ospf cost %u", params->output_cost_cmd);
6854 if (params != IF_DEF_PARAMS (ifp))
6855 vty_out (vty, " %s", inet_ntoa (rn->p.u.prefix4));
6856 vty_out (vty, "%s", VTY_NEWLINE);
6857 }
6858
6859 /* Hello Interval print. */
6860 if (OSPF_IF_PARAM_CONFIGURED (params, v_hello) &&
6861 params->v_hello != OSPF_HELLO_INTERVAL_DEFAULT)
6862 {
6863 vty_out (vty, " ip ospf hello-interval %u", params->v_hello);
6864 if (params != IF_DEF_PARAMS (ifp))
6865 vty_out (vty, " %s", inet_ntoa (rn->p.u.prefix4));
6866 vty_out (vty, "%s", VTY_NEWLINE);
6867 }
6868
6869
6870 /* Router Dead Interval print. */
6871 if (OSPF_IF_PARAM_CONFIGURED (params, v_wait) &&
6872 params->v_wait != OSPF_ROUTER_DEAD_INTERVAL_DEFAULT)
6873 {
6874 vty_out (vty, " ip ospf dead-interval %u", params->v_wait);
6875 if (params != IF_DEF_PARAMS (ifp))
6876 vty_out (vty, " %s", inet_ntoa (rn->p.u.prefix4));
6877 vty_out (vty, "%s", VTY_NEWLINE);
6878 }
6879
6880 /* Router Priority print. */
6881 if (OSPF_IF_PARAM_CONFIGURED (params, priority) &&
6882 params->priority != OSPF_ROUTER_PRIORITY_DEFAULT)
6883 {
6884 vty_out (vty, " ip ospf priority %u", params->priority);
6885 if (params != IF_DEF_PARAMS (ifp))
6886 vty_out (vty, " %s", inet_ntoa (rn->p.u.prefix4));
6887 vty_out (vty, "%s", VTY_NEWLINE);
6888 }
6889
6890 /* Retransmit Interval print. */
6891 if (OSPF_IF_PARAM_CONFIGURED (params, retransmit_interval) &&
6892 params->retransmit_interval != OSPF_RETRANSMIT_INTERVAL_DEFAULT)
6893 {
6894 vty_out (vty, " ip ospf retransmit-interval %u",
6895 params->retransmit_interval);
6896 if (params != IF_DEF_PARAMS (ifp))
6897 vty_out (vty, " %s", inet_ntoa (rn->p.u.prefix4));
6898 vty_out (vty, "%s", VTY_NEWLINE);
6899 }
6900
6901 /* Transmit Delay print. */
6902 if (OSPF_IF_PARAM_CONFIGURED (params, transmit_delay) &&
6903 params->transmit_delay != OSPF_TRANSMIT_DELAY_DEFAULT)
6904 {
6905 vty_out (vty, " ip ospf transmit-delay %u", params->transmit_delay);
6906 if (params != IF_DEF_PARAMS (ifp))
6907 vty_out (vty, " %s", inet_ntoa (rn->p.u.prefix4));
6908 vty_out (vty, "%s", VTY_NEWLINE);
6909 }
6910
6911 while (1)
6912 {
6913 if (rn == NULL)
6914 rn = route_top (IF_OIFS_PARAMS (ifp));
6915 else
6916 rn = route_next (rn);
6917
6918 if (rn == NULL)
6919 break;
6920 params = rn->info;
6921 if (params != NULL)
6922 break;
6923 }
6924 } while (rn);
6925
6926#ifdef HAVE_OPAQUE_LSA
6927 ospf_opaque_config_write_if (vty, ifp);
6928#endif /* HAVE_OPAQUE_LSA */
6929 }
6930
6931 return write;
6932}
6933
paul4dadc292005-05-06 21:37:42 +00006934static int
paul68980082003-03-25 05:07:42 +00006935config_write_network_area (struct vty *vty, struct ospf *ospf)
paul718e3742002-12-13 20:15:29 +00006936{
6937 struct route_node *rn;
6938 u_char buf[INET_ADDRSTRLEN];
6939
6940 /* `network area' print. */
paul68980082003-03-25 05:07:42 +00006941 for (rn = route_top (ospf->networks); rn; rn = route_next (rn))
paul718e3742002-12-13 20:15:29 +00006942 if (rn->info)
6943 {
6944 struct ospf_network *n = rn->info;
6945
6946 memset (buf, 0, INET_ADDRSTRLEN);
6947
6948 /* Create Area ID string by specified Area ID format. */
6949 if (n->format == OSPF_AREA_ID_FORMAT_ADDRESS)
hassoc9e52be2004-09-26 16:09:34 +00006950 strncpy ((char *) buf, inet_ntoa (n->area_id), INET_ADDRSTRLEN);
paul718e3742002-12-13 20:15:29 +00006951 else
hassoc9e52be2004-09-26 16:09:34 +00006952 sprintf ((char *) buf, "%lu",
paul718e3742002-12-13 20:15:29 +00006953 (unsigned long int) ntohl (n->area_id.s_addr));
6954
6955 /* Network print. */
6956 vty_out (vty, " network %s/%d area %s%s",
6957 inet_ntoa (rn->p.u.prefix4), rn->p.prefixlen,
6958 buf, VTY_NEWLINE);
6959 }
6960
6961 return 0;
6962}
6963
paul4dadc292005-05-06 21:37:42 +00006964static int
paul68980082003-03-25 05:07:42 +00006965config_write_ospf_area (struct vty *vty, struct ospf *ospf)
paul718e3742002-12-13 20:15:29 +00006966{
hasso52dc7ee2004-09-23 19:18:23 +00006967 struct listnode *node;
paul1eb8ef22005-04-07 07:30:20 +00006968 struct ospf_area *area;
paul718e3742002-12-13 20:15:29 +00006969 u_char buf[INET_ADDRSTRLEN];
6970
6971 /* Area configuration print. */
paul1eb8ef22005-04-07 07:30:20 +00006972 for (ALL_LIST_ELEMENTS_RO (ospf->areas, node, area))
paul718e3742002-12-13 20:15:29 +00006973 {
paul718e3742002-12-13 20:15:29 +00006974 struct route_node *rn1;
6975
hassoc9e52be2004-09-26 16:09:34 +00006976 area_id2str ((char *) buf, INET_ADDRSTRLEN, area);
paul718e3742002-12-13 20:15:29 +00006977
6978 if (area->auth_type != OSPF_AUTH_NULL)
6979 {
6980 if (area->auth_type == OSPF_AUTH_SIMPLE)
6981 vty_out (vty, " area %s authentication%s", buf, VTY_NEWLINE);
6982 else
6983 vty_out (vty, " area %s authentication message-digest%s",
6984 buf, VTY_NEWLINE);
6985 }
6986
6987 if (area->shortcut_configured != OSPF_SHORTCUT_DEFAULT)
6988 vty_out (vty, " area %s shortcut %s%s", buf,
6989 ospf_shortcut_mode_str[area->shortcut_configured],
6990 VTY_NEWLINE);
6991
6992 if ((area->external_routing == OSPF_AREA_STUB)
paul718e3742002-12-13 20:15:29 +00006993 || (area->external_routing == OSPF_AREA_NSSA)
paul718e3742002-12-13 20:15:29 +00006994 )
6995 {
paulb0a053b2003-06-22 09:04:47 +00006996 if (area->external_routing == OSPF_AREA_STUB)
paul718e3742002-12-13 20:15:29 +00006997 vty_out (vty, " area %s stub", buf);
paulb0a053b2003-06-22 09:04:47 +00006998 else if (area->external_routing == OSPF_AREA_NSSA)
6999 {
7000 vty_out (vty, " area %s nssa", buf);
7001 switch (area->NSSATranslatorRole)
7002 {
7003 case OSPF_NSSA_ROLE_NEVER:
7004 vty_out (vty, " translate-never");
7005 break;
7006 case OSPF_NSSA_ROLE_ALWAYS:
7007 vty_out (vty, " translate-always");
7008 break;
7009 case OSPF_NSSA_ROLE_CANDIDATE:
7010 default:
7011 vty_out (vty, " translate-candidate");
7012 }
7013 }
paul718e3742002-12-13 20:15:29 +00007014
7015 if (area->no_summary)
7016 vty_out (vty, " no-summary");
7017
7018 vty_out (vty, "%s", VTY_NEWLINE);
7019
7020 if (area->default_cost != 1)
7021 vty_out (vty, " area %s default-cost %d%s", buf,
7022 area->default_cost, VTY_NEWLINE);
7023 }
7024
7025 for (rn1 = route_top (area->ranges); rn1; rn1 = route_next (rn1))
7026 if (rn1->info)
7027 {
7028 struct ospf_area_range *range = rn1->info;
7029
7030 vty_out (vty, " area %s range %s/%d", buf,
7031 inet_ntoa (rn1->p.u.prefix4), rn1->p.prefixlen);
7032
paul6c835672004-10-11 11:00:30 +00007033 if (range->cost_config != OSPF_AREA_RANGE_COST_UNSPEC)
paul718e3742002-12-13 20:15:29 +00007034 vty_out (vty, " cost %d", range->cost_config);
7035
7036 if (!CHECK_FLAG (range->flags, OSPF_AREA_RANGE_ADVERTISE))
7037 vty_out (vty, " not-advertise");
7038
7039 if (CHECK_FLAG (range->flags, OSPF_AREA_RANGE_SUBSTITUTE))
7040 vty_out (vty, " substitute %s/%d",
7041 inet_ntoa (range->subst_addr), range->subst_masklen);
7042
7043 vty_out (vty, "%s", VTY_NEWLINE);
7044 }
7045
7046 if (EXPORT_NAME (area))
7047 vty_out (vty, " area %s export-list %s%s", buf,
7048 EXPORT_NAME (area), VTY_NEWLINE);
7049
7050 if (IMPORT_NAME (area))
7051 vty_out (vty, " area %s import-list %s%s", buf,
7052 IMPORT_NAME (area), VTY_NEWLINE);
7053
7054 if (PREFIX_NAME_IN (area))
7055 vty_out (vty, " area %s filter-list prefix %s in%s", buf,
7056 PREFIX_NAME_IN (area), VTY_NEWLINE);
7057
7058 if (PREFIX_NAME_OUT (area))
7059 vty_out (vty, " area %s filter-list prefix %s out%s", buf,
7060 PREFIX_NAME_OUT (area), VTY_NEWLINE);
7061 }
7062
7063 return 0;
7064}
7065
paul4dadc292005-05-06 21:37:42 +00007066static int
paul68980082003-03-25 05:07:42 +00007067config_write_ospf_nbr_nbma (struct vty *vty, struct ospf *ospf)
paul718e3742002-12-13 20:15:29 +00007068{
7069 struct ospf_nbr_nbma *nbr_nbma;
7070 struct route_node *rn;
7071
7072 /* Static Neighbor configuration print. */
paul68980082003-03-25 05:07:42 +00007073 for (rn = route_top (ospf->nbr_nbma); rn; rn = route_next (rn))
paul718e3742002-12-13 20:15:29 +00007074 if ((nbr_nbma = rn->info))
7075 {
7076 vty_out (vty, " neighbor %s", inet_ntoa (nbr_nbma->addr));
7077
7078 if (nbr_nbma->priority != OSPF_NEIGHBOR_PRIORITY_DEFAULT)
7079 vty_out (vty, " priority %d", nbr_nbma->priority);
7080
7081 if (nbr_nbma->v_poll != OSPF_POLL_INTERVAL_DEFAULT)
7082 vty_out (vty, " poll-interval %d", nbr_nbma->v_poll);
7083
7084 vty_out (vty, "%s", VTY_NEWLINE);
7085 }
7086
7087 return 0;
7088}
7089
paul4dadc292005-05-06 21:37:42 +00007090static int
paul68980082003-03-25 05:07:42 +00007091config_write_virtual_link (struct vty *vty, struct ospf *ospf)
paul718e3742002-12-13 20:15:29 +00007092{
hasso52dc7ee2004-09-23 19:18:23 +00007093 struct listnode *node;
paul1eb8ef22005-04-07 07:30:20 +00007094 struct ospf_vl_data *vl_data;
paul718e3742002-12-13 20:15:29 +00007095 u_char buf[INET_ADDRSTRLEN];
7096
7097 /* Virtual-Link print */
paul1eb8ef22005-04-07 07:30:20 +00007098 for (ALL_LIST_ELEMENTS_RO (ospf->vlinks, node, vl_data))
paul718e3742002-12-13 20:15:29 +00007099 {
hasso52dc7ee2004-09-23 19:18:23 +00007100 struct listnode *n2;
paul718e3742002-12-13 20:15:29 +00007101 struct crypt_key *ck;
paul718e3742002-12-13 20:15:29 +00007102 struct ospf_interface *oi;
7103
7104 if (vl_data != NULL)
7105 {
7106 memset (buf, 0, INET_ADDRSTRLEN);
7107
7108 if (vl_data->format == OSPF_AREA_ID_FORMAT_ADDRESS)
hassoc9e52be2004-09-26 16:09:34 +00007109 strncpy ((char *) buf, inet_ntoa (vl_data->vl_area_id), INET_ADDRSTRLEN);
paul718e3742002-12-13 20:15:29 +00007110 else
hassoc9e52be2004-09-26 16:09:34 +00007111 sprintf ((char *) buf, "%lu",
paul718e3742002-12-13 20:15:29 +00007112 (unsigned long int) ntohl (vl_data->vl_area_id.s_addr));
7113 oi = vl_data->vl_oi;
7114
7115 /* timers */
7116 if (OSPF_IF_PARAM (oi, v_hello) != OSPF_HELLO_INTERVAL_DEFAULT ||
7117 OSPF_IF_PARAM (oi, v_wait) != OSPF_ROUTER_DEAD_INTERVAL_DEFAULT ||
7118 OSPF_IF_PARAM (oi, retransmit_interval) != OSPF_RETRANSMIT_INTERVAL_DEFAULT ||
7119 OSPF_IF_PARAM (oi, transmit_delay) != OSPF_TRANSMIT_DELAY_DEFAULT)
7120 vty_out (vty, " area %s virtual-link %s hello-interval %d retransmit-interval %d transmit-delay %d dead-interval %d%s",
7121 buf,
7122 inet_ntoa (vl_data->vl_peer),
7123 OSPF_IF_PARAM (oi, v_hello),
7124 OSPF_IF_PARAM (oi, retransmit_interval),
7125 OSPF_IF_PARAM (oi, transmit_delay),
7126 OSPF_IF_PARAM (oi, v_wait),
7127 VTY_NEWLINE);
7128 else
7129 vty_out (vty, " area %s virtual-link %s%s", buf,
7130 inet_ntoa (vl_data->vl_peer), VTY_NEWLINE);
7131 /* Auth key */
7132 if (IF_DEF_PARAMS (vl_data->vl_oi->ifp)->auth_simple[0] != '\0')
7133 vty_out (vty, " area %s virtual-link %s authentication-key %s%s",
7134 buf,
7135 inet_ntoa (vl_data->vl_peer),
7136 IF_DEF_PARAMS (vl_data->vl_oi->ifp)->auth_simple,
7137 VTY_NEWLINE);
7138 /* md5 keys */
paul1eb8ef22005-04-07 07:30:20 +00007139 for (ALL_LIST_ELEMENTS_RO (IF_DEF_PARAMS (vl_data->vl_oi->ifp)->auth_crypt,
7140 n2, ck))
7141 vty_out (vty, " area %s virtual-link %s"
7142 " message-digest-key %d md5 %s%s",
7143 buf,
7144 inet_ntoa (vl_data->vl_peer),
7145 ck->key_id, ck->auth_key, VTY_NEWLINE);
paul718e3742002-12-13 20:15:29 +00007146
7147 }
7148 }
7149
7150 return 0;
7151}
7152
7153
hassoeb1ce602004-10-08 08:17:22 +00007154const char *distribute_str[] = { "system", "kernel", "connected", "static",
7155 "rip", "ripng", "ospf", "ospf6", "isis", "bgp"};
paul4dadc292005-05-06 21:37:42 +00007156static int
paul68980082003-03-25 05:07:42 +00007157config_write_ospf_redistribute (struct vty *vty, struct ospf *ospf)
paul718e3742002-12-13 20:15:29 +00007158{
7159 int type;
7160
7161 /* redistribute print. */
7162 for (type = 0; type < ZEBRA_ROUTE_MAX; type++)
7163 if (type != zclient->redist_default && zclient->redist[type])
7164 {
7165 vty_out (vty, " redistribute %s", distribute_str[type]);
paul68980082003-03-25 05:07:42 +00007166 if (ospf->dmetric[type].value >= 0)
paul020709f2003-04-04 02:44:16 +00007167 vty_out (vty, " metric %d", ospf->dmetric[type].value);
paul718e3742002-12-13 20:15:29 +00007168
paul68980082003-03-25 05:07:42 +00007169 if (ospf->dmetric[type].type == EXTERNAL_METRIC_TYPE_1)
paul718e3742002-12-13 20:15:29 +00007170 vty_out (vty, " metric-type 1");
7171
paul020709f2003-04-04 02:44:16 +00007172 if (ROUTEMAP_NAME (ospf, type))
7173 vty_out (vty, " route-map %s", ROUTEMAP_NAME (ospf, type));
paul718e3742002-12-13 20:15:29 +00007174
7175 vty_out (vty, "%s", VTY_NEWLINE);
7176 }
7177
7178 return 0;
7179}
7180
paul4dadc292005-05-06 21:37:42 +00007181static int
paul68980082003-03-25 05:07:42 +00007182config_write_ospf_default_metric (struct vty *vty, struct ospf *ospf)
paul718e3742002-12-13 20:15:29 +00007183{
paul68980082003-03-25 05:07:42 +00007184 if (ospf->default_metric != -1)
7185 vty_out (vty, " default-metric %d%s", ospf->default_metric,
paul718e3742002-12-13 20:15:29 +00007186 VTY_NEWLINE);
7187 return 0;
7188}
7189
paul4dadc292005-05-06 21:37:42 +00007190static int
paul68980082003-03-25 05:07:42 +00007191config_write_ospf_distribute (struct vty *vty, struct ospf *ospf)
paul718e3742002-12-13 20:15:29 +00007192{
7193 int type;
7194
paul68980082003-03-25 05:07:42 +00007195 if (ospf)
paul718e3742002-12-13 20:15:29 +00007196 {
7197 /* distribute-list print. */
7198 for (type = 0; type < ZEBRA_ROUTE_MAX; type++)
paul68980082003-03-25 05:07:42 +00007199 if (ospf->dlist[type].name)
paul718e3742002-12-13 20:15:29 +00007200 vty_out (vty, " distribute-list %s out %s%s",
paul68980082003-03-25 05:07:42 +00007201 ospf->dlist[type].name,
paul718e3742002-12-13 20:15:29 +00007202 distribute_str[type], VTY_NEWLINE);
7203
7204 /* default-information print. */
paul68980082003-03-25 05:07:42 +00007205 if (ospf->default_originate != DEFAULT_ORIGINATE_NONE)
paul718e3742002-12-13 20:15:29 +00007206 {
paul68980082003-03-25 05:07:42 +00007207 if (ospf->default_originate == DEFAULT_ORIGINATE_ZEBRA)
paul718e3742002-12-13 20:15:29 +00007208 vty_out (vty, " default-information originate");
7209 else
7210 vty_out (vty, " default-information originate always");
7211
paul68980082003-03-25 05:07:42 +00007212 if (ospf->dmetric[DEFAULT_ROUTE].value >= 0)
paul718e3742002-12-13 20:15:29 +00007213 vty_out (vty, " metric %d",
paul68980082003-03-25 05:07:42 +00007214 ospf->dmetric[DEFAULT_ROUTE].value);
7215 if (ospf->dmetric[DEFAULT_ROUTE].type == EXTERNAL_METRIC_TYPE_1)
paul718e3742002-12-13 20:15:29 +00007216 vty_out (vty, " metric-type 1");
7217
paul020709f2003-04-04 02:44:16 +00007218 if (ROUTEMAP_NAME (ospf, DEFAULT_ROUTE))
7219 vty_out (vty, " route-map %s",
7220 ROUTEMAP_NAME (ospf, DEFAULT_ROUTE));
paul718e3742002-12-13 20:15:29 +00007221
7222 vty_out (vty, "%s", VTY_NEWLINE);
7223 }
7224
7225 }
7226
7227 return 0;
7228}
7229
paul4dadc292005-05-06 21:37:42 +00007230static int
paul68980082003-03-25 05:07:42 +00007231config_write_ospf_distance (struct vty *vty, struct ospf *ospf)
paul718e3742002-12-13 20:15:29 +00007232{
7233 struct route_node *rn;
7234 struct ospf_distance *odistance;
7235
paul68980082003-03-25 05:07:42 +00007236 if (ospf->distance_all)
7237 vty_out (vty, " distance %d%s", ospf->distance_all, VTY_NEWLINE);
paul718e3742002-12-13 20:15:29 +00007238
paul68980082003-03-25 05:07:42 +00007239 if (ospf->distance_intra
7240 || ospf->distance_inter
7241 || ospf->distance_external)
paul718e3742002-12-13 20:15:29 +00007242 {
7243 vty_out (vty, " distance ospf");
7244
paul68980082003-03-25 05:07:42 +00007245 if (ospf->distance_intra)
7246 vty_out (vty, " intra-area %d", ospf->distance_intra);
7247 if (ospf->distance_inter)
7248 vty_out (vty, " inter-area %d", ospf->distance_inter);
7249 if (ospf->distance_external)
7250 vty_out (vty, " external %d", ospf->distance_external);
paul718e3742002-12-13 20:15:29 +00007251
7252 vty_out (vty, "%s", VTY_NEWLINE);
7253 }
7254
paul68980082003-03-25 05:07:42 +00007255 for (rn = route_top (ospf->distance_table); rn; rn = route_next (rn))
paul718e3742002-12-13 20:15:29 +00007256 if ((odistance = rn->info) != NULL)
7257 {
7258 vty_out (vty, " distance %d %s/%d %s%s", odistance->distance,
7259 inet_ntoa (rn->p.u.prefix4), rn->p.prefixlen,
7260 odistance->access_list ? odistance->access_list : "",
7261 VTY_NEWLINE);
7262 }
7263 return 0;
7264}
7265
7266/* OSPF configuration write function. */
paul4dadc292005-05-06 21:37:42 +00007267static int
paul718e3742002-12-13 20:15:29 +00007268ospf_config_write (struct vty *vty)
7269{
paul020709f2003-04-04 02:44:16 +00007270 struct ospf *ospf;
paul1eb8ef22005-04-07 07:30:20 +00007271 struct interface *ifp;
7272 struct ospf_interface *oi;
hasso52dc7ee2004-09-23 19:18:23 +00007273 struct listnode *node;
paul718e3742002-12-13 20:15:29 +00007274 int write = 0;
7275
paul020709f2003-04-04 02:44:16 +00007276 ospf = ospf_lookup ();
paul68980082003-03-25 05:07:42 +00007277 if (ospf != NULL)
paul718e3742002-12-13 20:15:29 +00007278 {
7279 /* `router ospf' print. */
7280 vty_out (vty, "router ospf%s", VTY_NEWLINE);
7281
7282 write++;
7283
paul68980082003-03-25 05:07:42 +00007284 if (!ospf->networks)
paul718e3742002-12-13 20:15:29 +00007285 return write;
7286
7287 /* Router ID print. */
paul68980082003-03-25 05:07:42 +00007288 if (ospf->router_id_static.s_addr != 0)
paul718e3742002-12-13 20:15:29 +00007289 vty_out (vty, " ospf router-id %s%s",
paul68980082003-03-25 05:07:42 +00007290 inet_ntoa (ospf->router_id_static), VTY_NEWLINE);
paul718e3742002-12-13 20:15:29 +00007291
7292 /* ABR type print. */
pauld57834f2005-07-12 20:04:22 +00007293 if (ospf->abr_type != OSPF_ABR_DEFAULT)
paul718e3742002-12-13 20:15:29 +00007294 vty_out (vty, " ospf abr-type %s%s",
paul68980082003-03-25 05:07:42 +00007295 ospf_abr_type_str[ospf->abr_type], VTY_NEWLINE);
paul718e3742002-12-13 20:15:29 +00007296
7297 /* RFC1583 compatibility flag print -- Compatible with CISCO 12.1. */
paul68980082003-03-25 05:07:42 +00007298 if (CHECK_FLAG (ospf->config, OSPF_RFC1583_COMPATIBLE))
paul718e3742002-12-13 20:15:29 +00007299 vty_out (vty, " compatible rfc1583%s", VTY_NEWLINE);
7300
7301 /* auto-cost reference-bandwidth configuration. */
paul68980082003-03-25 05:07:42 +00007302 if (ospf->ref_bandwidth != OSPF_DEFAULT_REF_BANDWIDTH)
paul718e3742002-12-13 20:15:29 +00007303 vty_out (vty, " auto-cost reference-bandwidth %d%s",
paul68980082003-03-25 05:07:42 +00007304 ospf->ref_bandwidth / 1000, VTY_NEWLINE);
paul718e3742002-12-13 20:15:29 +00007305
7306 /* SPF timers print. */
paul68980082003-03-25 05:07:42 +00007307 if (ospf->spf_delay != OSPF_SPF_DELAY_DEFAULT ||
7308 ospf->spf_holdtime != OSPF_SPF_HOLDTIME_DEFAULT)
paul718e3742002-12-13 20:15:29 +00007309 vty_out (vty, " timers spf %d %d%s",
paul68980082003-03-25 05:07:42 +00007310 ospf->spf_delay, ospf->spf_holdtime, VTY_NEWLINE);
paul718e3742002-12-13 20:15:29 +00007311
7312 /* SPF refresh parameters print. */
paul68980082003-03-25 05:07:42 +00007313 if (ospf->lsa_refresh_interval != OSPF_LSA_REFRESH_INTERVAL_DEFAULT)
paul718e3742002-12-13 20:15:29 +00007314 vty_out (vty, " refresh timer %d%s",
paul68980082003-03-25 05:07:42 +00007315 ospf->lsa_refresh_interval, VTY_NEWLINE);
paul718e3742002-12-13 20:15:29 +00007316
7317 /* Redistribute information print. */
paul68980082003-03-25 05:07:42 +00007318 config_write_ospf_redistribute (vty, ospf);
paul718e3742002-12-13 20:15:29 +00007319
7320 /* passive-interface print. */
paul1eb8ef22005-04-07 07:30:20 +00007321 for (ALL_LIST_ELEMENTS_RO (om->iflist, node, ifp))
7322 if (IF_DEF_PARAMS (ifp)->passive_interface == OSPF_IF_PASSIVE)
7323 vty_out (vty, " passive-interface %s%s",
7324 ifp->name, VTY_NEWLINE);
paul718e3742002-12-13 20:15:29 +00007325
paul1eb8ef22005-04-07 07:30:20 +00007326 for (ALL_LIST_ELEMENTS_RO (ospf->oiflist, node, oi))
7327 if (OSPF_IF_PARAM_CONFIGURED (oi->params, passive_interface) &&
7328 oi->params->passive_interface == OSPF_IF_PASSIVE)
7329 vty_out (vty, " passive-interface %s %s%s",
7330 oi->ifp->name,
7331 inet_ntoa (oi->address->u.prefix4), VTY_NEWLINE);
paul718e3742002-12-13 20:15:29 +00007332
7333 /* Network area print. */
paul68980082003-03-25 05:07:42 +00007334 config_write_network_area (vty, ospf);
paul718e3742002-12-13 20:15:29 +00007335
7336 /* Area config print. */
paul68980082003-03-25 05:07:42 +00007337 config_write_ospf_area (vty, ospf);
paul718e3742002-12-13 20:15:29 +00007338
7339 /* static neighbor print. */
paul68980082003-03-25 05:07:42 +00007340 config_write_ospf_nbr_nbma (vty, ospf);
paul718e3742002-12-13 20:15:29 +00007341
7342 /* Virtual-Link print. */
paul68980082003-03-25 05:07:42 +00007343 config_write_virtual_link (vty, ospf);
paul718e3742002-12-13 20:15:29 +00007344
7345 /* Default metric configuration. */
paul68980082003-03-25 05:07:42 +00007346 config_write_ospf_default_metric (vty, ospf);
paul718e3742002-12-13 20:15:29 +00007347
7348 /* Distribute-list and default-information print. */
paul68980082003-03-25 05:07:42 +00007349 config_write_ospf_distribute (vty, ospf);
paul718e3742002-12-13 20:15:29 +00007350
7351 /* Distance configuration. */
paul68980082003-03-25 05:07:42 +00007352 config_write_ospf_distance (vty, ospf);
paul718e3742002-12-13 20:15:29 +00007353
7354#ifdef HAVE_OPAQUE_LSA
paul68980082003-03-25 05:07:42 +00007355 ospf_opaque_config_write_router (vty, ospf);
paul718e3742002-12-13 20:15:29 +00007356#endif /* HAVE_OPAQUE_LSA */
7357 }
7358
7359 return write;
7360}
7361
7362void
paul4dadc292005-05-06 21:37:42 +00007363ospf_vty_show_init (void)
paul718e3742002-12-13 20:15:29 +00007364{
7365 /* "show ip ospf" commands. */
7366 install_element (VIEW_NODE, &show_ip_ospf_cmd);
7367 install_element (ENABLE_NODE, &show_ip_ospf_cmd);
7368
7369 /* "show ip ospf database" commands. */
7370 install_element (VIEW_NODE, &show_ip_ospf_database_type_cmd);
7371 install_element (VIEW_NODE, &show_ip_ospf_database_type_id_cmd);
7372 install_element (VIEW_NODE, &show_ip_ospf_database_type_id_adv_router_cmd);
7373 install_element (VIEW_NODE, &show_ip_ospf_database_type_adv_router_cmd);
7374 install_element (VIEW_NODE, &show_ip_ospf_database_type_id_self_cmd);
7375 install_element (VIEW_NODE, &show_ip_ospf_database_type_self_cmd);
7376 install_element (VIEW_NODE, &show_ip_ospf_database_cmd);
7377 install_element (ENABLE_NODE, &show_ip_ospf_database_type_cmd);
7378 install_element (ENABLE_NODE, &show_ip_ospf_database_type_id_cmd);
7379 install_element (ENABLE_NODE, &show_ip_ospf_database_type_id_adv_router_cmd);
7380 install_element (ENABLE_NODE, &show_ip_ospf_database_type_adv_router_cmd);
7381 install_element (ENABLE_NODE, &show_ip_ospf_database_type_id_self_cmd);
7382 install_element (ENABLE_NODE, &show_ip_ospf_database_type_self_cmd);
7383 install_element (ENABLE_NODE, &show_ip_ospf_database_cmd);
7384
7385 /* "show ip ospf interface" commands. */
7386 install_element (VIEW_NODE, &show_ip_ospf_interface_cmd);
7387 install_element (ENABLE_NODE, &show_ip_ospf_interface_cmd);
7388
7389 /* "show ip ospf neighbor" commands. */
7390 install_element (VIEW_NODE, &show_ip_ospf_neighbor_int_detail_cmd);
7391 install_element (VIEW_NODE, &show_ip_ospf_neighbor_int_cmd);
7392 install_element (VIEW_NODE, &show_ip_ospf_neighbor_id_cmd);
7393 install_element (VIEW_NODE, &show_ip_ospf_neighbor_detail_all_cmd);
7394 install_element (VIEW_NODE, &show_ip_ospf_neighbor_detail_cmd);
7395 install_element (VIEW_NODE, &show_ip_ospf_neighbor_cmd);
7396 install_element (VIEW_NODE, &show_ip_ospf_neighbor_all_cmd);
7397 install_element (ENABLE_NODE, &show_ip_ospf_neighbor_int_detail_cmd);
7398 install_element (ENABLE_NODE, &show_ip_ospf_neighbor_int_cmd);
7399 install_element (ENABLE_NODE, &show_ip_ospf_neighbor_id_cmd);
7400 install_element (ENABLE_NODE, &show_ip_ospf_neighbor_detail_all_cmd);
7401 install_element (ENABLE_NODE, &show_ip_ospf_neighbor_detail_cmd);
7402 install_element (ENABLE_NODE, &show_ip_ospf_neighbor_cmd);
7403 install_element (ENABLE_NODE, &show_ip_ospf_neighbor_all_cmd);
7404
7405 /* "show ip ospf route" commands. */
7406 install_element (VIEW_NODE, &show_ip_ospf_route_cmd);
7407 install_element (ENABLE_NODE, &show_ip_ospf_route_cmd);
paul718e3742002-12-13 20:15:29 +00007408 install_element (VIEW_NODE, &show_ip_ospf_border_routers_cmd);
7409 install_element (ENABLE_NODE, &show_ip_ospf_border_routers_cmd);
paul718e3742002-12-13 20:15:29 +00007410}
7411
7412
7413/* ospfd's interface node. */
7414struct cmd_node interface_node =
7415{
7416 INTERFACE_NODE,
7417 "%s(config-if)# ",
7418 1
7419};
7420
7421/* Initialization of OSPF interface. */
paul4dadc292005-05-06 21:37:42 +00007422static void
7423ospf_vty_if_init (void)
paul718e3742002-12-13 20:15:29 +00007424{
7425 /* Install interface node. */
7426 install_node (&interface_node, config_write_interface);
7427
7428 install_element (CONFIG_NODE, &interface_cmd);
paul32d24632003-05-23 09:25:20 +00007429 install_element (CONFIG_NODE, &no_interface_cmd);
paul718e3742002-12-13 20:15:29 +00007430 install_default (INTERFACE_NODE);
7431
7432 /* "description" commands. */
7433 install_element (INTERFACE_NODE, &interface_desc_cmd);
7434 install_element (INTERFACE_NODE, &no_interface_desc_cmd);
7435
7436 /* "ip ospf authentication" commands. */
7437 install_element (INTERFACE_NODE, &ip_ospf_authentication_args_addr_cmd);
7438 install_element (INTERFACE_NODE, &ip_ospf_authentication_args_cmd);
7439 install_element (INTERFACE_NODE, &ip_ospf_authentication_addr_cmd);
7440 install_element (INTERFACE_NODE, &ip_ospf_authentication_cmd);
7441 install_element (INTERFACE_NODE, &no_ip_ospf_authentication_addr_cmd);
7442 install_element (INTERFACE_NODE, &no_ip_ospf_authentication_cmd);
7443 install_element (INTERFACE_NODE, &ip_ospf_authentication_key_addr_cmd);
7444 install_element (INTERFACE_NODE, &ip_ospf_authentication_key_cmd);
7445 install_element (INTERFACE_NODE, &no_ip_ospf_authentication_key_addr_cmd);
7446 install_element (INTERFACE_NODE, &no_ip_ospf_authentication_key_cmd);
7447
7448 /* "ip ospf message-digest-key" commands. */
7449 install_element (INTERFACE_NODE, &ip_ospf_message_digest_key_addr_cmd);
7450 install_element (INTERFACE_NODE, &ip_ospf_message_digest_key_cmd);
7451 install_element (INTERFACE_NODE, &no_ip_ospf_message_digest_key_addr_cmd);
7452 install_element (INTERFACE_NODE, &no_ip_ospf_message_digest_key_cmd);
7453
7454 /* "ip ospf cost" commands. */
7455 install_element (INTERFACE_NODE, &ip_ospf_cost_addr_cmd);
7456 install_element (INTERFACE_NODE, &ip_ospf_cost_cmd);
7457 install_element (INTERFACE_NODE, &no_ip_ospf_cost_addr_cmd);
7458 install_element (INTERFACE_NODE, &no_ip_ospf_cost_cmd);
7459
7460 /* "ip ospf dead-interval" commands. */
7461 install_element (INTERFACE_NODE, &ip_ospf_dead_interval_addr_cmd);
7462 install_element (INTERFACE_NODE, &ip_ospf_dead_interval_cmd);
7463 install_element (INTERFACE_NODE, &no_ip_ospf_dead_interval_addr_cmd);
7464 install_element (INTERFACE_NODE, &no_ip_ospf_dead_interval_cmd);
7465
7466 /* "ip ospf hello-interval" commands. */
7467 install_element (INTERFACE_NODE, &ip_ospf_hello_interval_addr_cmd);
7468 install_element (INTERFACE_NODE, &ip_ospf_hello_interval_cmd);
7469 install_element (INTERFACE_NODE, &no_ip_ospf_hello_interval_addr_cmd);
7470 install_element (INTERFACE_NODE, &no_ip_ospf_hello_interval_cmd);
7471
7472 /* "ip ospf network" commands. */
7473 install_element (INTERFACE_NODE, &ip_ospf_network_cmd);
7474 install_element (INTERFACE_NODE, &no_ip_ospf_network_cmd);
7475
7476 /* "ip ospf priority" commands. */
7477 install_element (INTERFACE_NODE, &ip_ospf_priority_addr_cmd);
7478 install_element (INTERFACE_NODE, &ip_ospf_priority_cmd);
7479 install_element (INTERFACE_NODE, &no_ip_ospf_priority_addr_cmd);
7480 install_element (INTERFACE_NODE, &no_ip_ospf_priority_cmd);
7481
7482 /* "ip ospf retransmit-interval" commands. */
7483 install_element (INTERFACE_NODE, &ip_ospf_retransmit_interval_addr_cmd);
7484 install_element (INTERFACE_NODE, &ip_ospf_retransmit_interval_cmd);
7485 install_element (INTERFACE_NODE, &no_ip_ospf_retransmit_interval_addr_cmd);
7486 install_element (INTERFACE_NODE, &no_ip_ospf_retransmit_interval_cmd);
7487
7488 /* "ip ospf transmit-delay" commands. */
7489 install_element (INTERFACE_NODE, &ip_ospf_transmit_delay_addr_cmd);
7490 install_element (INTERFACE_NODE, &ip_ospf_transmit_delay_cmd);
7491 install_element (INTERFACE_NODE, &no_ip_ospf_transmit_delay_addr_cmd);
7492 install_element (INTERFACE_NODE, &no_ip_ospf_transmit_delay_cmd);
7493
7494 /* These commands are compatibitliy for previous version. */
7495 install_element (INTERFACE_NODE, &ospf_authentication_key_cmd);
7496 install_element (INTERFACE_NODE, &no_ospf_authentication_key_cmd);
7497 install_element (INTERFACE_NODE, &ospf_message_digest_key_cmd);
7498 install_element (INTERFACE_NODE, &no_ospf_message_digest_key_cmd);
7499 install_element (INTERFACE_NODE, &ospf_cost_cmd);
7500 install_element (INTERFACE_NODE, &no_ospf_cost_cmd);
7501 install_element (INTERFACE_NODE, &ospf_dead_interval_cmd);
7502 install_element (INTERFACE_NODE, &no_ospf_dead_interval_cmd);
7503 install_element (INTERFACE_NODE, &ospf_hello_interval_cmd);
7504 install_element (INTERFACE_NODE, &no_ospf_hello_interval_cmd);
7505 install_element (INTERFACE_NODE, &ospf_network_cmd);
7506 install_element (INTERFACE_NODE, &no_ospf_network_cmd);
7507 install_element (INTERFACE_NODE, &ospf_priority_cmd);
7508 install_element (INTERFACE_NODE, &no_ospf_priority_cmd);
7509 install_element (INTERFACE_NODE, &ospf_retransmit_interval_cmd);
7510 install_element (INTERFACE_NODE, &no_ospf_retransmit_interval_cmd);
7511 install_element (INTERFACE_NODE, &ospf_transmit_delay_cmd);
7512 install_element (INTERFACE_NODE, &no_ospf_transmit_delay_cmd);
7513}
7514
7515/* Zebra node structure. */
7516struct cmd_node zebra_node =
7517{
7518 ZEBRA_NODE,
7519 "%s(config-router)#",
7520};
7521
paul4dadc292005-05-06 21:37:42 +00007522static void
7523ospf_vty_zebra_init (void)
paul718e3742002-12-13 20:15:29 +00007524{
7525 install_element (OSPF_NODE, &ospf_redistribute_source_type_metric_cmd);
7526 install_element (OSPF_NODE, &ospf_redistribute_source_metric_type_cmd);
7527 install_element (OSPF_NODE, &ospf_redistribute_source_type_cmd);
7528 install_element (OSPF_NODE, &ospf_redistribute_source_metric_cmd);
7529 install_element (OSPF_NODE, &ospf_redistribute_source_cmd);
7530 install_element (OSPF_NODE,
7531 &ospf_redistribute_source_metric_type_routemap_cmd);
7532 install_element (OSPF_NODE,
7533 &ospf_redistribute_source_type_metric_routemap_cmd);
7534 install_element (OSPF_NODE, &ospf_redistribute_source_metric_routemap_cmd);
7535 install_element (OSPF_NODE, &ospf_redistribute_source_type_routemap_cmd);
7536 install_element (OSPF_NODE, &ospf_redistribute_source_routemap_cmd);
7537
7538 install_element (OSPF_NODE, &no_ospf_redistribute_source_cmd);
7539
7540 install_element (OSPF_NODE, &ospf_distribute_list_out_cmd);
7541 install_element (OSPF_NODE, &no_ospf_distribute_list_out_cmd);
7542
7543 install_element (OSPF_NODE,
7544 &ospf_default_information_originate_metric_type_cmd);
7545 install_element (OSPF_NODE, &ospf_default_information_originate_metric_cmd);
7546 install_element (OSPF_NODE,
7547 &ospf_default_information_originate_type_metric_cmd);
7548 install_element (OSPF_NODE, &ospf_default_information_originate_type_cmd);
7549 install_element (OSPF_NODE, &ospf_default_information_originate_cmd);
7550 install_element (OSPF_NODE,
7551 &ospf_default_information_originate_always_metric_type_cmd);
7552 install_element (OSPF_NODE,
7553 &ospf_default_information_originate_always_metric_cmd);
7554 install_element (OSPF_NODE,
7555 &ospf_default_information_originate_always_cmd);
7556 install_element (OSPF_NODE,
7557 &ospf_default_information_originate_always_type_metric_cmd);
7558 install_element (OSPF_NODE,
7559 &ospf_default_information_originate_always_type_cmd);
7560
7561 install_element (OSPF_NODE,
7562 &ospf_default_information_originate_metric_type_routemap_cmd);
7563 install_element (OSPF_NODE,
7564 &ospf_default_information_originate_metric_routemap_cmd);
7565 install_element (OSPF_NODE,
7566 &ospf_default_information_originate_routemap_cmd);
7567 install_element (OSPF_NODE,
7568 &ospf_default_information_originate_type_metric_routemap_cmd);
7569 install_element (OSPF_NODE,
7570 &ospf_default_information_originate_type_routemap_cmd);
7571 install_element (OSPF_NODE,
7572 &ospf_default_information_originate_always_metric_type_routemap_cmd);
7573 install_element (OSPF_NODE,
7574 &ospf_default_information_originate_always_metric_routemap_cmd);
7575 install_element (OSPF_NODE,
7576 &ospf_default_information_originate_always_routemap_cmd);
7577 install_element (OSPF_NODE,
7578 &ospf_default_information_originate_always_type_metric_routemap_cmd);
7579 install_element (OSPF_NODE,
7580 &ospf_default_information_originate_always_type_routemap_cmd);
7581
7582 install_element (OSPF_NODE, &no_ospf_default_information_originate_cmd);
7583
7584 install_element (OSPF_NODE, &ospf_default_metric_cmd);
7585 install_element (OSPF_NODE, &no_ospf_default_metric_cmd);
7586 install_element (OSPF_NODE, &no_ospf_default_metric_val_cmd);
7587
7588 install_element (OSPF_NODE, &ospf_distance_cmd);
7589 install_element (OSPF_NODE, &no_ospf_distance_cmd);
7590 install_element (OSPF_NODE, &no_ospf_distance_ospf_cmd);
7591 install_element (OSPF_NODE, &ospf_distance_ospf_intra_cmd);
7592 install_element (OSPF_NODE, &ospf_distance_ospf_intra_inter_cmd);
7593 install_element (OSPF_NODE, &ospf_distance_ospf_intra_external_cmd);
7594 install_element (OSPF_NODE, &ospf_distance_ospf_intra_inter_external_cmd);
7595 install_element (OSPF_NODE, &ospf_distance_ospf_intra_external_inter_cmd);
7596 install_element (OSPF_NODE, &ospf_distance_ospf_inter_cmd);
7597 install_element (OSPF_NODE, &ospf_distance_ospf_inter_intra_cmd);
7598 install_element (OSPF_NODE, &ospf_distance_ospf_inter_external_cmd);
7599 install_element (OSPF_NODE, &ospf_distance_ospf_inter_intra_external_cmd);
7600 install_element (OSPF_NODE, &ospf_distance_ospf_inter_external_intra_cmd);
7601 install_element (OSPF_NODE, &ospf_distance_ospf_external_cmd);
7602 install_element (OSPF_NODE, &ospf_distance_ospf_external_intra_cmd);
7603 install_element (OSPF_NODE, &ospf_distance_ospf_external_inter_cmd);
7604 install_element (OSPF_NODE, &ospf_distance_ospf_external_intra_inter_cmd);
7605 install_element (OSPF_NODE, &ospf_distance_ospf_external_inter_intra_cmd);
7606#if 0
7607 install_element (OSPF_NODE, &ospf_distance_source_cmd);
7608 install_element (OSPF_NODE, &no_ospf_distance_source_cmd);
7609 install_element (OSPF_NODE, &ospf_distance_source_access_list_cmd);
7610 install_element (OSPF_NODE, &no_ospf_distance_source_access_list_cmd);
7611#endif /* 0 */
7612}
7613
7614struct cmd_node ospf_node =
7615{
7616 OSPF_NODE,
7617 "%s(config-router)# ",
7618 1
7619};
7620
7621
7622/* Install OSPF related vty commands. */
7623void
paul4dadc292005-05-06 21:37:42 +00007624ospf_vty_init (void)
paul718e3742002-12-13 20:15:29 +00007625{
7626 /* Install ospf top node. */
7627 install_node (&ospf_node, ospf_config_write);
7628
7629 /* "router ospf" commands. */
7630 install_element (CONFIG_NODE, &router_ospf_cmd);
7631 install_element (CONFIG_NODE, &no_router_ospf_cmd);
7632
7633 install_default (OSPF_NODE);
7634
7635 /* "ospf router-id" commands. */
7636 install_element (OSPF_NODE, &ospf_router_id_cmd);
7637 install_element (OSPF_NODE, &no_ospf_router_id_cmd);
paula2c62832003-04-23 17:01:31 +00007638 install_element (OSPF_NODE, &router_ospf_id_cmd);
7639 install_element (OSPF_NODE, &no_router_ospf_id_cmd);
paul718e3742002-12-13 20:15:29 +00007640
7641 /* "passive-interface" commands. */
paula2c62832003-04-23 17:01:31 +00007642 install_element (OSPF_NODE, &ospf_passive_interface_addr_cmd);
7643 install_element (OSPF_NODE, &ospf_passive_interface_cmd);
7644 install_element (OSPF_NODE, &no_ospf_passive_interface_addr_cmd);
7645 install_element (OSPF_NODE, &no_ospf_passive_interface_cmd);
paul718e3742002-12-13 20:15:29 +00007646
7647 /* "ospf abr-type" commands. */
7648 install_element (OSPF_NODE, &ospf_abr_type_cmd);
7649 install_element (OSPF_NODE, &no_ospf_abr_type_cmd);
7650
7651 /* "ospf rfc1583-compatible" commands. */
7652 install_element (OSPF_NODE, &ospf_rfc1583_flag_cmd);
7653 install_element (OSPF_NODE, &no_ospf_rfc1583_flag_cmd);
7654 install_element (OSPF_NODE, &ospf_compatible_rfc1583_cmd);
7655 install_element (OSPF_NODE, &no_ospf_compatible_rfc1583_cmd);
7656
7657 /* "network area" commands. */
paula2c62832003-04-23 17:01:31 +00007658 install_element (OSPF_NODE, &ospf_network_area_cmd);
7659 install_element (OSPF_NODE, &no_ospf_network_area_cmd);
paul718e3742002-12-13 20:15:29 +00007660
7661 /* "area authentication" commands. */
paula2c62832003-04-23 17:01:31 +00007662 install_element (OSPF_NODE, &ospf_area_authentication_message_digest_cmd);
7663 install_element (OSPF_NODE, &ospf_area_authentication_cmd);
7664 install_element (OSPF_NODE, &no_ospf_area_authentication_cmd);
paul718e3742002-12-13 20:15:29 +00007665
7666 /* "area range" commands. */
paula2c62832003-04-23 17:01:31 +00007667 install_element (OSPF_NODE, &ospf_area_range_cmd);
7668 install_element (OSPF_NODE, &ospf_area_range_advertise_cmd);
7669 install_element (OSPF_NODE, &ospf_area_range_cost_cmd);
7670 install_element (OSPF_NODE, &ospf_area_range_advertise_cost_cmd);
7671 install_element (OSPF_NODE, &ospf_area_range_not_advertise_cmd);
7672 install_element (OSPF_NODE, &no_ospf_area_range_cmd);
7673 install_element (OSPF_NODE, &no_ospf_area_range_advertise_cmd);
7674 install_element (OSPF_NODE, &no_ospf_area_range_cost_cmd);
7675 install_element (OSPF_NODE, &no_ospf_area_range_advertise_cost_cmd);
7676 install_element (OSPF_NODE, &ospf_area_range_substitute_cmd);
7677 install_element (OSPF_NODE, &no_ospf_area_range_substitute_cmd);
paul718e3742002-12-13 20:15:29 +00007678
7679 /* "area virtual-link" commands. */
paula2c62832003-04-23 17:01:31 +00007680 install_element (OSPF_NODE, &ospf_area_vlink_cmd);
7681 install_element (OSPF_NODE, &no_ospf_area_vlink_cmd);
paul718e3742002-12-13 20:15:29 +00007682
paula2c62832003-04-23 17:01:31 +00007683 install_element (OSPF_NODE, &ospf_area_vlink_param1_cmd);
7684 install_element (OSPF_NODE, &no_ospf_area_vlink_param1_cmd);
paul718e3742002-12-13 20:15:29 +00007685
paula2c62832003-04-23 17:01:31 +00007686 install_element (OSPF_NODE, &ospf_area_vlink_param2_cmd);
7687 install_element (OSPF_NODE, &no_ospf_area_vlink_param2_cmd);
paul718e3742002-12-13 20:15:29 +00007688
paula2c62832003-04-23 17:01:31 +00007689 install_element (OSPF_NODE, &ospf_area_vlink_param3_cmd);
7690 install_element (OSPF_NODE, &no_ospf_area_vlink_param3_cmd);
paul718e3742002-12-13 20:15:29 +00007691
paula2c62832003-04-23 17:01:31 +00007692 install_element (OSPF_NODE, &ospf_area_vlink_param4_cmd);
7693 install_element (OSPF_NODE, &no_ospf_area_vlink_param4_cmd);
paul718e3742002-12-13 20:15:29 +00007694
paula2c62832003-04-23 17:01:31 +00007695 install_element (OSPF_NODE, &ospf_area_vlink_authtype_args_cmd);
7696 install_element (OSPF_NODE, &ospf_area_vlink_authtype_cmd);
7697 install_element (OSPF_NODE, &no_ospf_area_vlink_authtype_cmd);
paul718e3742002-12-13 20:15:29 +00007698
paula2c62832003-04-23 17:01:31 +00007699 install_element (OSPF_NODE, &ospf_area_vlink_md5_cmd);
7700 install_element (OSPF_NODE, &no_ospf_area_vlink_md5_cmd);
paul718e3742002-12-13 20:15:29 +00007701
paula2c62832003-04-23 17:01:31 +00007702 install_element (OSPF_NODE, &ospf_area_vlink_authkey_cmd);
7703 install_element (OSPF_NODE, &no_ospf_area_vlink_authkey_cmd);
paul718e3742002-12-13 20:15:29 +00007704
paula2c62832003-04-23 17:01:31 +00007705 install_element (OSPF_NODE, &ospf_area_vlink_authtype_args_authkey_cmd);
7706 install_element (OSPF_NODE, &ospf_area_vlink_authtype_authkey_cmd);
7707 install_element (OSPF_NODE, &no_ospf_area_vlink_authtype_authkey_cmd);
paul718e3742002-12-13 20:15:29 +00007708
paula2c62832003-04-23 17:01:31 +00007709 install_element (OSPF_NODE, &ospf_area_vlink_authtype_args_md5_cmd);
7710 install_element (OSPF_NODE, &ospf_area_vlink_authtype_md5_cmd);
7711 install_element (OSPF_NODE, &no_ospf_area_vlink_authtype_md5_cmd);
paul718e3742002-12-13 20:15:29 +00007712
7713 /* "area stub" commands. */
paula2c62832003-04-23 17:01:31 +00007714 install_element (OSPF_NODE, &ospf_area_stub_no_summary_cmd);
7715 install_element (OSPF_NODE, &ospf_area_stub_cmd);
7716 install_element (OSPF_NODE, &no_ospf_area_stub_no_summary_cmd);
7717 install_element (OSPF_NODE, &no_ospf_area_stub_cmd);
paul718e3742002-12-13 20:15:29 +00007718
paul718e3742002-12-13 20:15:29 +00007719 /* "area nssa" commands. */
paula2c62832003-04-23 17:01:31 +00007720 install_element (OSPF_NODE, &ospf_area_nssa_cmd);
7721 install_element (OSPF_NODE, &ospf_area_nssa_translate_no_summary_cmd);
7722 install_element (OSPF_NODE, &ospf_area_nssa_translate_cmd);
7723 install_element (OSPF_NODE, &ospf_area_nssa_no_summary_cmd);
7724 install_element (OSPF_NODE, &no_ospf_area_nssa_cmd);
7725 install_element (OSPF_NODE, &no_ospf_area_nssa_no_summary_cmd);
paul718e3742002-12-13 20:15:29 +00007726
paula2c62832003-04-23 17:01:31 +00007727 install_element (OSPF_NODE, &ospf_area_default_cost_cmd);
7728 install_element (OSPF_NODE, &no_ospf_area_default_cost_cmd);
paul718e3742002-12-13 20:15:29 +00007729
paula2c62832003-04-23 17:01:31 +00007730 install_element (OSPF_NODE, &ospf_area_shortcut_cmd);
7731 install_element (OSPF_NODE, &no_ospf_area_shortcut_cmd);
paul718e3742002-12-13 20:15:29 +00007732
paula2c62832003-04-23 17:01:31 +00007733 install_element (OSPF_NODE, &ospf_area_export_list_cmd);
7734 install_element (OSPF_NODE, &no_ospf_area_export_list_cmd);
paul718e3742002-12-13 20:15:29 +00007735
paula2c62832003-04-23 17:01:31 +00007736 install_element (OSPF_NODE, &ospf_area_filter_list_cmd);
7737 install_element (OSPF_NODE, &no_ospf_area_filter_list_cmd);
paul718e3742002-12-13 20:15:29 +00007738
paula2c62832003-04-23 17:01:31 +00007739 install_element (OSPF_NODE, &ospf_area_import_list_cmd);
7740 install_element (OSPF_NODE, &no_ospf_area_import_list_cmd);
paul718e3742002-12-13 20:15:29 +00007741
paula2c62832003-04-23 17:01:31 +00007742 install_element (OSPF_NODE, &ospf_timers_spf_cmd);
7743 install_element (OSPF_NODE, &no_ospf_timers_spf_cmd);
paul718e3742002-12-13 20:15:29 +00007744
paula2c62832003-04-23 17:01:31 +00007745 install_element (OSPF_NODE, &ospf_refresh_timer_cmd);
7746 install_element (OSPF_NODE, &no_ospf_refresh_timer_val_cmd);
7747 install_element (OSPF_NODE, &no_ospf_refresh_timer_cmd);
paul718e3742002-12-13 20:15:29 +00007748
paula2c62832003-04-23 17:01:31 +00007749 install_element (OSPF_NODE, &ospf_auto_cost_reference_bandwidth_cmd);
7750 install_element (OSPF_NODE, &no_ospf_auto_cost_reference_bandwidth_cmd);
paul718e3742002-12-13 20:15:29 +00007751
7752 /* "neighbor" commands. */
paula2c62832003-04-23 17:01:31 +00007753 install_element (OSPF_NODE, &ospf_neighbor_cmd);
7754 install_element (OSPF_NODE, &ospf_neighbor_priority_poll_interval_cmd);
7755 install_element (OSPF_NODE, &ospf_neighbor_priority_cmd);
7756 install_element (OSPF_NODE, &ospf_neighbor_poll_interval_cmd);
7757 install_element (OSPF_NODE, &ospf_neighbor_poll_interval_priority_cmd);
7758 install_element (OSPF_NODE, &no_ospf_neighbor_cmd);
7759 install_element (OSPF_NODE, &no_ospf_neighbor_priority_cmd);
7760 install_element (OSPF_NODE, &no_ospf_neighbor_poll_interval_cmd);
paul718e3742002-12-13 20:15:29 +00007761
7762 /* Init interface related vty commands. */
7763 ospf_vty_if_init ();
7764
7765 /* Init zebra related vty commands. */
7766 ospf_vty_zebra_init ();
7767}