]> git.proxmox.com Git - mirror_frr.git/blob - ospfd/ospf_vty.c
Merge pull request #310 from opensourcerouting/thread-prep
[mirror_frr.git] / ospfd / ospf_vty.c
1 /* OSPF VTY interface.
2 * Copyright (C) 2005 6WIND <alain.ritoux@6wind.com>
3 * Copyright (C) 2000 Toshiaki Takada
4 *
5 * This file is part of GNU Zebra.
6 *
7 * GNU Zebra is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2, or (at your option) any
10 * later version.
11 *
12 * GNU Zebra is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with GNU Zebra; see the file COPYING. If not, write to the Free
19 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
20 * 02111-1307, USA.
21 */
22
23 #include <zebra.h>
24 #include <string.h>
25
26 #include "monotime.h"
27 #include "memory.h"
28 #include "thread.h"
29 #include "prefix.h"
30 #include "table.h"
31 #include "vty.h"
32 #include "command.h"
33 #include "plist.h"
34 #include "log.h"
35 #include "zclient.h"
36 #include <lib/json.h>
37 #include "defaults.h"
38
39 #include "ospfd/ospfd.h"
40 #include "ospfd/ospf_asbr.h"
41 #include "ospfd/ospf_lsa.h"
42 #include "ospfd/ospf_lsdb.h"
43 #include "ospfd/ospf_ism.h"
44 #include "ospfd/ospf_interface.h"
45 #include "ospfd/ospf_nsm.h"
46 #include "ospfd/ospf_neighbor.h"
47 #include "ospfd/ospf_flood.h"
48 #include "ospfd/ospf_abr.h"
49 #include "ospfd/ospf_spf.h"
50 #include "ospfd/ospf_route.h"
51 #include "ospfd/ospf_zebra.h"
52 /*#include "ospfd/ospf_routemap.h" */
53 #include "ospfd/ospf_vty.h"
54 #include "ospfd/ospf_dump.h"
55 #include "ospfd/ospf_bfd.h"
56
57 static const char *ospf_network_type_str[] =
58 {
59 "Null",
60 "POINTOPOINT",
61 "BROADCAST",
62 "NBMA",
63 "POINTOMULTIPOINT",
64 "VIRTUALLINK",
65 "LOOPBACK"
66 };
67
68 /* Utility functions. */
69 int
70 ospf_str2area_id (const char *str, struct in_addr *area_id, int *format)
71 {
72 char *endptr = NULL;
73 unsigned long ret;
74
75 /* match "A.B.C.D". */
76 if (strchr (str, '.') != NULL)
77 {
78 ret = inet_aton (str, area_id);
79 if (!ret)
80 return -1;
81 *format = OSPF_AREA_ID_FORMAT_ADDRESS;
82 }
83 /* match "<0-4294967295>". */
84 else
85 {
86 if (*str == '-')
87 return -1;
88 errno = 0;
89 ret = strtoul (str, &endptr, 10);
90 if (*endptr != '\0' || errno || ret > UINT32_MAX)
91 return -1;
92
93 area_id->s_addr = htonl (ret);
94 *format = OSPF_AREA_ID_FORMAT_DECIMAL;
95 }
96
97 return 0;
98 }
99
100
101 static int
102 str2metric (const char *str, int *metric)
103 {
104 /* Sanity check. */
105 if (str == NULL)
106 return 0;
107
108 *metric = strtol (str, NULL, 10);
109 if (*metric < 0 && *metric > 16777214)
110 {
111 /* vty_out (vty, "OSPF metric value is invalid%s", VTY_NEWLINE); */
112 return 0;
113 }
114
115 return 1;
116 }
117
118 static int
119 str2metric_type (const char *str, int *metric_type)
120 {
121 /* Sanity check. */
122 if (str == NULL)
123 return 0;
124
125 if (strncmp (str, "1", 1) == 0)
126 *metric_type = EXTERNAL_METRIC_TYPE_1;
127 else if (strncmp (str, "2", 1) == 0)
128 *metric_type = EXTERNAL_METRIC_TYPE_2;
129 else
130 return 0;
131
132 return 1;
133 }
134
135 int
136 ospf_oi_count (struct interface *ifp)
137 {
138 struct route_node *rn;
139 int i = 0;
140
141 for (rn = route_top (IF_OIFS (ifp)); rn; rn = route_next (rn))
142 if (rn->info)
143 i++;
144
145 return i;
146 }
147
148 DEFUN_NOSH (router_ospf,
149 router_ospf_cmd,
150 "router ospf [(1-65535)]",
151 "Enable a routing process\n"
152 "Start OSPF configuration\n"
153 "Instance ID\n")
154 {
155 struct ospf *ospf;
156 u_short instance = 0;
157
158 ospf = ospf_lookup();
159 if (!ospf)
160 {
161 vty_out (vty, "There isn't active ospf instance %s", VTY_NEWLINE);
162 return CMD_WARNING;
163 }
164
165 if (argc > 2)
166 VTY_GET_INTEGER ("Instance", instance, argv[2]->arg);
167
168 /* The following logic to set the vty qobj index is in place to be able
169 to ignore the commands which dont belong to this instance. */
170 if (ospf->instance != instance)
171 VTY_PUSH_CONTEXT_NULL(OSPF_NODE);
172 else
173 {
174 if (IS_DEBUG_OSPF_EVENT)
175 zlog_debug ("Config command 'router ospf %d' received", instance);
176 ospf->oi_running = 1;
177 VTY_PUSH_CONTEXT(OSPF_NODE, ospf);
178 ospf_router_id_update (ospf);
179 }
180
181 return CMD_SUCCESS;
182 }
183
184 DEFUN (no_router_ospf,
185 no_router_ospf_cmd,
186 "no router ospf [(1-65535)]",
187 NO_STR
188 "Enable a routing process\n"
189 "Start OSPF configuration\n"
190 "Instance ID\n")
191 {
192 struct ospf *ospf;
193 u_short instance = 0;
194
195 if (argc > 3)
196 VTY_GET_INTEGER ("Instance", instance, argv[3]->arg);
197
198 if ((ospf = ospf_lookup_instance (instance)) == NULL)
199 return CMD_SUCCESS;
200
201 ospf_finish (ospf);
202
203 return CMD_SUCCESS;
204 }
205
206
207 DEFUN (ospf_router_id,
208 ospf_router_id_cmd,
209 "ospf router-id A.B.C.D",
210 "OSPF specific commands\n"
211 "router-id for the OSPF process\n"
212 "OSPF router-id in IP address format\n")
213 {
214 VTY_DECLVAR_CONTEXT(ospf, ospf);
215 int idx_ipv4 = 2;
216 struct listnode *node;
217 struct ospf_area *area;
218 struct in_addr router_id;
219 int ret;
220
221 ret = inet_aton (argv[idx_ipv4]->arg, &router_id);
222 if (!ret)
223 {
224 vty_out (vty, "Please specify Router ID by A.B.C.D%s", VTY_NEWLINE);
225 return CMD_WARNING;
226 }
227
228 ospf->router_id_static = router_id;
229
230 for (ALL_LIST_ELEMENTS_RO (ospf->areas, node, area))
231 if (area->full_nbrs)
232 {
233 vty_out (vty, "For this router-id change to take effect,"
234 " save config and restart ospfd%s", VTY_NEWLINE);
235 return CMD_SUCCESS;
236 }
237
238 ospf_router_id_update (ospf);
239
240 return CMD_SUCCESS;
241 }
242
243 DEFUN_HIDDEN (ospf_router_id_old,
244 ospf_router_id_old_cmd,
245 "router-id A.B.C.D",
246 "router-id for the OSPF process\n"
247 "OSPF router-id in IP address format\n")
248 {
249 VTY_DECLVAR_CONTEXT(ospf, ospf);
250 int idx_ipv4 = 1;
251 struct listnode *node;
252 struct ospf_area *area;
253 struct in_addr router_id;
254 int ret;
255
256 ret = inet_aton (argv[idx_ipv4]->arg, &router_id);
257 if (!ret)
258 {
259 vty_out (vty, "Please specify Router ID by A.B.C.D%s", VTY_NEWLINE);
260 return CMD_WARNING;
261 }
262
263 ospf->router_id_static = router_id;
264
265 for (ALL_LIST_ELEMENTS_RO (ospf->areas, node, area))
266 if (area->full_nbrs)
267 {
268 vty_out (vty, "For this router-id change to take effect,"
269 " save config and restart ospfd%s", VTY_NEWLINE);
270 return CMD_SUCCESS;
271 }
272
273 ospf_router_id_update (ospf);
274
275 return CMD_SUCCESS;
276 }
277
278 DEFUN (no_ospf_router_id,
279 no_ospf_router_id_cmd,
280 "no ospf router-id [A.B.C.D]",
281 NO_STR
282 "OSPF specific commands\n"
283 "router-id for the OSPF process\n"
284 "OSPF router-id in IP address format\n")
285 {
286 VTY_DECLVAR_CONTEXT(ospf, ospf);
287 struct listnode *node;
288 struct ospf_area *area;
289
290 ospf->router_id_static.s_addr = 0;
291
292 for (ALL_LIST_ELEMENTS_RO (ospf->areas, node, area))
293 if (area->full_nbrs)
294 {
295 vty_out (vty, "For this router-id change to take effect,"
296 " save config and restart ospfd%s", VTY_NEWLINE);
297 return CMD_SUCCESS;
298 }
299
300 ospf_router_id_update (ospf);
301
302 return CMD_SUCCESS;
303 }
304
305
306 static void
307 ospf_passive_interface_default (struct ospf *ospf, u_char newval)
308 {
309 struct listnode *ln;
310 struct interface *ifp;
311 struct ospf_interface *oi;
312
313 ospf->passive_interface_default = newval;
314
315 for (ALL_LIST_ELEMENTS_RO (om->iflist, ln, ifp))
316 {
317 if (ifp &&
318 OSPF_IF_PARAM_CONFIGURED (IF_DEF_PARAMS (ifp), passive_interface))
319 UNSET_IF_PARAM (IF_DEF_PARAMS (ifp), passive_interface);
320 }
321 for (ALL_LIST_ELEMENTS_RO (ospf->oiflist, ln, oi))
322 {
323 if (OSPF_IF_PARAM_CONFIGURED (oi->params, passive_interface))
324 UNSET_IF_PARAM (oi->params, passive_interface);
325 /* update multicast memberships */
326 ospf_if_set_multicast(oi);
327 }
328 }
329
330 static void
331 ospf_passive_interface_update_addr (struct ospf *ospf, struct interface *ifp,
332 struct ospf_if_params *params, u_char value,
333 struct in_addr addr)
334 {
335 u_char dflt;
336
337 params->passive_interface = value;
338 if (params != IF_DEF_PARAMS (ifp))
339 {
340 if (OSPF_IF_PARAM_CONFIGURED (IF_DEF_PARAMS (ifp), passive_interface))
341 dflt = IF_DEF_PARAMS (ifp)->passive_interface;
342 else
343 dflt = ospf->passive_interface_default;
344
345 if (value != dflt)
346 SET_IF_PARAM (params, passive_interface);
347 else
348 UNSET_IF_PARAM (params, passive_interface);
349
350 ospf_free_if_params (ifp, addr);
351 ospf_if_update_params (ifp, addr);
352 }
353 }
354
355 static void
356 ospf_passive_interface_update (struct ospf *ospf, struct interface *ifp,
357 struct ospf_if_params *params, u_char value)
358 {
359 params->passive_interface = value;
360 if (params == IF_DEF_PARAMS (ifp))
361 {
362 if (value != ospf->passive_interface_default)
363 SET_IF_PARAM (params, passive_interface);
364 else
365 UNSET_IF_PARAM (params, passive_interface);
366 }
367 }
368
369 DEFUN (ospf_passive_interface,
370 ospf_passive_interface_addr_cmd,
371 "passive-interface <IFNAME [A.B.C.D]|default>",
372 "Suppress routing updates on an interface\n"
373 "Interface's name\n"
374 "IPv4 address\n"
375 "Suppress routing updates on interfaces by default\n")
376 {
377 VTY_DECLVAR_CONTEXT(ospf, ospf);
378 int idx_ipv4 = 2;
379 struct interface *ifp;
380 struct in_addr addr = { .s_addr = INADDR_ANY };
381 int ret;
382 struct ospf_if_params *params;
383 struct route_node *rn;
384
385 if (strcmp (argv[1]->text, "default") == 0)
386 {
387 ospf_passive_interface_default (ospf, OSPF_IF_PASSIVE);
388 return CMD_SUCCESS;
389 }
390
391 ifp = if_get_by_name (argv[1]->arg, VRF_DEFAULT);
392
393 params = IF_DEF_PARAMS (ifp);
394
395 if (argc == 3)
396 {
397 ret = inet_aton(argv[idx_ipv4]->arg, &addr);
398 if (!ret)
399 {
400 vty_out (vty, "Please specify interface address by A.B.C.D%s",
401 VTY_NEWLINE);
402 return CMD_WARNING;
403 }
404
405 params = ospf_get_if_params (ifp, addr);
406 ospf_if_update_params (ifp, addr);
407 ospf_passive_interface_update_addr (ospf, ifp, params,
408 OSPF_IF_PASSIVE, addr);
409 }
410
411 ospf_passive_interface_update (ospf, ifp, params, OSPF_IF_PASSIVE);
412
413 /* XXX We should call ospf_if_set_multicast on exactly those
414 * interfaces for which the passive property changed. It is too much
415 * work to determine this set, so we do this for every interface.
416 * This is safe and reasonable because ospf_if_set_multicast uses a
417 * record of joined groups to avoid systems calls if the desired
418 * memberships match the current memership.
419 */
420
421 for (rn = route_top(IF_OIFS(ifp)); rn; rn = route_next (rn))
422 {
423 struct ospf_interface *oi = rn->info;
424
425 if (oi && (OSPF_IF_PARAM(oi, passive_interface) == OSPF_IF_PASSIVE))
426 ospf_if_set_multicast(oi);
427 }
428 /*
429 * XXX It is not clear what state transitions the interface needs to
430 * undergo when going from active to passive. Fixing this will
431 * require precise identification of interfaces having such a
432 * transition.
433 */
434
435 return CMD_SUCCESS;
436 }
437
438 DEFUN (no_ospf_passive_interface,
439 no_ospf_passive_interface_addr_cmd,
440 "no passive-interface <IFNAME [A.B.C.D]|default>",
441 NO_STR
442 "Allow routing updates on an interface\n"
443 "Interface's name\n"
444 "IPv4 address\n"
445 "Allow routing updates on interfaces by default\n")
446 {
447 VTY_DECLVAR_CONTEXT(ospf, ospf);
448 int idx_ipv4 = 3;
449 struct interface *ifp;
450 struct in_addr addr = { .s_addr = INADDR_ANY };
451 struct ospf_if_params *params;
452 int ret;
453 struct route_node *rn;
454
455 if (strcmp (argv[2]->text, "default") == 0)
456 {
457 ospf_passive_interface_default (ospf, OSPF_IF_ACTIVE);
458 return CMD_SUCCESS;
459 }
460
461 ifp = if_get_by_name (argv[2]->arg, VRF_DEFAULT);
462
463 params = IF_DEF_PARAMS (ifp);
464
465 if (argc == 4)
466 {
467 ret = inet_aton(argv[idx_ipv4]->arg, &addr);
468 if (!ret)
469 {
470 vty_out (vty, "Please specify interface address by A.B.C.D%s",
471 VTY_NEWLINE);
472 return CMD_WARNING;
473 }
474
475 params = ospf_lookup_if_params (ifp, addr);
476 if (params == NULL)
477 return CMD_SUCCESS;
478 ospf_passive_interface_update_addr (ospf, ifp, params, OSPF_IF_ACTIVE,
479 addr);
480 }
481 ospf_passive_interface_update (ospf, ifp, params, OSPF_IF_ACTIVE);
482
483 /* XXX We should call ospf_if_set_multicast on exactly those
484 * interfaces for which the passive property changed. It is too much
485 * work to determine this set, so we do this for every interface.
486 * This is safe and reasonable because ospf_if_set_multicast uses a
487 * record of joined groups to avoid systems calls if the desired
488 * memberships match the current memership.
489 */
490 for (rn = route_top(IF_OIFS(ifp)); rn; rn = route_next (rn))
491 {
492 struct ospf_interface *oi = rn->info;
493
494 if (oi && (OSPF_IF_PARAM(oi, passive_interface) == OSPF_IF_ACTIVE))
495 ospf_if_set_multicast(oi);
496 }
497
498 return CMD_SUCCESS;
499 }
500
501
502
503 DEFUN (ospf_network_area,
504 ospf_network_area_cmd,
505 "network A.B.C.D/M area <A.B.C.D|(0-4294967295)>",
506 "Enable routing on an IP network\n"
507 "OSPF network prefix\n"
508 "Set the OSPF area ID\n"
509 "OSPF area ID in IP address format\n"
510 "OSPF area ID as a decimal value\n")
511 {
512 VTY_DECLVAR_CONTEXT(ospf, ospf);
513 int idx_ipv4_prefixlen = 1;
514 int idx_ipv4_number = 3;
515 struct prefix_ipv4 p;
516 struct in_addr area_id;
517 int ret, format;
518
519 if (ospf->instance)
520 {
521 vty_out (vty, "The network command is not supported in multi-instance ospf%s",
522 VTY_NEWLINE);
523 return CMD_WARNING;
524 }
525
526 if (ospf->if_ospf_cli_count > 0)
527 {
528 vty_out (vty, "Please remove all ip ospf area x.x.x.x commands first.%s",
529 VTY_NEWLINE);
530 return CMD_WARNING;
531 }
532
533 /* Get network prefix and Area ID. */
534 VTY_GET_IPV4_PREFIX ("network prefix", p, argv[idx_ipv4_prefixlen]->arg);
535 VTY_GET_OSPF_AREA_ID (area_id, format, argv[idx_ipv4_number]->arg);
536
537 ret = ospf_network_set (ospf, &p, area_id);
538 if (ret == 0)
539 {
540 vty_out (vty, "There is already same network statement.%s", VTY_NEWLINE);
541 return CMD_WARNING;
542 }
543
544 return CMD_SUCCESS;
545 }
546
547 DEFUN (no_ospf_network_area,
548 no_ospf_network_area_cmd,
549 "no network A.B.C.D/M area <A.B.C.D|(0-4294967295)>",
550 NO_STR
551 "Enable routing on an IP network\n"
552 "OSPF network prefix\n"
553 "Set the OSPF area ID\n"
554 "OSPF area ID in IP address format\n"
555 "OSPF area ID as a decimal value\n")
556 {
557 VTY_DECLVAR_CONTEXT(ospf, ospf);
558 int idx_ipv4_prefixlen = 2;
559 int idx_ipv4_number = 4;
560 struct prefix_ipv4 p;
561 struct in_addr area_id;
562 int ret, format;
563
564 if (ospf->instance)
565 {
566 vty_out (vty, "The network command is not supported in multi-instance ospf%s",
567 VTY_NEWLINE);
568 return CMD_WARNING;
569 }
570
571 /* Get network prefix and Area ID. */
572 VTY_GET_IPV4_PREFIX ("network prefix", p, argv[idx_ipv4_prefixlen]->arg);
573 VTY_GET_OSPF_AREA_ID (area_id, format, argv[idx_ipv4_number]->arg);
574
575 ret = ospf_network_unset (ospf, &p, area_id);
576 if (ret == 0)
577 {
578 vty_out (vty, "Can't find specified network area configuration.%s",
579 VTY_NEWLINE);
580 return CMD_WARNING;
581 }
582
583 return CMD_SUCCESS;
584 }
585
586 DEFUN (ospf_area_range,
587 ospf_area_range_cmd,
588 "area <A.B.C.D|(0-4294967295)> range A.B.C.D/M [advertise [cost (0-16777215)]]",
589 "OSPF area parameters\n"
590 "OSPF area ID in IP address format\n"
591 "OSPF area ID as a decimal value\n"
592 "Summarize routes matching address/mask (border routers only)\n"
593 "Area range prefix\n"
594 "Advertise this range (default)\n"
595 "User specified metric for this range\n"
596 "Advertised metric for this range\n")
597 {
598 VTY_DECLVAR_CONTEXT(ospf, ospf);
599 int idx_ipv4_number = 1;
600 int idx_ipv4_prefixlen = 3;
601 int idx_cost = 6;
602 struct prefix_ipv4 p;
603 struct in_addr area_id;
604 int format;
605 u_int32_t cost;
606
607 VTY_GET_OSPF_AREA_ID (area_id, format, argv[idx_ipv4_number]->arg);
608 VTY_GET_IPV4_PREFIX ("area range", p, argv[idx_ipv4_prefixlen]->arg);
609
610 ospf_area_range_set (ospf, area_id, &p, OSPF_AREA_RANGE_ADVERTISE);
611 if (argc > 5)
612 {
613 VTY_GET_INTEGER ("range cost", cost, argv[idx_cost]->arg);
614 ospf_area_range_cost_set (ospf, area_id, &p, cost);
615 }
616
617 return CMD_SUCCESS;
618 }
619
620 DEFUN (ospf_area_range_cost,
621 ospf_area_range_cost_cmd,
622 "area <A.B.C.D|(0-4294967295)> range A.B.C.D/M cost (0-16777215)",
623 "OSPF area parameters\n"
624 "OSPF area ID in IP address format\n"
625 "OSPF area ID as a decimal value\n"
626 "Summarize routes matching address/mask (border routers only)\n"
627 "Area range prefix\n"
628 "User specified metric for this range\n"
629 "Advertised metric for this range\n")
630 {
631 VTY_DECLVAR_CONTEXT(ospf, ospf);
632 int idx_ipv4_number = 1;
633 int idx_ipv4_prefixlen = 3;
634 int idx_cost = 5;
635 struct prefix_ipv4 p;
636 struct in_addr area_id;
637 int format;
638 u_int32_t cost;
639
640 VTY_GET_OSPF_AREA_ID (area_id, format, argv[idx_ipv4_number]->arg);
641 VTY_GET_IPV4_PREFIX ("area range", p, argv[idx_ipv4_prefixlen]->arg);
642
643 ospf_area_range_set (ospf, area_id, &p, OSPF_AREA_RANGE_ADVERTISE);
644
645 VTY_GET_INTEGER ("range cost", cost, argv[idx_cost]->arg);
646 ospf_area_range_cost_set (ospf, area_id, &p, cost);
647
648 return CMD_SUCCESS;
649 }
650
651 DEFUN (ospf_area_range_not_advertise,
652 ospf_area_range_not_advertise_cmd,
653 "area <A.B.C.D|(0-4294967295)> range A.B.C.D/M not-advertise",
654 "OSPF area parameters\n"
655 "OSPF area ID in IP address format\n"
656 "OSPF area ID as a decimal value\n"
657 "Summarize routes matching address/mask (border routers only)\n"
658 "Area range prefix\n"
659 "DoNotAdvertise this range\n")
660 {
661 VTY_DECLVAR_CONTEXT(ospf, ospf);
662 int idx_ipv4_number = 1;
663 int idx_ipv4_prefixlen = 3;
664 struct prefix_ipv4 p;
665 struct in_addr area_id;
666 int format;
667
668 VTY_GET_OSPF_AREA_ID (area_id, format, argv[idx_ipv4_number]->arg);
669 VTY_GET_IPV4_PREFIX ("area range", p, argv[idx_ipv4_prefixlen]->arg);
670
671 ospf_area_range_set (ospf, area_id, &p, 0);
672
673 return CMD_SUCCESS;
674 }
675
676 DEFUN (no_ospf_area_range,
677 no_ospf_area_range_cmd,
678 "no area <A.B.C.D|(0-4294967295)> range A.B.C.D/M [<cost (0-16777215)|advertise [cost (0-16777215)]|not-advertise>]",
679 NO_STR
680 "OSPF area parameters\n"
681 "OSPF area ID in IP address format\n"
682 "OSPF area ID as a decimal value\n"
683 "Summarize routes matching address/mask (border routers only)\n"
684 "Area range prefix\n"
685 "User specified metric for this range\n"
686 "Advertised metric for this range\n"
687 "Advertise this range (default)\n"
688 "User specified metric for this range\n"
689 "Advertised metric for this range\n"
690 "DoNotAdvertise this range\n")
691 {
692 VTY_DECLVAR_CONTEXT(ospf, ospf);
693 int idx_ipv4_number = 2;
694 int idx_ipv4_prefixlen = 4;
695 struct prefix_ipv4 p;
696 struct in_addr area_id;
697 int format;
698
699 VTY_GET_OSPF_AREA_ID (area_id, format, argv[idx_ipv4_number]->arg);
700 VTY_GET_IPV4_PREFIX ("area range", p, argv[idx_ipv4_prefixlen]->arg);
701
702 ospf_area_range_unset (ospf, area_id, &p);
703
704 return CMD_SUCCESS;
705 }
706
707 DEFUN (ospf_area_range_substitute,
708 ospf_area_range_substitute_cmd,
709 "area <A.B.C.D|(0-4294967295)> range A.B.C.D/M substitute A.B.C.D/M",
710 "OSPF area parameters\n"
711 "OSPF area ID in IP address format\n"
712 "OSPF area ID as a decimal value\n"
713 "Summarize routes matching address/mask (border routers only)\n"
714 "Area range prefix\n"
715 "Announce area range as another prefix\n"
716 "Network prefix to be announced instead of range\n")
717 {
718 VTY_DECLVAR_CONTEXT(ospf, ospf);
719 int idx_ipv4_number = 1;
720 int idx_ipv4_prefixlen = 3;
721 int idx_ipv4_prefixlen_2 = 5;
722 struct prefix_ipv4 p, s;
723 struct in_addr area_id;
724 int format;
725
726 VTY_GET_OSPF_AREA_ID (area_id, format, argv[idx_ipv4_number]->arg);
727 VTY_GET_IPV4_PREFIX ("area range", p, argv[idx_ipv4_prefixlen]->arg);
728 VTY_GET_IPV4_PREFIX ("substituted network prefix", s, argv[idx_ipv4_prefixlen_2]->arg);
729
730 ospf_area_range_substitute_set (ospf, area_id, &p, &s);
731
732 return CMD_SUCCESS;
733 }
734
735 DEFUN (no_ospf_area_range_substitute,
736 no_ospf_area_range_substitute_cmd,
737 "no area <A.B.C.D|(0-4294967295)> range A.B.C.D/M substitute A.B.C.D/M",
738 NO_STR
739 "OSPF area parameters\n"
740 "OSPF area ID in IP address format\n"
741 "OSPF area ID as a decimal value\n"
742 "Summarize routes matching address/mask (border routers only)\n"
743 "Area range prefix\n"
744 "Announce area range as another prefix\n"
745 "Network prefix to be announced instead of range\n")
746 {
747 VTY_DECLVAR_CONTEXT(ospf, ospf);
748 int idx_ipv4_number = 2;
749 int idx_ipv4_prefixlen = 4;
750 int idx_ipv4_prefixlen_2 = 6;
751 struct prefix_ipv4 p, s;
752 struct in_addr area_id;
753 int format;
754
755 VTY_GET_OSPF_AREA_ID (area_id, format, argv[idx_ipv4_number]->arg);
756 VTY_GET_IPV4_PREFIX ("area range", p, argv[idx_ipv4_prefixlen]->arg);
757 VTY_GET_IPV4_PREFIX ("substituted network prefix", s, argv[idx_ipv4_prefixlen_2]->arg);
758
759 ospf_area_range_substitute_unset (ospf, area_id, &p);
760
761 return CMD_SUCCESS;
762 }
763
764
765 /* Command Handler Logic in VLink stuff is delicate!!
766
767 ALTER AT YOUR OWN RISK!!!!
768
769 Various dummy values are used to represent 'NoChange' state for
770 VLink configuration NOT being changed by a VLink command, and
771 special syntax is used within the command strings so that the
772 typed in command verbs can be seen in the configuration command
773 bacckend handler. This is to drastically reduce the verbeage
774 required to coe up with a reasonably compatible Cisco VLink command
775
776 - Matthew Grant <grantma@anathoth.gen.nz>
777 Wed, 21 Feb 2001 15:13:52 +1300
778 */
779
780 /* Configuration data for virtual links
781 */
782 struct ospf_vl_config_data {
783 struct vty *vty; /* vty stuff */
784 struct in_addr area_id; /* area ID from command line */
785 int format; /* command line area ID format */
786 struct in_addr vl_peer; /* command line vl_peer */
787 int auth_type; /* Authehntication type, if given */
788 char *auth_key; /* simple password if present */
789 int crypto_key_id; /* Cryptographic key ID */
790 char *md5_key; /* MD5 authentication key */
791 int hello_interval; /* Obvious what these are... */
792 int retransmit_interval;
793 int transmit_delay;
794 int dead_interval;
795 };
796
797 static void
798 ospf_vl_config_data_init (struct ospf_vl_config_data *vl_config,
799 struct vty *vty)
800 {
801 memset (vl_config, 0, sizeof (struct ospf_vl_config_data));
802 vl_config->auth_type = OSPF_AUTH_CMD_NOTSEEN;
803 vl_config->vty = vty;
804 }
805
806 static struct ospf_vl_data *
807 ospf_find_vl_data (struct ospf *ospf, struct ospf_vl_config_data *vl_config)
808 {
809 struct ospf_area *area;
810 struct ospf_vl_data *vl_data;
811 struct vty *vty;
812 struct in_addr area_id;
813
814 vty = vl_config->vty;
815 area_id = vl_config->area_id;
816
817 if (area_id.s_addr == OSPF_AREA_BACKBONE)
818 {
819 vty_out (vty,
820 "Configuring VLs over the backbone is not allowed%s",
821 VTY_NEWLINE);
822 return NULL;
823 }
824 area = ospf_area_get (ospf, area_id, vl_config->format);
825
826 if (area->external_routing != OSPF_AREA_DEFAULT)
827 {
828 if (vl_config->format == OSPF_AREA_ID_FORMAT_ADDRESS)
829 vty_out (vty, "Area %s is %s%s",
830 inet_ntoa (area_id),
831 area->external_routing == OSPF_AREA_NSSA?"nssa":"stub",
832 VTY_NEWLINE);
833 else
834 vty_out (vty, "Area %ld is %s%s",
835 (u_long)ntohl (area_id.s_addr),
836 area->external_routing == OSPF_AREA_NSSA?"nssa":"stub",
837 VTY_NEWLINE);
838 return NULL;
839 }
840
841 if ((vl_data = ospf_vl_lookup (ospf, area, vl_config->vl_peer)) == NULL)
842 {
843 vl_data = ospf_vl_data_new (area, vl_config->vl_peer);
844 if (vl_data->vl_oi == NULL)
845 {
846 vl_data->vl_oi = ospf_vl_new (ospf, vl_data);
847 ospf_vl_add (ospf, vl_data);
848 ospf_spf_calculate_schedule (ospf, SPF_FLAG_CONFIG_CHANGE);
849 }
850 }
851 return vl_data;
852 }
853
854
855 static int
856 ospf_vl_set_security (struct ospf_vl_data *vl_data,
857 struct ospf_vl_config_data *vl_config)
858 {
859 struct crypt_key *ck;
860 struct vty *vty;
861 struct interface *ifp = vl_data->vl_oi->ifp;
862
863 vty = vl_config->vty;
864
865 if (vl_config->auth_type != OSPF_AUTH_CMD_NOTSEEN)
866 {
867 SET_IF_PARAM (IF_DEF_PARAMS (ifp), auth_type);
868 IF_DEF_PARAMS (ifp)->auth_type = vl_config->auth_type;
869 }
870
871 if (vl_config->auth_key)
872 {
873 memset(IF_DEF_PARAMS (ifp)->auth_simple, 0, OSPF_AUTH_SIMPLE_SIZE+1);
874 strncpy ((char *) IF_DEF_PARAMS (ifp)->auth_simple, vl_config->auth_key,
875 OSPF_AUTH_SIMPLE_SIZE);
876 }
877 else if (vl_config->md5_key)
878 {
879 if (ospf_crypt_key_lookup (IF_DEF_PARAMS (ifp)->auth_crypt, vl_config->crypto_key_id)
880 != NULL)
881 {
882 vty_out (vty, "OSPF: Key %d already exists%s",
883 vl_config->crypto_key_id, VTY_NEWLINE);
884 return CMD_WARNING;
885 }
886 ck = ospf_crypt_key_new ();
887 ck->key_id = vl_config->crypto_key_id;
888 memset(ck->auth_key, 0, OSPF_AUTH_MD5_SIZE+1);
889 strncpy ((char *) ck->auth_key, vl_config->md5_key, OSPF_AUTH_MD5_SIZE);
890
891 ospf_crypt_key_add (IF_DEF_PARAMS (ifp)->auth_crypt, ck);
892 }
893 else if (vl_config->crypto_key_id != 0)
894 {
895 /* Delete a key */
896
897 if (ospf_crypt_key_lookup (IF_DEF_PARAMS (ifp)->auth_crypt,
898 vl_config->crypto_key_id) == NULL)
899 {
900 vty_out (vty, "OSPF: Key %d does not exist%s",
901 vl_config->crypto_key_id, VTY_NEWLINE);
902 return CMD_WARNING;
903 }
904
905 ospf_crypt_key_delete (IF_DEF_PARAMS (ifp)->auth_crypt, vl_config->crypto_key_id);
906
907 }
908
909 return CMD_SUCCESS;
910 }
911
912 static int
913 ospf_vl_set_timers (struct ospf_vl_data *vl_data,
914 struct ospf_vl_config_data *vl_config)
915 {
916 struct interface *ifp = vl_data->vl_oi->ifp;
917 /* Virtual Link data initialised to defaults, so only set
918 if a value given */
919 if (vl_config->hello_interval)
920 {
921 SET_IF_PARAM (IF_DEF_PARAMS (ifp), v_hello);
922 IF_DEF_PARAMS (ifp)->v_hello = vl_config->hello_interval;
923 }
924
925 if (vl_config->dead_interval)
926 {
927 SET_IF_PARAM (IF_DEF_PARAMS (ifp), v_wait);
928 IF_DEF_PARAMS (ifp)->v_wait = vl_config->dead_interval;
929 }
930
931 if (vl_config->retransmit_interval)
932 {
933 SET_IF_PARAM (IF_DEF_PARAMS (ifp), retransmit_interval);
934 IF_DEF_PARAMS (ifp)->retransmit_interval = vl_config->retransmit_interval;
935 }
936
937 if (vl_config->transmit_delay)
938 {
939 SET_IF_PARAM (IF_DEF_PARAMS (ifp), transmit_delay);
940 IF_DEF_PARAMS (ifp)->transmit_delay = vl_config->transmit_delay;
941 }
942
943 return CMD_SUCCESS;
944 }
945
946
947 /* The business end of all of the above */
948 static int
949 ospf_vl_set (struct ospf *ospf, struct ospf_vl_config_data *vl_config)
950 {
951 struct ospf_vl_data *vl_data;
952 int ret;
953
954 vl_data = ospf_find_vl_data (ospf, vl_config);
955 if (!vl_data)
956 return CMD_WARNING;
957
958 /* Process this one first as it can have a fatal result, which can
959 only logically occur if the virtual link exists already
960 Thus a command error does not result in a change to the
961 running configuration such as unexpectedly altered timer
962 values etc.*/
963 ret = ospf_vl_set_security (vl_data, vl_config);
964 if (ret != CMD_SUCCESS)
965 return ret;
966
967 /* Set any time based parameters, these area already range checked */
968
969 ret = ospf_vl_set_timers (vl_data, vl_config);
970 if (ret != CMD_SUCCESS)
971 return ret;
972
973 return CMD_SUCCESS;
974
975 }
976
977 /* This stuff exists to make specifying all the alias commands A LOT simpler
978 */
979 #define VLINK_HELPSTR_IPADDR \
980 "OSPF area parameters\n" \
981 "OSPF area ID in IP address format\n" \
982 "OSPF area ID as a decimal value\n" \
983 "Configure a virtual link\n" \
984 "Router ID of the remote ABR\n"
985
986 #define VLINK_HELPSTR_AUTHTYPE_SIMPLE \
987 "Enable authentication on this virtual link\n" \
988 "dummy string \n"
989
990 #define VLINK_HELPSTR_AUTHTYPE_ALL \
991 VLINK_HELPSTR_AUTHTYPE_SIMPLE \
992 "Use null authentication\n" \
993 "Use message-digest authentication\n"
994
995 #define VLINK_HELPSTR_TIME_PARAM_NOSECS \
996 "Time between HELLO packets\n" \
997 "Time between retransmitting lost link state advertisements\n" \
998 "Link state transmit delay\n" \
999 "Interval time after which a neighbor is declared down\n"
1000
1001 #define VLINK_HELPSTR_TIME_PARAM \
1002 VLINK_HELPSTR_TIME_PARAM_NOSECS \
1003 "Seconds\n"
1004
1005 #define VLINK_HELPSTR_AUTH_SIMPLE \
1006 "Authentication password (key)\n" \
1007 "The OSPF password (key)"
1008
1009 #define VLINK_HELPSTR_AUTH_MD5 \
1010 "Message digest authentication password (key)\n" \
1011 "dummy string \n" \
1012 "Key ID\n" \
1013 "Use MD5 algorithm\n" \
1014 "The OSPF password (key)"
1015
1016 DEFUN (ospf_area_vlink,
1017 ospf_area_vlink_cmd,
1018 "area <A.B.C.D|(0-4294967295)> virtual-link A.B.C.D [authentication] [<message-digest|null>] [<message-digest-key (1-255) md5 KEY|authentication-key AUTH_KEY>]",
1019 VLINK_HELPSTR_IPADDR
1020 "Enable authentication on this virtual link\n" \
1021 "Use null authentication\n" \
1022 "Use message-digest authentication\n"
1023 "Message digest authentication password (key)\n" \
1024 "Key ID\n" \
1025 "Use MD5 algorithm\n" \
1026 "The OSPF password (key)")
1027 {
1028 VTY_DECLVAR_CONTEXT(ospf, ospf);
1029 int idx_ipv4_number = 1;
1030 int idx_ipv4 = 3;
1031 struct ospf_vl_config_data vl_config;
1032 char auth_key[OSPF_AUTH_SIMPLE_SIZE+1];
1033 char md5_key[OSPF_AUTH_MD5_SIZE+1];
1034 int i;
1035 int ret;
1036
1037 ospf_vl_config_data_init(&vl_config, vty);
1038
1039 /* Read off first 2 parameters and check them */
1040 ret = ospf_str2area_id (argv[idx_ipv4_number]->arg, &vl_config.area_id, &vl_config.format);
1041 if (ret < 0)
1042 {
1043 vty_out (vty, "OSPF area ID is invalid%s", VTY_NEWLINE);
1044 return CMD_WARNING;
1045 }
1046
1047 ret = inet_aton (argv[idx_ipv4]->arg, &vl_config.vl_peer);
1048 if (! ret)
1049 {
1050 vty_out (vty, "Please specify valid Router ID as a.b.c.d%s",
1051 VTY_NEWLINE);
1052 return CMD_WARNING;
1053 }
1054
1055 if (argc <=4)
1056 {
1057 /* Thats all folks! - BUGS B. strikes again!!!*/
1058
1059 return ospf_vl_set (ospf, &vl_config);
1060 }
1061
1062 /* Deal with other parameters */
1063 for (i=5; i < argc; i++)
1064 {
1065
1066 /* vty_out (vty, "argv[%d]->arg - %s%s", i, argv[i]->text, VTY_NEWLINE); */
1067
1068 switch (argv[i]->arg[0])
1069 {
1070
1071 case 'a':
1072 if (i >5 || strncmp (argv[i]->arg, "authentication-", 15) == 0)
1073 {
1074 /* authentication-key - this option can occur anywhere on
1075 command line. At start of command line
1076 must check for authentication option. */
1077 memset (auth_key, 0, OSPF_AUTH_SIMPLE_SIZE + 1);
1078 strncpy (auth_key, argv[i+1]->text, OSPF_AUTH_SIMPLE_SIZE);
1079 vl_config.auth_key = auth_key;
1080 i++;
1081 }
1082 else if (strncmp (argv[i]->arg, "authentication", 14) == 0)
1083 {
1084 /* authentication - this option can only occur at start
1085 of command line */
1086 vl_config.auth_type = OSPF_AUTH_SIMPLE;
1087 if ((i+1) < argc)
1088 {
1089 if (strncmp (argv[i+1]->arg, "n", 1) == 0)
1090 {
1091 /* "authentication null" */
1092 vl_config.auth_type = OSPF_AUTH_NULL;
1093 i++;
1094 }
1095 else if (strncmp (argv[i+1]->arg, "m", 1) == 0
1096 && strcmp (argv[i+1]->arg, "message-digest-") != 0)
1097 {
1098 /* "authentication message-digest" */
1099 vl_config.auth_type = OSPF_AUTH_CRYPTOGRAPHIC;
1100 i++;
1101 }
1102 }
1103 }
1104 break;
1105
1106 case 'm':
1107 /* message-digest-key */
1108 i++;
1109 if (i < argc)
1110 {
1111 vl_config.crypto_key_id = strtol (argv[i]->arg, NULL, 10);
1112 if (vl_config.crypto_key_id < 0)
1113 return CMD_WARNING;
1114 i++;
1115 if (i < argc)
1116 {
1117 memset(md5_key, 0, OSPF_AUTH_MD5_SIZE+1);
1118 strncpy (md5_key, argv[i]->arg, OSPF_AUTH_MD5_SIZE);
1119 vl_config.md5_key = md5_key;
1120 }
1121 }
1122 else
1123 vl_config.md5_key = NULL;
1124 break;
1125 }
1126 }
1127
1128
1129 /* Action configuration */
1130
1131 return ospf_vl_set (ospf, &vl_config);
1132
1133 }
1134
1135 DEFUN (ospf_area_vlink_intervals,
1136 ospf_area_vlink_intervals_cmd,
1137 "area <A.B.C.D|(0-4294967295)> virtual-link A.B.C.D"
1138 "<hello-interval|retransmit-interval|transmit-delay|dead-interval> (1-65535)"
1139 "[<hello-interval|retransmit-interval|transmit-delay|dead-interval> (1-65535)"
1140 "[<hello-interval|retransmit-interval|transmit-delay|dead-interval> (1-65535)"
1141 "[<hello-interval|retransmit-interval|transmit-delay|dead-interval> (1-65535)"
1142 "]]]",
1143 VLINK_HELPSTR_IPADDR
1144 VLINK_HELPSTR_TIME_PARAM
1145 VLINK_HELPSTR_TIME_PARAM
1146 VLINK_HELPSTR_TIME_PARAM
1147 VLINK_HELPSTR_TIME_PARAM)
1148 {
1149 VTY_DECLVAR_CONTEXT(ospf, ospf);
1150 struct ospf_vl_config_data vl_config;
1151 int ret = 0;
1152
1153 ospf_vl_config_data_init(&vl_config, vty);
1154
1155 char *area_id = argv[1]->arg;
1156 char *router_id = argv[3]->arg;
1157
1158 ret = ospf_str2area_id (area_id, &vl_config.area_id, &vl_config.format);
1159 if (ret < 0)
1160 {
1161 vty_out (vty, "OSPF area ID is invalid%s", VTY_NEWLINE);
1162 return CMD_WARNING;
1163 }
1164
1165 ret = inet_aton (router_id, &vl_config.vl_peer);
1166 if (! ret)
1167 {
1168 vty_out (vty, "Please specify valid Router ID as a.b.c.d%s", VTY_NEWLINE);
1169 return CMD_WARNING;
1170 }
1171 for (unsigned int i = 0; i < 4; i++)
1172 {
1173 int idx = 0;
1174 if (argv_find (argv, argc, "hello-interval", &idx))
1175 vl_config.hello_interval = strtol(argv[idx+1]->arg, NULL, 10);
1176 else if (argv_find (argv, argc, "retransmit-interval", &idx))
1177 vl_config.retransmit_interval = strtol(argv[idx+1]->arg, NULL, 10);
1178 else if (argv_find (argv, argc, "transmit-delay", &idx))
1179 vl_config.transmit_delay = strtol(argv[idx+1]->arg, NULL, 10);
1180 else if (argv_find (argv, argc, "dead-interval", &idx))
1181 vl_config.dead_interval = strtol(argv[idx+1]->arg, NULL, 10);
1182 }
1183
1184 /* Action configuration */
1185 return ospf_vl_set (ospf, &vl_config);
1186 }
1187
1188 DEFUN (no_ospf_area_vlink,
1189 no_ospf_area_vlink_cmd,
1190 "no area <A.B.C.D|(0-4294967295)> virtual-link A.B.C.D [authentication] [<message-digest|null>] [<message-digest-key (1-255) md5 KEY|authentication-key AUTH_KEY>]",
1191 NO_STR
1192 VLINK_HELPSTR_IPADDR
1193 "Enable authentication on this virtual link\n" \
1194 "Use null authentication\n" \
1195 "Use message-digest authentication\n"
1196 "Message digest authentication password (key)\n" \
1197 "Key ID\n" \
1198 "Use MD5 algorithm\n" \
1199 "The OSPF password (key)")
1200 {
1201 VTY_DECLVAR_CONTEXT(ospf, ospf);
1202 int idx_ipv4_number = 2;
1203 int idx_ipv4 = 4;
1204 struct ospf_area *area;
1205 struct ospf_vl_config_data vl_config;
1206 struct ospf_vl_data *vl_data = NULL;
1207 char auth_key[OSPF_AUTH_SIMPLE_SIZE+1];
1208 int i;
1209 int ret, format;
1210
1211 ospf_vl_config_data_init(&vl_config, vty);
1212
1213 ret = ospf_str2area_id (argv[idx_ipv4_number]->arg, &vl_config.area_id, &format);
1214 if (ret < 0)
1215 {
1216 vty_out (vty, "OSPF area ID is invalid%s", VTY_NEWLINE);
1217 return CMD_WARNING;
1218 }
1219
1220 area = ospf_area_lookup_by_area_id (ospf, vl_config.area_id);
1221 if (!area)
1222 {
1223 vty_out (vty, "Area does not exist%s", VTY_NEWLINE);
1224 return CMD_WARNING;
1225 }
1226
1227 ret = inet_aton (argv[idx_ipv4]->arg, &vl_config.vl_peer);
1228 if (! ret)
1229 {
1230 vty_out (vty, "Please specify valid Router ID as a.b.c.d%s",
1231 VTY_NEWLINE);
1232 return CMD_WARNING;
1233 }
1234
1235 if (argc <=5)
1236 {
1237 /* Basic VLink no command */
1238 /* Thats all folks! - BUGS B. strikes again!!!*/
1239 if ((vl_data = ospf_vl_lookup (ospf, area, vl_config.vl_peer)))
1240 ospf_vl_delete (ospf, vl_data);
1241
1242 ospf_area_check_free (ospf, vl_config.area_id);
1243
1244 return CMD_SUCCESS;
1245 }
1246
1247 /* If we are down here, we are reseting parameters */
1248
1249 /* Deal with other parameters */
1250 for (i=6; i < argc; i++)
1251 {
1252 /* vty_out (vty, "argv[%d] - %s%s", i, argv[i], VTY_NEWLINE); */
1253
1254 switch (argv[i]->arg[0])
1255 {
1256
1257 case 'a':
1258 if (i > 2 || strncmp (argv[i]->text, "authentication-", 15) == 0)
1259 {
1260 /* authentication-key - this option can occur anywhere on
1261 command line. At start of command line
1262 must check for authentication option. */
1263 memset (auth_key, 0, OSPF_AUTH_SIMPLE_SIZE + 1);
1264 vl_config.auth_key = auth_key;
1265 }
1266 else if (strncmp (argv[i]->text, "authentication", 14) == 0)
1267 {
1268 /* authentication - this option can only occur at start
1269 of command line */
1270 vl_config.auth_type = OSPF_AUTH_NOTSET;
1271 }
1272 break;
1273
1274 case 'm':
1275 /* message-digest-key */
1276 /* Delete one key */
1277 i++;
1278 if (i < argc)
1279 {
1280 vl_config.crypto_key_id = strtol (argv[i]->arg, NULL, 10);
1281 if (vl_config.crypto_key_id < 0)
1282 return CMD_WARNING;
1283 vl_config.md5_key = NULL;
1284 }
1285 else
1286 return CMD_WARNING;
1287 break;
1288
1289 }
1290 }
1291
1292
1293 /* Action configuration */
1294
1295 return ospf_vl_set (ospf, &vl_config);
1296 }
1297
1298 DEFUN (no_ospf_area_vlink_intervals,
1299 no_ospf_area_vlink_intervals_cmd,
1300 "no area <A.B.C.D|(0-4294967295)> virtual-link A.B.C.D"
1301 "<hello-interval|retransmit-interval|transmit-delay|dead-interval> (1-65535)"
1302 "[<hello-interval|retransmit-interval|transmit-delay|dead-interval> (1-65535)"
1303 "[<hello-interval|retransmit-interval|transmit-delay|dead-interval> (1-65535)"
1304 "[<hello-interval|retransmit-interval|transmit-delay|dead-interval> (1-65535)"
1305 "]]]",
1306 NO_STR
1307 VLINK_HELPSTR_IPADDR
1308 VLINK_HELPSTR_TIME_PARAM
1309 VLINK_HELPSTR_TIME_PARAM
1310 VLINK_HELPSTR_TIME_PARAM
1311 VLINK_HELPSTR_TIME_PARAM)
1312 {
1313 VTY_DECLVAR_CONTEXT(ospf, ospf);
1314 struct ospf_vl_config_data vl_config;
1315 int ret = 0;
1316
1317 ospf_vl_config_data_init(&vl_config, vty);
1318
1319 char *area_id = argv[2]->arg;
1320 char *router_id = argv[4]->arg;
1321
1322 ret = ospf_str2area_id (area_id, &vl_config.area_id, &vl_config.format);
1323 if (ret < 0)
1324 {
1325 vty_out (vty, "OSPF area ID is invalid%s", VTY_NEWLINE);
1326 return CMD_WARNING;
1327 }
1328
1329 ret = inet_aton (router_id, &vl_config.vl_peer);
1330 if (! ret)
1331 {
1332 vty_out (vty, "Please specify valid Router ID as a.b.c.d%s", VTY_NEWLINE);
1333 return CMD_WARNING;
1334 }
1335
1336 for (unsigned int i = 0; i < 4; i++)
1337 {
1338 int idx = 0;
1339 if (argv_find (argv, argc, "hello-interval", &idx))
1340 vl_config.hello_interval = OSPF_HELLO_INTERVAL_DEFAULT;
1341 else if (argv_find (argv, argc, "retransmit-interval", &idx))
1342 vl_config.retransmit_interval = OSPF_RETRANSMIT_INTERVAL_DEFAULT;
1343 else if (argv_find (argv, argc, "transmit-delay", &idx))
1344 vl_config.transmit_delay = OSPF_TRANSMIT_DELAY_DEFAULT;
1345 else if (argv_find (argv, argc, "dead-interval", &idx))
1346 vl_config.dead_interval = OSPF_ROUTER_DEAD_INTERVAL_DEFAULT;
1347 }
1348
1349 /* Action configuration */
1350 return ospf_vl_set (ospf, &vl_config);
1351 }
1352
1353 DEFUN (ospf_area_shortcut,
1354 ospf_area_shortcut_cmd,
1355 "area <A.B.C.D|(0-4294967295)> shortcut <default|enable|disable>",
1356 "OSPF area parameters\n"
1357 "OSPF area ID in IP address format\n"
1358 "OSPF area ID as a decimal value\n"
1359 "Configure the area's shortcutting mode\n"
1360 "Set default shortcutting behavior\n"
1361 "Enable shortcutting through the area\n"
1362 "Disable shortcutting through the area\n")
1363 {
1364 VTY_DECLVAR_CONTEXT(ospf, ospf);
1365 int idx_ipv4_number = 1;
1366 int idx_enable_disable = 3;
1367 struct ospf_area *area;
1368 struct in_addr area_id;
1369 int mode;
1370 int format;
1371
1372 VTY_GET_OSPF_AREA_ID_NO_BB ("shortcut", area_id, format, argv[idx_ipv4_number]->arg);
1373
1374 area = ospf_area_get (ospf, area_id, format);
1375
1376 if (strncmp (argv[idx_enable_disable]->arg, "de", 2) == 0)
1377 mode = OSPF_SHORTCUT_DEFAULT;
1378 else if (strncmp (argv[idx_enable_disable]->arg, "di", 2) == 0)
1379 mode = OSPF_SHORTCUT_DISABLE;
1380 else if (strncmp (argv[idx_enable_disable]->arg, "e", 1) == 0)
1381 mode = OSPF_SHORTCUT_ENABLE;
1382 else
1383 return CMD_WARNING;
1384
1385 ospf_area_shortcut_set (ospf, area, mode);
1386
1387 if (ospf->abr_type != OSPF_ABR_SHORTCUT)
1388 vty_out (vty, "Shortcut area setting will take effect "
1389 "only when the router is configured as Shortcut ABR%s",
1390 VTY_NEWLINE);
1391
1392 return CMD_SUCCESS;
1393 }
1394
1395 DEFUN (no_ospf_area_shortcut,
1396 no_ospf_area_shortcut_cmd,
1397 "no area <A.B.C.D|(0-4294967295)> shortcut <enable|disable>",
1398 NO_STR
1399 "OSPF area parameters\n"
1400 "OSPF area ID in IP address format\n"
1401 "OSPF area ID as a decimal value\n"
1402 "Deconfigure the area's shortcutting mode\n"
1403 "Deconfigure enabled shortcutting through the area\n"
1404 "Deconfigure disabled shortcutting through the area\n")
1405 {
1406 VTY_DECLVAR_CONTEXT(ospf, ospf);
1407 int idx_ipv4_number = 2;
1408 struct ospf_area *area;
1409 struct in_addr area_id;
1410 int format;
1411
1412 VTY_GET_OSPF_AREA_ID_NO_BB ("shortcut", area_id, format, argv[idx_ipv4_number]->arg);
1413
1414 area = ospf_area_lookup_by_area_id (ospf, area_id);
1415 if (!area)
1416 return CMD_SUCCESS;
1417
1418 ospf_area_shortcut_unset (ospf, area);
1419
1420 return CMD_SUCCESS;
1421 }
1422
1423
1424 DEFUN (ospf_area_stub,
1425 ospf_area_stub_cmd,
1426 "area <A.B.C.D|(0-4294967295)> stub",
1427 "OSPF area parameters\n"
1428 "OSPF area ID in IP address format\n"
1429 "OSPF area ID as a decimal value\n"
1430 "Configure OSPF area as stub\n")
1431 {
1432 VTY_DECLVAR_CONTEXT(ospf, ospf);
1433 int idx_ipv4_number = 1;
1434 struct in_addr area_id;
1435 int ret, format;
1436
1437 VTY_GET_OSPF_AREA_ID_NO_BB ("stub", area_id, format, argv[idx_ipv4_number]->arg);
1438
1439 ret = ospf_area_stub_set (ospf, area_id);
1440 if (ret == 0)
1441 {
1442 vty_out (vty, "First deconfigure all virtual link through this area%s",
1443 VTY_NEWLINE);
1444 return CMD_WARNING;
1445 }
1446
1447 ospf_area_no_summary_unset (ospf, area_id);
1448
1449 return CMD_SUCCESS;
1450 }
1451
1452 DEFUN (ospf_area_stub_no_summary,
1453 ospf_area_stub_no_summary_cmd,
1454 "area <A.B.C.D|(0-4294967295)> stub no-summary",
1455 "OSPF stub parameters\n"
1456 "OSPF area ID in IP address format\n"
1457 "OSPF area ID as a decimal value\n"
1458 "Configure OSPF area as stub\n"
1459 "Do not inject inter-area routes into stub\n")
1460 {
1461 VTY_DECLVAR_CONTEXT(ospf, ospf);
1462 int idx_ipv4_number = 1;
1463 struct in_addr area_id;
1464 int ret, format;
1465
1466 VTY_GET_OSPF_AREA_ID_NO_BB ("stub", area_id, format, argv[idx_ipv4_number]->arg);
1467
1468 ret = ospf_area_stub_set (ospf, area_id);
1469 if (ret == 0)
1470 {
1471 vty_out (vty, "%% Area cannot be stub as it contains a virtual link%s",
1472 VTY_NEWLINE);
1473 return CMD_WARNING;
1474 }
1475
1476 ospf_area_no_summary_set (ospf, area_id);
1477
1478 return CMD_SUCCESS;
1479 }
1480
1481 DEFUN (no_ospf_area_stub,
1482 no_ospf_area_stub_cmd,
1483 "no area <A.B.C.D|(0-4294967295)> stub",
1484 NO_STR
1485 "OSPF area parameters\n"
1486 "OSPF area ID in IP address format\n"
1487 "OSPF area ID as a decimal value\n"
1488 "Configure OSPF area as stub\n")
1489 {
1490 VTY_DECLVAR_CONTEXT(ospf, ospf);
1491 int idx_ipv4_number = 2;
1492 struct in_addr area_id;
1493 int format;
1494
1495 VTY_GET_OSPF_AREA_ID_NO_BB ("stub", area_id, format, argv[idx_ipv4_number]->arg);
1496
1497 ospf_area_stub_unset (ospf, area_id);
1498 ospf_area_no_summary_unset (ospf, area_id);
1499
1500 return CMD_SUCCESS;
1501 }
1502
1503 DEFUN (no_ospf_area_stub_no_summary,
1504 no_ospf_area_stub_no_summary_cmd,
1505 "no area <A.B.C.D|(0-4294967295)> stub no-summary",
1506 NO_STR
1507 "OSPF area parameters\n"
1508 "OSPF area ID in IP address format\n"
1509 "OSPF area ID as a decimal value\n"
1510 "Configure OSPF area as stub\n"
1511 "Do not inject inter-area routes into area\n")
1512 {
1513 VTY_DECLVAR_CONTEXT(ospf, ospf);
1514 int idx_ipv4_number = 2;
1515 struct in_addr area_id;
1516 int format;
1517
1518 VTY_GET_OSPF_AREA_ID_NO_BB ("stub", area_id, format, argv[idx_ipv4_number]->arg);
1519 ospf_area_no_summary_unset (ospf, area_id);
1520
1521 return CMD_SUCCESS;
1522 }
1523
1524 static int
1525 ospf_area_nssa_cmd_handler (struct vty *vty, int argc, struct cmd_token **argv,
1526 int nosum)
1527 {
1528 VTY_DECLVAR_CONTEXT(ospf, ospf);
1529 struct in_addr area_id;
1530 int ret, format;
1531
1532 VTY_GET_OSPF_AREA_ID_NO_BB ("NSSA", area_id, format, argv[1]->arg);
1533
1534 ret = ospf_area_nssa_set (ospf, area_id);
1535 if (ret == 0)
1536 {
1537 vty_out (vty, "%% Area cannot be nssa as it contains a virtual link%s",
1538 VTY_NEWLINE);
1539 return CMD_WARNING;
1540 }
1541
1542 if (argc > 1)
1543 {
1544 if (strncmp (argv[3]->text, "translate-c", 11) == 0)
1545 ospf_area_nssa_translator_role_set (ospf, area_id,
1546 OSPF_NSSA_ROLE_CANDIDATE);
1547 else if (strncmp (argv[3]->text, "translate-n", 11) == 0)
1548 ospf_area_nssa_translator_role_set (ospf, area_id,
1549 OSPF_NSSA_ROLE_NEVER);
1550 else if (strncmp (argv[3]->text, "translate-a", 11) == 0)
1551 ospf_area_nssa_translator_role_set (ospf, area_id,
1552 OSPF_NSSA_ROLE_ALWAYS);
1553 }
1554 else
1555 {
1556 ospf_area_nssa_translator_role_set (ospf, area_id,
1557 OSPF_NSSA_ROLE_CANDIDATE);
1558 }
1559
1560 if (nosum)
1561 ospf_area_no_summary_set (ospf, area_id);
1562 else
1563 ospf_area_no_summary_unset (ospf, area_id);
1564
1565 ospf_schedule_abr_task (ospf);
1566
1567 return CMD_SUCCESS;
1568 }
1569
1570 DEFUN (ospf_area_nssa_translate_no_summary,
1571 ospf_area_nssa_translate_no_summary_cmd,
1572 "area <A.B.C.D|(0-4294967295)> nssa <translate-candidate|translate-never|translate-always> no-summary",
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"
1580 "Do not inject inter-area routes into nssa\n")
1581 {
1582 return ospf_area_nssa_cmd_handler (vty, argc, argv, 1);
1583 }
1584
1585 DEFUN (ospf_area_nssa_translate,
1586 ospf_area_nssa_translate_cmd,
1587 "area <A.B.C.D|(0-4294967295)> nssa <translate-candidate|translate-never|translate-always>",
1588 "OSPF area parameters\n"
1589 "OSPF area ID in IP address format\n"
1590 "OSPF area ID as a decimal value\n"
1591 "Configure OSPF area as nssa\n"
1592 "Configure NSSA-ABR for translate election (default)\n"
1593 "Configure NSSA-ABR to never translate\n"
1594 "Configure NSSA-ABR to always translate\n")
1595 {
1596 return ospf_area_nssa_cmd_handler (vty, argc, argv, 0);
1597 }
1598
1599 DEFUN (ospf_area_nssa,
1600 ospf_area_nssa_cmd,
1601 "area <A.B.C.D|(0-4294967295)> nssa",
1602 "OSPF area parameters\n"
1603 "OSPF area ID in IP address format\n"
1604 "OSPF area ID as a decimal value\n"
1605 "Configure OSPF area as nssa\n")
1606 {
1607 return ospf_area_nssa_cmd_handler (vty, argc, argv, 0);
1608 }
1609
1610 DEFUN (ospf_area_nssa_no_summary,
1611 ospf_area_nssa_no_summary_cmd,
1612 "area <A.B.C.D|(0-4294967295)> nssa no-summary",
1613 "OSPF area parameters\n"
1614 "OSPF area ID in IP address format\n"
1615 "OSPF area ID as a decimal value\n"
1616 "Configure OSPF area as nssa\n"
1617 "Do not inject inter-area routes into nssa\n")
1618 {
1619 return ospf_area_nssa_cmd_handler (vty, argc, argv, 1);
1620 }
1621
1622 DEFUN (no_ospf_area_nssa,
1623 no_ospf_area_nssa_cmd,
1624 "no area <A.B.C.D|(0-4294967295)> nssa [<translate-candidate|translate-never|translate-always> [no-summary]]",
1625 NO_STR
1626 "OSPF area parameters\n"
1627 "OSPF area ID in IP address format\n"
1628 "OSPF area ID as a decimal value\n"
1629 "Configure OSPF area as nssa\n"
1630 "Configure NSSA-ABR for translate election (default)\n"
1631 "Configure NSSA-ABR to never translate\n"
1632 "Configure NSSA-ABR to always translate\n"
1633 "Do not inject inter-area routes into nssa\n")
1634 {
1635 VTY_DECLVAR_CONTEXT(ospf, ospf);
1636 int idx_ipv4_number = 2;
1637 struct in_addr area_id;
1638 int format;
1639
1640 VTY_GET_OSPF_AREA_ID_NO_BB ("NSSA", area_id, format, argv[idx_ipv4_number]->arg);
1641
1642 ospf_area_nssa_unset (ospf, area_id);
1643 ospf_area_no_summary_unset (ospf, area_id);
1644
1645 ospf_schedule_abr_task (ospf);
1646
1647 return CMD_SUCCESS;
1648 }
1649
1650
1651 DEFUN (ospf_area_default_cost,
1652 ospf_area_default_cost_cmd,
1653 "area <A.B.C.D|(0-4294967295)> default-cost (0-16777215)",
1654 "OSPF area parameters\n"
1655 "OSPF area ID in IP address format\n"
1656 "OSPF area ID as a decimal value\n"
1657 "Set the summary-default cost of a NSSA or stub area\n"
1658 "Stub's advertised default summary cost\n")
1659 {
1660 VTY_DECLVAR_CONTEXT(ospf, ospf);
1661 int idx_ipv4_number = 1;
1662 int idx_number = 3;
1663 struct ospf_area *area;
1664 struct in_addr area_id;
1665 u_int32_t cost;
1666 int format;
1667 struct prefix_ipv4 p;
1668
1669 VTY_GET_OSPF_AREA_ID_NO_BB ("default-cost", area_id, format, argv[idx_ipv4_number]->arg);
1670 VTY_GET_INTEGER_RANGE ("stub default cost", cost, argv[idx_number]->arg, 0, 16777215);
1671
1672 area = ospf_area_get (ospf, area_id, format);
1673
1674 if (area->external_routing == OSPF_AREA_DEFAULT)
1675 {
1676 vty_out (vty, "The area is neither stub, nor NSSA%s", VTY_NEWLINE);
1677 return CMD_WARNING;
1678 }
1679
1680 area->default_cost = cost;
1681
1682 p.family = AF_INET;
1683 p.prefix.s_addr = OSPF_DEFAULT_DESTINATION;
1684 p.prefixlen = 0;
1685 if (IS_DEBUG_OSPF_EVENT)
1686 zlog_debug ("ospf_abr_announce_stub_defaults(): "
1687 "announcing 0.0.0.0/0 to area %s",
1688 inet_ntoa (area->area_id));
1689 ospf_abr_announce_network_to_area (&p, area->default_cost, area);
1690
1691 return CMD_SUCCESS;
1692 }
1693
1694 DEFUN (no_ospf_area_default_cost,
1695 no_ospf_area_default_cost_cmd,
1696 "no area <A.B.C.D|(0-4294967295)> default-cost (0-16777215)",
1697 NO_STR
1698 "OSPF area parameters\n"
1699 "OSPF area ID in IP address format\n"
1700 "OSPF area ID as a decimal value\n"
1701 "Set the summary-default cost of a NSSA or stub area\n"
1702 "Stub's advertised default summary cost\n")
1703 {
1704 VTY_DECLVAR_CONTEXT(ospf, ospf);
1705 int idx_ipv4_number = 2;
1706 int idx_number = 4;
1707 struct ospf_area *area;
1708 struct in_addr area_id;
1709 int format;
1710 struct prefix_ipv4 p;
1711
1712 VTY_GET_OSPF_AREA_ID_NO_BB ("default-cost", area_id, format, argv[idx_ipv4_number]->arg);
1713 VTY_CHECK_INTEGER_RANGE ("stub default cost", argv[idx_number]->arg, 0, OSPF_LS_INFINITY);
1714
1715 area = ospf_area_lookup_by_area_id (ospf, area_id);
1716 if (area == NULL)
1717 return CMD_SUCCESS;
1718
1719 if (area->external_routing == OSPF_AREA_DEFAULT)
1720 {
1721 vty_out (vty, "The area is neither stub, nor NSSA%s", VTY_NEWLINE);
1722 return CMD_WARNING;
1723 }
1724
1725 area->default_cost = 1;
1726
1727 p.family = AF_INET;
1728 p.prefix.s_addr = OSPF_DEFAULT_DESTINATION;
1729 p.prefixlen = 0;
1730 if (IS_DEBUG_OSPF_EVENT)
1731 zlog_debug ("ospf_abr_announce_stub_defaults(): "
1732 "announcing 0.0.0.0/0 to area %s",
1733 inet_ntoa (area->area_id));
1734 ospf_abr_announce_network_to_area (&p, area->default_cost, area);
1735
1736
1737 ospf_area_check_free (ospf, area_id);
1738
1739 return CMD_SUCCESS;
1740 }
1741
1742 DEFUN (ospf_area_export_list,
1743 ospf_area_export_list_cmd,
1744 "area <A.B.C.D|(0-4294967295)> export-list NAME",
1745 "OSPF area parameters\n"
1746 "OSPF area ID in IP address format\n"
1747 "OSPF area ID as a decimal value\n"
1748 "Set the filter for networks announced to other areas\n"
1749 "Name of the access-list\n")
1750 {
1751 VTY_DECLVAR_CONTEXT(ospf, ospf);
1752 int idx_ipv4_number = 1;
1753 struct ospf_area *area;
1754 struct in_addr area_id;
1755 int format;
1756
1757 VTY_GET_OSPF_AREA_ID (area_id, format, argv[idx_ipv4_number]->arg);
1758
1759 area = ospf_area_get (ospf, area_id, format);
1760 ospf_area_export_list_set (ospf, area, argv[3]->arg);
1761
1762 return CMD_SUCCESS;
1763 }
1764
1765 DEFUN (no_ospf_area_export_list,
1766 no_ospf_area_export_list_cmd,
1767 "no area <A.B.C.D|(0-4294967295)> export-list NAME",
1768 NO_STR
1769 "OSPF area parameters\n"
1770 "OSPF area ID in IP address format\n"
1771 "OSPF area ID as a decimal value\n"
1772 "Unset the filter for networks announced to other areas\n"
1773 "Name of the access-list\n")
1774 {
1775 VTY_DECLVAR_CONTEXT(ospf, ospf);
1776 int idx_ipv4_number = 2;
1777 struct ospf_area *area;
1778 struct in_addr area_id;
1779 int format;
1780
1781 VTY_GET_OSPF_AREA_ID (area_id, format, argv[idx_ipv4_number]->arg);
1782
1783 area = ospf_area_lookup_by_area_id (ospf, area_id);
1784 if (area == NULL)
1785 return CMD_SUCCESS;
1786
1787 ospf_area_export_list_unset (ospf, area);
1788
1789 return CMD_SUCCESS;
1790 }
1791
1792
1793 DEFUN (ospf_area_import_list,
1794 ospf_area_import_list_cmd,
1795 "area <A.B.C.D|(0-4294967295)> import-list NAME",
1796 "OSPF area parameters\n"
1797 "OSPF area ID in IP address format\n"
1798 "OSPF area ID as a decimal value\n"
1799 "Set the filter for networks from other areas announced to the specified one\n"
1800 "Name of the access-list\n")
1801 {
1802 VTY_DECLVAR_CONTEXT(ospf, ospf);
1803 int idx_ipv4_number = 1;
1804 struct ospf_area *area;
1805 struct in_addr area_id;
1806 int format;
1807
1808 VTY_GET_OSPF_AREA_ID (area_id, format, argv[idx_ipv4_number]->arg);
1809
1810 area = ospf_area_get (ospf, area_id, format);
1811 ospf_area_import_list_set (ospf, area, argv[3]->arg);
1812
1813 return CMD_SUCCESS;
1814 }
1815
1816 DEFUN (no_ospf_area_import_list,
1817 no_ospf_area_import_list_cmd,
1818 "no area <A.B.C.D|(0-4294967295)> import-list NAME",
1819 NO_STR
1820 "OSPF area parameters\n"
1821 "OSPF area ID in IP address format\n"
1822 "OSPF area ID as a decimal value\n"
1823 "Unset the filter for networks announced to other areas\n"
1824 "Name of the access-list\n")
1825 {
1826 VTY_DECLVAR_CONTEXT(ospf, ospf);
1827 int idx_ipv4_number = 2;
1828 struct ospf_area *area;
1829 struct in_addr area_id;
1830 int format;
1831
1832 VTY_GET_OSPF_AREA_ID (area_id, format, argv[idx_ipv4_number]->arg);
1833
1834 area = ospf_area_lookup_by_area_id (ospf, area_id);
1835 if (area == NULL)
1836 return CMD_SUCCESS;
1837
1838 ospf_area_import_list_unset (ospf, area);
1839
1840 return CMD_SUCCESS;
1841 }
1842
1843 DEFUN (ospf_area_filter_list,
1844 ospf_area_filter_list_cmd,
1845 "area <A.B.C.D|(0-4294967295)> filter-list prefix WORD <in|out>",
1846 "OSPF area parameters\n"
1847 "OSPF area ID in IP address format\n"
1848 "OSPF area ID as a decimal value\n"
1849 "Filter networks between OSPF areas\n"
1850 "Filter prefixes between OSPF areas\n"
1851 "Name of an IP prefix-list\n"
1852 "Filter networks sent to this area\n"
1853 "Filter networks sent from this area\n")
1854 {
1855 VTY_DECLVAR_CONTEXT(ospf, ospf);
1856 int idx_ipv4_number = 1;
1857 int idx_word = 4;
1858 int idx_in_out = 5;
1859 struct ospf_area *area;
1860 struct in_addr area_id;
1861 struct prefix_list *plist;
1862 int format;
1863
1864 VTY_GET_OSPF_AREA_ID (area_id, format, argv[idx_ipv4_number]->arg);
1865
1866 area = ospf_area_get (ospf, area_id, format);
1867 plist = prefix_list_lookup (AFI_IP, argv[idx_word]->arg);
1868 if (strncmp (argv[idx_in_out]->arg, "in", 2) == 0)
1869 {
1870 PREFIX_LIST_IN (area) = plist;
1871 if (PREFIX_NAME_IN (area))
1872 free (PREFIX_NAME_IN (area));
1873
1874 PREFIX_NAME_IN (area) = strdup (argv[idx_word]->arg);
1875 ospf_schedule_abr_task (ospf);
1876 }
1877 else
1878 {
1879 PREFIX_LIST_OUT (area) = plist;
1880 if (PREFIX_NAME_OUT (area))
1881 free (PREFIX_NAME_OUT (area));
1882
1883 PREFIX_NAME_OUT (area) = strdup (argv[idx_word]->arg);
1884 ospf_schedule_abr_task (ospf);
1885 }
1886
1887 return CMD_SUCCESS;
1888 }
1889
1890 DEFUN (no_ospf_area_filter_list,
1891 no_ospf_area_filter_list_cmd,
1892 "no area <A.B.C.D|(0-4294967295)> filter-list prefix WORD <in|out>",
1893 NO_STR
1894 "OSPF area parameters\n"
1895 "OSPF area ID in IP address format\n"
1896 "OSPF area ID as a decimal value\n"
1897 "Filter networks between OSPF areas\n"
1898 "Filter prefixes between OSPF areas\n"
1899 "Name of an IP prefix-list\n"
1900 "Filter networks sent to this area\n"
1901 "Filter networks sent from this area\n")
1902 {
1903 VTY_DECLVAR_CONTEXT(ospf, ospf);
1904 int idx_ipv4_number = 2;
1905 int idx_word = 5;
1906 int idx_in_out = 6;
1907 struct ospf_area *area;
1908 struct in_addr area_id;
1909 int format;
1910
1911 VTY_GET_OSPF_AREA_ID (area_id, format, argv[idx_ipv4_number]->arg);
1912
1913 if ((area = ospf_area_lookup_by_area_id (ospf, area_id)) == NULL)
1914 return CMD_SUCCESS;
1915
1916 if (strncmp (argv[idx_in_out]->arg, "in", 2) == 0)
1917 {
1918 if (PREFIX_NAME_IN (area))
1919 if (strcmp (PREFIX_NAME_IN (area), argv[idx_word]->arg) != 0)
1920 return CMD_SUCCESS;
1921
1922 PREFIX_LIST_IN (area) = NULL;
1923 if (PREFIX_NAME_IN (area))
1924 free (PREFIX_NAME_IN (area));
1925
1926 PREFIX_NAME_IN (area) = NULL;
1927
1928 ospf_schedule_abr_task (ospf);
1929 }
1930 else
1931 {
1932 if (PREFIX_NAME_OUT (area))
1933 if (strcmp (PREFIX_NAME_OUT (area), argv[idx_word]->arg) != 0)
1934 return CMD_SUCCESS;
1935
1936 PREFIX_LIST_OUT (area) = NULL;
1937 if (PREFIX_NAME_OUT (area))
1938 free (PREFIX_NAME_OUT (area));
1939
1940 PREFIX_NAME_OUT (area) = NULL;
1941
1942 ospf_schedule_abr_task (ospf);
1943 }
1944
1945 return CMD_SUCCESS;
1946 }
1947
1948
1949 DEFUN (ospf_area_authentication_message_digest,
1950 ospf_area_authentication_message_digest_cmd,
1951 "area <A.B.C.D|(0-4294967295)> authentication message-digest",
1952 "OSPF area parameters\n"
1953 "OSPF area ID in IP address format\n"
1954 "OSPF area ID as a decimal value\n"
1955 "Enable authentication\n"
1956 "Use message-digest authentication\n")
1957 {
1958 VTY_DECLVAR_CONTEXT(ospf, ospf);
1959 int idx_ipv4_number = 1;
1960 struct ospf_area *area;
1961 struct in_addr area_id;
1962 int format;
1963
1964 VTY_GET_OSPF_AREA_ID (area_id, format, argv[idx_ipv4_number]->arg);
1965
1966 area = ospf_area_get (ospf, area_id, format);
1967 area->auth_type = OSPF_AUTH_CRYPTOGRAPHIC;
1968
1969 return CMD_SUCCESS;
1970 }
1971
1972 DEFUN (ospf_area_authentication,
1973 ospf_area_authentication_cmd,
1974 "area <A.B.C.D|(0-4294967295)> authentication",
1975 "OSPF area parameters\n"
1976 "OSPF area ID in IP address format\n"
1977 "OSPF area ID as a decimal value\n"
1978 "Enable authentication\n")
1979 {
1980 VTY_DECLVAR_CONTEXT(ospf, ospf);
1981 int idx_ipv4_number = 1;
1982 struct ospf_area *area;
1983 struct in_addr area_id;
1984 int format;
1985
1986 VTY_GET_OSPF_AREA_ID (area_id, format, argv[idx_ipv4_number]->arg);
1987
1988 area = ospf_area_get (ospf, area_id, format);
1989 area->auth_type = OSPF_AUTH_SIMPLE;
1990
1991 return CMD_SUCCESS;
1992 }
1993
1994 DEFUN (no_ospf_area_authentication,
1995 no_ospf_area_authentication_cmd,
1996 "no area <A.B.C.D|(0-4294967295)> authentication",
1997 NO_STR
1998 "OSPF area parameters\n"
1999 "OSPF area ID in IP address format\n"
2000 "OSPF area ID as a decimal value\n"
2001 "Enable authentication\n")
2002 {
2003 VTY_DECLVAR_CONTEXT(ospf, ospf);
2004 int idx_ipv4_number = 2;
2005 struct ospf_area *area;
2006 struct in_addr area_id;
2007 int format;
2008
2009 VTY_GET_OSPF_AREA_ID (area_id, format, argv[idx_ipv4_number]->arg);
2010
2011 area = ospf_area_lookup_by_area_id (ospf, area_id);
2012 if (area == NULL)
2013 return CMD_SUCCESS;
2014
2015 area->auth_type = OSPF_AUTH_NULL;
2016
2017 ospf_area_check_free (ospf, area_id);
2018
2019 return CMD_SUCCESS;
2020 }
2021
2022
2023 DEFUN (ospf_abr_type,
2024 ospf_abr_type_cmd,
2025 "ospf abr-type <cisco|ibm|shortcut|standard>",
2026 "OSPF specific commands\n"
2027 "Set OSPF ABR type\n"
2028 "Alternative ABR, cisco implementation\n"
2029 "Alternative ABR, IBM implementation\n"
2030 "Shortcut ABR\n"
2031 "Standard behavior (RFC2328)\n")
2032 {
2033 VTY_DECLVAR_CONTEXT(ospf, ospf);
2034 int idx_vendor = 2;
2035 u_char abr_type = OSPF_ABR_UNKNOWN;
2036
2037 if (strncmp (argv[idx_vendor]->arg, "c", 1) == 0)
2038 abr_type = OSPF_ABR_CISCO;
2039 else if (strncmp (argv[idx_vendor]->arg, "i", 1) == 0)
2040 abr_type = OSPF_ABR_IBM;
2041 else if (strncmp (argv[idx_vendor]->arg, "sh", 2) == 0)
2042 abr_type = OSPF_ABR_SHORTCUT;
2043 else if (strncmp (argv[idx_vendor]->arg, "st", 2) == 0)
2044 abr_type = OSPF_ABR_STAND;
2045 else
2046 return CMD_WARNING;
2047
2048 /* If ABR type value is changed, schedule ABR task. */
2049 if (ospf->abr_type != abr_type)
2050 {
2051 ospf->abr_type = abr_type;
2052 ospf_schedule_abr_task (ospf);
2053 }
2054
2055 return CMD_SUCCESS;
2056 }
2057
2058 DEFUN (no_ospf_abr_type,
2059 no_ospf_abr_type_cmd,
2060 "no ospf abr-type <cisco|ibm|shortcut|standard>",
2061 NO_STR
2062 "OSPF specific commands\n"
2063 "Set OSPF ABR type\n"
2064 "Alternative ABR, cisco implementation\n"
2065 "Alternative ABR, IBM implementation\n"
2066 "Shortcut ABR\n"
2067 "Standard ABR\n")
2068 {
2069 VTY_DECLVAR_CONTEXT(ospf, ospf);
2070 int idx_vendor = 3;
2071 u_char abr_type = OSPF_ABR_UNKNOWN;
2072
2073 if (strncmp (argv[idx_vendor]->arg, "c", 1) == 0)
2074 abr_type = OSPF_ABR_CISCO;
2075 else if (strncmp (argv[idx_vendor]->arg, "i", 1) == 0)
2076 abr_type = OSPF_ABR_IBM;
2077 else if (strncmp (argv[idx_vendor]->arg, "sh", 2) == 0)
2078 abr_type = OSPF_ABR_SHORTCUT;
2079 else if (strncmp (argv[idx_vendor]->arg, "st", 2) == 0)
2080 abr_type = OSPF_ABR_STAND;
2081 else
2082 return CMD_WARNING;
2083
2084 /* If ABR type value is changed, schedule ABR task. */
2085 if (ospf->abr_type == abr_type)
2086 {
2087 ospf->abr_type = OSPF_ABR_DEFAULT;
2088 ospf_schedule_abr_task (ospf);
2089 }
2090
2091 return CMD_SUCCESS;
2092 }
2093
2094 DEFUN (ospf_log_adjacency_changes,
2095 ospf_log_adjacency_changes_cmd,
2096 "log-adjacency-changes",
2097 "Log changes in adjacency state\n")
2098 {
2099 VTY_DECLVAR_CONTEXT(ospf, ospf);
2100
2101 SET_FLAG(ospf->config, OSPF_LOG_ADJACENCY_CHANGES);
2102 UNSET_FLAG(ospf->config, OSPF_LOG_ADJACENCY_DETAIL);
2103 return CMD_SUCCESS;
2104 }
2105
2106 DEFUN (ospf_log_adjacency_changes_detail,
2107 ospf_log_adjacency_changes_detail_cmd,
2108 "log-adjacency-changes detail",
2109 "Log changes in adjacency state\n"
2110 "Log all state changes\n")
2111 {
2112 VTY_DECLVAR_CONTEXT(ospf, ospf);
2113
2114 SET_FLAG(ospf->config, OSPF_LOG_ADJACENCY_CHANGES);
2115 SET_FLAG(ospf->config, OSPF_LOG_ADJACENCY_DETAIL);
2116 return CMD_SUCCESS;
2117 }
2118
2119 DEFUN (no_ospf_log_adjacency_changes,
2120 no_ospf_log_adjacency_changes_cmd,
2121 "no log-adjacency-changes",
2122 NO_STR
2123 "Log changes in adjacency state\n")
2124 {
2125 VTY_DECLVAR_CONTEXT(ospf, ospf);
2126
2127 UNSET_FLAG(ospf->config, OSPF_LOG_ADJACENCY_DETAIL);
2128 UNSET_FLAG(ospf->config, OSPF_LOG_ADJACENCY_CHANGES);
2129 return CMD_SUCCESS;
2130 }
2131
2132 DEFUN (no_ospf_log_adjacency_changes_detail,
2133 no_ospf_log_adjacency_changes_detail_cmd,
2134 "no log-adjacency-changes detail",
2135 NO_STR
2136 "Log changes in adjacency state\n"
2137 "Log all state changes\n")
2138 {
2139 VTY_DECLVAR_CONTEXT(ospf, ospf);
2140
2141 UNSET_FLAG(ospf->config, OSPF_LOG_ADJACENCY_DETAIL);
2142 return CMD_SUCCESS;
2143 }
2144
2145 DEFUN (ospf_compatible_rfc1583,
2146 ospf_compatible_rfc1583_cmd,
2147 "compatible rfc1583",
2148 "OSPF compatibility list\n"
2149 "compatible with RFC 1583\n")
2150 {
2151 VTY_DECLVAR_CONTEXT(ospf, ospf);
2152
2153 if (!CHECK_FLAG (ospf->config, OSPF_RFC1583_COMPATIBLE))
2154 {
2155 SET_FLAG (ospf->config, OSPF_RFC1583_COMPATIBLE);
2156 ospf_spf_calculate_schedule (ospf, SPF_FLAG_CONFIG_CHANGE);
2157 }
2158 return CMD_SUCCESS;
2159 }
2160
2161 DEFUN (no_ospf_compatible_rfc1583,
2162 no_ospf_compatible_rfc1583_cmd,
2163 "no compatible rfc1583",
2164 NO_STR
2165 "OSPF compatibility list\n"
2166 "compatible with RFC 1583\n")
2167 {
2168 VTY_DECLVAR_CONTEXT(ospf, ospf);
2169
2170 if (CHECK_FLAG (ospf->config, OSPF_RFC1583_COMPATIBLE))
2171 {
2172 UNSET_FLAG (ospf->config, OSPF_RFC1583_COMPATIBLE);
2173 ospf_spf_calculate_schedule (ospf, SPF_FLAG_CONFIG_CHANGE);
2174 }
2175 return CMD_SUCCESS;
2176 }
2177
2178 ALIAS (ospf_compatible_rfc1583,
2179 ospf_rfc1583_flag_cmd,
2180 "ospf rfc1583compatibility",
2181 "OSPF specific commands\n"
2182 "Enable the RFC1583Compatibility flag\n")
2183
2184 ALIAS (no_ospf_compatible_rfc1583,
2185 no_ospf_rfc1583_flag_cmd,
2186 "no ospf rfc1583compatibility",
2187 NO_STR
2188 "OSPF specific commands\n"
2189 "Disable the RFC1583Compatibility flag\n")
2190
2191 static int
2192 ospf_timers_spf_set (struct vty *vty, unsigned int delay,
2193 unsigned int hold,
2194 unsigned int max)
2195 {
2196 VTY_DECLVAR_CONTEXT(ospf, ospf);
2197
2198 ospf->spf_delay = delay;
2199 ospf->spf_holdtime = hold;
2200 ospf->spf_max_holdtime = max;
2201
2202 return CMD_SUCCESS;
2203 }
2204
2205 DEFUN (ospf_timers_min_ls_interval,
2206 ospf_timers_min_ls_interval_cmd,
2207 "timers throttle lsa all (0-5000)",
2208 "Adjust routing timers\n"
2209 "Throttling adaptive timer\n"
2210 "LSA delay between transmissions\n"
2211 "All LSA types\n"
2212 "Delay (msec) between sending LSAs\n")
2213 {
2214 VTY_DECLVAR_CONTEXT(ospf, ospf);
2215 int idx_number = 4;
2216 unsigned int interval;
2217
2218 if (argc != 1)
2219 {
2220 vty_out (vty, "Insufficient arguments%s", VTY_NEWLINE);
2221 return CMD_WARNING;
2222 }
2223
2224 VTY_GET_INTEGER ("LSA interval", interval, argv[idx_number]->arg);
2225
2226 ospf->min_ls_interval = interval;
2227
2228 return CMD_SUCCESS;
2229 }
2230
2231 DEFUN (no_ospf_timers_min_ls_interval,
2232 no_ospf_timers_min_ls_interval_cmd,
2233 "no timers throttle lsa all [(0-5000)]",
2234 NO_STR
2235 "Adjust routing timers\n"
2236 "Throttling adaptive timer\n"
2237 "LSA delay between transmissions\n"
2238 "All LSA types\n"
2239 "Delay (msec) between sending LSAs\n")
2240 {
2241 VTY_DECLVAR_CONTEXT(ospf, ospf);
2242 ospf->min_ls_interval = OSPF_MIN_LS_INTERVAL;
2243
2244 return CMD_SUCCESS;
2245 }
2246
2247
2248 DEFUN (ospf_timers_min_ls_arrival,
2249 ospf_timers_min_ls_arrival_cmd,
2250 "timers lsa arrival (0-1000)",
2251 "Adjust routing timers\n"
2252 "Throttling link state advertisement delays\n"
2253 "OSPF minimum arrival interval delay\n"
2254 "Delay (msec) between accepted LSAs\n")
2255 {
2256 VTY_DECLVAR_CONTEXT(ospf, ospf);
2257 int idx_number = 3;
2258 unsigned int arrival;
2259
2260 if (argc != 1)
2261 {
2262 vty_out (vty, "Insufficient arguments%s", VTY_NEWLINE);
2263 return CMD_WARNING;
2264 }
2265
2266 VTY_GET_INTEGER_RANGE ("minimum LSA inter-arrival time", arrival, argv[idx_number]->arg, 0, 1000);
2267
2268 ospf->min_ls_arrival = arrival;
2269
2270 return CMD_SUCCESS;
2271 }
2272
2273 DEFUN (no_ospf_timers_min_ls_arrival,
2274 no_ospf_timers_min_ls_arrival_cmd,
2275 "no timers lsa arrival [(0-1000)]",
2276 NO_STR
2277 "Adjust routing timers\n"
2278 "Throttling link state advertisement delays\n"
2279 "OSPF minimum arrival interval delay\n"
2280 "Delay (msec) between accepted LSAs\n")
2281 {
2282 VTY_DECLVAR_CONTEXT(ospf, ospf);
2283
2284 ospf->min_ls_arrival = OSPF_MIN_LS_ARRIVAL;
2285
2286 return CMD_SUCCESS;
2287 }
2288
2289
2290 DEFUN (ospf_timers_throttle_spf,
2291 ospf_timers_throttle_spf_cmd,
2292 "timers throttle spf (0-600000) (0-600000) (0-600000)",
2293 "Adjust routing timers\n"
2294 "Throttling adaptive timer\n"
2295 "OSPF SPF timers\n"
2296 "Delay (msec) from first change received till SPF calculation\n"
2297 "Initial hold time (msec) between consecutive SPF calculations\n"
2298 "Maximum hold time (msec)\n")
2299 {
2300 int idx_number = 3;
2301 int idx_number_2 = 4;
2302 int idx_number_3 = 5;
2303 unsigned int delay, hold, max;
2304
2305 if (argc != 3)
2306 {
2307 vty_out (vty, "Insufficient arguments%s", VTY_NEWLINE);
2308 return CMD_WARNING;
2309 }
2310
2311 VTY_GET_INTEGER_RANGE ("SPF delay timer", delay, argv[idx_number]->arg, 0, 600000);
2312 VTY_GET_INTEGER_RANGE ("SPF hold timer", hold, argv[idx_number_2]->arg, 0, 600000);
2313 VTY_GET_INTEGER_RANGE ("SPF max-hold timer", max, argv[idx_number_3]->arg, 0, 600000);
2314
2315 return ospf_timers_spf_set (vty, delay, hold, max);
2316 }
2317
2318 DEFUN (no_ospf_timers_throttle_spf,
2319 no_ospf_timers_throttle_spf_cmd,
2320 "no timers throttle spf [(0-600000)(0-600000)(0-600000)]",
2321 NO_STR
2322 "Adjust routing timers\n"
2323 "Throttling adaptive timer\n"
2324 "OSPF SPF timers\n"
2325 "Delay (msec) from first change received till SPF calculation\n"
2326 "Initial hold time (msec) between consecutive SPF calculations\n"
2327 "Maximum hold time (msec)\n")
2328 {
2329 return ospf_timers_spf_set (vty,
2330 OSPF_SPF_DELAY_DEFAULT,
2331 OSPF_SPF_HOLDTIME_DEFAULT,
2332 OSPF_SPF_MAX_HOLDTIME_DEFAULT);
2333 }
2334
2335
2336 DEFUN (ospf_timers_lsa,
2337 ospf_timers_lsa_cmd,
2338 "timers lsa min-arrival (0-600000)",
2339 "Adjust routing timers\n"
2340 "OSPF LSA timers\n"
2341 "Minimum delay in receiving new version of a LSA\n"
2342 "Delay in milliseconds\n")
2343 {
2344 VTY_DECLVAR_CONTEXT(ospf, ospf);
2345 int idx_number = 3;
2346 unsigned int minarrival;
2347
2348 if (argc != 1)
2349 {
2350 vty_out (vty, "Insufficient number of arguments%s", VTY_NEWLINE);
2351 return CMD_WARNING;
2352 }
2353
2354 VTY_GET_INTEGER ("LSA min-arrival", minarrival, argv[idx_number]->arg);
2355
2356 ospf->min_ls_arrival = minarrival;
2357
2358 return CMD_SUCCESS;
2359 }
2360
2361 DEFUN (no_ospf_timers_lsa,
2362 no_ospf_timers_lsa_cmd,
2363 "no timers lsa min-arrival [(0-600000)]",
2364 NO_STR
2365 "Adjust routing timers\n"
2366 "OSPF LSA timers\n"
2367 "Minimum delay in receiving new version of a LSA\n"
2368 "Delay in milliseconds\n")
2369 {
2370 VTY_DECLVAR_CONTEXT(ospf, ospf);
2371 unsigned int minarrival;
2372
2373 if (argc > 4)
2374 {
2375 VTY_GET_INTEGER ("LSA min-arrival", minarrival, argv[4]->arg);
2376
2377 if (ospf->min_ls_arrival != minarrival ||
2378 minarrival == OSPF_MIN_LS_ARRIVAL)
2379 return CMD_SUCCESS;
2380 }
2381
2382 ospf->min_ls_arrival = OSPF_MIN_LS_ARRIVAL;
2383
2384 return CMD_SUCCESS;
2385 }
2386
2387 DEFUN (ospf_neighbor,
2388 ospf_neighbor_cmd,
2389 "neighbor A.B.C.D [priority (0-255) [poll-interval (1-65535)]]",
2390 NEIGHBOR_STR
2391 "Neighbor IP address\n"
2392 "Neighbor Priority\n"
2393 "Priority\n"
2394 "Dead Neighbor Polling interval\n"
2395 "Seconds\n")
2396 {
2397 VTY_DECLVAR_CONTEXT(ospf, ospf);
2398 int idx_ipv4 = 1;
2399 int idx_pri = 3;
2400 int idx_poll = 5;
2401 struct in_addr nbr_addr;
2402 unsigned int priority = OSPF_NEIGHBOR_PRIORITY_DEFAULT;
2403 unsigned int interval = OSPF_POLL_INTERVAL_DEFAULT;
2404
2405 VTY_GET_IPV4_ADDRESS ("neighbor address", nbr_addr, argv[idx_ipv4]->arg);
2406
2407 if (argc > 2)
2408 VTY_GET_INTEGER_RANGE ("neighbor priority", priority, argv[idx_pri]->arg, 0, 255);
2409
2410 if (argc > 4)
2411 VTY_GET_INTEGER_RANGE ("poll interval", interval, argv[idx_poll]->arg, 1, 65535);
2412
2413 ospf_nbr_nbma_set (ospf, nbr_addr);
2414
2415 if (argc > 2)
2416 ospf_nbr_nbma_priority_set (ospf, nbr_addr, priority);
2417
2418 if (argc > 4)
2419 ospf_nbr_nbma_poll_interval_set (ospf, nbr_addr, interval);
2420
2421 return CMD_SUCCESS;
2422 }
2423
2424 DEFUN (ospf_neighbor_poll_interval,
2425 ospf_neighbor_poll_interval_cmd,
2426 "neighbor A.B.C.D poll-interval (1-65535) [priority (0-255)]",
2427 NEIGHBOR_STR
2428 "Neighbor IP address\n"
2429 "Dead Neighbor Polling interval\n"
2430 "Seconds\n"
2431 "OSPF priority of non-broadcast neighbor\n"
2432 "Priority\n")
2433 {
2434 VTY_DECLVAR_CONTEXT(ospf, ospf);
2435 int idx_ipv4 = 1;
2436 int idx_poll = 3;
2437 int idx_pri = 5;
2438 struct in_addr nbr_addr;
2439 unsigned int priority = OSPF_NEIGHBOR_PRIORITY_DEFAULT;
2440 unsigned int interval = OSPF_POLL_INTERVAL_DEFAULT;
2441
2442 VTY_GET_IPV4_ADDRESS ("neighbor address", nbr_addr, argv[idx_ipv4]->arg);
2443
2444 VTY_GET_INTEGER_RANGE ("poll interval", interval, argv[idx_poll]->arg, 1, 65535);
2445
2446 if (argc > 4)
2447 VTY_GET_INTEGER_RANGE ("neighbor priority", priority, argv[idx_pri]->arg, 0, 255);
2448
2449 ospf_nbr_nbma_set (ospf, nbr_addr);
2450 ospf_nbr_nbma_poll_interval_set (ospf, nbr_addr, interval);
2451
2452 if (argc > 4)
2453 ospf_nbr_nbma_priority_set (ospf, nbr_addr, priority);
2454
2455 return CMD_SUCCESS;
2456 }
2457
2458 DEFUN (no_ospf_neighbor,
2459 no_ospf_neighbor_cmd,
2460 "no neighbor A.B.C.D [priority (0-255) [poll-interval (1-65525)]]",
2461 NO_STR
2462 NEIGHBOR_STR
2463 "Neighbor IP address\n"
2464 "Neighbor Priority\n"
2465 "Priority\n"
2466 "Dead Neighbor Polling interval\n"
2467 "Seconds\n")
2468 {
2469 VTY_DECLVAR_CONTEXT(ospf, ospf);
2470 int idx_ipv4 = 2;
2471 struct in_addr nbr_addr;
2472
2473 VTY_GET_IPV4_ADDRESS ("neighbor address", nbr_addr, argv[idx_ipv4]->arg);
2474
2475 (void)ospf_nbr_nbma_unset (ospf, nbr_addr);
2476
2477 return CMD_SUCCESS;
2478 }
2479
2480 DEFUN (no_ospf_neighbor_poll,
2481 no_ospf_neighbor_poll_cmd,
2482 "no neighbor A.B.C.D poll-interval (1-65535) [priority (0-255)]",
2483 NO_STR
2484 NEIGHBOR_STR
2485 "Neighbor IP address\n"
2486 "Dead Neighbor Polling interval\n"
2487 "Seconds\n"
2488 "Neighbor Priority\n"
2489 "Priority\n")
2490 {
2491 VTY_DECLVAR_CONTEXT(ospf, ospf);
2492 int idx_ipv4 = 2;
2493 struct in_addr nbr_addr;
2494
2495 VTY_GET_IPV4_ADDRESS ("neighbor address", nbr_addr, argv[idx_ipv4]->arg);
2496
2497 (void)ospf_nbr_nbma_unset (ospf, nbr_addr);
2498
2499 return CMD_SUCCESS;
2500 }
2501
2502 DEFUN (ospf_refresh_timer,
2503 ospf_refresh_timer_cmd,
2504 "refresh timer (10-1800)",
2505 "Adjust refresh parameters\n"
2506 "Set refresh timer\n"
2507 "Timer value in seconds\n")
2508 {
2509 VTY_DECLVAR_CONTEXT(ospf, ospf);
2510 int idx_number = 2;
2511 unsigned int interval;
2512
2513 VTY_GET_INTEGER_RANGE ("refresh timer", interval, argv[idx_number]->arg, 10, 1800);
2514 interval = (interval / OSPF_LSA_REFRESHER_GRANULARITY) * OSPF_LSA_REFRESHER_GRANULARITY;
2515
2516 ospf_timers_refresh_set (ospf, interval);
2517
2518 return CMD_SUCCESS;
2519 }
2520
2521 DEFUN (no_ospf_refresh_timer,
2522 no_ospf_refresh_timer_val_cmd,
2523 "no refresh timer [(10-1800)]",
2524 NO_STR
2525 "Adjust refresh parameters\n"
2526 "Unset refresh timer\n"
2527 "Timer value in seconds\n")
2528 {
2529 VTY_DECLVAR_CONTEXT(ospf, ospf);
2530 int idx_number = 3;
2531 unsigned int interval;
2532
2533 if (argc == 1)
2534 {
2535 VTY_GET_INTEGER_RANGE ("refresh timer", interval, argv[idx_number]->arg, 10, 1800);
2536
2537 if (ospf->lsa_refresh_interval != interval ||
2538 interval == OSPF_LSA_REFRESH_INTERVAL_DEFAULT)
2539 return CMD_SUCCESS;
2540 }
2541
2542 ospf_timers_refresh_unset (ospf);
2543
2544 return CMD_SUCCESS;
2545 }
2546
2547
2548 DEFUN (ospf_auto_cost_reference_bandwidth,
2549 ospf_auto_cost_reference_bandwidth_cmd,
2550 "auto-cost reference-bandwidth (1-4294967)",
2551 "Calculate OSPF interface cost according to bandwidth\n"
2552 "Use reference bandwidth method to assign OSPF cost\n"
2553 "The reference bandwidth in terms of Mbits per second\n")
2554 {
2555 VTY_DECLVAR_CONTEXT(ospf, ospf);
2556 int idx_number = 2;
2557 u_int32_t refbw;
2558 struct listnode *node;
2559 struct interface *ifp;
2560
2561 refbw = strtol (argv[idx_number]->arg, NULL, 10);
2562 if (refbw < 1 || refbw > 4294967)
2563 {
2564 vty_out (vty, "reference-bandwidth value is invalid%s", VTY_NEWLINE);
2565 return CMD_WARNING;
2566 }
2567
2568 /* If reference bandwidth is changed. */
2569 if ((refbw) == ospf->ref_bandwidth)
2570 return CMD_SUCCESS;
2571
2572 ospf->ref_bandwidth = refbw;
2573 for (ALL_LIST_ELEMENTS_RO (om->iflist, node, ifp))
2574 ospf_if_recalculate_output_cost (ifp);
2575
2576 return CMD_SUCCESS;
2577 }
2578
2579 DEFUN (no_ospf_auto_cost_reference_bandwidth,
2580 no_ospf_auto_cost_reference_bandwidth_cmd,
2581 "no auto-cost reference-bandwidth [(1-4294967)]",
2582 NO_STR
2583 "Calculate OSPF interface cost according to bandwidth\n"
2584 "Use reference bandwidth method to assign OSPF cost\n"
2585 "The reference bandwidth in terms of Mbits per second\n")
2586 {
2587 VTY_DECLVAR_CONTEXT(ospf, ospf);
2588 struct listnode *node, *nnode;
2589 struct interface *ifp;
2590
2591 if (ospf->ref_bandwidth == OSPF_DEFAULT_REF_BANDWIDTH)
2592 return CMD_SUCCESS;
2593
2594 ospf->ref_bandwidth = OSPF_DEFAULT_REF_BANDWIDTH;
2595 vty_out (vty, "%% OSPF: Reference bandwidth is changed.%s", VTY_NEWLINE);
2596 vty_out (vty, " Please ensure reference bandwidth is consistent across all routers%s", VTY_NEWLINE);
2597
2598 for (ALL_LIST_ELEMENTS (om->iflist, node, nnode, ifp))
2599 ospf_if_recalculate_output_cost (ifp);
2600
2601 return CMD_SUCCESS;
2602 }
2603
2604 DEFUN (ospf_write_multiplier,
2605 ospf_write_multiplier_cmd,
2606 "ospf write-multiplier (1-100)",
2607 "OSPF specific commands\n"
2608 "Write multiplier\n"
2609 "Maximum number of interface serviced per write\n")
2610 {
2611 VTY_DECLVAR_CONTEXT(ospf, ospf);
2612 int idx_number;
2613 u_int32_t write_oi_count;
2614
2615 if (argc == 3)
2616 idx_number = 2;
2617 else
2618 idx_number = 1;
2619
2620 write_oi_count = strtol (argv[idx_number]->arg, NULL, 10);
2621 if (write_oi_count < 1 || write_oi_count > 100)
2622 {
2623 vty_out (vty, "write-multiplier value is invalid%s", VTY_NEWLINE);
2624 return CMD_WARNING;
2625 }
2626
2627 ospf->write_oi_count = write_oi_count;
2628 return CMD_SUCCESS;
2629 }
2630
2631 ALIAS (ospf_write_multiplier,
2632 write_multiplier_cmd,
2633 "write-multiplier (1-100)",
2634 "Write multiplier\n"
2635 "Maximum number of interface serviced per write\n")
2636
2637 DEFUN (no_ospf_write_multiplier,
2638 no_ospf_write_multiplier_cmd,
2639 "no ospf write-multiplier (1-100)",
2640 NO_STR
2641 "OSPF specific commands\n"
2642 "Write multiplier\n"
2643 "Maximum number of interface serviced per write\n")
2644 {
2645 VTY_DECLVAR_CONTEXT(ospf, ospf);
2646
2647 ospf->write_oi_count = OSPF_WRITE_INTERFACE_COUNT_DEFAULT;
2648 return CMD_SUCCESS;
2649 }
2650
2651 ALIAS (no_ospf_write_multiplier,
2652 no_write_multiplier_cmd,
2653 "no write-multiplier (1-100)",
2654 NO_STR
2655 "Write multiplier\n"
2656 "Maximum number of interface serviced per write\n")
2657
2658 const char *ospf_abr_type_descr_str[] =
2659 {
2660 "Unknown",
2661 "Standard (RFC2328)",
2662 "Alternative IBM",
2663 "Alternative Cisco",
2664 "Alternative Shortcut"
2665 };
2666
2667 const char *ospf_shortcut_mode_descr_str[] =
2668 {
2669 "Default",
2670 "Enabled",
2671 "Disabled"
2672 };
2673
2674 static void
2675 show_ip_ospf_area (struct vty *vty, struct ospf_area *area, json_object *json_areas, u_char use_json)
2676 {
2677 json_object *json_area = NULL;
2678
2679 if (use_json)
2680 json_area = json_object_new_object();
2681
2682 /* Show Area ID. */
2683 if (!use_json)
2684 vty_out (vty, " Area ID: %s", inet_ntoa (area->area_id));
2685
2686 /* Show Area type/mode. */
2687 if (OSPF_IS_AREA_BACKBONE (area))
2688 {
2689 if (use_json)
2690 json_object_boolean_true_add(json_area, "backbone");
2691 else
2692 vty_out (vty, " (Backbone)%s", VTY_NEWLINE);
2693 }
2694 else
2695 {
2696 if (use_json)
2697 {
2698 if (area->external_routing == OSPF_AREA_STUB)
2699 {
2700 if (area->no_summary)
2701 json_object_boolean_true_add(json_area, "stubNoSummary");
2702 if (area->shortcut_configured)
2703 json_object_boolean_true_add(json_area, "stubShortcut");
2704 }
2705 else if (area->external_routing == OSPF_AREA_NSSA)
2706 {
2707 if (area->no_summary)
2708 json_object_boolean_true_add(json_area, "nssaNoSummary");
2709 if (area->shortcut_configured)
2710 json_object_boolean_true_add(json_area, "nssaShortcut");
2711 }
2712
2713 json_object_string_add(json_area,"shortcuttingMode",
2714 ospf_shortcut_mode_descr_str[area->shortcut_configured]);
2715 if (area->shortcut_capability)
2716 json_object_boolean_true_add(json_area,"sBitConcensus");
2717 }
2718 else
2719 {
2720 if (area->external_routing == OSPF_AREA_STUB)
2721 vty_out (vty, " (Stub%s%s)",
2722 area->no_summary ? ", no summary" : "",
2723 area->shortcut_configured ? "; " : "");
2724 else if (area->external_routing == OSPF_AREA_NSSA)
2725 vty_out (vty, " (NSSA%s%s)",
2726 area->no_summary ? ", no summary" : "",
2727 area->shortcut_configured ? "; " : "");
2728
2729 vty_out (vty, "%s", VTY_NEWLINE);
2730 vty_out (vty, " Shortcutting mode: %s",
2731 ospf_shortcut_mode_descr_str[area->shortcut_configured]);
2732 vty_out (vty, ", S-bit consensus: %s%s",
2733 area->shortcut_capability ? "ok" : "no", VTY_NEWLINE);
2734 }
2735 }
2736
2737 /* Show number of interfaces */
2738 if (use_json)
2739 {
2740 json_object_int_add(json_area, "areaIfTotalCounter", listcount (area->oiflist));
2741 json_object_int_add(json_area, "areaIfActiveCounter", area->act_ints);
2742 }
2743 else
2744 vty_out (vty, " Number of interfaces in this area: Total: %d, "
2745 "Active: %d%s", listcount (area->oiflist),
2746 area->act_ints, VTY_NEWLINE);
2747
2748 if (area->external_routing == OSPF_AREA_NSSA)
2749 {
2750 if (use_json)
2751 {
2752 json_object_boolean_true_add(json_area, "nssa");
2753 if (! IS_OSPF_ABR (area->ospf))
2754 json_object_boolean_false_add(json_area, "abr");
2755 else if (area->NSSATranslatorState)
2756 {
2757 json_object_boolean_true_add(json_area, "abr");
2758 if (area->NSSATranslatorRole == OSPF_NSSA_ROLE_CANDIDATE)
2759 json_object_boolean_true_add(json_area, "nssaTranslatorElected");
2760 else if (area->NSSATranslatorRole == OSPF_NSSA_ROLE_ALWAYS)
2761 json_object_boolean_true_add(json_area, "nssaTranslatorAlways");
2762 }
2763 else
2764 {
2765 json_object_boolean_true_add(json_area, "abr");
2766 if (area->NSSATranslatorRole == OSPF_NSSA_ROLE_CANDIDATE)
2767 json_object_boolean_false_add(json_area, "nssaTranslatorElected");
2768 else
2769 json_object_boolean_true_add(json_area, "nssaTranslatorNever");
2770 }
2771 }
2772 else
2773 {
2774 vty_out (vty, " It is an NSSA configuration. %s Elected NSSA/ABR performs type-7/type-5 LSA translation. %s", VTY_NEWLINE, VTY_NEWLINE);
2775 if (! IS_OSPF_ABR (area->ospf))
2776 vty_out (vty, " It is not ABR, therefore not Translator. %s",
2777 VTY_NEWLINE);
2778 else if (area->NSSATranslatorState)
2779 {
2780 vty_out (vty, " We are an ABR and ");
2781 if (area->NSSATranslatorRole == OSPF_NSSA_ROLE_CANDIDATE)
2782 vty_out (vty, "the NSSA Elected Translator. %s",
2783 VTY_NEWLINE);
2784 else if (area->NSSATranslatorRole == OSPF_NSSA_ROLE_ALWAYS)
2785 vty_out (vty, "always an NSSA Translator. %s",
2786 VTY_NEWLINE);
2787 }
2788 else
2789 {
2790 vty_out (vty, " We are an ABR, but ");
2791 if (area->NSSATranslatorRole == OSPF_NSSA_ROLE_CANDIDATE)
2792 vty_out (vty, "not the NSSA Elected Translator. %s",
2793 VTY_NEWLINE);
2794 else
2795 vty_out (vty, "never an NSSA Translator. %s",
2796 VTY_NEWLINE);
2797 }
2798 }
2799 }
2800
2801 /* Stub-router state for this area */
2802 if (CHECK_FLAG (area->stub_router_state, OSPF_AREA_IS_STUB_ROUTED))
2803 {
2804 char timebuf[OSPF_TIME_DUMP_SIZE];
2805
2806 if (use_json)
2807 {
2808 json_object_boolean_true_add(json_area, "originStubMaxDistRouterLsa");
2809 if (CHECK_FLAG(area->stub_router_state, OSPF_AREA_ADMIN_STUB_ROUTED))
2810 json_object_boolean_true_add(json_area, "indefiniteActiveAdmin");
2811 if (area->t_stub_router)
2812 {
2813 long time_store;
2814 time_store = monotime_until(&area->t_stub_router->u.sands, NULL) / 1000LL;
2815 json_object_int_add(json_area, "activeStartupRemainderMsecs", time_store);
2816 }
2817 }
2818 else
2819 {
2820 vty_out (vty, " Originating stub / maximum-distance Router-LSA%s",
2821 VTY_NEWLINE);
2822 if (CHECK_FLAG(area->stub_router_state, OSPF_AREA_ADMIN_STUB_ROUTED))
2823 vty_out (vty, " Administratively activated (indefinitely)%s",
2824 VTY_NEWLINE);
2825 if (area->t_stub_router)
2826 vty_out (vty, " Active from startup, %s remaining%s",
2827 ospf_timer_dump (area->t_stub_router, timebuf,
2828 sizeof(timebuf)), VTY_NEWLINE);
2829 }
2830 }
2831
2832 if (use_json)
2833 {
2834 /* Show number of fully adjacent neighbors. */
2835 json_object_int_add(json_area, "nbrFullAdjacentCounter", area->full_nbrs);
2836
2837 /* Show authentication type. */
2838 if (area->auth_type == OSPF_AUTH_NULL)
2839 json_object_string_add(json_area, "authentication", "authenticationNone");
2840 else if (area->auth_type == OSPF_AUTH_SIMPLE)
2841 json_object_string_add(json_area, "authentication", "authenticationSimplePassword");
2842 else if (area->auth_type == OSPF_AUTH_CRYPTOGRAPHIC)
2843 json_object_string_add(json_area, "authentication", "authenticationMessageDigest");
2844
2845 if (!OSPF_IS_AREA_BACKBONE (area))
2846 json_object_int_add(json_area, "virtualAdjacenciesPassingCounter", area->full_vls);
2847
2848 /* Show SPF calculation times. */
2849 json_object_int_add(json_area, "spfExecutedCounter", area->spf_calculation);
2850 json_object_int_add(json_area, "lsaNumber", area->lsdb->total);
2851 json_object_int_add(json_area, "lsaRouterNumber", ospf_lsdb_count (area->lsdb, OSPF_ROUTER_LSA));
2852 json_object_int_add(json_area, "lsaRouterChecksum", ospf_lsdb_checksum (area->lsdb, OSPF_ROUTER_LSA));
2853 json_object_int_add(json_area, "lsaNetworkNumber", ospf_lsdb_count (area->lsdb, OSPF_NETWORK_LSA));
2854 json_object_int_add(json_area, "lsaNetworkChecksum", ospf_lsdb_checksum (area->lsdb, OSPF_NETWORK_LSA));
2855 json_object_int_add(json_area, "lsaSummaryNumber", ospf_lsdb_count (area->lsdb, OSPF_SUMMARY_LSA));
2856 json_object_int_add(json_area, "lsaSummaryChecksum", ospf_lsdb_checksum (area->lsdb, OSPF_SUMMARY_LSA));
2857 json_object_int_add(json_area, "lsaAsbrNumber", ospf_lsdb_count (area->lsdb, OSPF_ASBR_SUMMARY_LSA));
2858 json_object_int_add(json_area, "lsaAsbrChecksum", ospf_lsdb_checksum (area->lsdb, OSPF_ASBR_SUMMARY_LSA));
2859 json_object_int_add(json_area, "lsaNssaNumber", ospf_lsdb_count (area->lsdb, OSPF_AS_NSSA_LSA));
2860 json_object_int_add(json_area, "lsaNssaChecksum", ospf_lsdb_checksum (area->lsdb, OSPF_AS_NSSA_LSA));
2861 }
2862 else
2863 {
2864 /* Show number of fully adjacent neighbors. */
2865 vty_out (vty, " Number of fully adjacent neighbors in this area:"
2866 " %d%s", area->full_nbrs, VTY_NEWLINE);
2867
2868 /* Show authentication type. */
2869 vty_out (vty, " Area has ");
2870 if (area->auth_type == OSPF_AUTH_NULL)
2871 vty_out (vty, "no authentication%s", VTY_NEWLINE);
2872 else if (area->auth_type == OSPF_AUTH_SIMPLE)
2873 vty_out (vty, "simple password authentication%s", VTY_NEWLINE);
2874 else if (area->auth_type == OSPF_AUTH_CRYPTOGRAPHIC)
2875 vty_out (vty, "message digest authentication%s", VTY_NEWLINE);
2876
2877 if (!OSPF_IS_AREA_BACKBONE (area))
2878 vty_out (vty, " Number of full virtual adjacencies going through"
2879 " this area: %d%s", area->full_vls, VTY_NEWLINE);
2880
2881 /* Show SPF calculation times. */
2882 vty_out (vty, " SPF algorithm executed %d times%s",
2883 area->spf_calculation, VTY_NEWLINE);
2884
2885 /* Show number of LSA. */
2886 vty_out (vty, " Number of LSA %ld%s", area->lsdb->total, VTY_NEWLINE);
2887 vty_out (vty, " Number of router LSA %ld. Checksum Sum 0x%08x%s",
2888 ospf_lsdb_count (area->lsdb, OSPF_ROUTER_LSA),
2889 ospf_lsdb_checksum (area->lsdb, OSPF_ROUTER_LSA), VTY_NEWLINE);
2890 vty_out (vty, " Number of network LSA %ld. Checksum Sum 0x%08x%s",
2891 ospf_lsdb_count (area->lsdb, OSPF_NETWORK_LSA),
2892 ospf_lsdb_checksum (area->lsdb, OSPF_NETWORK_LSA), VTY_NEWLINE);
2893 vty_out (vty, " Number of summary LSA %ld. Checksum Sum 0x%08x%s",
2894 ospf_lsdb_count (area->lsdb, OSPF_SUMMARY_LSA),
2895 ospf_lsdb_checksum (area->lsdb, OSPF_SUMMARY_LSA), VTY_NEWLINE);
2896 vty_out (vty, " Number of ASBR summary LSA %ld. Checksum Sum 0x%08x%s",
2897 ospf_lsdb_count (area->lsdb, OSPF_ASBR_SUMMARY_LSA),
2898 ospf_lsdb_checksum (area->lsdb, OSPF_ASBR_SUMMARY_LSA), VTY_NEWLINE);
2899 vty_out (vty, " Number of NSSA LSA %ld. Checksum Sum 0x%08x%s",
2900 ospf_lsdb_count (area->lsdb, OSPF_AS_NSSA_LSA),
2901 ospf_lsdb_checksum (area->lsdb, OSPF_AS_NSSA_LSA), VTY_NEWLINE);
2902 }
2903
2904 if (use_json)
2905 {
2906 json_object_int_add(json_area, "lsaOpaqueLinkNumber", ospf_lsdb_count (area->lsdb, OSPF_OPAQUE_LINK_LSA));
2907 json_object_int_add(json_area, "lsaOpaqueLinkChecksum", ospf_lsdb_checksum (area->lsdb, OSPF_OPAQUE_LINK_LSA));
2908 json_object_int_add(json_area, "lsaOpaqueAreaNumber", ospf_lsdb_count (area->lsdb, OSPF_OPAQUE_AREA_LSA));
2909 json_object_int_add(json_area, "lsaOpaqueAreaChecksum", ospf_lsdb_checksum (area->lsdb, OSPF_OPAQUE_AREA_LSA));
2910 }
2911 else
2912 {
2913 vty_out (vty, " Number of opaque link LSA %ld. Checksum Sum 0x%08x%s",
2914 ospf_lsdb_count (area->lsdb, OSPF_OPAQUE_LINK_LSA),
2915 ospf_lsdb_checksum (area->lsdb, OSPF_OPAQUE_LINK_LSA), VTY_NEWLINE);
2916 vty_out (vty, " Number of opaque area LSA %ld. Checksum Sum 0x%08x%s",
2917 ospf_lsdb_count (area->lsdb, OSPF_OPAQUE_AREA_LSA),
2918 ospf_lsdb_checksum (area->lsdb, OSPF_OPAQUE_AREA_LSA), VTY_NEWLINE);
2919 }
2920
2921 if (use_json)
2922 json_object_object_add(json_areas, inet_ntoa (area->area_id), json_area);
2923 else
2924 vty_out (vty, "%s", VTY_NEWLINE);
2925 }
2926
2927 static int
2928 show_ip_ospf_common (struct vty *vty, struct ospf *ospf, u_char use_json)
2929 {
2930 struct listnode *node, *nnode;
2931 struct ospf_area * area;
2932 struct timeval result;
2933 char timebuf[OSPF_TIME_DUMP_SIZE];
2934 json_object *json = NULL;
2935 json_object *json_areas = NULL;
2936
2937 if (use_json)
2938 {
2939 json = json_object_new_object();
2940 json_areas = json_object_new_object();
2941 }
2942
2943 if (ospf->instance)
2944 {
2945 if (use_json)
2946 {
2947 json_object_int_add(json, "ospfInstance", ospf->instance);
2948 }
2949 else
2950 {
2951 vty_out (vty, "%sOSPF Instance: %d%s%s", VTY_NEWLINE, ospf->instance,
2952 VTY_NEWLINE, VTY_NEWLINE);
2953 }
2954 }
2955
2956 /* Show Router ID. */
2957 if (use_json)
2958 {
2959 json_object_string_add(json, "routerId", inet_ntoa (ospf->router_id));
2960 }
2961 else
2962 {
2963 vty_out (vty, " OSPF Routing Process, Router ID: %s%s",
2964 inet_ntoa (ospf->router_id),
2965 VTY_NEWLINE);
2966 }
2967
2968 /* Graceful shutdown */
2969 if (ospf->t_deferred_shutdown)
2970 {
2971 if (use_json)
2972 {
2973 long time_store;
2974 time_store = monotime_until(&ospf->t_deferred_shutdown->u.sands, NULL) / 1000LL;
2975 json_object_int_add(json, "deferredShutdownMsecs", time_store);
2976 }
2977 else
2978 {
2979 vty_out (vty, " Deferred shutdown in progress, %s remaining%s",
2980 ospf_timer_dump (ospf->t_deferred_shutdown,
2981 timebuf, sizeof (timebuf)), VTY_NEWLINE);
2982 }
2983 }
2984
2985 /* Show capability. */
2986 if (use_json)
2987 {
2988 json_object_boolean_true_add(json, "tosRoutesOnly");
2989 json_object_boolean_true_add(json, "rfc2328Conform");
2990 if (CHECK_FLAG (ospf->config, OSPF_RFC1583_COMPATIBLE))
2991 {
2992 json_object_boolean_true_add(json, "rfc1583Compatibility");
2993 }
2994 }
2995 else
2996 {
2997 vty_out (vty, " Supports only single TOS (TOS0) routes%s", VTY_NEWLINE);
2998 vty_out (vty, " This implementation conforms to RFC2328%s", VTY_NEWLINE);
2999 vty_out (vty, " RFC1583Compatibility flag is %s%s",
3000 CHECK_FLAG (ospf->config, OSPF_RFC1583_COMPATIBLE) ?
3001 "enabled" : "disabled", VTY_NEWLINE);
3002 }
3003
3004 if (use_json)
3005 {
3006 if (CHECK_FLAG (ospf->config, OSPF_OPAQUE_CAPABLE))
3007 {
3008 json_object_boolean_true_add(json, "opaqueCapable");
3009 }
3010 }
3011 else
3012 {
3013 vty_out (vty, " OpaqueCapability flag is %s%s",
3014 CHECK_FLAG (ospf->config, OSPF_OPAQUE_CAPABLE) ? "enabled" : "disabled",
3015 VTY_NEWLINE);
3016 }
3017
3018 /* Show stub-router configuration */
3019 if (ospf->stub_router_startup_time != OSPF_STUB_ROUTER_UNCONFIGURED
3020 || ospf->stub_router_shutdown_time != OSPF_STUB_ROUTER_UNCONFIGURED)
3021 {
3022 if (use_json)
3023 {
3024 json_object_boolean_true_add(json, "stubAdvertisement");
3025 if (ospf->stub_router_startup_time != OSPF_STUB_ROUTER_UNCONFIGURED)
3026 json_object_int_add(json,"postStartEnabledMsecs", ospf->stub_router_startup_time / 1000);
3027 if (ospf->stub_router_shutdown_time != OSPF_STUB_ROUTER_UNCONFIGURED)
3028 json_object_int_add(json,"preShutdownEnabledMsecs", ospf->stub_router_shutdown_time / 1000);
3029 }
3030 else
3031 {
3032 vty_out (vty, " Stub router advertisement is configured%s",
3033 VTY_NEWLINE);
3034 if (ospf->stub_router_startup_time != OSPF_STUB_ROUTER_UNCONFIGURED)
3035 vty_out (vty, " Enabled for %us after start-up%s",
3036 ospf->stub_router_startup_time, VTY_NEWLINE);
3037 if (ospf->stub_router_shutdown_time != OSPF_STUB_ROUTER_UNCONFIGURED)
3038 vty_out (vty, " Enabled for %us prior to full shutdown%s",
3039 ospf->stub_router_shutdown_time, VTY_NEWLINE);
3040 }
3041 }
3042
3043 /* Show SPF timers. */
3044 if (use_json)
3045 {
3046 json_object_int_add(json, "spfScheduleDelayMsecs", ospf->spf_delay);
3047 json_object_int_add(json, "holdtimeMinMsecs", ospf->spf_holdtime);
3048 json_object_int_add(json, "holdtimeMaxMsecs", ospf->spf_max_holdtime);
3049 json_object_int_add(json, "holdtimeMultplier", ospf->spf_hold_multiplier);
3050 }
3051 else
3052 {
3053 vty_out (vty, " Initial SPF scheduling delay %d millisec(s)%s"
3054 " Minimum hold time between consecutive SPFs %d millisec(s)%s"
3055 " Maximum hold time between consecutive SPFs %d millisec(s)%s"
3056 " Hold time multiplier is currently %d%s",
3057 ospf->spf_delay, VTY_NEWLINE,
3058 ospf->spf_holdtime, VTY_NEWLINE,
3059 ospf->spf_max_holdtime, VTY_NEWLINE,
3060 ospf->spf_hold_multiplier, VTY_NEWLINE);
3061 }
3062
3063 if (use_json)
3064 {
3065 if (ospf->ts_spf.tv_sec || ospf->ts_spf.tv_usec)
3066 {
3067 long time_store = 0;
3068
3069 time_store = monotime_since(&ospf->ts_spf, NULL) / 1000LL;
3070 json_object_int_add(json, "spfLastExecutedMsecs", time_store);
3071
3072 time_store = (1000 * ospf->ts_spf_duration.tv_sec) + (ospf->ts_spf_duration.tv_usec / 1000);
3073 json_object_int_add(json, "spfLastDurationMsecs", time_store);
3074 }
3075 else
3076 json_object_boolean_true_add(json, "spfHasNotRun");
3077 }
3078 else
3079 {
3080 vty_out (vty, " SPF algorithm ");
3081 if (ospf->ts_spf.tv_sec || ospf->ts_spf.tv_usec)
3082 {
3083 monotime_since(&ospf->ts_spf, &result);
3084 vty_out (vty, "last executed %s ago%s",
3085 ospf_timeval_dump (&result, timebuf, sizeof (timebuf)),
3086 VTY_NEWLINE);
3087 vty_out (vty, " Last SPF duration %s%s",
3088 ospf_timeval_dump (&ospf->ts_spf_duration, timebuf, sizeof (timebuf)),
3089 VTY_NEWLINE);
3090 }
3091 else
3092 vty_out (vty, "has not been run%s", VTY_NEWLINE);
3093 }
3094
3095 if (use_json)
3096 {
3097 if (ospf->t_spf_calc)
3098 {
3099 long time_store;
3100 time_store = monotime_until(&ospf->t_spf_calc->u.sands, NULL) / 1000LL;
3101 json_object_int_add(json, "spfTimerDueInMsecs", time_store);
3102 }
3103
3104 json_object_int_add(json, "lsaMinIntervalMsecs", ospf->min_ls_interval);
3105 json_object_int_add(json, "lsaMinArrivalMsecs", ospf->min_ls_arrival);
3106 /* Show write multiplier values */
3107 json_object_int_add(json, "writeMultiplier", ospf->write_oi_count);
3108 /* Show refresh parameters. */
3109 json_object_int_add(json, "refreshTimerMsecs", ospf->lsa_refresh_interval * 1000);
3110 }
3111 else
3112 {
3113 vty_out (vty, " SPF timer %s%s%s",
3114 (ospf->t_spf_calc ? "due in " : "is "),
3115 ospf_timer_dump (ospf->t_spf_calc, timebuf, sizeof (timebuf)),
3116 VTY_NEWLINE);
3117
3118 vty_out (vty, " LSA minimum interval %d msecs%s",
3119 ospf->min_ls_interval, VTY_NEWLINE);
3120 vty_out (vty, " LSA minimum arrival %d msecs%s",
3121 ospf->min_ls_arrival, VTY_NEWLINE);
3122
3123 /* Show write multiplier values */
3124 vty_out (vty, " Write Multiplier set to %d %s",
3125 ospf->write_oi_count, VTY_NEWLINE);
3126
3127 /* Show refresh parameters. */
3128 vty_out (vty, " Refresh timer %d secs%s",
3129 ospf->lsa_refresh_interval, VTY_NEWLINE);
3130 }
3131
3132 /* Show ABR/ASBR flags. */
3133 if (CHECK_FLAG (ospf->flags, OSPF_FLAG_ABR))
3134 {
3135 if (use_json)
3136 json_object_string_add(json, "abrType", ospf_abr_type_descr_str[ospf->abr_type]);
3137 else
3138 vty_out (vty, " This router is an ABR, ABR type is: %s%s",
3139 ospf_abr_type_descr_str[ospf->abr_type], VTY_NEWLINE);
3140 }
3141 if (CHECK_FLAG (ospf->flags, OSPF_FLAG_ASBR))
3142 {
3143 if (use_json)
3144 json_object_string_add(json, "asbrRouter", "injectingExternalRoutingInformation");
3145 else
3146 vty_out (vty, " This router is an ASBR "
3147 "(injecting external routing information)%s", VTY_NEWLINE);
3148 }
3149
3150 /* Show Number of AS-external-LSAs. */
3151 if (use_json)
3152 {
3153 json_object_int_add(json, "lsaExternalCounter",
3154 ospf_lsdb_count (ospf->lsdb, OSPF_AS_EXTERNAL_LSA));
3155 json_object_int_add(json, "lsaExternalChecksum",
3156 ospf_lsdb_checksum (ospf->lsdb, OSPF_AS_EXTERNAL_LSA));
3157 }
3158 else
3159 {
3160 vty_out (vty, " Number of external LSA %ld. Checksum Sum 0x%08x%s",
3161 ospf_lsdb_count (ospf->lsdb, OSPF_AS_EXTERNAL_LSA),
3162 ospf_lsdb_checksum (ospf->lsdb, OSPF_AS_EXTERNAL_LSA), VTY_NEWLINE);
3163 }
3164
3165 if (use_json)
3166 {
3167 json_object_int_add(json, "lsaAsopaqueCounter",
3168 ospf_lsdb_count (ospf->lsdb, OSPF_OPAQUE_AS_LSA));
3169 json_object_int_add(json, "lsaAsOpaqueChecksum",
3170 ospf_lsdb_checksum (ospf->lsdb, OSPF_OPAQUE_AS_LSA));
3171 }
3172 else
3173 {
3174 vty_out (vty, " Number of opaque AS LSA %ld. Checksum Sum 0x%08x%s",
3175 ospf_lsdb_count (ospf->lsdb, OSPF_OPAQUE_AS_LSA),
3176 ospf_lsdb_checksum (ospf->lsdb, OSPF_OPAQUE_AS_LSA), VTY_NEWLINE);
3177 }
3178
3179 /* Show number of areas attached. */
3180 if (use_json)
3181 json_object_int_add(json, "attachedAreaCounter", listcount (ospf->areas));
3182 else
3183 vty_out (vty, " Number of areas attached to this router: %d%s",
3184 listcount (ospf->areas), VTY_NEWLINE);
3185
3186 if (CHECK_FLAG(ospf->config, OSPF_LOG_ADJACENCY_CHANGES))
3187 {
3188 if (CHECK_FLAG(ospf->config, OSPF_LOG_ADJACENCY_DETAIL))
3189 {
3190 if (use_json)
3191 json_object_boolean_true_add(json, "adjacencyChangesLoggedAll");
3192 else
3193 vty_out(vty, " All adjacency changes are logged%s",VTY_NEWLINE);
3194 }
3195 else
3196 {
3197 if (use_json)
3198 json_object_boolean_true_add(json, "adjacencyChangesLogged");
3199 else
3200 vty_out(vty, " Adjacency changes are logged%s",VTY_NEWLINE);
3201 }
3202 }
3203 /* Show each area status. */
3204 for (ALL_LIST_ELEMENTS (ospf->areas, node, nnode, area))
3205 show_ip_ospf_area (vty, area, json_areas, use_json);
3206
3207 if (use_json)
3208 {
3209 json_object_object_add(json, "areas", json_areas);
3210 vty_out (vty, "%s%s", json_object_to_json_string_ext(json, JSON_C_TO_STRING_PRETTY), VTY_NEWLINE);
3211 json_object_free(json);
3212 }
3213 else
3214 vty_out (vty, "%s",VTY_NEWLINE);
3215
3216 return CMD_SUCCESS;
3217 }
3218
3219 DEFUN (show_ip_ospf,
3220 show_ip_ospf_cmd,
3221 "show ip ospf [json]",
3222 SHOW_STR
3223 IP_STR
3224 "OSPF information\n"
3225 JSON_STR)
3226 {
3227 struct ospf *ospf;
3228 u_char uj = use_json(argc, argv);
3229
3230 if ((ospf = ospf_lookup()) == NULL || !ospf->oi_running)
3231 return CMD_SUCCESS;
3232
3233 return (show_ip_ospf_common(vty, ospf, uj));
3234 }
3235
3236 DEFUN (show_ip_ospf_instance,
3237 show_ip_ospf_instance_cmd,
3238 "show ip ospf (1-65535) [json]",
3239 SHOW_STR
3240 IP_STR
3241 "OSPF information\n"
3242 "Instance ID\n"
3243 JSON_STR)
3244 {
3245 int idx_number = 3;
3246 struct ospf *ospf;
3247 u_short instance = 0;
3248 u_char uj = use_json(argc, argv);
3249
3250 VTY_GET_INTEGER ("Instance", instance, argv[idx_number]->arg);
3251 if ((ospf = ospf_lookup_instance (instance)) == NULL || !ospf->oi_running)
3252 return CMD_SUCCESS;
3253
3254 return (show_ip_ospf_common(vty, ospf, uj));
3255 }
3256
3257 static void
3258 show_ip_ospf_interface_sub (struct vty *vty, struct ospf *ospf, struct interface *ifp,
3259 json_object *json_interface_sub, u_char use_json)
3260 {
3261 int is_up;
3262 struct ospf_neighbor *nbr;
3263 struct route_node *rn;
3264
3265 /* Is interface up? */
3266 if (use_json)
3267 {
3268 is_up = if_is_operative(ifp);
3269 if (is_up)
3270 json_object_boolean_true_add(json_interface_sub, "ifUp");
3271 else
3272 json_object_boolean_false_add(json_interface_sub, "ifDown");
3273
3274 json_object_int_add(json_interface_sub, "ifIndex", ifp->ifindex);
3275 json_object_int_add(json_interface_sub, "mtuBytes", ifp->mtu);
3276 json_object_int_add(json_interface_sub, "bandwidthMbit", ifp->bandwidth);
3277 json_object_string_add(json_interface_sub, "ifFlags", if_flag_dump(ifp->flags));
3278 }
3279 else
3280 {
3281 vty_out (vty, "%s is %s%s", ifp->name,
3282 ((is_up = if_is_operative(ifp)) ? "up" : "down"), VTY_NEWLINE);
3283 vty_out (vty, " ifindex %u, MTU %u bytes, BW %u Mbit %s%s",
3284 ifp->ifindex, ifp->mtu, ifp->bandwidth, if_flag_dump(ifp->flags),
3285 VTY_NEWLINE);
3286 }
3287
3288 /* Is interface OSPF enabled? */
3289 if (use_json)
3290 {
3291 if (ospf_oi_count(ifp) == 0)
3292 {
3293 json_object_boolean_false_add(json_interface_sub, "ospfEnabled");
3294 return;
3295 }
3296 else if (!is_up)
3297 {
3298 json_object_boolean_false_add(json_interface_sub, "ospfRunning");
3299 return;
3300 }
3301 else
3302 json_object_boolean_true_add(json_interface_sub, "ospfEnabled");
3303 }
3304 else
3305 {
3306 if (ospf_oi_count(ifp) == 0)
3307 {
3308 vty_out (vty, " OSPF not enabled on this interface%s", VTY_NEWLINE);
3309 return;
3310 }
3311 else if (!is_up)
3312 {
3313 vty_out (vty, " OSPF is enabled, but not running on this interface%s",
3314 VTY_NEWLINE);
3315 return;
3316 }
3317 }
3318
3319 for (rn = route_top (IF_OIFS (ifp)); rn; rn = route_next (rn))
3320 {
3321 struct ospf_interface *oi = rn->info;
3322
3323 if (oi == NULL)
3324 continue;
3325
3326 if (CHECK_FLAG(oi->connected->flags, ZEBRA_IFA_UNNUMBERED))
3327 {
3328 if (use_json)
3329 json_object_boolean_true_add(json_interface_sub, "ifUnnumbered");
3330 else
3331 vty_out (vty, " This interface is UNNUMBERED,");
3332 }
3333 else
3334 {
3335 /* Show OSPF interface information. */
3336 if (use_json)
3337 {
3338 json_object_string_add(json_interface_sub, "ipAddress", inet_ntoa (oi->address->u.prefix4));
3339 json_object_int_add(json_interface_sub, "ipAddressPrefixlen", oi->address->prefixlen);
3340 }
3341 else
3342 vty_out (vty, " Internet Address %s/%d,",
3343 inet_ntoa (oi->address->u.prefix4), oi->address->prefixlen);
3344
3345 if (oi->connected->destination || oi->type == OSPF_IFTYPE_VIRTUALLINK)
3346 {
3347 struct in_addr *dest;
3348 const char *dstr;
3349
3350 if (CONNECTED_PEER(oi->connected)
3351 || oi->type == OSPF_IFTYPE_VIRTUALLINK)
3352 dstr = "Peer";
3353 else
3354 dstr = "Broadcast";
3355
3356 /* For Vlinks, showing the peer address is probably more
3357 * * * * * informative than the local interface that is being used
3358 * * * * */
3359 if (oi->type == OSPF_IFTYPE_VIRTUALLINK)
3360 dest = &oi->vl_data->peer_addr;
3361 else
3362 dest = &oi->connected->destination->u.prefix4;
3363
3364 if (use_json)
3365 {
3366 json_object_string_add(json_interface_sub, "ospfIfType", dstr);
3367 if (oi->type == OSPF_IFTYPE_VIRTUALLINK)
3368 json_object_string_add(json_interface_sub, "vlinkPeer", inet_ntoa (*dest));
3369 else
3370 json_object_string_add(json_interface_sub, "localIfUsed", inet_ntoa (*dest));
3371 }
3372 else
3373 vty_out (vty, " %s %s,", dstr, inet_ntoa (*dest));
3374 }
3375 }
3376 if (use_json)
3377 {
3378 json_object_string_add(json_interface_sub, "area", ospf_area_desc_string (oi->area));
3379 if (OSPF_IF_PARAM(oi, mtu_ignore))
3380 json_object_boolean_true_add(json_interface_sub, "mtuMismatchDetect");
3381 json_object_string_add(json_interface_sub, "routerId", inet_ntoa (ospf->router_id));
3382 json_object_string_add(json_interface_sub, "networkType", ospf_network_type_str[oi->type]);
3383 json_object_int_add(json_interface_sub, "cost", oi->output_cost);
3384 json_object_int_add(json_interface_sub, "transmitDelayMsecs", 1000 / OSPF_IF_PARAM (oi,transmit_delay));
3385 json_object_string_add(json_interface_sub, "state", LOOKUP (ospf_ism_state_msg, oi->state));
3386 json_object_int_add(json_interface_sub, "priority", PRIORITY (oi));
3387 }
3388 else
3389 {
3390 vty_out (vty, " Area %s%s", ospf_area_desc_string (oi->area),
3391 VTY_NEWLINE);
3392
3393 vty_out (vty, " MTU mismatch detection:%s%s",
3394 OSPF_IF_PARAM(oi, mtu_ignore) ? "disabled" : "enabled", VTY_NEWLINE);
3395
3396 vty_out (vty, " Router ID %s, Network Type %s, Cost: %d%s",
3397 inet_ntoa (ospf->router_id), ospf_network_type_str[oi->type],
3398 oi->output_cost, VTY_NEWLINE);
3399
3400 vty_out (vty, " Transmit Delay is %d sec, State %s, Priority %d%s",
3401 OSPF_IF_PARAM (oi,transmit_delay), LOOKUP (ospf_ism_state_msg, oi->state),
3402 PRIORITY (oi), VTY_NEWLINE);
3403 }
3404
3405 /* Show DR information. */
3406 if (DR (oi).s_addr == 0)
3407 {
3408 if (!use_json)
3409 vty_out (vty, " No backup designated router on this network%s",
3410 VTY_NEWLINE);
3411 }
3412 else
3413 {
3414 nbr = ospf_nbr_lookup_by_addr (oi->nbrs, &BDR (oi));
3415 if (nbr == NULL)
3416 {
3417 if (!use_json)
3418 vty_out (vty, " No backup designated router on this network%s",
3419 VTY_NEWLINE);
3420 }
3421 else
3422 {
3423 if (use_json)
3424 {
3425 json_object_string_add(json_interface_sub, "bdrId", inet_ntoa (nbr->router_id));
3426 json_object_string_add(json_interface_sub, "bdrAddress", inet_ntoa (nbr->address.u.prefix4));
3427 }
3428 else
3429 {
3430 vty_out (vty, " Backup Designated Router (ID) %s,",
3431 inet_ntoa (nbr->router_id));
3432 vty_out (vty, " Interface Address %s%s",
3433 inet_ntoa (nbr->address.u.prefix4), VTY_NEWLINE);
3434 }
3435 }
3436 }
3437
3438 /* Next network-LSA sequence number we'll use, if we're elected DR */
3439 if (oi->params && ntohl (oi->params->network_lsa_seqnum) != OSPF_INITIAL_SEQUENCE_NUMBER)
3440 {
3441 if (use_json)
3442 json_object_int_add(json_interface_sub, "networkLsaSequence", ntohl (oi->params->network_lsa_seqnum));
3443 else
3444 vty_out (vty, " Saved Network-LSA sequence number 0x%x%s",
3445 ntohl (oi->params->network_lsa_seqnum), VTY_NEWLINE);
3446 }
3447
3448 if (use_json)
3449 {
3450 if (OI_MEMBER_CHECK(oi, MEMBER_ALLROUTERS)
3451 || OI_MEMBER_CHECK(oi, MEMBER_DROUTERS))
3452 {
3453 if (OI_MEMBER_CHECK(oi, MEMBER_ALLROUTERS))
3454 json_object_boolean_true_add(json_interface_sub, "mcastMemberOspfAllRouters");
3455 if (OI_MEMBER_CHECK(oi, MEMBER_DROUTERS))
3456 json_object_boolean_true_add(json_interface_sub, "mcastMemberOspfDesignatedRouters");
3457 }
3458 }
3459 else
3460 {
3461 vty_out (vty, " Multicast group memberships:");
3462 if (OI_MEMBER_CHECK(oi, MEMBER_ALLROUTERS)
3463 || OI_MEMBER_CHECK(oi, MEMBER_DROUTERS))
3464 {
3465 if (OI_MEMBER_CHECK(oi, MEMBER_ALLROUTERS))
3466 vty_out (vty, " OSPFAllRouters");
3467 if (OI_MEMBER_CHECK(oi, MEMBER_DROUTERS))
3468 vty_out (vty, " OSPFDesignatedRouters");
3469 }
3470 else
3471 vty_out (vty, " <None>");
3472 vty_out (vty, "%s", VTY_NEWLINE);
3473 }
3474
3475 if (use_json)
3476 {
3477 if (OSPF_IF_PARAM (oi, fast_hello) == 0)
3478 json_object_int_add(json_interface_sub, "timerMsecs", 1000 /OSPF_IF_PARAM (oi, v_hello));
3479 else
3480 json_object_int_add(json_interface_sub, "timerMsecs", 1000 / OSPF_IF_PARAM (oi, fast_hello));
3481 json_object_int_add(json_interface_sub, "timerDeadMsecs", 1000 / OSPF_IF_PARAM (oi, v_wait));
3482 json_object_int_add(json_interface_sub, "timerWaitMsecs", 1000 / OSPF_IF_PARAM (oi, v_wait));
3483 json_object_int_add(json_interface_sub, "timerRetransmit", 1000 / OSPF_IF_PARAM (oi, retransmit_interval));
3484 }
3485 else
3486 {
3487 vty_out (vty, " Timer intervals configured,");
3488 vty_out (vty, " Hello ");
3489 if (OSPF_IF_PARAM (oi, fast_hello) == 0)
3490 vty_out (vty, "%ds,", OSPF_IF_PARAM (oi, v_hello));
3491 else
3492 vty_out (vty, "%dms,", 1000 / OSPF_IF_PARAM (oi, fast_hello));
3493 vty_out (vty, " Dead %ds, Wait %ds, Retransmit %d%s",
3494 OSPF_IF_PARAM (oi, v_wait),
3495 OSPF_IF_PARAM (oi, v_wait),
3496 OSPF_IF_PARAM (oi, retransmit_interval),
3497 VTY_NEWLINE);
3498 }
3499
3500 if (OSPF_IF_PASSIVE_STATUS (oi) == OSPF_IF_ACTIVE)
3501 {
3502 char timebuf[OSPF_TIME_DUMP_SIZE];
3503 if (use_json)
3504 {
3505 long time_store = 0;
3506 if (oi->t_hello)
3507 time_store = monotime_until(&oi->t_hello->u.sands, NULL) / 1000LL;
3508 json_object_int_add(json_interface_sub, "timerHelloInMsecs", time_store);
3509 }
3510 else
3511 vty_out (vty, " Hello due in %s%s",
3512 ospf_timer_dump (oi->t_hello, timebuf, sizeof(timebuf)),
3513 VTY_NEWLINE);
3514 }
3515 else /* passive-interface is set */
3516 {
3517 if (use_json)
3518 json_object_boolean_true_add(json_interface_sub, "timerPassiveIface");
3519 else
3520 vty_out (vty, " No Hellos (Passive interface)%s", VTY_NEWLINE);
3521 }
3522
3523 if (use_json)
3524 {
3525 json_object_int_add(json_interface_sub, "nbrCount", ospf_nbr_count (oi, 0));
3526 json_object_int_add(json_interface_sub, "nbrAdjacentCount", ospf_nbr_count (oi, NSM_Full));
3527 }
3528 else
3529 vty_out (vty, " Neighbor Count is %d, Adjacent neighbor count is %d%s",
3530 ospf_nbr_count (oi, 0), ospf_nbr_count (oi, NSM_Full),
3531 VTY_NEWLINE);
3532 ospf_bfd_interface_show(vty, ifp, json_interface_sub, use_json);
3533 }
3534 }
3535
3536 static int
3537 show_ip_ospf_interface_common (struct vty *vty, struct ospf *ospf, int argc,
3538 struct cmd_token **argv, int iface_argv, u_char use_json)
3539 {
3540 struct interface *ifp;
3541 struct listnode *node;
3542 json_object *json = NULL;
3543 json_object *json_interface_sub = NULL;
3544
3545 if (use_json)
3546 {
3547 json = json_object_new_object();
3548 json_interface_sub = json_object_new_object();
3549 }
3550
3551 if (ospf->instance)
3552 {
3553 if (use_json)
3554 json_object_int_add(json, "ospfInstance", ospf->instance);
3555 else
3556 vty_out (vty, "%sOSPF Instance: %d%s%s", VTY_NEWLINE, ospf->instance,
3557 VTY_NEWLINE, VTY_NEWLINE);
3558 }
3559
3560 if (argc == (iface_argv + 1))
3561 {
3562 /* Show All Interfaces.*/
3563 for (ALL_LIST_ELEMENTS_RO (vrf_iflist (VRF_DEFAULT), node, ifp))
3564 {
3565 if (ospf_oi_count(ifp))
3566 {
3567 show_ip_ospf_interface_sub (vty, ospf, ifp, json_interface_sub, use_json);
3568 if (use_json)
3569 json_object_object_add (json, ifp->name, json_interface_sub);
3570 }
3571 }
3572 }
3573 else if (argv[iface_argv] && strcmp(argv[iface_argv]->arg, "json") == 0)
3574 {
3575 if (!use_json)
3576 {
3577 json = json_object_new_object();
3578 json_interface_sub = json_object_new_object ();
3579 use_json = 1;
3580 }
3581 /* Show All Interfaces. */
3582 for (ALL_LIST_ELEMENTS_RO (vrf_iflist (VRF_DEFAULT), node, ifp))
3583 {
3584 if (ospf_oi_count(ifp))
3585 {
3586 show_ip_ospf_interface_sub (vty, ospf, ifp, json_interface_sub, use_json);
3587 if (use_json)
3588 json_object_object_add(json, ifp->name, json_interface_sub);
3589 }
3590 }
3591 }
3592 else
3593 {
3594 /* Interface name is specified. */
3595 if ((ifp = if_lookup_by_name (argv[iface_argv]->arg, VRF_DEFAULT)) == NULL)
3596 {
3597 if (use_json)
3598 json_object_boolean_true_add(json, "noSuchIface");
3599 else
3600 vty_out (vty, "No such interface name%s", VTY_NEWLINE);
3601 }
3602 else
3603 {
3604 show_ip_ospf_interface_sub (vty, ospf, ifp, json_interface_sub, use_json);
3605 if (use_json)
3606 json_object_object_add(json, ifp->name, json_interface_sub);
3607 }
3608 }
3609
3610 if (use_json)
3611 {
3612 vty_out (vty, "%s%s", json_object_to_json_string_ext(json, JSON_C_TO_STRING_PRETTY), VTY_NEWLINE);
3613 json_object_free(json);
3614 }
3615 else
3616 vty_out (vty, "%s", VTY_NEWLINE);
3617
3618 return CMD_SUCCESS;
3619 }
3620
3621 DEFUN (show_ip_ospf_interface,
3622 show_ip_ospf_interface_cmd,
3623 "show ip ospf interface [INTERFACE] [json]",
3624 SHOW_STR
3625 IP_STR
3626 "OSPF information\n"
3627 "Interface information\n"
3628 "Interface name\n"
3629 JSON_STR)
3630 {
3631 struct ospf *ospf;
3632 u_char uj = use_json(argc, argv);
3633
3634 if ((ospf = ospf_lookup()) == NULL || !ospf->oi_running)
3635 return CMD_SUCCESS;
3636
3637 return show_ip_ospf_interface_common(vty, ospf, argc, argv, 0, uj);
3638 }
3639
3640 DEFUN (show_ip_ospf_instance_interface,
3641 show_ip_ospf_instance_interface_cmd,
3642 "show ip ospf (1-65535) interface [INTERFACE] [json]",
3643 SHOW_STR
3644 IP_STR
3645 "OSPF information\n"
3646 "Instance ID\n"
3647 "Interface information\n"
3648 "Interface name\n"
3649 JSON_STR)
3650 {
3651 int idx_number = 3;
3652 struct ospf *ospf;
3653 u_short instance = 0;
3654 u_char uj = use_json(argc, argv);
3655
3656 VTY_GET_INTEGER ("Instance", instance, argv[idx_number]->arg);
3657 if ((ospf = ospf_lookup_instance (instance)) == NULL || !ospf->oi_running)
3658 return CMD_SUCCESS;
3659
3660 return show_ip_ospf_interface_common(vty, ospf, argc, argv, 1, uj);
3661 }
3662
3663 static void
3664 show_ip_ospf_neighbour_header (struct vty *vty)
3665 {
3666 vty_out (vty, "%s%-15s %3s %-15s %9s %-15s %-20s %5s %5s %5s%s",
3667 VTY_NEWLINE,
3668 "Neighbor ID", "Pri", "State", "Dead Time",
3669 "Address", "Interface", "RXmtL", "RqstL", "DBsmL",
3670 VTY_NEWLINE);
3671 }
3672
3673 static void
3674 show_ip_ospf_neighbor_sub (struct vty *vty, struct ospf_interface *oi, json_object *json, u_char use_json)
3675 {
3676 struct route_node *rn;
3677 struct ospf_neighbor *nbr;
3678 char msgbuf[16];
3679 char timebuf[OSPF_TIME_DUMP_SIZE];
3680 json_object *json_neighbor = NULL;
3681
3682 for (rn = route_top (oi->nbrs); rn; rn = route_next (rn))
3683 {
3684 if ((nbr = rn->info))
3685 {
3686 /* Do not show myself. */
3687 if (nbr != oi->nbr_self)
3688 {
3689 /* Down state is not shown. */
3690 if (nbr->state != NSM_Down)
3691 {
3692 if (use_json)
3693 {
3694 json_neighbor = json_object_new_object();
3695 ospf_nbr_state_message (nbr, msgbuf, 16);
3696
3697 long time_store;
3698
3699 time_store = monotime_until(&nbr->t_inactivity->u.sands, NULL) / 1000LL;
3700
3701 json_object_int_add (json_neighbor, "priority", nbr->priority);
3702 json_object_string_add (json_neighbor, "state", msgbuf);
3703 json_object_int_add (json_neighbor, "deadTimeMsecs", time_store);
3704 json_object_string_add (json_neighbor, "address", inet_ntoa (nbr->src));
3705 json_object_string_add (json_neighbor, "ifaceName", IF_NAME (oi));
3706 json_object_int_add (json_neighbor, "retransmitCounter", ospf_ls_retransmit_count (nbr));
3707 json_object_int_add (json_neighbor, "requestCounter", ospf_ls_request_count (nbr));
3708 json_object_int_add (json_neighbor, "dbSummaryCounter", ospf_db_summary_count (nbr));
3709 if (nbr->state == NSM_Attempt && nbr->router_id.s_addr == 0)
3710 json_object_object_add(json, "neighbor", json_neighbor);
3711 else
3712 json_object_object_add(json, inet_ntoa (nbr->router_id), json_neighbor);
3713 }
3714 else
3715 {
3716 ospf_nbr_state_message (nbr, msgbuf, 16);
3717
3718 if (nbr->state == NSM_Attempt && nbr->router_id.s_addr == 0)
3719 vty_out (vty, "%-15s %3d %-15s ",
3720 "-", nbr->priority,
3721 msgbuf);
3722 else
3723 vty_out (vty, "%-15s %3d %-15s ",
3724 inet_ntoa (nbr->router_id), nbr->priority,
3725 msgbuf);
3726
3727 vty_out (vty, "%9s ",
3728 ospf_timer_dump (nbr->t_inactivity, timebuf,
3729 sizeof(timebuf)));
3730 vty_out (vty, "%-15s ", inet_ntoa (nbr->src));
3731 vty_out (vty, "%-20s %5ld %5ld %5d%s",
3732 IF_NAME (oi), ospf_ls_retransmit_count (nbr),
3733 ospf_ls_request_count (nbr), ospf_db_summary_count (nbr),
3734 VTY_NEWLINE);
3735 }
3736 }
3737 }
3738 }
3739 }
3740 }
3741
3742 static int
3743 show_ip_ospf_neighbor_common (struct vty *vty, struct ospf *ospf, u_char use_json)
3744 {
3745 struct ospf_interface *oi;
3746 struct listnode *node;
3747 json_object *json = NULL;
3748
3749 if (use_json)
3750 json = json_object_new_object();
3751 else
3752 show_ip_ospf_neighbour_header (vty);
3753
3754 if (ospf->instance)
3755 {
3756 if (use_json)
3757 json_object_int_add(json, "ospfInstance", ospf->instance);
3758 else
3759 vty_out (vty, "%sOSPF Instance: %d%s%s", VTY_NEWLINE, ospf->instance,
3760 VTY_NEWLINE, VTY_NEWLINE);
3761 }
3762
3763 for (ALL_LIST_ELEMENTS_RO (ospf->oiflist, node, oi))
3764 show_ip_ospf_neighbor_sub (vty, oi, json, use_json);
3765
3766 if (use_json)
3767 {
3768 vty_out (vty, "%s%s", json_object_to_json_string_ext(json, JSON_C_TO_STRING_PRETTY), VTY_NEWLINE);
3769 json_object_free(json);
3770 }
3771 else
3772 vty_out (vty, "%s", VTY_NEWLINE);
3773
3774 return CMD_SUCCESS;
3775 }
3776
3777 DEFUN (show_ip_ospf_neighbor,
3778 show_ip_ospf_neighbor_cmd,
3779 "show ip ospf neighbor [json]",
3780 SHOW_STR
3781 IP_STR
3782 "OSPF information\n"
3783 "Neighbor list\n"
3784 JSON_STR)
3785 {
3786 struct ospf *ospf;
3787 u_char uj = use_json(argc, argv);
3788
3789 if ((ospf = ospf_lookup()) == NULL || !ospf->oi_running)
3790 return CMD_SUCCESS;
3791
3792 return show_ip_ospf_neighbor_common(vty, ospf, uj);
3793 }
3794
3795
3796 DEFUN (show_ip_ospf_instance_neighbor,
3797 show_ip_ospf_instance_neighbor_cmd,
3798 "show ip ospf (1-65535) neighbor [json]",
3799 SHOW_STR
3800 IP_STR
3801 "OSPF information\n"
3802 "Instance ID\n"
3803 "Neighbor list\n"
3804 JSON_STR)
3805 {
3806 int idx_number = 3;
3807 struct ospf *ospf;
3808 u_short instance = 0;
3809 u_char uj = use_json(argc, argv);
3810
3811 VTY_GET_INTEGER ("Instance", instance, argv[idx_number]->arg);
3812 if ((ospf = ospf_lookup_instance(instance)) == NULL || !ospf->oi_running)
3813 return CMD_SUCCESS;
3814
3815 return show_ip_ospf_neighbor_common(vty, ospf, uj);
3816 }
3817
3818 static int
3819 show_ip_ospf_neighbor_all_common (struct vty *vty, struct ospf *ospf, u_char use_json)
3820 {
3821 struct listnode *node;
3822 struct ospf_interface *oi;
3823 json_object *json = NULL;
3824 json_object *json_neighbor_sub = NULL;
3825
3826 if (use_json)
3827 {
3828 json = json_object_new_object();
3829 json_neighbor_sub = json_object_new_object();
3830 }
3831 else
3832 show_ip_ospf_neighbour_header (vty);
3833
3834 if (ospf->instance)
3835 {
3836 if (use_json)
3837 json_object_int_add(json, "ospfInstance", ospf->instance);
3838 else
3839 vty_out (vty, "%sOSPF Instance: %d%s%s", VTY_NEWLINE, ospf->instance,
3840 VTY_NEWLINE, VTY_NEWLINE);
3841 }
3842
3843 for (ALL_LIST_ELEMENTS_RO (ospf->oiflist, node, oi))
3844 {
3845 struct listnode *nbr_node;
3846 struct ospf_nbr_nbma *nbr_nbma;
3847
3848 show_ip_ospf_neighbor_sub (vty, oi, json, use_json);
3849
3850 /* print Down neighbor status */
3851 for (ALL_LIST_ELEMENTS_RO (oi->nbr_nbma, nbr_node, nbr_nbma))
3852 {
3853 if (nbr_nbma->nbr == NULL
3854 || nbr_nbma->nbr->state == NSM_Down)
3855 {
3856 if (use_json)
3857 {
3858 json_object_int_add (json_neighbor_sub, "nbrNbmaPriority", nbr_nbma->priority);
3859 json_object_boolean_true_add (json_neighbor_sub, "nbrNbmaDown");
3860 json_object_string_add (json_neighbor_sub, "nbrNbmaIfaceName", IF_NAME (oi));
3861 json_object_int_add (json_neighbor_sub, "nbrNbmaRetransmitCounter", 0);
3862 json_object_int_add (json_neighbor_sub, "nbrNbmaRequestCounter", 0);
3863 json_object_int_add (json_neighbor_sub, "nbrNbmaDbSummaryCounter", 0);
3864 json_object_object_add(json, inet_ntoa (nbr_nbma->addr), json_neighbor_sub);
3865 }
3866 else
3867 {
3868 vty_out (vty, "%-15s %3d %-15s %9s ",
3869 "-", nbr_nbma->priority, "Down", "-");
3870 vty_out (vty, "%-15s %-20s %5d %5d %5d%s",
3871 inet_ntoa (nbr_nbma->addr), IF_NAME (oi),
3872 0, 0, 0, VTY_NEWLINE);
3873 }
3874 }
3875 }
3876 }
3877
3878 if (use_json)
3879 {
3880 vty_out (vty, "%s%s", json_object_to_json_string_ext(json, JSON_C_TO_STRING_PRETTY), VTY_NEWLINE);
3881 json_object_free(json);
3882 }
3883 else
3884 vty_out (vty, "%s", VTY_NEWLINE);
3885
3886 return CMD_SUCCESS;
3887 }
3888
3889 DEFUN (show_ip_ospf_neighbor_all,
3890 show_ip_ospf_neighbor_all_cmd,
3891 "show ip ospf neighbor all [json]",
3892 SHOW_STR
3893 IP_STR
3894 "OSPF information\n"
3895 "Neighbor list\n"
3896 "include down status neighbor\n"
3897 JSON_STR)
3898 {
3899 struct ospf *ospf;
3900 u_char uj = use_json(argc, argv);
3901
3902 if ((ospf = ospf_lookup()) == NULL || !ospf->oi_running)
3903 return CMD_SUCCESS;
3904
3905 return show_ip_ospf_neighbor_all_common(vty, ospf, uj);
3906 }
3907
3908 DEFUN (show_ip_ospf_instance_neighbor_all,
3909 show_ip_ospf_instance_neighbor_all_cmd,
3910 "show ip ospf (1-65535) neighbor all [json]",
3911 SHOW_STR
3912 IP_STR
3913 "OSPF information\n"
3914 "Instance ID\n"
3915 "Neighbor list\n"
3916 "include down status neighbor\n"
3917 JSON_STR)
3918 {
3919 int idx_number = 3;
3920 struct ospf *ospf;
3921 u_short instance = 0;
3922 u_char uj = use_json(argc, argv);
3923
3924 VTY_GET_INTEGER ("Instance", instance, argv[idx_number]->arg);
3925 if ((ospf = ospf_lookup_instance(instance)) == NULL || !ospf->oi_running)
3926 return CMD_SUCCESS;
3927
3928 return show_ip_ospf_neighbor_all_common(vty, ospf, uj);
3929 }
3930
3931 static int
3932 show_ip_ospf_neighbor_int_common (struct vty *vty, struct ospf *ospf, int arg_base,
3933 struct cmd_token **argv, u_char use_json)
3934 {
3935 struct interface *ifp;
3936 struct route_node *rn;
3937 json_object *json = NULL;
3938
3939 if (use_json)
3940 json = json_object_new_object();
3941 else
3942 show_ip_ospf_neighbour_header (vty);
3943
3944 if (ospf->instance)
3945 {
3946 if (use_json)
3947 json_object_int_add(json, "ospfInstance", ospf->instance);
3948 else
3949 vty_out (vty, "%sOSPF Instance: %d%s%s", VTY_NEWLINE, ospf->instance,
3950 VTY_NEWLINE, VTY_NEWLINE);
3951 }
3952
3953 ifp = if_lookup_by_name (argv[arg_base]->arg, VRF_DEFAULT);
3954 if (!ifp)
3955 {
3956 if (use_json)
3957 json_object_boolean_true_add(json, "noSuchIface");
3958 else
3959 vty_out (vty, "No such interface.%s", VTY_NEWLINE);
3960 return CMD_WARNING;
3961 }
3962
3963 for (rn = route_top (IF_OIFS (ifp)); rn; rn = route_next (rn))
3964 {
3965 struct ospf_interface *oi = rn->info;
3966
3967 if (oi == NULL)
3968 continue;
3969
3970 show_ip_ospf_neighbor_sub (vty, oi, json, use_json);
3971 }
3972
3973 if (use_json)
3974 {
3975 vty_out (vty, "%s%s", json_object_to_json_string_ext(json, JSON_C_TO_STRING_PRETTY), VTY_NEWLINE);
3976 json_object_free(json);
3977 }
3978 else
3979 vty_out (vty, "%s", VTY_NEWLINE);
3980
3981 return CMD_SUCCESS;
3982 }
3983
3984 DEFUN (show_ip_ospf_neighbor_int,
3985 show_ip_ospf_neighbor_int_cmd,
3986 "show ip ospf neighbor IFNAME [json]",
3987 SHOW_STR
3988 IP_STR
3989 "OSPF information\n"
3990 "Neighbor list\n"
3991 "Interface name\n"
3992 JSON_STR)
3993 {
3994 struct ospf *ospf;
3995 u_char uj = use_json(argc, argv);
3996
3997 if ((ospf = ospf_lookup()) == NULL || !ospf->oi_running)
3998 return CMD_SUCCESS;
3999
4000 return show_ip_ospf_neighbor_int_common(vty, ospf, 0, argv, uj);
4001 }
4002
4003 DEFUN (show_ip_ospf_instance_neighbor_int,
4004 show_ip_ospf_instance_neighbor_int_cmd,
4005 "show ip ospf (1-65535) neighbor IFNAME [json]",
4006 SHOW_STR
4007 IP_STR
4008 "OSPF information\n"
4009 "Instance ID\n"
4010 "Neighbor list\n"
4011 "Interface name\n"
4012 JSON_STR)
4013 {
4014 int idx_number = 3;
4015 struct ospf *ospf;
4016 u_short instance = 0;
4017 u_char uj = use_json(argc, argv);
4018
4019 VTY_GET_INTEGER ("Instance", instance, argv[idx_number]->arg);
4020 if ((ospf = ospf_lookup_instance(instance)) == NULL || !ospf->oi_running)
4021 return CMD_SUCCESS;
4022
4023 return show_ip_ospf_neighbor_int_common(vty, ospf, 1, argv, uj);
4024 }
4025
4026 static void
4027 show_ip_ospf_nbr_nbma_detail_sub (struct vty *vty, struct ospf_interface *oi, struct ospf_nbr_nbma *nbr_nbma,
4028 u_char use_json, json_object *json)
4029 {
4030 char timebuf[OSPF_TIME_DUMP_SIZE];
4031 json_object *json_sub = NULL;
4032
4033 if (use_json)
4034 json_sub = json_object_new_object();
4035 else /* Show neighbor ID. */
4036 vty_out (vty, " Neighbor %s,", "-");
4037
4038 /* Show interface address. */
4039 if (use_json)
4040 json_object_string_add(json_sub, "ifaceAddress", inet_ntoa (nbr_nbma->addr));
4041 else
4042 vty_out (vty, " interface address %s%s",
4043 inet_ntoa (nbr_nbma->addr), VTY_NEWLINE);
4044
4045 /* Show Area ID. */
4046 if (use_json)
4047 {
4048 json_object_string_add(json_sub, "areaId", ospf_area_desc_string (oi->area));
4049 json_object_string_add(json_sub, "iface", IF_NAME (oi));
4050 }
4051 else
4052 vty_out (vty, " In the area %s via interface %s%s",
4053 ospf_area_desc_string (oi->area), IF_NAME (oi), VTY_NEWLINE);
4054
4055 /* Show neighbor priority and state. */
4056 if (use_json)
4057 {
4058 json_object_int_add(json_sub, "nbrPriority", nbr_nbma->priority);
4059 json_object_string_add(json_sub, "nbrState", "down");
4060 }
4061 else
4062 vty_out (vty, " Neighbor priority is %d, State is %s,",
4063 nbr_nbma->priority, "Down");
4064
4065 /* Show state changes. */
4066 if (use_json)
4067 json_object_int_add(json_sub, "stateChangeCounter", nbr_nbma->state_change);
4068 else
4069 vty_out (vty, " %d state changes%s", nbr_nbma->state_change, VTY_NEWLINE);
4070
4071 /* Show PollInterval */
4072 if (use_json)
4073 json_object_int_add(json_sub, "pollInterval", nbr_nbma->v_poll);
4074 else
4075 vty_out (vty, " Poll interval %d%s", nbr_nbma->v_poll, VTY_NEWLINE);
4076
4077 /* Show poll-interval timer. */
4078 if (use_json)
4079 {
4080 long time_store;
4081 time_store = monotime_until(&nbr_nbma->t_poll->u.sands, NULL) / 1000LL;
4082 json_object_int_add(json_sub, "pollIntervalTimerDueMsec", time_store);
4083 }
4084 else
4085 vty_out (vty, " Poll timer due in %s%s",
4086 ospf_timer_dump (nbr_nbma->t_poll, timebuf, sizeof(timebuf)),
4087 VTY_NEWLINE);
4088
4089 /* Show poll-interval timer thread. */
4090 if (use_json)
4091 {
4092 if (nbr_nbma->t_poll != NULL)
4093 json_object_string_add(json_sub, "pollIntervalTimerThread", "on");
4094 }
4095 else
4096 vty_out (vty, " Thread Poll Timer %s%s",
4097 nbr_nbma->t_poll != NULL ? "on" : "off", VTY_NEWLINE);
4098
4099 if (use_json)
4100 json_object_object_add(json, "noNbrId", json_sub);
4101 }
4102
4103 static void
4104 show_ip_ospf_neighbor_detail_sub (struct vty *vty, struct ospf_interface *oi,
4105 struct ospf_neighbor *nbr, u_char use_json, json_object *json)
4106 {
4107 char timebuf[OSPF_TIME_DUMP_SIZE];
4108 json_object *json_sub = NULL;
4109
4110 if (use_json)
4111 json_sub = json_object_new_object();
4112 else
4113 {
4114 /* Show neighbor ID. */
4115 if (nbr->state == NSM_Attempt && nbr->router_id.s_addr == 0)
4116 vty_out (vty, " Neighbor %s,", "-");
4117 else
4118 vty_out (vty, " Neighbor %s,", inet_ntoa (nbr->router_id));
4119 }
4120
4121 /* Show interface address. */
4122 if (use_json)
4123 json_object_string_add(json_sub, "ifaceAddress", inet_ntoa (nbr->address.u.prefix4));
4124 else
4125 vty_out (vty, " interface address %s%s",
4126 inet_ntoa (nbr->address.u.prefix4), VTY_NEWLINE);
4127
4128 /* Show Area ID. */
4129 if (use_json)
4130 {
4131 json_object_string_add(json_sub, "areaId", ospf_area_desc_string (oi->area));
4132 json_object_string_add(json_sub, "ifaceName", oi->ifp->name);
4133 }
4134 else
4135 vty_out (vty, " In the area %s via interface %s%s",
4136 ospf_area_desc_string (oi->area), oi->ifp->name, VTY_NEWLINE);
4137
4138 /* Show neighbor priority and state. */
4139 if (use_json)
4140 {
4141 json_object_int_add(json_sub, "nbrPriority", nbr->priority);
4142 json_object_string_add(json_sub, "nbrState", LOOKUP (ospf_nsm_state_msg, nbr->state));
4143 }
4144 else
4145 vty_out (vty, " Neighbor priority is %d, State is %s,",
4146 nbr->priority, LOOKUP (ospf_nsm_state_msg, nbr->state));
4147
4148 /* Show state changes. */
4149 if (use_json)
4150 json_object_int_add(json_sub, "stateChangeCounter", nbr->state_change);
4151 else
4152 vty_out (vty, " %d state changes%s", nbr->state_change, VTY_NEWLINE);
4153
4154 if (nbr->ts_last_progress.tv_sec || nbr->ts_last_progress.tv_usec)
4155 {
4156 struct timeval res;
4157 long time_store;
4158
4159 time_store = monotime_since(&nbr->ts_last_progress, &res) / 1000LL;
4160 if (use_json)
4161 {
4162 json_object_int_add(json_sub, "lastPrgrsvChangeMsec", time_store);
4163 }
4164 else
4165 {
4166 vty_out (vty, " Most recent state change statistics:%s",
4167 VTY_NEWLINE);
4168 vty_out (vty, " Progressive change %s ago%s",
4169 ospf_timeval_dump (&res, timebuf, sizeof(timebuf)),
4170 VTY_NEWLINE);
4171 }
4172 }
4173
4174 if (nbr->ts_last_regress.tv_sec || nbr->ts_last_regress.tv_usec)
4175 {
4176 struct timeval res;
4177 long time_store;
4178
4179 time_store = monotime_since(&nbr->ts_last_regress, &res) / 1000LL;
4180 if (use_json)
4181 {
4182 json_object_int_add(json_sub, "lastRegressiveChangeMsec", time_store);
4183 if (nbr->last_regress_str)
4184 json_object_string_add(json_sub, "lastRegressiveChangeReason", nbr->last_regress_str);
4185 }
4186 else
4187 {
4188 vty_out (vty, " Regressive change %s ago, due to %s%s",
4189 ospf_timeval_dump (&res, timebuf, sizeof(timebuf)),
4190 (nbr->last_regress_str ? nbr->last_regress_str : "??"),
4191 VTY_NEWLINE);
4192 }
4193 }
4194
4195 /* Show Designated Rotuer ID. */
4196 if (use_json)
4197 json_object_string_add(json_sub, "routerDesignatedId", inet_ntoa (nbr->d_router));
4198 else
4199 vty_out (vty, " DR is %s,", inet_ntoa (nbr->d_router));
4200
4201 /* Show Backup Designated Rotuer ID. */
4202 if (use_json)
4203 json_object_string_add(json_sub, "routerDesignatedBackupId", inet_ntoa (nbr->bd_router));
4204 else
4205 vty_out (vty, " BDR is %s%s", inet_ntoa (nbr->bd_router), VTY_NEWLINE);
4206
4207 /* Show options. */
4208 if (use_json)
4209 {
4210 json_object_int_add(json_sub, "optionsCounter", nbr->options);
4211 json_object_string_add(json_sub, "optionsList", ospf_options_dump (nbr->options));
4212 }
4213 else
4214 vty_out (vty, " Options %d %s%s", nbr->options,
4215 ospf_options_dump (nbr->options), VTY_NEWLINE);
4216
4217 /* Show Router Dead interval timer. */
4218 if (use_json)
4219 {
4220 if (nbr->t_inactivity)
4221 {
4222 long time_store;
4223 time_store = monotime_until(&nbr->t_inactivity->u.sands, NULL) / 1000LL;
4224 json_object_int_add(json_sub, "routerDeadIntervalTimerDueMsec", time_store);
4225 }
4226 else
4227 json_object_int_add(json_sub, "routerDeadIntervalTimerDueMsec", -1);
4228 }
4229 else
4230 vty_out (vty, " Dead timer due in %s%s",
4231 ospf_timer_dump (nbr->t_inactivity, timebuf, sizeof (timebuf)),
4232 VTY_NEWLINE);
4233
4234 /* Show Database Summary list. */
4235 if (use_json)
4236 json_object_int_add(json_sub, "databaseSummaryListCounter", ospf_db_summary_count (nbr));
4237 else
4238 vty_out (vty, " Database Summary List %d%s",
4239 ospf_db_summary_count (nbr), VTY_NEWLINE);
4240
4241 /* Show Link State Request list. */
4242 if (use_json)
4243 json_object_int_add(json_sub, "linkStateRequestListCounter", ospf_ls_request_count (nbr));
4244 else
4245 vty_out (vty, " Link State Request List %ld%s",
4246 ospf_ls_request_count (nbr), VTY_NEWLINE);
4247
4248 /* Show Link State Retransmission list. */
4249 if (use_json)
4250 json_object_int_add(json_sub, "linkStateRetransmissionListCounter", ospf_ls_retransmit_count (nbr));
4251 else
4252 vty_out (vty, " Link State Retransmission List %ld%s",
4253 ospf_ls_retransmit_count (nbr), VTY_NEWLINE);
4254
4255 /* Show inactivity timer thread. */
4256 if (use_json)
4257 {
4258 if (nbr->t_inactivity != NULL)
4259 json_object_string_add(json_sub, "threadInactivityTimer", "on");
4260 }
4261 else
4262 vty_out (vty, " Thread Inactivity Timer %s%s",
4263 nbr->t_inactivity != NULL ? "on" : "off", VTY_NEWLINE);
4264
4265 /* Show Database Description retransmission thread. */
4266 if (use_json)
4267 {
4268 if (nbr->t_db_desc != NULL)
4269 json_object_string_add(json_sub, "threadDatabaseDescriptionRetransmission", "on");
4270 }
4271 else
4272 vty_out (vty, " Thread Database Description Retransmision %s%s",
4273 nbr->t_db_desc != NULL ? "on" : "off", VTY_NEWLINE);
4274
4275 /* Show Link State Request Retransmission thread. */
4276 if (use_json)
4277 {
4278 if (nbr->t_ls_req != NULL)
4279 json_object_string_add(json_sub, "threadLinkStateRequestRetransmission", "on");
4280 }
4281 else
4282 vty_out (vty, " Thread Link State Request Retransmission %s%s",
4283 nbr->t_ls_req != NULL ? "on" : "off", VTY_NEWLINE);
4284
4285 /* Show Link State Update Retransmission thread. */
4286 if (use_json)
4287 {
4288 if (nbr->t_ls_upd != NULL)
4289 json_object_string_add(json_sub, "threadLinkStateUpdateRetransmission", "on");
4290 }
4291 else
4292 vty_out (vty, " Thread Link State Update Retransmission %s%s%s",
4293 nbr->t_ls_upd != NULL ? "on" : "off", VTY_NEWLINE, VTY_NEWLINE);
4294
4295 if (use_json)
4296 {
4297 if (nbr->state == NSM_Attempt && nbr->router_id.s_addr == 0)
4298 json_object_object_add(json, "noNbrId", json_sub);
4299 else
4300 json_object_object_add(json, inet_ntoa (nbr->router_id), json_sub);
4301 }
4302
4303 ospf_bfd_show_info(vty, nbr->bfd_info, json, use_json, 0);
4304 }
4305
4306 static int
4307 show_ip_ospf_neighbor_id_common (struct vty *vty, struct ospf *ospf,
4308 int arg_base, struct cmd_token **argv, u_char use_json)
4309 {
4310 struct listnode *node;
4311 struct ospf_neighbor *nbr;
4312 struct ospf_interface *oi;
4313 struct in_addr router_id;
4314 int ret;
4315 json_object *json = NULL;
4316
4317 if (use_json)
4318 json = json_object_new_object();
4319
4320 if (ospf->instance)
4321 {
4322 if (use_json)
4323 json_object_int_add(json, "ospfInstance", ospf->instance);
4324 else
4325 vty_out (vty, "%sOSPF Instance: %d%s%s", VTY_NEWLINE, ospf->instance,
4326 VTY_NEWLINE, VTY_NEWLINE);
4327 }
4328
4329 ret = inet_aton (argv[arg_base]->arg, &router_id);
4330 if (!ret)
4331 {
4332 if (!use_json)
4333 vty_out (vty, "Please specify Neighbor ID by A.B.C.D%s", VTY_NEWLINE);
4334 return CMD_WARNING;
4335 }
4336
4337 for (ALL_LIST_ELEMENTS_RO (ospf->oiflist, node, oi))
4338 {
4339 if ((nbr = ospf_nbr_lookup_by_routerid (oi->nbrs, &router_id)))
4340 {
4341 show_ip_ospf_neighbor_detail_sub (vty, oi, nbr, use_json, json);
4342 }
4343 }
4344
4345 if (use_json)
4346 {
4347 vty_out (vty, "%s%s", json_object_to_json_string_ext(json, JSON_C_TO_STRING_PRETTY), VTY_NEWLINE);
4348 json_object_free(json);
4349 }
4350 else
4351 vty_out (vty, "%s", VTY_NEWLINE);
4352
4353 return CMD_SUCCESS;
4354 }
4355
4356 DEFUN (show_ip_ospf_neighbor_id,
4357 show_ip_ospf_neighbor_id_cmd,
4358 "show ip ospf neighbor A.B.C.D [json]",
4359 SHOW_STR
4360 IP_STR
4361 "OSPF information\n"
4362 "Neighbor list\n"
4363 "Neighbor ID\n"
4364 JSON_STR)
4365 {
4366 struct ospf *ospf;
4367 u_char uj = use_json(argc, argv);
4368
4369 if ((ospf = ospf_lookup()) == NULL || !ospf->oi_running)
4370 return CMD_SUCCESS;
4371
4372 return show_ip_ospf_neighbor_id_common(vty, ospf, 0, argv, uj);
4373 }
4374
4375 DEFUN (show_ip_ospf_instance_neighbor_id,
4376 show_ip_ospf_instance_neighbor_id_cmd,
4377 "show ip ospf (1-65535) neighbor A.B.C.D [json]",
4378 SHOW_STR
4379 IP_STR
4380 "OSPF information\n"
4381 "Instance ID\n"
4382 "Neighbor list\n"
4383 "Neighbor ID\n"
4384 JSON_STR)
4385 {
4386 int idx_number = 3;
4387 struct ospf *ospf;
4388 u_short instance = 0;
4389 u_char uj = use_json(argc, argv);
4390
4391 VTY_GET_INTEGER ("Instance", instance, argv[idx_number]->arg);
4392 if ((ospf = ospf_lookup_instance(instance)) == NULL || !ospf->oi_running)
4393 return CMD_SUCCESS;
4394
4395 return show_ip_ospf_neighbor_id_common(vty, ospf, 1, argv, uj);
4396 }
4397
4398 static int
4399 show_ip_ospf_neighbor_detail_common (struct vty *vty, struct ospf *ospf, u_char use_json)
4400 {
4401 struct ospf_interface *oi;
4402 struct listnode *node;
4403 json_object *json = NULL;
4404
4405 if (use_json)
4406 json = json_object_new_object();
4407
4408 if (ospf->instance)
4409 {
4410 if (use_json)
4411 json_object_int_add(json, "ospfInstance", ospf->instance);
4412 else
4413 vty_out (vty, "%sOSPF Instance: %d%s%s", VTY_NEWLINE, ospf->instance,
4414 VTY_NEWLINE, VTY_NEWLINE);
4415 }
4416
4417 for (ALL_LIST_ELEMENTS_RO (ospf->oiflist, node, oi))
4418 {
4419 struct route_node *rn;
4420 struct ospf_neighbor *nbr;
4421
4422 for (rn = route_top (oi->nbrs); rn; rn = route_next (rn))
4423 {
4424 if ((nbr = rn->info))
4425 {
4426 if (nbr != oi->nbr_self)
4427 {
4428 if (nbr->state != NSM_Down)
4429 {
4430 show_ip_ospf_neighbor_detail_sub (vty, oi, nbr, use_json, json);
4431 }
4432 }
4433 }
4434 }
4435 }
4436
4437 if (use_json)
4438 {
4439 vty_out (vty, "%s%s", json_object_to_json_string_ext(json, JSON_C_TO_STRING_PRETTY), VTY_NEWLINE);
4440 json_object_free(json);
4441 }
4442 else
4443 vty_out (vty, "%s", VTY_NEWLINE);
4444
4445 return CMD_SUCCESS;
4446 }
4447
4448 DEFUN (show_ip_ospf_neighbor_detail,
4449 show_ip_ospf_neighbor_detail_cmd,
4450 "show ip ospf neighbor detail [json]",
4451 SHOW_STR
4452 IP_STR
4453 "OSPF information\n"
4454 "Neighbor list\n"
4455 "detail of all neighbors\n"
4456 JSON_STR)
4457 {
4458 struct ospf *ospf;
4459 u_char uj = use_json(argc, argv);
4460
4461 if ((ospf = ospf_lookup()) == NULL || !ospf->oi_running)
4462 return CMD_SUCCESS;
4463
4464 return show_ip_ospf_neighbor_detail_common(vty, ospf, uj);
4465 }
4466
4467 DEFUN (show_ip_ospf_instance_neighbor_detail,
4468 show_ip_ospf_instance_neighbor_detail_cmd,
4469 "show ip ospf (1-65535) neighbor detail [json]",
4470 SHOW_STR
4471 IP_STR
4472 "OSPF information\n"
4473 "Instance ID\n"
4474 "Neighbor list\n"
4475 "detail of all neighbors\n"
4476 JSON_STR)
4477 {
4478 int idx_number = 3;
4479 struct ospf *ospf;
4480 u_short instance = 0;
4481 u_char uj = use_json(argc, argv);
4482
4483 VTY_GET_INTEGER ("Instance", instance, argv[idx_number]->arg);
4484 if ((ospf = ospf_lookup_instance (instance)) == NULL || !ospf->oi_running)
4485 return CMD_SUCCESS;
4486
4487 return show_ip_ospf_neighbor_detail_common(vty, ospf, uj);
4488 }
4489
4490 static int
4491 show_ip_ospf_neighbor_detail_all_common (struct vty *vty, struct ospf *ospf, u_char use_json)
4492 {
4493 struct listnode *node;
4494 struct ospf_interface *oi;
4495 json_object *json = NULL;
4496
4497 if (use_json)
4498 json = json_object_new_object();
4499
4500 if (ospf->instance)
4501 {
4502 if (use_json)
4503 json_object_int_add(json, "ospfInstance", ospf->instance);
4504 else
4505 vty_out (vty, "%sOSPF Instance: %d%s%s", VTY_NEWLINE, ospf->instance,
4506 VTY_NEWLINE, VTY_NEWLINE);
4507 }
4508
4509 for (ALL_LIST_ELEMENTS_RO (ospf->oiflist, node, oi))
4510 {
4511 struct route_node *rn;
4512 struct ospf_neighbor *nbr;
4513 struct ospf_nbr_nbma *nbr_nbma;
4514
4515 for (rn = route_top (oi->nbrs); rn; rn = route_next (rn))
4516 if ((nbr = rn->info))
4517 if (nbr != oi->nbr_self)
4518 if (nbr->state != NSM_Down)
4519 show_ip_ospf_neighbor_detail_sub (vty, oi, rn->info, use_json, json);
4520
4521 if (oi->type == OSPF_IFTYPE_NBMA)
4522 {
4523 struct listnode *nd;
4524
4525 for (ALL_LIST_ELEMENTS_RO (oi->nbr_nbma, nd, nbr_nbma))
4526 {
4527 if (nbr_nbma->nbr == NULL || nbr_nbma->nbr->state == NSM_Down)
4528 show_ip_ospf_nbr_nbma_detail_sub (vty, oi, nbr_nbma, use_json, json);
4529 }
4530 }
4531 }
4532
4533 if (use_json)
4534 {
4535 vty_out (vty, "%s%s", json_object_to_json_string_ext(json, JSON_C_TO_STRING_PRETTY), VTY_NEWLINE);
4536 json_object_free(json);
4537 }
4538 else
4539 {
4540 vty_out (vty, "%s", VTY_NEWLINE);
4541 }
4542
4543 return CMD_SUCCESS;
4544 }
4545
4546 DEFUN (show_ip_ospf_neighbor_detail_all,
4547 show_ip_ospf_neighbor_detail_all_cmd,
4548 "show ip ospf neighbor detail all [json]",
4549 SHOW_STR
4550 IP_STR
4551 "OSPF information\n"
4552 "Neighbor list\n"
4553 "detail of all neighbors\n"
4554 "include down status neighbor\n"
4555 JSON_STR)
4556 {
4557 struct ospf *ospf;
4558 u_char uj = use_json(argc, argv);
4559
4560 if ((ospf = ospf_lookup()) == NULL || !ospf->oi_running)
4561 return CMD_SUCCESS;
4562
4563 return show_ip_ospf_neighbor_detail_all_common(vty, ospf, uj);
4564 }
4565
4566 DEFUN (show_ip_ospf_instance_neighbor_detail_all,
4567 show_ip_ospf_instance_neighbor_detail_all_cmd,
4568 "show ip ospf (1-65535) neighbor detail all [json]",
4569 SHOW_STR
4570 IP_STR
4571 "OSPF information\n"
4572 "Instance ID\n"
4573 "Neighbor list\n"
4574 "detail of all neighbors\n"
4575 "include down status neighbor\n"
4576 JSON_STR)
4577 {
4578 int idx_number = 3;
4579 struct ospf *ospf;
4580 u_short instance = 0;
4581 u_char uj = use_json(argc, argv);
4582
4583 VTY_GET_INTEGER ("Instance", instance, argv[idx_number]->arg);
4584 if ((ospf = ospf_lookup_instance(instance)) == NULL || !ospf->oi_running)
4585 return CMD_SUCCESS;
4586
4587 return show_ip_ospf_neighbor_detail_all_common(vty, ospf, uj);
4588 }
4589
4590 static int
4591 show_ip_ospf_neighbor_int_detail_common (struct vty *vty, struct ospf *ospf,
4592 int arg_base, struct cmd_token **argv, u_char use_json)
4593 {
4594 struct ospf_interface *oi;
4595 struct interface *ifp;
4596 struct route_node *rn, *nrn;
4597 struct ospf_neighbor *nbr;
4598 json_object *json = NULL;
4599
4600 if (use_json)
4601 json = json_object_new_object();
4602
4603 if (ospf->instance)
4604 {
4605 if (use_json)
4606 json_object_int_add(json, "ospfInstance", ospf->instance);
4607 else
4608 vty_out (vty, "%sOSPF Instance: %d%s%s", VTY_NEWLINE, ospf->instance,
4609 VTY_NEWLINE, VTY_NEWLINE);
4610 }
4611
4612 ifp = if_lookup_by_name (argv[arg_base]->arg, VRF_DEFAULT);
4613 if (!ifp)
4614 {
4615 if (!use_json)
4616 vty_out (vty, "No such interface.%s", VTY_NEWLINE);
4617 return CMD_WARNING;
4618 }
4619
4620 for (rn = route_top (IF_OIFS (ifp)); rn; rn = route_next (rn))
4621 {
4622 if ((oi = rn->info))
4623 {
4624 for (nrn = route_top (oi->nbrs); nrn; nrn = route_next (nrn))
4625 {
4626 if ((nbr = nrn->info))
4627 {
4628 if (nbr != oi->nbr_self)
4629 {
4630 if (nbr->state != NSM_Down)
4631 show_ip_ospf_neighbor_detail_sub (vty, oi, nbr, use_json, json);
4632 }
4633 }
4634 }
4635 }
4636 }
4637
4638 if (use_json)
4639 {
4640 vty_out (vty, "%s%s", json_object_to_json_string_ext(json, JSON_C_TO_STRING_PRETTY), VTY_NEWLINE);
4641 json_object_free(json);
4642 }
4643 else
4644 vty_out (vty, "%s", VTY_NEWLINE);
4645
4646 return CMD_SUCCESS;
4647 }
4648
4649 DEFUN (show_ip_ospf_neighbor_int_detail,
4650 show_ip_ospf_neighbor_int_detail_cmd,
4651 "show ip ospf neighbor IFNAME detail [json]",
4652 SHOW_STR
4653 IP_STR
4654 "OSPF information\n"
4655 "Neighbor list\n"
4656 "Interface name\n"
4657 "detail of all neighbors\n"
4658 JSON_STR)
4659 {
4660 struct ospf *ospf;
4661 u_char uj = use_json(argc, argv);
4662
4663 if ((ospf = ospf_lookup()) == NULL || !ospf->oi_running)
4664 return CMD_SUCCESS;
4665
4666 return show_ip_ospf_neighbor_int_detail_common(vty, ospf, 0, argv, uj);
4667 }
4668
4669 DEFUN (show_ip_ospf_instance_neighbor_int_detail,
4670 show_ip_ospf_instance_neighbor_int_detail_cmd,
4671 "show ip ospf (1-65535) neighbor IFNAME detail [json]",
4672 SHOW_STR
4673 IP_STR
4674 "OSPF information\n"
4675 "Instance ID\n"
4676 "Neighbor list\n"
4677 "Interface name\n"
4678 "detail of all neighbors\n"
4679 JSON_STR)
4680 {
4681 int idx_number = 3;
4682 struct ospf *ospf;
4683 u_short instance = 0;
4684 u_char uj = use_json(argc, argv);
4685
4686 VTY_GET_INTEGER ("Instance", instance, argv[idx_number]->arg);
4687 if ((ospf = ospf_lookup_instance(instance)) == NULL || !ospf->oi_running)
4688 return CMD_SUCCESS;
4689
4690 return show_ip_ospf_neighbor_int_detail_common(vty, ospf, 1, argv, uj);
4691 }
4692
4693 /* Show functions */
4694 static int
4695 show_lsa_summary (struct vty *vty, struct ospf_lsa *lsa, int self)
4696 {
4697 struct router_lsa *rl;
4698 struct summary_lsa *sl;
4699 struct as_external_lsa *asel;
4700 struct prefix_ipv4 p;
4701
4702 if (lsa != NULL)
4703 /* If self option is set, check LSA self flag. */
4704 if (self == 0 || IS_LSA_SELF (lsa))
4705 {
4706 /* LSA common part show. */
4707 vty_out (vty, "%-15s ", inet_ntoa (lsa->data->id));
4708 vty_out (vty, "%-15s %4d 0x%08lx 0x%04x",
4709 inet_ntoa (lsa->data->adv_router), LS_AGE (lsa),
4710 (u_long)ntohl (lsa->data->ls_seqnum), ntohs (lsa->data->checksum));
4711 /* LSA specific part show. */
4712 switch (lsa->data->type)
4713 {
4714 case OSPF_ROUTER_LSA:
4715 rl = (struct router_lsa *) lsa->data;
4716 vty_out (vty, " %-d", ntohs (rl->links));
4717 break;
4718 case OSPF_SUMMARY_LSA:
4719 sl = (struct summary_lsa *) lsa->data;
4720
4721 p.family = AF_INET;
4722 p.prefix = sl->header.id;
4723 p.prefixlen = ip_masklen (sl->mask);
4724 apply_mask_ipv4 (&p);
4725
4726 vty_out (vty, " %s/%d", inet_ntoa (p.prefix), p.prefixlen);
4727 break;
4728 case OSPF_AS_EXTERNAL_LSA:
4729 case OSPF_AS_NSSA_LSA:
4730 asel = (struct as_external_lsa *) lsa->data;
4731
4732 p.family = AF_INET;
4733 p.prefix = asel->header.id;
4734 p.prefixlen = ip_masklen (asel->mask);
4735 apply_mask_ipv4 (&p);
4736
4737 vty_out (vty, " %s %s/%d [0x%lx]",
4738 IS_EXTERNAL_METRIC (asel->e[0].tos) ? "E2" : "E1",
4739 inet_ntoa (p.prefix), p.prefixlen,
4740 (u_long)ntohl (asel->e[0].route_tag));
4741 break;
4742 case OSPF_NETWORK_LSA:
4743 case OSPF_ASBR_SUMMARY_LSA:
4744 case OSPF_OPAQUE_LINK_LSA:
4745 case OSPF_OPAQUE_AREA_LSA:
4746 case OSPF_OPAQUE_AS_LSA:
4747 default:
4748 break;
4749 }
4750 vty_out (vty, VTY_NEWLINE);
4751 }
4752
4753 return 0;
4754 }
4755
4756 static const char *show_database_desc[] =
4757 {
4758 "unknown",
4759 "Router Link States",
4760 "Net Link States",
4761 "Summary Link States",
4762 "ASBR-Summary Link States",
4763 "AS External Link States",
4764 "Group Membership LSA",
4765 "NSSA-external Link States",
4766 "Type-8 LSA",
4767 "Link-Local Opaque-LSA",
4768 "Area-Local Opaque-LSA",
4769 "AS-external Opaque-LSA",
4770 };
4771
4772 static const char *show_database_header[] =
4773 {
4774 "",
4775 "Link ID ADV Router Age Seq# CkSum Link count",
4776 "Link ID ADV Router Age Seq# CkSum",
4777 "Link ID ADV Router Age Seq# CkSum Route",
4778 "Link ID ADV Router Age Seq# CkSum",
4779 "Link ID ADV Router Age Seq# CkSum Route",
4780 " --- header for Group Member ----",
4781 "Link ID ADV Router Age Seq# CkSum Route",
4782 " --- type-8 ---",
4783 "Opaque-Type/Id ADV Router Age Seq# CkSum",
4784 "Opaque-Type/Id ADV Router Age Seq# CkSum",
4785 "Opaque-Type/Id ADV Router Age Seq# CkSum",
4786 };
4787
4788 static void
4789 show_ip_ospf_database_header (struct vty *vty, struct ospf_lsa *lsa)
4790 {
4791 struct router_lsa *rlsa = (struct router_lsa*) lsa->data;
4792
4793 vty_out (vty, " LS age: %d%s", LS_AGE (lsa), VTY_NEWLINE);
4794 vty_out (vty, " Options: 0x%-2x : %s%s",
4795 lsa->data->options,
4796 ospf_options_dump(lsa->data->options),
4797 VTY_NEWLINE);
4798 vty_out (vty, " LS Flags: 0x%-2x %s%s",
4799 lsa->flags,
4800 ((lsa->flags & OSPF_LSA_LOCAL_XLT) ? "(Translated from Type-7)" : ""),
4801 VTY_NEWLINE);
4802
4803 if (lsa->data->type == OSPF_ROUTER_LSA)
4804 {
4805 vty_out (vty, " Flags: 0x%x" , rlsa->flags);
4806
4807 if (rlsa->flags)
4808 vty_out (vty, " :%s%s%s%s",
4809 IS_ROUTER_LSA_BORDER (rlsa) ? " ABR" : "",
4810 IS_ROUTER_LSA_EXTERNAL (rlsa) ? " ASBR" : "",
4811 IS_ROUTER_LSA_VIRTUAL (rlsa) ? " VL-endpoint" : "",
4812 IS_ROUTER_LSA_SHORTCUT (rlsa) ? " Shortcut" : "");
4813
4814 vty_out (vty, "%s", VTY_NEWLINE);
4815 }
4816 vty_out (vty, " LS Type: %s%s",
4817 LOOKUP (ospf_lsa_type_msg, lsa->data->type), VTY_NEWLINE);
4818 vty_out (vty, " Link State ID: %s %s%s", inet_ntoa (lsa->data->id),
4819 LOOKUP (ospf_link_state_id_type_msg, lsa->data->type), VTY_NEWLINE);
4820 vty_out (vty, " Advertising Router: %s%s",
4821 inet_ntoa (lsa->data->adv_router), VTY_NEWLINE);
4822 vty_out (vty, " LS Seq Number: %08lx%s", (u_long)ntohl (lsa->data->ls_seqnum),
4823 VTY_NEWLINE);
4824 vty_out (vty, " Checksum: 0x%04x%s", ntohs (lsa->data->checksum),
4825 VTY_NEWLINE);
4826 vty_out (vty, " Length: %d%s", ntohs (lsa->data->length), VTY_NEWLINE);
4827 }
4828
4829 const char *link_type_desc[] =
4830 {
4831 "(null)",
4832 "another Router (point-to-point)",
4833 "a Transit Network",
4834 "Stub Network",
4835 "a Virtual Link",
4836 };
4837
4838 const char *link_id_desc[] =
4839 {
4840 "(null)",
4841 "Neighboring Router ID",
4842 "Designated Router address",
4843 "Net",
4844 "Neighboring Router ID",
4845 };
4846
4847 const char *link_data_desc[] =
4848 {
4849 "(null)",
4850 "Router Interface address",
4851 "Router Interface address",
4852 "Network Mask",
4853 "Router Interface address",
4854 };
4855
4856 /* Show router-LSA each Link information. */
4857 static void
4858 show_ip_ospf_database_router_links (struct vty *vty,
4859 struct router_lsa *rl)
4860 {
4861 int len, type;
4862 unsigned int i;
4863
4864 len = ntohs (rl->header.length) - 4;
4865 for (i = 0; i < ntohs (rl->links) && len > 0; len -= 12, i++)
4866 {
4867 type = rl->link[i].type;
4868
4869 vty_out (vty, " Link connected to: %s%s",
4870 link_type_desc[type], VTY_NEWLINE);
4871 vty_out (vty, " (Link ID) %s: %s%s", link_id_desc[type],
4872 inet_ntoa (rl->link[i].link_id), VTY_NEWLINE);
4873 vty_out (vty, " (Link Data) %s: %s%s", link_data_desc[type],
4874 inet_ntoa (rl->link[i].link_data), VTY_NEWLINE);
4875 vty_out (vty, " Number of TOS metrics: 0%s", VTY_NEWLINE);
4876 vty_out (vty, " TOS 0 Metric: %d%s",
4877 ntohs (rl->link[i].metric), VTY_NEWLINE);
4878 vty_out (vty, "%s", VTY_NEWLINE);
4879 }
4880 }
4881
4882 /* Show router-LSA detail information. */
4883 static int
4884 show_router_lsa_detail (struct vty *vty, struct ospf_lsa *lsa)
4885 {
4886 if (lsa != NULL)
4887 {
4888 struct router_lsa *rl = (struct router_lsa *) lsa->data;
4889
4890 show_ip_ospf_database_header (vty, lsa);
4891
4892 vty_out (vty, " Number of Links: %d%s%s", ntohs (rl->links),
4893 VTY_NEWLINE, VTY_NEWLINE);
4894
4895 show_ip_ospf_database_router_links (vty, rl);
4896 vty_out (vty, "%s", VTY_NEWLINE);
4897 }
4898
4899 return 0;
4900 }
4901
4902 /* Show network-LSA detail information. */
4903 static int
4904 show_network_lsa_detail (struct vty *vty, struct ospf_lsa *lsa)
4905 {
4906 int length, i;
4907
4908 if (lsa != NULL)
4909 {
4910 struct network_lsa *nl = (struct network_lsa *) lsa->data;
4911
4912 show_ip_ospf_database_header (vty, lsa);
4913
4914 vty_out (vty, " Network Mask: /%d%s",
4915 ip_masklen (nl->mask), VTY_NEWLINE);
4916
4917 length = ntohs (lsa->data->length) - OSPF_LSA_HEADER_SIZE - 4;
4918
4919 for (i = 0; length > 0; i++, length -= 4)
4920 vty_out (vty, " Attached Router: %s%s",
4921 inet_ntoa (nl->routers[i]), VTY_NEWLINE);
4922
4923 vty_out (vty, "%s", VTY_NEWLINE);
4924 }
4925
4926 return 0;
4927 }
4928
4929 /* Show summary-LSA detail information. */
4930 static int
4931 show_summary_lsa_detail (struct vty *vty, struct ospf_lsa *lsa)
4932 {
4933 if (lsa != NULL)
4934 {
4935 struct summary_lsa *sl = (struct summary_lsa *) lsa->data;
4936
4937 show_ip_ospf_database_header (vty, lsa);
4938
4939 vty_out (vty, " Network Mask: /%d%s", ip_masklen (sl->mask),
4940 VTY_NEWLINE);
4941 vty_out (vty, " TOS: 0 Metric: %d%s", GET_METRIC (sl->metric),
4942 VTY_NEWLINE);
4943 vty_out (vty, "%s", VTY_NEWLINE);
4944 }
4945
4946 return 0;
4947 }
4948
4949 /* Show summary-ASBR-LSA detail information. */
4950 static int
4951 show_summary_asbr_lsa_detail (struct vty *vty, struct ospf_lsa *lsa)
4952 {
4953 if (lsa != NULL)
4954 {
4955 struct summary_lsa *sl = (struct summary_lsa *) lsa->data;
4956
4957 show_ip_ospf_database_header (vty, lsa);
4958
4959 vty_out (vty, " Network Mask: /%d%s",
4960 ip_masklen (sl->mask), VTY_NEWLINE);
4961 vty_out (vty, " TOS: 0 Metric: %d%s", GET_METRIC (sl->metric),
4962 VTY_NEWLINE);
4963 vty_out (vty, "%s", VTY_NEWLINE);
4964 }
4965
4966 return 0;
4967 }
4968
4969 /* Show AS-external-LSA detail information. */
4970 static int
4971 show_as_external_lsa_detail (struct vty *vty, struct ospf_lsa *lsa)
4972 {
4973 if (lsa != NULL)
4974 {
4975 struct as_external_lsa *al = (struct as_external_lsa *) lsa->data;
4976
4977 show_ip_ospf_database_header (vty, lsa);
4978
4979 vty_out (vty, " Network Mask: /%d%s",
4980 ip_masklen (al->mask), VTY_NEWLINE);
4981 vty_out (vty, " Metric Type: %s%s",
4982 IS_EXTERNAL_METRIC (al->e[0].tos) ?
4983 "2 (Larger than any link state path)" : "1", VTY_NEWLINE);
4984 vty_out (vty, " TOS: 0%s", VTY_NEWLINE);
4985 vty_out (vty, " Metric: %d%s",
4986 GET_METRIC (al->e[0].metric), VTY_NEWLINE);
4987 vty_out (vty, " Forward Address: %s%s",
4988 inet_ntoa (al->e[0].fwd_addr), VTY_NEWLINE);
4989
4990 vty_out (vty, " External Route Tag: %"ROUTE_TAG_PRI"%s%s",
4991 (route_tag_t)ntohl (al->e[0].route_tag), VTY_NEWLINE, VTY_NEWLINE);
4992 }
4993
4994 return 0;
4995 }
4996 #if 0
4997 static int
4998 show_as_external_lsa_stdvty (struct ospf_lsa *lsa)
4999 {
5000 struct as_external_lsa *al = (struct as_external_lsa *) lsa->data;
5001
5002 /* show_ip_ospf_database_header (vty, lsa); */
5003
5004 zlog_debug( " Network Mask: /%d%s",
5005 ip_masklen (al->mask), "\n");
5006 zlog_debug( " Metric Type: %s%s",
5007 IS_EXTERNAL_METRIC (al->e[0].tos) ?
5008 "2 (Larger than any link state path)" : "1", "\n");
5009 zlog_debug( " TOS: 0%s", "\n");
5010 zlog_debug( " Metric: %d%s",
5011 GET_METRIC (al->e[0].metric), "\n");
5012 zlog_debug( " Forward Address: %s%s",
5013 inet_ntoa (al->e[0].fwd_addr), "\n");
5014
5015 zlog_debug( " External Route Tag: %"ROUTE_TAG_PRI"%s%s",
5016 (route_tag_t)ntohl (al->e[0].route_tag), "\n", "\n");
5017
5018 return 0;
5019 }
5020 #endif
5021 /* Show AS-NSSA-LSA detail information. */
5022 static int
5023 show_as_nssa_lsa_detail (struct vty *vty, struct ospf_lsa *lsa)
5024 {
5025 if (lsa != NULL)
5026 {
5027 struct as_external_lsa *al = (struct as_external_lsa *) lsa->data;
5028
5029 show_ip_ospf_database_header (vty, lsa);
5030
5031 vty_out (vty, " Network Mask: /%d%s",
5032 ip_masklen (al->mask), VTY_NEWLINE);
5033 vty_out (vty, " Metric Type: %s%s",
5034 IS_EXTERNAL_METRIC (al->e[0].tos) ?
5035 "2 (Larger than any link state path)" : "1", VTY_NEWLINE);
5036 vty_out (vty, " TOS: 0%s", VTY_NEWLINE);
5037 vty_out (vty, " Metric: %d%s",
5038 GET_METRIC (al->e[0].metric), VTY_NEWLINE);
5039 vty_out (vty, " NSSA: Forward Address: %s%s",
5040 inet_ntoa (al->e[0].fwd_addr), VTY_NEWLINE);
5041
5042 vty_out (vty, " External Route Tag: %"ROUTE_TAG_PRI"%s%s",
5043 (route_tag_t)ntohl (al->e[0].route_tag), VTY_NEWLINE, VTY_NEWLINE);
5044 }
5045
5046 return 0;
5047 }
5048
5049 static int
5050 show_func_dummy (struct vty *vty, struct ospf_lsa *lsa)
5051 {
5052 return 0;
5053 }
5054
5055 static int
5056 show_opaque_lsa_detail (struct vty *vty, struct ospf_lsa *lsa)
5057 {
5058 if (lsa != NULL)
5059 {
5060 show_ip_ospf_database_header (vty, lsa);
5061 show_opaque_info_detail (vty, lsa);
5062
5063 vty_out (vty, "%s", VTY_NEWLINE);
5064 }
5065 return 0;
5066 }
5067
5068 int (*show_function[])(struct vty *, struct ospf_lsa *) =
5069 {
5070 NULL,
5071 show_router_lsa_detail,
5072 show_network_lsa_detail,
5073 show_summary_lsa_detail,
5074 show_summary_asbr_lsa_detail,
5075 show_as_external_lsa_detail,
5076 show_func_dummy,
5077 show_as_nssa_lsa_detail, /* almost same as external */
5078 NULL, /* type-8 */
5079 show_opaque_lsa_detail,
5080 show_opaque_lsa_detail,
5081 show_opaque_lsa_detail,
5082 };
5083
5084 static void
5085 show_lsa_prefix_set (struct vty *vty, struct prefix_ls *lp, struct in_addr *id,
5086 struct in_addr *adv_router)
5087 {
5088 memset (lp, 0, sizeof (struct prefix_ls));
5089 lp->family = 0;
5090 if (id == NULL)
5091 lp->prefixlen = 0;
5092 else if (adv_router == NULL)
5093 {
5094 lp->prefixlen = 32;
5095 lp->id = *id;
5096 }
5097 else
5098 {
5099 lp->prefixlen = 64;
5100 lp->id = *id;
5101 lp->adv_router = *adv_router;
5102 }
5103 }
5104
5105 static void
5106 show_lsa_detail_proc (struct vty *vty, struct route_table *rt,
5107 struct in_addr *id, struct in_addr *adv_router)
5108 {
5109 struct prefix_ls lp;
5110 struct route_node *rn, *start;
5111 struct ospf_lsa *lsa;
5112
5113 show_lsa_prefix_set (vty, &lp, id, adv_router);
5114 start = route_node_get (rt, (struct prefix *) &lp);
5115 if (start)
5116 {
5117 route_lock_node (start);
5118 for (rn = start; rn; rn = route_next_until (rn, start))
5119 if ((lsa = rn->info))
5120 {
5121 if (show_function[lsa->data->type] != NULL)
5122 show_function[lsa->data->type] (vty, lsa);
5123 }
5124 route_unlock_node (start);
5125 }
5126 }
5127
5128 /* Show detail LSA information
5129 -- if id is NULL then show all LSAs. */
5130 static void
5131 show_lsa_detail (struct vty *vty, struct ospf *ospf, int type,
5132 struct in_addr *id, struct in_addr *adv_router)
5133 {
5134 struct listnode *node;
5135 struct ospf_area *area;
5136
5137 switch (type)
5138 {
5139 case OSPF_AS_EXTERNAL_LSA:
5140 case OSPF_OPAQUE_AS_LSA:
5141 vty_out (vty, " %s %s%s",
5142 show_database_desc[type],
5143 VTY_NEWLINE, VTY_NEWLINE);
5144 show_lsa_detail_proc (vty, AS_LSDB (ospf, type), id, adv_router);
5145 break;
5146 default:
5147 for (ALL_LIST_ELEMENTS_RO (ospf->areas, node, area))
5148 {
5149 vty_out (vty, "%s %s (Area %s)%s%s",
5150 VTY_NEWLINE, show_database_desc[type],
5151 ospf_area_desc_string (area), VTY_NEWLINE, VTY_NEWLINE);
5152 show_lsa_detail_proc (vty, AREA_LSDB (area, type), id, adv_router);
5153 }
5154 break;
5155 }
5156 }
5157
5158 static void
5159 show_lsa_detail_adv_router_proc (struct vty *vty, struct route_table *rt,
5160 struct in_addr *adv_router)
5161 {
5162 struct route_node *rn;
5163 struct ospf_lsa *lsa;
5164
5165 for (rn = route_top (rt); rn; rn = route_next (rn))
5166 if ((lsa = rn->info))
5167 if (IPV4_ADDR_SAME (adv_router, &lsa->data->adv_router))
5168 {
5169 if (CHECK_FLAG (lsa->flags, OSPF_LSA_LOCAL_XLT))
5170 continue;
5171 if (show_function[lsa->data->type] != NULL)
5172 show_function[lsa->data->type] (vty, lsa);
5173 }
5174 }
5175
5176 /* Show detail LSA information. */
5177 static void
5178 show_lsa_detail_adv_router (struct vty *vty, struct ospf *ospf, int type,
5179 struct in_addr *adv_router)
5180 {
5181 struct listnode *node;
5182 struct ospf_area *area;
5183
5184 switch (type)
5185 {
5186 case OSPF_AS_EXTERNAL_LSA:
5187 case OSPF_OPAQUE_AS_LSA:
5188 vty_out (vty, " %s %s%s",
5189 show_database_desc[type],
5190 VTY_NEWLINE, VTY_NEWLINE);
5191 show_lsa_detail_adv_router_proc (vty, AS_LSDB (ospf, type),
5192 adv_router);
5193 break;
5194 default:
5195 for (ALL_LIST_ELEMENTS_RO (ospf->areas, node, area))
5196 {
5197 vty_out (vty, "%s %s (Area %s)%s%s",
5198 VTY_NEWLINE, show_database_desc[type],
5199 ospf_area_desc_string (area), VTY_NEWLINE, VTY_NEWLINE);
5200 show_lsa_detail_adv_router_proc (vty, AREA_LSDB (area, type),
5201 adv_router);
5202 }
5203 break;
5204 }
5205 }
5206
5207 static void
5208 show_ip_ospf_database_summary (struct vty *vty, struct ospf *ospf, int self)
5209 {
5210 struct ospf_lsa *lsa;
5211 struct route_node *rn;
5212 struct ospf_area *area;
5213 struct listnode *node;
5214 int type;
5215
5216 for (ALL_LIST_ELEMENTS_RO (ospf->areas, node, area))
5217 {
5218 for (type = OSPF_MIN_LSA; type < OSPF_MAX_LSA; type++)
5219 {
5220 switch (type)
5221 {
5222 case OSPF_AS_EXTERNAL_LSA:
5223 case OSPF_OPAQUE_AS_LSA:
5224 continue;
5225 default:
5226 break;
5227 }
5228 if (ospf_lsdb_count_self (area->lsdb, type) > 0 ||
5229 (!self && ospf_lsdb_count (area->lsdb, type) > 0))
5230 {
5231 vty_out (vty, " %s (Area %s)%s%s",
5232 show_database_desc[type],
5233 ospf_area_desc_string (area),
5234 VTY_NEWLINE, VTY_NEWLINE);
5235 vty_out (vty, "%s%s", show_database_header[type], VTY_NEWLINE);
5236
5237 LSDB_LOOP (AREA_LSDB (area, type), rn, lsa)
5238 show_lsa_summary (vty, lsa, self);
5239
5240 vty_out (vty, "%s", VTY_NEWLINE);
5241 }
5242 }
5243 }
5244
5245 for (type = OSPF_MIN_LSA; type < OSPF_MAX_LSA; type++)
5246 {
5247 switch (type)
5248 {
5249 case OSPF_AS_EXTERNAL_LSA:
5250 case OSPF_OPAQUE_AS_LSA:
5251 break;
5252 default:
5253 continue;
5254 }
5255 if (ospf_lsdb_count_self (ospf->lsdb, type) ||
5256 (!self && ospf_lsdb_count (ospf->lsdb, type)))
5257 {
5258 vty_out (vty, " %s%s%s",
5259 show_database_desc[type],
5260 VTY_NEWLINE, VTY_NEWLINE);
5261 vty_out (vty, "%s%s", show_database_header[type],
5262 VTY_NEWLINE);
5263
5264 LSDB_LOOP (AS_LSDB (ospf, type), rn, lsa)
5265 show_lsa_summary (vty, lsa, self);
5266
5267 vty_out (vty, "%s", VTY_NEWLINE);
5268 }
5269 }
5270
5271 vty_out (vty, "%s", VTY_NEWLINE);
5272 }
5273
5274 static void
5275 show_ip_ospf_database_maxage (struct vty *vty, struct ospf *ospf)
5276 {
5277 struct route_node *rn;
5278
5279 vty_out (vty, "%s MaxAge Link States:%s%s",
5280 VTY_NEWLINE, VTY_NEWLINE, VTY_NEWLINE);
5281
5282 for (rn = route_top (ospf->maxage_lsa); rn; rn = route_next (rn))
5283 {
5284 struct ospf_lsa *lsa;
5285
5286 if ((lsa = rn->info) != NULL)
5287 {
5288 vty_out (vty, "Link type: %d%s", lsa->data->type, VTY_NEWLINE);
5289 vty_out (vty, "Link State ID: %s%s",
5290 inet_ntoa (lsa->data->id), VTY_NEWLINE);
5291 vty_out (vty, "Advertising Router: %s%s",
5292 inet_ntoa (lsa->data->adv_router), VTY_NEWLINE);
5293 vty_out (vty, "LSA lock count: %d%s", lsa->lock, VTY_NEWLINE);
5294 vty_out (vty, "%s", VTY_NEWLINE);
5295 }
5296 }
5297 }
5298
5299 #define OSPF_LSA_TYPE_NSSA_DESC "NSSA external link state\n"
5300 #define OSPF_LSA_TYPE_NSSA_CMD_STR "|nssa-external"
5301
5302 #define OSPF_LSA_TYPE_OPAQUE_LINK_DESC "Link local Opaque-LSA\n"
5303 #define OSPF_LSA_TYPE_OPAQUE_AREA_DESC "Link area Opaque-LSA\n"
5304 #define OSPF_LSA_TYPE_OPAQUE_AS_DESC "Link AS Opaque-LSA\n"
5305 #define OSPF_LSA_TYPE_OPAQUE_CMD_STR "|opaque-link|opaque-area|opaque-as"
5306
5307 #define OSPF_LSA_TYPES_DESC \
5308 "ASBR summary link states\n" \
5309 "External link states\n" \
5310 "Network link states\n" \
5311 "Router link states\n" \
5312 "Network summary link states\n" \
5313 OSPF_LSA_TYPE_NSSA_DESC \
5314 OSPF_LSA_TYPE_OPAQUE_LINK_DESC \
5315 OSPF_LSA_TYPE_OPAQUE_AREA_DESC \
5316 OSPF_LSA_TYPE_OPAQUE_AS_DESC
5317
5318 static int
5319 show_ip_ospf_database_common (struct vty *vty, struct ospf *ospf,
5320 int arg_base, int argc, struct cmd_token **argv)
5321 {
5322 int idx_type = 4;
5323 int type, ret;
5324 struct in_addr id, adv_router;
5325
5326 if (ospf->instance)
5327 vty_out (vty, "%sOSPF Instance: %d%s", VTY_NEWLINE, ospf->instance,
5328 VTY_NEWLINE);
5329
5330 vty_out (vty, "%s OSPF Router with ID (%s)%s%s", VTY_NEWLINE,
5331 inet_ntoa (ospf->router_id), VTY_NEWLINE, VTY_NEWLINE);
5332
5333 /* Show all LSA. */
5334 if (argc == arg_base + 4)
5335 {
5336 show_ip_ospf_database_summary (vty, ospf, 0);
5337 return CMD_SUCCESS;
5338 }
5339
5340 /* Set database type to show. */
5341 if (strncmp (argv[arg_base + idx_type]->text, "r", 1) == 0)
5342 type = OSPF_ROUTER_LSA;
5343 else if (strncmp (argv[arg_base + idx_type]->text, "ne", 2) == 0)
5344 type = OSPF_NETWORK_LSA;
5345 else if (strncmp (argv[arg_base + idx_type]->text, "ns", 2) == 0)
5346 type = OSPF_AS_NSSA_LSA;
5347 else if (strncmp (argv[arg_base + idx_type]->text, "su", 2) == 0)
5348 type = OSPF_SUMMARY_LSA;
5349 else if (strncmp (argv[arg_base + idx_type]->text, "a", 1) == 0)
5350 type = OSPF_ASBR_SUMMARY_LSA;
5351 else if (strncmp (argv[arg_base + idx_type]->text, "e", 1) == 0)
5352 type = OSPF_AS_EXTERNAL_LSA;
5353 else if (strncmp (argv[arg_base + idx_type]->text, "se", 2) == 0)
5354 {
5355 show_ip_ospf_database_summary (vty, ospf, 1);
5356 return CMD_SUCCESS;
5357 }
5358 else if (strncmp (argv[arg_base + idx_type]->text, "m", 1) == 0)
5359 {
5360 show_ip_ospf_database_maxage (vty, ospf);
5361 return CMD_SUCCESS;
5362 }
5363 else if (strncmp (argv[arg_base + idx_type]->text, "opaque-l", 8) == 0)
5364 type = OSPF_OPAQUE_LINK_LSA;
5365 else if (strncmp (argv[arg_base + idx_type]->text, "opaque-ar", 9) == 0)
5366 type = OSPF_OPAQUE_AREA_LSA;
5367 else if (strncmp (argv[arg_base + idx_type]->text, "opaque-as", 9) == 0)
5368 type = OSPF_OPAQUE_AS_LSA;
5369 else
5370 return CMD_WARNING;
5371
5372 /* `show ip ospf database LSA'. */
5373 if (argc == arg_base + 5)
5374 show_lsa_detail (vty, ospf, type, NULL, NULL);
5375 else if (argc >= arg_base + 6)
5376 {
5377 ret = inet_aton (argv[arg_base + 5]->arg, &id);
5378 if (!ret)
5379 return CMD_WARNING;
5380
5381 /* `show ip ospf database LSA ID'. */
5382 if (argc == arg_base + 6)
5383 show_lsa_detail (vty, ospf, type, &id, NULL);
5384 /* `show ip ospf database LSA ID adv-router ADV_ROUTER'. */
5385 else if (argc == arg_base + 7)
5386 {
5387 if (strncmp (argv[arg_base + 6]->text, "s", 1) == 0)
5388 adv_router = ospf->router_id;
5389 else
5390 {
5391 ret = inet_aton (argv[arg_base + 7]->arg, &adv_router);
5392 if (!ret)
5393 return CMD_WARNING;
5394 }
5395 show_lsa_detail (vty, ospf, type, &id, &adv_router);
5396 }
5397 }
5398
5399 return CMD_SUCCESS;
5400 }
5401
5402 DEFUN (show_ip_ospf_database_max,
5403 show_ip_ospf_database_max_cmd,
5404 "show ip ospf database <max-age|self-originate>",
5405 SHOW_STR
5406 IP_STR
5407 "OSPF information\n"
5408 "Database summary\n"
5409 "LSAs in MaxAge list\n"
5410 "Self-originated link states\n")
5411 {
5412 struct ospf *ospf;
5413
5414 if ((ospf = ospf_lookup()) == NULL || !ospf->oi_running)
5415 return CMD_SUCCESS;
5416
5417 return (show_ip_ospf_database_common(vty, ospf, 0, argc, argv));
5418 }
5419
5420 DEFUN (show_ip_ospf_instance_database,
5421 show_ip_ospf_instance_database_cmd,
5422 "show ip ospf [(1-65535)] database [<asbr-summary|external|network|router|summary|nssa-external|opaque-link|opaque-area|opaque-as> [A.B.C.D [<self-originate|adv-router A.B.C.D>]]]",
5423 SHOW_STR
5424 IP_STR
5425 "OSPF information\n"
5426 "Instance ID\n"
5427 "Database summary\n"
5428 OSPF_LSA_TYPES_DESC
5429 "Link State ID (as an IP address)\n"
5430 "Self-originated link states\n"
5431 "Advertising Router link states\n"
5432 "Advertising Router (as an IP address)\n")
5433 {
5434 struct ospf *ospf;
5435 u_short instance = 0;
5436
5437 int idx = 0;
5438 if (argv_find (argv, argc, "(1-65535)", &idx))
5439 {
5440 VTY_GET_INTEGER ("Instance", instance, argv[idx]->arg);
5441 ospf = ospf_lookup_instance (instance);
5442 }
5443 else {
5444 ospf = ospf_lookup();
5445 }
5446
5447 if (!ospf || !ospf->oi_running)
5448 return CMD_SUCCESS;
5449
5450 return (show_ip_ospf_database_common(vty, ospf, idx ? 1 : 0, argc, argv));
5451 }
5452
5453 DEFUN (show_ip_ospf_instance_database_max,
5454 show_ip_ospf_instance_database_max_cmd,
5455 "show ip ospf (1-65535) database <max-age|self-originate>",
5456 SHOW_STR
5457 IP_STR
5458 "OSPF information\n"
5459 "Instance ID\n"
5460 "Database summary\n"
5461 "LSAs in MaxAge list\n"
5462 "Self-originated link states\n")
5463 {
5464 int idx_number = 3;
5465 struct ospf *ospf;
5466 u_short instance = 0;
5467
5468 VTY_GET_INTEGER ("Instance", instance, argv[idx_number]->arg);
5469
5470 if ((ospf = ospf_lookup_instance (instance)) == NULL || !ospf->oi_running)
5471 return CMD_SUCCESS;
5472
5473 return (show_ip_ospf_database_common(vty, ospf, 1, argc, argv));
5474 }
5475
5476
5477 static int
5478 show_ip_ospf_database_type_adv_router_common (struct vty *vty, struct ospf *ospf,
5479 int arg_base, int argc, struct cmd_token **argv)
5480 {
5481 int idx_type = 4;
5482 int type, ret;
5483 struct in_addr adv_router;
5484
5485 if (ospf->instance)
5486 vty_out (vty, "%sOSPF Instance: %d%s", VTY_NEWLINE, ospf->instance,
5487 VTY_NEWLINE);
5488
5489 vty_out (vty, "%s OSPF Router with ID (%s)%s%s", VTY_NEWLINE,
5490 inet_ntoa (ospf->router_id), VTY_NEWLINE, VTY_NEWLINE);
5491
5492 if (argc != arg_base + 7)
5493 return CMD_WARNING;
5494
5495 /* Set database type to show. */
5496 if (strncmp (argv[arg_base + idx_type]->text, "r", 1) == 0)
5497 type = OSPF_ROUTER_LSA;
5498 else if (strncmp (argv[arg_base + idx_type]->text, "ne", 2) == 0)
5499 type = OSPF_NETWORK_LSA;
5500 else if (strncmp (argv[arg_base + idx_type]->text, "ns", 2) == 0)
5501 type = OSPF_AS_NSSA_LSA;
5502 else if (strncmp (argv[arg_base + idx_type]->text, "s", 1) == 0)
5503 type = OSPF_SUMMARY_LSA;
5504 else if (strncmp (argv[arg_base + idx_type]->text, "a", 1) == 0)
5505 type = OSPF_ASBR_SUMMARY_LSA;
5506 else if (strncmp (argv[arg_base + idx_type]->text, "e", 1) == 0)
5507 type = OSPF_AS_EXTERNAL_LSA;
5508 else if (strncmp (argv[arg_base + idx_type]->text, "opaque-l", 8) == 0)
5509 type = OSPF_OPAQUE_LINK_LSA;
5510 else if (strncmp (argv[arg_base + idx_type]->text, "opaque-ar", 9) == 0)
5511 type = OSPF_OPAQUE_AREA_LSA;
5512 else if (strncmp (argv[arg_base + idx_type]->text, "opaque-as", 9) == 0)
5513 type = OSPF_OPAQUE_AS_LSA;
5514 else
5515 return CMD_WARNING;
5516
5517 /* `show ip ospf database LSA adv-router ADV_ROUTER'. */
5518 if (strncmp (argv[arg_base + 5]->text, "s", 1) == 0)
5519 adv_router = ospf->router_id;
5520 else
5521 {
5522 ret = inet_aton (argv[arg_base + 6]->arg, &adv_router);
5523 if (!ret)
5524 return CMD_WARNING;
5525 }
5526
5527 show_lsa_detail_adv_router (vty, ospf, type, &adv_router);
5528
5529 return CMD_SUCCESS;
5530 }
5531
5532 DEFUN (show_ip_ospf_database_type_adv_router,
5533 show_ip_ospf_database_type_adv_router_cmd,
5534 "show ip ospf database <asbr-summary|external|network|router|summary|nssa-external|opaque-link|opaque-area|opaque-as> <adv-router A.B.C.D|self-originate>",
5535 SHOW_STR
5536 IP_STR
5537 "OSPF information\n"
5538 "Database summary\n"
5539 OSPF_LSA_TYPES_DESC
5540 "Advertising Router link states\n"
5541 "Advertising Router (as an IP address)\n"
5542 "Self-originated link states\n")
5543 {
5544 struct ospf *ospf;
5545
5546 if ((ospf = ospf_lookup()) == NULL || !ospf->oi_running)
5547 return CMD_SUCCESS;
5548
5549 return (show_ip_ospf_database_type_adv_router_common(vty, ospf, 0, argc, argv));
5550 }
5551
5552 DEFUN (show_ip_ospf_instance_database_type_adv_router,
5553 show_ip_ospf_instance_database_type_adv_router_cmd,
5554 "show ip ospf (1-65535) database <asbr-summary|external|network|router|summary|nssa-external|opaque-link|opaque-area|opaque-as> <adv-router A.B.C.D|self-originate>",
5555 SHOW_STR
5556 IP_STR
5557 "OSPF information\n"
5558 "Instance ID\n"
5559 "Database summary\n"
5560 OSPF_LSA_TYPES_DESC
5561 "Advertising Router link states\n"
5562 "Advertising Router (as an IP address)\n"
5563 "Self-originated link states\n")
5564 {
5565 int idx_number = 3;
5566 struct ospf *ospf;
5567 u_short instance = 0;
5568
5569 VTY_GET_INTEGER ("Instance", instance, argv[idx_number]->arg);
5570
5571 if ((ospf = ospf_lookup_instance (instance)) == NULL || !ospf->oi_running)
5572 return CMD_SUCCESS;
5573
5574 return (show_ip_ospf_database_type_adv_router_common(vty, ospf, 1, argc, argv));
5575 }
5576
5577 DEFUN (ip_ospf_authentication_args,
5578 ip_ospf_authentication_args_addr_cmd,
5579 "ip ospf authentication <null|message-digest> [A.B.C.D]",
5580 "IP Information\n"
5581 "OSPF interface commands\n"
5582 "Enable authentication on this interface\n"
5583 "Use null authentication\n"
5584 "Use message-digest authentication\n"
5585 "Address of interface\n")
5586 {
5587 VTY_DECLVAR_CONTEXT(interface, ifp);
5588 int idx_encryption = 3;
5589 int idx_ipv4 = 4;
5590 struct in_addr addr;
5591 int ret;
5592 struct ospf_if_params *params;
5593
5594 params = IF_DEF_PARAMS (ifp);
5595
5596 if (argc == 5)
5597 {
5598 ret = inet_aton(argv[idx_ipv4]->arg, &addr);
5599 if (!ret)
5600 {
5601 vty_out (vty, "Please specify interface address by A.B.C.D%s",
5602 VTY_NEWLINE);
5603 return CMD_WARNING;
5604 }
5605
5606 params = ospf_get_if_params (ifp, addr);
5607 ospf_if_update_params (ifp, addr);
5608 }
5609
5610 /* Handle null authentication */
5611 if ( argv[idx_encryption]->arg[0] == 'n' )
5612 {
5613 SET_IF_PARAM (params, auth_type);
5614 params->auth_type = OSPF_AUTH_NULL;
5615 return CMD_SUCCESS;
5616 }
5617
5618 /* Handle message-digest authentication */
5619 if ( argv[idx_encryption]->arg[0] == 'm' )
5620 {
5621 SET_IF_PARAM (params, auth_type);
5622 params->auth_type = OSPF_AUTH_CRYPTOGRAPHIC;
5623 return CMD_SUCCESS;
5624 }
5625
5626 vty_out (vty, "You shouldn't get here!%s", VTY_NEWLINE);
5627 return CMD_WARNING;
5628 }
5629
5630 DEFUN (ip_ospf_authentication,
5631 ip_ospf_authentication_addr_cmd,
5632 "ip ospf authentication [A.B.C.D]",
5633 "IP Information\n"
5634 "OSPF interface commands\n"
5635 "Enable authentication on this interface\n"
5636 "Address of interface")
5637 {
5638 VTY_DECLVAR_CONTEXT(interface, ifp);
5639 int idx_ipv4 = 3;
5640 struct in_addr addr;
5641 int ret;
5642 struct ospf_if_params *params;
5643
5644 params = IF_DEF_PARAMS (ifp);
5645
5646 if (argc == 4)
5647 {
5648 ret = inet_aton(argv[idx_ipv4]->arg, &addr);
5649 if (!ret)
5650 {
5651 vty_out (vty, "Please specify interface address by A.B.C.D%s",
5652 VTY_NEWLINE);
5653 return CMD_WARNING;
5654 }
5655
5656 params = ospf_get_if_params (ifp, addr);
5657 ospf_if_update_params (ifp, addr);
5658 }
5659
5660 SET_IF_PARAM (params, auth_type);
5661 params->auth_type = OSPF_AUTH_SIMPLE;
5662
5663 return CMD_SUCCESS;
5664 }
5665
5666 DEFUN (no_ip_ospf_authentication_args,
5667 no_ip_ospf_authentication_args_addr_cmd,
5668 "no ip ospf authentication <null|message-digest> [A.B.C.D]",
5669 NO_STR
5670 "IP Information\n"
5671 "OSPF interface commands\n"
5672 "Enable authentication on this interface\n"
5673 "Use null authentication\n"
5674 "Use message-digest authentication\n"
5675 "Address of interface")
5676 {
5677 VTY_DECLVAR_CONTEXT(interface, ifp);
5678 int idx_encryption = 4;
5679 int idx_ipv4 = 5;
5680 struct in_addr addr;
5681 int ret;
5682 struct ospf_if_params *params;
5683 struct route_node *rn;
5684 int auth_type;
5685
5686 params = IF_DEF_PARAMS (ifp);
5687
5688 if (argc == 6)
5689 {
5690 ret = inet_aton(argv[idx_ipv4]->arg, &addr);
5691 if (!ret)
5692 {
5693 vty_out (vty, "Please specify interface address by A.B.C.D%s",
5694 VTY_NEWLINE);
5695 return CMD_WARNING;
5696 }
5697
5698 params = ospf_lookup_if_params (ifp, addr);
5699 if (params == NULL)
5700 {
5701 vty_out (vty, "Ip Address specified is unknown%s", VTY_NEWLINE);
5702 return CMD_WARNING;
5703 }
5704 params->auth_type = OSPF_AUTH_NOTSET;
5705 UNSET_IF_PARAM (params, auth_type);
5706 if (params != IF_DEF_PARAMS (ifp))
5707 {
5708 ospf_free_if_params (ifp, addr);
5709 ospf_if_update_params (ifp, addr);
5710 }
5711 }
5712 else
5713 {
5714 if ( argv[idx_encryption]->arg[0] == 'n' )
5715 {
5716 auth_type = OSPF_AUTH_NULL;
5717 }
5718 else if ( argv[idx_encryption]->arg[0] == 'm' )
5719 {
5720 auth_type = OSPF_AUTH_CRYPTOGRAPHIC;
5721 }
5722 else
5723 {
5724 vty_out (vty, "Unexpected input encountered%s", VTY_NEWLINE);
5725 return CMD_WARNING;
5726 }
5727 /*
5728 * Here we have a case where the user has entered
5729 * 'no ip ospf authentication (null | message_digest )'
5730 * we need to find if we have any ip addresses underneath it that
5731 * correspond to the associated type.
5732 */
5733 if (params->auth_type == auth_type)
5734 {
5735 params->auth_type = OSPF_AUTH_NOTSET;
5736 UNSET_IF_PARAM (params, auth_type);
5737 }
5738
5739 for (rn = route_top (IF_OIFS_PARAMS (ifp)); rn; rn = route_next (rn))
5740 {
5741 if ((params = rn->info))
5742 {
5743 if (params->auth_type == auth_type)
5744 {
5745 params->auth_type = OSPF_AUTH_NOTSET;
5746 UNSET_IF_PARAM (params, auth_type);
5747 if (params != IF_DEF_PARAMS (ifp))
5748 {
5749 ospf_free_if_params (ifp, rn->p.u.prefix4);
5750 ospf_if_update_params(ifp, rn->p.u.prefix4);
5751 }
5752 }
5753 }
5754 }
5755 }
5756
5757 return CMD_SUCCESS;
5758 }
5759
5760 DEFUN (no_ip_ospf_authentication,
5761 no_ip_ospf_authentication_addr_cmd,
5762 "no ip ospf authentication [A.B.C.D]",
5763 NO_STR
5764 "IP Information\n"
5765 "OSPF interface commands\n"
5766 "Enable authentication on this interface\n"
5767 "Address of interface")
5768 {
5769 VTY_DECLVAR_CONTEXT(interface, ifp);
5770 int idx_ipv4 = 4;
5771 struct in_addr addr;
5772 int ret;
5773 struct ospf_if_params *params;
5774 struct route_node *rn;
5775
5776 params = IF_DEF_PARAMS (ifp);
5777
5778 if (argc == 5)
5779 {
5780 ret = inet_aton(argv[idx_ipv4]->arg, &addr);
5781 if (!ret)
5782 {
5783 vty_out (vty, "Please specify interface address by A.B.C.D%s",
5784 VTY_NEWLINE);
5785 return CMD_WARNING;
5786 }
5787
5788 params = ospf_lookup_if_params (ifp, addr);
5789 if (params == NULL)
5790 {
5791 vty_out (vty, "Ip Address specified is unknown%s", VTY_NEWLINE);
5792 return CMD_WARNING;
5793 }
5794
5795 params->auth_type = OSPF_AUTH_NOTSET;
5796 UNSET_IF_PARAM (params, auth_type);
5797 if (params != IF_DEF_PARAMS (ifp))
5798 {
5799 ospf_free_if_params (ifp, addr);
5800 ospf_if_update_params (ifp, addr);
5801 }
5802 }
5803 else
5804 {
5805 /*
5806 * When a user enters 'no ip ospf authentication'
5807 * We should remove all authentication types from
5808 * the interface.
5809 */
5810 if ((params->auth_type == OSPF_AUTH_NULL) ||
5811 (params->auth_type == OSPF_AUTH_CRYPTOGRAPHIC) ||
5812 (params->auth_type == OSPF_AUTH_SIMPLE))
5813 {
5814 params->auth_type = OSPF_AUTH_NOTSET;
5815 UNSET_IF_PARAM (params, auth_type);
5816 }
5817
5818 for (rn = route_top (IF_OIFS_PARAMS (ifp)); rn; rn = route_next (rn))
5819 {
5820 if ((params = rn->info))
5821 {
5822
5823 if ((params->auth_type == OSPF_AUTH_NULL) ||
5824 (params->auth_type == OSPF_AUTH_CRYPTOGRAPHIC) ||
5825 (params->auth_type == OSPF_AUTH_SIMPLE))
5826 {
5827 params->auth_type = OSPF_AUTH_NOTSET;
5828 UNSET_IF_PARAM (params, auth_type);
5829 if (params != IF_DEF_PARAMS (ifp))
5830 {
5831 ospf_free_if_params (ifp, rn->p.u.prefix4);
5832 ospf_if_update_params(ifp, rn->p.u.prefix4);
5833 }
5834 }
5835 }
5836 }
5837 }
5838
5839 return CMD_SUCCESS;
5840 }
5841
5842
5843 DEFUN (ip_ospf_authentication_key,
5844 ip_ospf_authentication_key_addr_cmd,
5845 "ip ospf authentication-key AUTH_KEY [A.B.C.D]",
5846 "IP Information\n"
5847 "OSPF interface commands\n"
5848 "Authentication password (key)\n"
5849 "The OSPF password (key)\n"
5850 "Address of interface")
5851 {
5852 VTY_DECLVAR_CONTEXT(interface, ifp);
5853 int idx = 0;
5854 struct in_addr addr;
5855 struct ospf_if_params *params;
5856
5857 params = IF_DEF_PARAMS (ifp);
5858
5859 if (argv_find (argv, argc, "A.B.C.D", &idx))
5860 {
5861 if (!inet_aton(argv[idx]->arg, &addr))
5862 {
5863 vty_out (vty, "Please specify interface address by A.B.C.D%s",
5864 VTY_NEWLINE);
5865 return CMD_WARNING;
5866 }
5867
5868 params = ospf_get_if_params (ifp, addr);
5869 ospf_if_update_params (ifp, addr);
5870 }
5871
5872 memset (params->auth_simple, 0, OSPF_AUTH_SIMPLE_SIZE + 1);
5873 strncpy ((char *) params->auth_simple, argv[3]->arg, OSPF_AUTH_SIMPLE_SIZE);
5874 SET_IF_PARAM (params, auth_simple);
5875
5876 return CMD_SUCCESS;
5877 }
5878
5879 DEFUN_HIDDEN (ospf_authentication_key,
5880 ospf_authentication_key_cmd,
5881 "ospf authentication-key AUTH_KEY [A.B.C.D]",
5882 "OSPF interface commands\n"
5883 "Authentication password (key)\n"
5884 "The OSPF password (key)\n"
5885 "Address of interface\n")
5886 {
5887 return ip_ospf_authentication_key (self, vty, argc, argv);
5888 }
5889
5890 DEFUN (no_ip_ospf_authentication_key,
5891 no_ip_ospf_authentication_key_authkey_addr_cmd,
5892 "no ip ospf authentication-key [AUTH_KEY [A.B.C.D]]",
5893 NO_STR
5894 "IP Information\n"
5895 "OSPF interface commands\n"
5896 "Authentication password (key)\n"
5897 "The OSPF password (key)")
5898 {
5899 VTY_DECLVAR_CONTEXT(interface, ifp);
5900 int idx = 0;
5901 struct in_addr addr;
5902 struct ospf_if_params *params;
5903 params = IF_DEF_PARAMS (ifp);
5904
5905 if (argv_find (argv, argc, "A.B.C.D", &idx))
5906 {
5907 if (!inet_aton(argv[idx]->arg, &addr))
5908 {
5909 vty_out (vty, "Please specify interface address by A.B.C.D%s",
5910 VTY_NEWLINE);
5911 return CMD_WARNING;
5912 }
5913
5914 params = ospf_lookup_if_params (ifp, addr);
5915 if (params == NULL)
5916 return CMD_SUCCESS;
5917 }
5918
5919 memset (params->auth_simple, 0, OSPF_AUTH_SIMPLE_SIZE);
5920 UNSET_IF_PARAM (params, auth_simple);
5921
5922 if (params != IF_DEF_PARAMS (ifp))
5923 {
5924 ospf_free_if_params (ifp, addr);
5925 ospf_if_update_params (ifp, addr);
5926 }
5927
5928 return CMD_SUCCESS;
5929 }
5930
5931 DEFUN_HIDDEN (no_ospf_authentication_key,
5932 no_ospf_authentication_key_authkey_addr_cmd,
5933 "no ospf authentication-key [AUTH_KEY [A.B.C.D]]",
5934 NO_STR
5935 "OSPF interface commands\n"
5936 "Authentication password (key)\n"
5937 "The OSPF password (key)")
5938 {
5939 return no_ip_ospf_authentication_key (self, vty, argc, argv);
5940 }
5941
5942 DEFUN (ip_ospf_message_digest_key,
5943 ip_ospf_message_digest_key_cmd,
5944 "ip ospf message-digest-key (1-255) md5 KEY [A.B.C.D]",
5945 "IP Information\n"
5946 "OSPF interface commands\n"
5947 "Message digest authentication password (key)\n"
5948 "Key ID\n"
5949 "Use MD5 algorithm\n"
5950 "The OSPF password (key)\n"
5951 "Address of interface\n")
5952 {
5953 VTY_DECLVAR_CONTEXT(interface, ifp);
5954 struct crypt_key *ck;
5955 u_char key_id;
5956 struct in_addr addr;
5957 struct ospf_if_params *params;
5958
5959 params = IF_DEF_PARAMS (ifp);
5960 int idx = 0;
5961
5962 argv_find (argv, argc, "(1-255)", &idx);
5963 char *keyid = argv[idx]->arg;
5964 argv_find (argv, argc, "KEY", &idx);
5965 char *cryptkey = argv[idx]->arg;
5966
5967 if (argv_find (argv, argc, "A.B.C.D", &idx))
5968 {
5969 if (!inet_aton(argv[idx]->arg, &addr))
5970 {
5971 vty_out (vty, "Please specify interface address by A.B.C.D%s",
5972 VTY_NEWLINE);
5973 return CMD_WARNING;
5974 }
5975
5976 params = ospf_get_if_params (ifp, addr);
5977 ospf_if_update_params (ifp, addr);
5978 }
5979
5980 key_id = strtol (keyid, NULL, 10);
5981 if (ospf_crypt_key_lookup (params->auth_crypt, key_id) != NULL)
5982 {
5983 vty_out (vty, "OSPF: Key %d already exists%s", key_id, VTY_NEWLINE);
5984 return CMD_WARNING;
5985 }
5986
5987 ck = ospf_crypt_key_new ();
5988 ck->key_id = (u_char) key_id;
5989 memset (ck->auth_key, 0, OSPF_AUTH_MD5_SIZE+1);
5990 strncpy ((char *) ck->auth_key, cryptkey, OSPF_AUTH_MD5_SIZE);
5991
5992 ospf_crypt_key_add (params->auth_crypt, ck);
5993 SET_IF_PARAM (params, auth_crypt);
5994
5995 return CMD_SUCCESS;
5996 }
5997
5998 DEFUN_HIDDEN (ospf_message_digest_key,
5999 ospf_message_digest_key_cmd,
6000 "ospf message-digest-key (1-255) md5 KEY [A.B.C.D]",
6001 "OSPF interface commands\n"
6002 "Message digest authentication password (key)\n"
6003 "Key ID\n"
6004 "Use MD5 algorithm\n"
6005 "The OSPF password (key)\n"
6006 "Address of interface\n")
6007 {
6008 return ip_ospf_message_digest_key (self, vty, argc, argv);
6009 }
6010
6011 DEFUN (no_ip_ospf_message_digest_key,
6012 no_ip_ospf_message_digest_key_cmd,
6013 "no ip ospf message-digest-key (1-255) [md5 KEY] [A.B.C.D]",
6014 NO_STR
6015 "IP Information\n"
6016 "OSPF interface commands\n"
6017 "Message digest authentication password (key)\n"
6018 "Key ID\n"
6019 "Use MD5 algorithm\n"
6020 "The OSPF password (key)\n"
6021 "Address of interface\n")
6022 {
6023 VTY_DECLVAR_CONTEXT(interface, ifp);
6024 int idx = 0;
6025 struct crypt_key *ck;
6026 int key_id;
6027 struct in_addr addr;
6028 struct ospf_if_params *params;
6029 params = IF_DEF_PARAMS (ifp);
6030
6031 argv_find (argv, argc, "(1-255)", &idx);
6032 char *keyid = argv[idx]->arg;
6033
6034 if (argv_find (argv, argc, "A.B.C.D", &idx))
6035 {
6036 if (!inet_aton(argv[idx]->arg, &addr))
6037 {
6038 vty_out (vty, "Please specify interface address by A.B.C.D%s",
6039 VTY_NEWLINE);
6040 return CMD_WARNING;
6041 }
6042
6043 params = ospf_lookup_if_params (ifp, addr);
6044 if (params == NULL)
6045 return CMD_SUCCESS;
6046 }
6047
6048 key_id = strtol (keyid, NULL, 10);
6049 ck = ospf_crypt_key_lookup (params->auth_crypt, key_id);
6050 if (ck == NULL)
6051 {
6052 vty_out (vty, "OSPF: Key %d does not exist%s", key_id, VTY_NEWLINE);
6053 return CMD_WARNING;
6054 }
6055
6056 ospf_crypt_key_delete (params->auth_crypt, key_id);
6057
6058 if (params != IF_DEF_PARAMS (ifp))
6059 {
6060 ospf_free_if_params (ifp, addr);
6061 ospf_if_update_params (ifp, addr);
6062 }
6063
6064 return CMD_SUCCESS;
6065 }
6066
6067 DEFUN_HIDDEN (no_ospf_message_digest_key,
6068 no_ospf_message_digest_key_cmd,
6069 "no ospf message-digest-key (1-255) [md5 KEY] [A.B.C.D]",
6070 NO_STR
6071 "OSPF interface commands\n"
6072 "Message digest authentication password (key)\n"
6073 "Key ID\n"
6074 "Address of interface")
6075 {
6076 return no_ip_ospf_message_digest_key (self, vty, argc, argv);
6077 }
6078
6079 DEFUN (ip_ospf_cost,
6080 ip_ospf_cost_cmd,
6081 "ip ospf cost (1-65535) [A.B.C.D]",
6082 "IP Information\n"
6083 "OSPF interface commands\n"
6084 "Interface cost\n"
6085 "Cost\n"
6086 "Address of interface\n")
6087 {
6088 VTY_DECLVAR_CONTEXT(interface, ifp);
6089 int idx = 0;
6090 u_int32_t cost;
6091 struct in_addr addr;
6092 struct ospf_if_params *params;
6093 params = IF_DEF_PARAMS (ifp);
6094
6095 // get arguments
6096 char *coststr = NULL, *ifaddr = NULL;
6097 coststr = argv_find (argv, argc, "(1-65535)", &idx) ? argv[idx]->arg : NULL;
6098 ifaddr = argv_find (argv, argc, "A.B.C.D", &idx) ? argv[idx]->arg : NULL;
6099
6100 cost = strtol (coststr, NULL, 10);
6101
6102 if (ifaddr)
6103 {
6104 if(!inet_aton(ifaddr, &addr))
6105 {
6106 vty_out (vty, "Please specify interface address by A.B.C.D%s",
6107 VTY_NEWLINE);
6108 return CMD_WARNING;
6109 }
6110
6111 params = ospf_get_if_params (ifp, addr);
6112 ospf_if_update_params (ifp, addr);
6113 }
6114
6115 SET_IF_PARAM (params, output_cost_cmd);
6116 params->output_cost_cmd = cost;
6117
6118 ospf_if_recalculate_output_cost (ifp);
6119
6120 return CMD_SUCCESS;
6121 }
6122
6123 DEFUN_HIDDEN (ospf_cost,
6124 ospf_cost_cmd,
6125 "ospf cost (1-65535) [A.B.C.D]",
6126 "OSPF interface commands\n"
6127 "Interface cost\n"
6128 "Cost\n"
6129 "Address of interface\n")
6130 {
6131 return ip_ospf_cost (self, vty, argc, argv);
6132 }
6133
6134 DEFUN (no_ip_ospf_cost,
6135 no_ip_ospf_cost_cmd,
6136 "no ip ospf cost [(1-65535)] [A.B.C.D]",
6137 NO_STR
6138 "OSPF interface commands\n"
6139 "Interface cost\n"
6140 "Address of interface")
6141 {
6142 VTY_DECLVAR_CONTEXT(interface, ifp);
6143 int idx = 0;
6144 struct in_addr addr;
6145 struct ospf_if_params *params;
6146
6147 params = IF_DEF_PARAMS (ifp);
6148
6149 // get arguments
6150 char *ifaddr = NULL;
6151 ifaddr = argv_find (argv, argc, "A.B.C.D", &idx) ? argv[idx]->arg : NULL;
6152
6153 /* According to the semantics we are mimicking "no ip ospf cost N" is
6154 * always treated as "no ip ospf cost" regardless of the actual value
6155 * of N already configured for the interface. Thus ignore cost. */
6156
6157 if (ifaddr)
6158 {
6159 if (!inet_aton(ifaddr, &addr))
6160 {
6161 vty_out (vty, "Please specify interface address by A.B.C.D%s",
6162 VTY_NEWLINE);
6163 return CMD_WARNING;
6164 }
6165
6166 params = ospf_lookup_if_params (ifp, addr);
6167 if (params == NULL)
6168 return CMD_SUCCESS;
6169 }
6170
6171 UNSET_IF_PARAM (params, output_cost_cmd);
6172
6173 if (params != IF_DEF_PARAMS (ifp))
6174 {
6175 ospf_free_if_params (ifp, addr);
6176 ospf_if_update_params (ifp, addr);
6177 }
6178
6179 ospf_if_recalculate_output_cost (ifp);
6180
6181 return CMD_SUCCESS;
6182 }
6183
6184 DEFUN_HIDDEN (no_ospf_cost,
6185 no_ospf_cost_cmd,
6186 "no ospf cost [(1-65535)] [A.B.C.D]",
6187 NO_STR
6188 "OSPF interface commands\n"
6189 "Interface cost\n"
6190 "Cost\n"
6191 "Address of interface\n")
6192 {
6193 return no_ip_ospf_cost (self, vty, argc, argv);
6194 }
6195
6196 static void
6197 ospf_nbr_timer_update (struct ospf_interface *oi)
6198 {
6199 struct route_node *rn;
6200 struct ospf_neighbor *nbr;
6201
6202 for (rn = route_top (oi->nbrs); rn; rn = route_next (rn))
6203 if ((nbr = rn->info))
6204 {
6205 nbr->v_inactivity = OSPF_IF_PARAM (oi, v_wait);
6206 nbr->v_db_desc = OSPF_IF_PARAM (oi, retransmit_interval);
6207 nbr->v_ls_req = OSPF_IF_PARAM (oi, retransmit_interval);
6208 nbr->v_ls_upd = OSPF_IF_PARAM (oi, retransmit_interval);
6209 }
6210 }
6211
6212 static int
6213 ospf_vty_dead_interval_set (struct vty *vty, const char *interval_str,
6214 const char *nbr_str,
6215 const char *fast_hello_str)
6216 {
6217 VTY_DECLVAR_CONTEXT(interface, ifp);
6218 u_int32_t seconds;
6219 u_char hellomult;
6220 struct in_addr addr;
6221 int ret;
6222 struct ospf_if_params *params;
6223 struct ospf_interface *oi;
6224 struct route_node *rn;
6225
6226 params = IF_DEF_PARAMS (ifp);
6227
6228 if (nbr_str)
6229 {
6230 ret = inet_aton(nbr_str, &addr);
6231 if (!ret)
6232 {
6233 vty_out (vty, "Please specify interface address by A.B.C.D%s",
6234 VTY_NEWLINE);
6235 return CMD_WARNING;
6236 }
6237
6238 params = ospf_get_if_params (ifp, addr);
6239 ospf_if_update_params (ifp, addr);
6240 }
6241
6242 if (interval_str)
6243 {
6244 VTY_GET_INTEGER_RANGE ("Router Dead Interval", seconds, interval_str,
6245 1, 65535);
6246
6247 /* reset fast_hello too, just to be sure */
6248 UNSET_IF_PARAM (params, fast_hello);
6249 params->fast_hello = OSPF_FAST_HELLO_DEFAULT;
6250 }
6251 else if (fast_hello_str)
6252 {
6253 VTY_GET_INTEGER_RANGE ("Hello Multiplier", hellomult, fast_hello_str,
6254 1, 10);
6255 /* 1s dead-interval with sub-second hellos desired */
6256 seconds = OSPF_ROUTER_DEAD_INTERVAL_MINIMAL;
6257 SET_IF_PARAM (params, fast_hello);
6258 params->fast_hello = hellomult;
6259 }
6260 else
6261 {
6262 vty_out (vty, "Please specify dead-interval or hello-multiplier%s",
6263 VTY_NEWLINE);
6264 return CMD_WARNING;
6265 }
6266
6267 SET_IF_PARAM (params, v_wait);
6268 params->v_wait = seconds;
6269
6270 /* Update timer values in neighbor structure. */
6271 if (nbr_str)
6272 {
6273 struct ospf *ospf;
6274 if ((ospf = ospf_lookup()))
6275 {
6276 oi = ospf_if_lookup_by_local_addr (ospf, ifp, addr);
6277 if (oi)
6278 ospf_nbr_timer_update (oi);
6279 }
6280 }
6281 else
6282 {
6283 for (rn = route_top (IF_OIFS (ifp)); rn; rn = route_next (rn))
6284 if ((oi = rn->info))
6285 ospf_nbr_timer_update (oi);
6286 }
6287
6288 return CMD_SUCCESS;
6289 }
6290
6291 DEFUN (ip_ospf_dead_interval,
6292 ip_ospf_dead_interval_cmd,
6293 "ip ospf dead-interval (1-65535) [A.B.C.D]",
6294 "IP Information\n"
6295 "OSPF interface commands\n"
6296 "Interval time after which a neighbor is declared down\n"
6297 "Seconds\n"
6298 "Address of interface\n")
6299 {
6300 int idx = 0;
6301 char *interval = argv_find (argv, argc, "(1-65535)", &idx) ? argv[idx]->arg : NULL;
6302 char *ifaddr = argv_find (argv, argc, "A.B.C.D", &idx) ? argv[idx]->arg : NULL;
6303 return ospf_vty_dead_interval_set (vty, interval, ifaddr, NULL);
6304 }
6305
6306
6307 DEFUN_HIDDEN (ospf_dead_interval,
6308 ospf_dead_interval_cmd,
6309 "ospf dead-interval (1-65535) [A.B.C.D]",
6310 "OSPF interface commands\n"
6311 "Interval time after which a neighbor is declared down\n"
6312 "Seconds\n"
6313 "Address of interface\n")
6314 {
6315 return ip_ospf_dead_interval (self, vty, argc, argv);
6316 }
6317
6318 DEFUN (ip_ospf_dead_interval_minimal,
6319 ip_ospf_dead_interval_minimal_addr_cmd,
6320 "ip ospf dead-interval minimal hello-multiplier (1-10) [A.B.C.D]",
6321 "IP Information\n"
6322 "OSPF interface commands\n"
6323 "Interval time after which a neighbor is declared down\n"
6324 "Minimal 1s dead-interval with fast sub-second hellos\n"
6325 "Hello multiplier factor\n"
6326 "Number of Hellos to send each second\n"
6327 "Address of interface\n")
6328 {
6329 int idx_number = 5;
6330 int idx_ipv4 = 6;
6331 if (argc == 7)
6332 return ospf_vty_dead_interval_set (vty, NULL, argv[idx_ipv4]->arg, argv[idx_number]->arg);
6333 else
6334 return ospf_vty_dead_interval_set (vty, NULL, NULL, argv[idx_number]->arg);
6335 }
6336
6337 DEFUN (no_ip_ospf_dead_interval,
6338 no_ip_ospf_dead_interval_cmd,
6339 "no ip ospf dead-interval [<(1-65535)|minimal hello-multiplier (1-10)> [A.B.C.D]]",
6340 NO_STR
6341 "IP Information\n"
6342 "OSPF interface commands\n"
6343 "Interval time after which a neighbor is declared down\n"
6344 "Seconds\n"
6345 "Address of interface")
6346 {
6347 VTY_DECLVAR_CONTEXT(interface, ifp);
6348 int idx_ipv4 = argc - 1;
6349 struct in_addr addr;
6350 int ret;
6351 struct ospf_if_params *params;
6352 struct ospf_interface *oi;
6353 struct route_node *rn;
6354
6355 params = IF_DEF_PARAMS (ifp);
6356
6357 if (argv[idx_ipv4]->type == IPV4_TKN)
6358 {
6359 ret = inet_aton(argv[idx_ipv4]->arg, &addr);
6360 if (!ret)
6361 {
6362 vty_out (vty, "Please specify interface address by A.B.C.D%s",
6363 VTY_NEWLINE);
6364 return CMD_WARNING;
6365 }
6366
6367 params = ospf_lookup_if_params (ifp, addr);
6368 if (params == NULL)
6369 return CMD_SUCCESS;
6370 }
6371
6372 UNSET_IF_PARAM (params, v_wait);
6373 params->v_wait = OSPF_ROUTER_DEAD_INTERVAL_DEFAULT;
6374
6375 UNSET_IF_PARAM (params, fast_hello);
6376 params->fast_hello = OSPF_FAST_HELLO_DEFAULT;
6377
6378 if (params != IF_DEF_PARAMS (ifp))
6379 {
6380 ospf_free_if_params (ifp, addr);
6381 ospf_if_update_params (ifp, addr);
6382 }
6383
6384 /* Update timer values in neighbor structure. */
6385 if (argc == 1)
6386 {
6387 struct ospf *ospf;
6388
6389 if ((ospf = ospf_lookup()))
6390 {
6391 oi = ospf_if_lookup_by_local_addr (ospf, ifp, addr);
6392 if (oi)
6393 ospf_nbr_timer_update (oi);
6394 }
6395 }
6396 else
6397 {
6398 for (rn = route_top (IF_OIFS (ifp)); rn; rn = route_next (rn))
6399 if ((oi = rn->info))
6400 ospf_nbr_timer_update (oi);
6401 }
6402
6403 return CMD_SUCCESS;
6404 }
6405
6406 DEFUN_HIDDEN (no_ospf_dead_interval,
6407 no_ospf_dead_interval_cmd,
6408 "no ospf dead-interval [<(1-65535)|minimal hello-multiplier (1-10)> [A.B.C.D]]",
6409 NO_STR
6410 "OSPF interface commands\n"
6411 "Interval time after which a neighbor is declared down\n"
6412 "Seconds\n"
6413 "Address of interface")
6414 {
6415 return no_ip_ospf_dead_interval (self, vty, argc, argv);
6416 }
6417
6418 DEFUN (ip_ospf_hello_interval,
6419 ip_ospf_hello_interval_cmd,
6420 "ip ospf hello-interval (1-65535) [A.B.C.D]",
6421 "IP Information\n"
6422 "OSPF interface commands\n"
6423 "Time between HELLO packets\n"
6424 "Seconds\n"
6425 "Address of interface\n")
6426 {
6427 VTY_DECLVAR_CONTEXT(interface, ifp);
6428 int idx = 0;
6429 struct in_addr addr;
6430 struct ospf_if_params *params;
6431 params = IF_DEF_PARAMS (ifp);
6432 u_int32_t seconds = 0;
6433
6434 argv_find (argv, argc, "(1-65535)", &idx);
6435 seconds = strtol (argv[idx]->arg, NULL, 10);
6436
6437 if (argv_find (argv, argc, "A.B.C.D", &idx))
6438 {
6439 if(!inet_aton(argv[idx]->arg, &addr))
6440 {
6441 vty_out (vty, "Please specify interface address by A.B.C.D%s",
6442 VTY_NEWLINE);
6443 return CMD_WARNING;
6444 }
6445
6446 params = ospf_get_if_params (ifp, addr);
6447 ospf_if_update_params (ifp, addr);
6448 }
6449
6450 SET_IF_PARAM (params, v_hello);
6451 params->v_hello = seconds;
6452
6453 return CMD_SUCCESS;
6454 }
6455
6456 DEFUN_HIDDEN (ospf_hello_interval,
6457 ospf_hello_interval_cmd,
6458 "ospf hello-interval (1-65535) [A.B.C.D]",
6459 "OSPF interface commands\n"
6460 "Time between HELLO packets\n"
6461 "Seconds\n"
6462 "Address of interface\n")
6463 {
6464 return ip_ospf_hello_interval (self, vty, argc, argv);
6465 }
6466
6467 DEFUN (no_ip_ospf_hello_interval,
6468 no_ip_ospf_hello_interval_cmd,
6469 "no ip ospf hello-interval [(1-65535) [A.B.C.D]]",
6470 NO_STR
6471 "IP Information\n"
6472 "OSPF interface commands\n"
6473 "Time between HELLO packets\n" // ignored
6474 "Seconds\n"
6475 "Address of interface\n")
6476 {
6477 VTY_DECLVAR_CONTEXT(interface, ifp);
6478 int idx = 0;
6479 struct in_addr addr;
6480 struct ospf_if_params *params;
6481 params = IF_DEF_PARAMS (ifp);
6482
6483 if (argv_find (argv, argc, "A.B.C.D", &idx))
6484 {
6485 if(!inet_aton(argv[idx]->arg, &addr))
6486 {
6487 vty_out (vty, "Please specify interface address by A.B.C.D%s",
6488 VTY_NEWLINE);
6489 return CMD_WARNING;
6490 }
6491
6492 params = ospf_lookup_if_params (ifp, addr);
6493 if (params == NULL)
6494 return CMD_SUCCESS;
6495 }
6496
6497 UNSET_IF_PARAM (params, v_hello);
6498 params->v_hello = OSPF_HELLO_INTERVAL_DEFAULT;
6499
6500 if (params != IF_DEF_PARAMS (ifp))
6501 {
6502 ospf_free_if_params (ifp, addr);
6503 ospf_if_update_params (ifp, addr);
6504 }
6505
6506 return CMD_SUCCESS;
6507 }
6508
6509 DEFUN_HIDDEN (no_ospf_hello_interval,
6510 no_ospf_hello_interval_cmd,
6511 "no ospf hello-interval [(1-65535) [A.B.C.D]]",
6512 NO_STR
6513 "OSPF interface commands\n"
6514 "Time between HELLO packets\n" // ignored
6515 "Seconds\n"
6516 "Address of interface\n")
6517 {
6518 return no_ip_ospf_hello_interval (self, vty, argc, argv);
6519 }
6520
6521 DEFUN (ip_ospf_network,
6522 ip_ospf_network_cmd,
6523 "ip ospf network <broadcast|non-broadcast|point-to-multipoint|point-to-point>",
6524 "IP Information\n"
6525 "OSPF interface commands\n"
6526 "Network type\n"
6527 "Specify OSPF broadcast multi-access network\n"
6528 "Specify OSPF NBMA network\n"
6529 "Specify OSPF point-to-multipoint network\n"
6530 "Specify OSPF point-to-point network\n")
6531 {
6532 VTY_DECLVAR_CONTEXT(interface, ifp);
6533 int idx = 0;
6534 int old_type = IF_DEF_PARAMS (ifp)->type;
6535 struct route_node *rn;
6536
6537 if (old_type == OSPF_IFTYPE_LOOPBACK)
6538 {
6539 vty_out (vty, "This is a loopback interface. Can't set network type.%s", VTY_NEWLINE);
6540 return CMD_WARNING;
6541 }
6542
6543 if (argv_find (argv, argc, "broadcast", &idx))
6544 IF_DEF_PARAMS (ifp)->type = OSPF_IFTYPE_BROADCAST;
6545 else if (argv_find (argv, argc, "non-broadcast", &idx))
6546 IF_DEF_PARAMS (ifp)->type = OSPF_IFTYPE_NBMA;
6547 else if (argv_find (argv, argc, "point-to-multipoint", &idx))
6548 IF_DEF_PARAMS (ifp)->type = OSPF_IFTYPE_POINTOMULTIPOINT;
6549 else if (argv_find (argv, argc, "point-to-point", &idx))
6550 IF_DEF_PARAMS (ifp)->type = OSPF_IFTYPE_POINTOPOINT;
6551
6552 if (IF_DEF_PARAMS (ifp)->type == old_type)
6553 return CMD_SUCCESS;
6554
6555 SET_IF_PARAM (IF_DEF_PARAMS (ifp), type);
6556
6557 for (rn = route_top (IF_OIFS (ifp)); rn; rn = route_next (rn))
6558 {
6559 struct ospf_interface *oi = rn->info;
6560
6561 if (!oi)
6562 continue;
6563
6564 oi->type = IF_DEF_PARAMS (ifp)->type;
6565
6566 if (oi->state > ISM_Down)
6567 {
6568 OSPF_ISM_EVENT_EXECUTE (oi, ISM_InterfaceDown);
6569 OSPF_ISM_EVENT_EXECUTE (oi, ISM_InterfaceUp);
6570 }
6571 }
6572
6573 return CMD_SUCCESS;
6574 }
6575
6576 DEFUN_HIDDEN (ospf_network,
6577 ospf_network_cmd,
6578 "ospf network <broadcast|non-broadcast|point-to-multipoint|point-to-point>",
6579 "OSPF interface commands\n"
6580 "Network type\n"
6581 "Specify OSPF broadcast multi-access network\n"
6582 "Specify OSPF NBMA network\n"
6583 "Specify OSPF point-to-multipoint network\n"
6584 "Specify OSPF point-to-point network\n")
6585 {
6586 return ip_ospf_network (self, vty, argc, argv);
6587 }
6588
6589 DEFUN (no_ip_ospf_network,
6590 no_ip_ospf_network_cmd,
6591 "no ip ospf network [<broadcast|non-broadcast|point-to-multipoint|point-to-point>]",
6592 NO_STR
6593 "IP Information\n"
6594 "OSPF interface commands\n"
6595 "Network type\n"
6596 "Specify OSPF broadcast multi-access network\n"
6597 "Specify OSPF NBMA network\n"
6598 "Specify OSPF point-to-multipoint network\n"
6599 "Specify OSPF point-to-point network\n")
6600 {
6601 VTY_DECLVAR_CONTEXT(interface, ifp);
6602 int old_type = IF_DEF_PARAMS (ifp)->type;
6603 struct route_node *rn;
6604
6605 IF_DEF_PARAMS (ifp)->type = ospf_default_iftype(ifp);
6606
6607 if (IF_DEF_PARAMS (ifp)->type == old_type)
6608 return CMD_SUCCESS;
6609
6610 for (rn = route_top (IF_OIFS (ifp)); rn; rn = route_next (rn))
6611 {
6612 struct ospf_interface *oi = rn->info;
6613
6614 if (!oi)
6615 continue;
6616
6617 oi->type = IF_DEF_PARAMS (ifp)->type;
6618
6619 if (oi->state > ISM_Down)
6620 {
6621 OSPF_ISM_EVENT_EXECUTE (oi, ISM_InterfaceDown);
6622 OSPF_ISM_EVENT_EXECUTE (oi, ISM_InterfaceUp);
6623 }
6624 }
6625
6626 return CMD_SUCCESS;
6627 }
6628
6629 DEFUN_HIDDEN (no_ospf_network,
6630 no_ospf_network_cmd,
6631 "no ospf network [<broadcast|non-broadcast|point-to-multipoint|point-to-point>]",
6632 NO_STR
6633 "OSPF interface commands\n"
6634 "Network type\n"
6635 "Specify OSPF broadcast multi-access network\n"
6636 "Specify OSPF NBMA network\n"
6637 "Specify OSPF point-to-multipoint network\n"
6638 "Specify OSPF point-to-point network\n")
6639 {
6640 return no_ip_ospf_network (self, vty, argc, argv);
6641 }
6642
6643 DEFUN (ip_ospf_priority,
6644 ip_ospf_priority_cmd,
6645 "ip ospf priority (0-255) [A.B.C.D]",
6646 "IP Information\n"
6647 "OSPF interface commands\n"
6648 "Router priority\n"
6649 "Priority\n"
6650 "Address of interface")
6651 {
6652 VTY_DECLVAR_CONTEXT(interface, ifp);
6653 int idx = 0;
6654 long priority;
6655 struct route_node *rn;
6656 struct in_addr addr;
6657 struct ospf_if_params *params;
6658 params = IF_DEF_PARAMS (ifp);
6659
6660 argv_find (argv, argc, "(0-255)", &idx);
6661 priority = strtol (argv[idx]->arg, NULL, 10);
6662
6663 if (argv_find (argv, argc, "A.B.C.D", &idx))
6664 {
6665 if (!inet_aton(argv[idx]->arg, &addr))
6666 {
6667 vty_out (vty, "Please specify interface address by A.B.C.D%s",
6668 VTY_NEWLINE);
6669 return CMD_WARNING;
6670 }
6671
6672 params = ospf_get_if_params (ifp, addr);
6673 ospf_if_update_params (ifp, addr);
6674 }
6675
6676 SET_IF_PARAM (params, priority);
6677 params->priority = priority;
6678
6679 for (rn = route_top (IF_OIFS (ifp)); rn; rn = route_next (rn))
6680 {
6681 struct ospf_interface *oi = rn->info;
6682
6683 if (!oi)
6684 continue;
6685
6686 if (PRIORITY (oi) != OSPF_IF_PARAM (oi, priority))
6687 {
6688 PRIORITY (oi) = OSPF_IF_PARAM (oi, priority);
6689 OSPF_ISM_EVENT_SCHEDULE (oi, ISM_NeighborChange);
6690 }
6691 }
6692
6693 return CMD_SUCCESS;
6694 }
6695
6696 DEFUN_HIDDEN (ospf_priority,
6697 ospf_priority_cmd,
6698 "ospf priority (0-255) [A.B.C.D]",
6699 "OSPF interface commands\n"
6700 "Router priority\n"
6701 "Priority\n"
6702 "Address of interface")
6703 {
6704 return ip_ospf_priority (self, vty, argc, argv);
6705 }
6706
6707 DEFUN (no_ip_ospf_priority,
6708 no_ip_ospf_priority_cmd,
6709 "no ip ospf priority [(0-255) [A.B.C.D]]",
6710 NO_STR
6711 "IP Information\n"
6712 "OSPF interface commands\n"
6713 "Router priority\n" // ignored
6714 "Priority\n"
6715 "Address of interface")
6716 {
6717 VTY_DECLVAR_CONTEXT(interface, ifp);
6718 int idx = 0;
6719 struct route_node *rn;
6720 struct in_addr addr;
6721 struct ospf_if_params *params;
6722
6723 params = IF_DEF_PARAMS (ifp);
6724
6725 if (argv_find (argv, argc, "A.B.C.D", &idx))
6726 {
6727 if (!inet_aton(argv[idx]->arg, &addr))
6728 {
6729 vty_out (vty, "Please specify interface address by A.B.C.D%s",
6730 VTY_NEWLINE);
6731 return CMD_WARNING;
6732 }
6733
6734 params = ospf_lookup_if_params (ifp, addr);
6735 if (params == NULL)
6736 return CMD_SUCCESS;
6737 }
6738
6739 UNSET_IF_PARAM (params, priority);
6740 params->priority = OSPF_ROUTER_PRIORITY_DEFAULT;
6741
6742 if (params != IF_DEF_PARAMS (ifp))
6743 {
6744 ospf_free_if_params (ifp, addr);
6745 ospf_if_update_params (ifp, addr);
6746 }
6747
6748 for (rn = route_top (IF_OIFS (ifp)); rn; rn = route_next (rn))
6749 {
6750 struct ospf_interface *oi = rn->info;
6751
6752 if (!oi)
6753 continue;
6754
6755 if (PRIORITY (oi) != OSPF_IF_PARAM (oi, priority))
6756 {
6757 PRIORITY (oi) = OSPF_IF_PARAM (oi, priority);
6758 OSPF_ISM_EVENT_SCHEDULE (oi, ISM_NeighborChange);
6759 }
6760 }
6761
6762 return CMD_SUCCESS;
6763 }
6764
6765 DEFUN_HIDDEN (no_ospf_priority,
6766 no_ospf_priority_cmd,
6767 "no ospf priority [(0-255) [A.B.C.D]]",
6768 NO_STR
6769 "OSPF interface commands\n"
6770 "Router priority\n"
6771 "Priority\n"
6772 "Address of interface")
6773 {
6774 return no_ip_ospf_priority (self, vty, argc, argv);
6775 }
6776
6777 DEFUN (ip_ospf_retransmit_interval,
6778 ip_ospf_retransmit_interval_addr_cmd,
6779 "ip ospf retransmit-interval (3-65535) [A.B.C.D]",
6780 "IP Information\n"
6781 "OSPF interface commands\n"
6782 "Time between retransmitting lost link state advertisements\n"
6783 "Seconds\n"
6784 "Address of interface")
6785 {
6786 VTY_DECLVAR_CONTEXT(interface, ifp);
6787 int idx = 0;
6788 u_int32_t seconds;
6789 struct in_addr addr;
6790 struct ospf_if_params *params;
6791 params = IF_DEF_PARAMS (ifp);
6792
6793 argv_find (argv, argc, "(3-65535)", &idx);
6794 seconds = strtol (argv[idx]->arg, NULL, 10);
6795
6796 if (argv_find (argv, argc, "A.B.C.D", &idx))
6797 {
6798 if (!inet_aton(argv[idx]->arg, &addr))
6799 {
6800 vty_out (vty, "Please specify interface address by A.B.C.D%s",
6801 VTY_NEWLINE);
6802 return CMD_WARNING;
6803 }
6804
6805 params = ospf_get_if_params (ifp, addr);
6806 ospf_if_update_params (ifp, addr);
6807 }
6808
6809 SET_IF_PARAM (params, retransmit_interval);
6810 params->retransmit_interval = seconds;
6811
6812 return CMD_SUCCESS;
6813 }
6814
6815 DEFUN_HIDDEN (ospf_retransmit_interval,
6816 ospf_retransmit_interval_cmd,
6817 "ospf retransmit-interval (3-65535) [A.B.C.D]",
6818 "OSPF interface commands\n"
6819 "Time between retransmitting lost link state advertisements\n"
6820 "Seconds\n"
6821 "Address of interface")
6822 {
6823 return ip_ospf_retransmit_interval (self, vty, argc, argv);
6824 }
6825
6826 DEFUN (no_ip_ospf_retransmit_interval,
6827 no_ip_ospf_retransmit_interval_addr_cmd,
6828 "no ip ospf retransmit-interval [(3-65535)] [A.B.C.D]",
6829 NO_STR
6830 "IP Information\n"
6831 "OSPF interface commands\n"
6832 "Time between retransmitting lost link state advertisements\n"
6833 "Seconds\n"
6834 "Address of interface\n")
6835 {
6836 VTY_DECLVAR_CONTEXT(interface, ifp);
6837 int idx = 0;
6838 struct in_addr addr;
6839 struct ospf_if_params *params;
6840
6841 params = IF_DEF_PARAMS (ifp);
6842
6843 if (argv_find (argv, argc, "A.B.C.D", &idx))
6844 {
6845 if (!inet_aton(argv[idx]->arg, &addr))
6846 {
6847 vty_out (vty, "Please specify interface address by A.B.C.D%s",
6848 VTY_NEWLINE);
6849 return CMD_WARNING;
6850 }
6851
6852 params = ospf_lookup_if_params (ifp, addr);
6853 if (params == NULL)
6854 return CMD_SUCCESS;
6855 }
6856
6857 UNSET_IF_PARAM (params, retransmit_interval);
6858 params->retransmit_interval = OSPF_RETRANSMIT_INTERVAL_DEFAULT;
6859
6860 if (params != IF_DEF_PARAMS (ifp))
6861 {
6862 ospf_free_if_params (ifp, addr);
6863 ospf_if_update_params (ifp, addr);
6864 }
6865
6866 return CMD_SUCCESS;
6867 }
6868
6869 DEFUN_HIDDEN (no_ospf_retransmit_interval,
6870 no_ospf_retransmit_interval_cmd,
6871 "no ospf retransmit-interval [(3-65535)] [A.B.C.D]",
6872 NO_STR
6873 "OSPF interface commands\n"
6874 "Time between retransmitting lost link state advertisements\n"
6875 "Seconds\n"
6876 "Address of interface\n")
6877 {
6878 return no_ip_ospf_retransmit_interval (self, vty, argc, argv);
6879 }
6880
6881 DEFUN (ip_ospf_transmit_delay,
6882 ip_ospf_transmit_delay_addr_cmd,
6883 "ip ospf transmit-delay (1-65535) [A.B.C.D]",
6884 "IP Information\n"
6885 "OSPF interface commands\n"
6886 "Link state transmit delay\n"
6887 "Seconds\n"
6888 "Address of interface")
6889 {
6890 VTY_DECLVAR_CONTEXT(interface, ifp);
6891 int idx = 0;
6892 u_int32_t seconds;
6893 struct in_addr addr;
6894 struct ospf_if_params *params;
6895
6896 params = IF_DEF_PARAMS (ifp);
6897 argv_find (argv, argc, "(1-65535)", &idx);
6898 seconds = strtol (argv[idx]->arg, NULL, 10);
6899
6900 if (argv_find (argv, argc, "A.B.C.D", &idx))
6901 {
6902 if (!inet_aton(argv[idx]->arg, &addr))
6903 {
6904 vty_out (vty, "Please specify interface address by A.B.C.D%s",
6905 VTY_NEWLINE);
6906 return CMD_WARNING;
6907 }
6908
6909 params = ospf_get_if_params (ifp, addr);
6910 ospf_if_update_params (ifp, addr);
6911 }
6912
6913 SET_IF_PARAM (params, transmit_delay);
6914 params->transmit_delay = seconds;
6915
6916 return CMD_SUCCESS;
6917 }
6918
6919 DEFUN_HIDDEN (ospf_transmit_delay,
6920 ospf_transmit_delay_cmd,
6921 "ospf transmit-delay (1-65535) [A.B.C.D]",
6922 "OSPF interface commands\n"
6923 "Link state transmit delay\n"
6924 "Seconds\n"
6925 "Address of interface")
6926 {
6927 return ip_ospf_transmit_delay (self, vty, argc, argv);
6928 }
6929
6930 DEFUN (no_ip_ospf_transmit_delay,
6931 no_ip_ospf_transmit_delay_addr_cmd,
6932 "no ip ospf transmit-delay [(1-65535)] [A.B.C.D]",
6933 NO_STR
6934 "IP Information\n"
6935 "OSPF interface commands\n"
6936 "Link state transmit delay\n"
6937 "Address of interface")
6938 {
6939 VTY_DECLVAR_CONTEXT(interface, ifp);
6940 int idx = 0;
6941 struct in_addr addr;
6942 struct ospf_if_params *params;
6943
6944 params = IF_DEF_PARAMS (ifp);
6945
6946 if (argv_find (argv, argc, "A.B.C.D", &idx))
6947 {
6948 if (!inet_aton(argv[idx]->arg, &addr))
6949 {
6950 vty_out (vty, "Please specify interface address by A.B.C.D%s",
6951 VTY_NEWLINE);
6952 return CMD_WARNING;
6953 }
6954
6955 params = ospf_lookup_if_params (ifp, addr);
6956 if (params == NULL)
6957 return CMD_SUCCESS;
6958 }
6959
6960 UNSET_IF_PARAM (params, transmit_delay);
6961 params->transmit_delay = OSPF_TRANSMIT_DELAY_DEFAULT;
6962
6963 if (params != IF_DEF_PARAMS (ifp))
6964 {
6965 ospf_free_if_params (ifp, addr);
6966 ospf_if_update_params (ifp, addr);
6967 }
6968
6969 return CMD_SUCCESS;
6970 }
6971
6972
6973 DEFUN_HIDDEN (no_ospf_transmit_delay,
6974 no_ospf_transmit_delay_cmd,
6975 "no ospf transmit-delay",
6976 NO_STR
6977 "OSPF interface commands\n"
6978 "Link state transmit delay\n")
6979 {
6980 return no_ip_ospf_transmit_delay (self, vty, argc, argv);
6981 }
6982
6983 DEFUN (ip_ospf_area,
6984 ip_ospf_area_cmd,
6985 "ip ospf [(1-65535)] area <A.B.C.D|(0-4294967295)>",
6986 "IP Information\n"
6987 "OSPF interface commands\n"
6988 "Instance ID\n"
6989 "Enable OSPF on this interface\n"
6990 "OSPF area ID in IP address format\n"
6991 "OSPF area ID as a decimal value\n")
6992 {
6993 VTY_DECLVAR_CONTEXT(interface, ifp);
6994 int idx = 0;
6995 int format, ret;
6996 struct in_addr area_id;
6997 struct ospf *ospf;
6998 struct ospf_if_params *params;
6999 struct route_node *rn;
7000 u_short instance = 0;
7001
7002 if (argv_find (argv, argc, "(1-65535)", &idx))
7003 instance = strtol (argv[idx]->arg, NULL, 10);
7004 char *areaid = argv[argc - 1]->arg;
7005
7006 ospf = ospf_lookup_instance (instance);
7007 if (ospf == NULL)
7008 {
7009 params = IF_DEF_PARAMS (ifp);
7010 if (OSPF_IF_PARAM_CONFIGURED(params, if_area))
7011 {
7012 ospf_interface_unset (ifp);
7013 ospf = ospf_lookup();
7014 ospf->if_ospf_cli_count--;
7015 }
7016 return CMD_SUCCESS;
7017 }
7018
7019 ret = ospf_str2area_id (areaid, &area_id, &format);
7020 if (ret < 0)
7021 {
7022 vty_out (vty, "Please specify area by A.B.C.D|<0-4294967295>%s",
7023 VTY_NEWLINE);
7024 return CMD_WARNING;
7025 }
7026 if (memcmp (ifp->name, "VLINK", 5) == 0)
7027 {
7028 vty_out (vty, "Cannot enable OSPF on a virtual link.%s", VTY_NEWLINE);
7029 return CMD_WARNING;
7030 }
7031
7032 params = IF_DEF_PARAMS (ifp);
7033 if (OSPF_IF_PARAM_CONFIGURED(params, if_area))
7034 {
7035 vty_out (vty,
7036 "Must remove previous area config before changing ospf area %s",
7037 VTY_NEWLINE);
7038 return CMD_WARNING;
7039 }
7040
7041 for (rn = route_top (ospf->networks); rn; rn = route_next (rn))
7042 {
7043 if (rn->info != NULL)
7044 {
7045 vty_out (vty, "Please remove all network commands first.%s", VTY_NEWLINE);
7046 return CMD_WARNING;
7047 }
7048 }
7049
7050 /* enable ospf on this interface with area_id */
7051 ospf_interface_set (ifp, area_id);
7052 ospf->if_ospf_cli_count++;
7053
7054 return CMD_SUCCESS;
7055 }
7056
7057 DEFUN (no_ip_ospf_area,
7058 no_ip_ospf_area_cmd,
7059 "no ip ospf [(1-65535)] area [<A.B.C.D|(0-4294967295)>]",
7060 NO_STR
7061 "IP Information\n"
7062 "OSPF interface commands\n"
7063 "Instance ID\n"
7064 "Disable OSPF on this interface\n"
7065 "OSPF area ID in IP address format\n"
7066 "OSPF area ID as a decimal value\n")
7067 {
7068 VTY_DECLVAR_CONTEXT(interface, ifp);
7069 int idx = 0;
7070 struct ospf *ospf;
7071 struct ospf_if_params *params;
7072 u_short instance = 0;
7073
7074 if (argv_find (argv, argc, "(1-65535)", &idx))
7075 instance = strtol (argv[idx]->arg, NULL, 10);
7076
7077 if ((ospf = ospf_lookup_instance (instance)) == NULL)
7078 return CMD_SUCCESS;
7079
7080 params = IF_DEF_PARAMS (ifp);
7081 if (!OSPF_IF_PARAM_CONFIGURED(params, if_area))
7082 {
7083 vty_out (vty, "Can't find specified interface area configuration.%s", VTY_NEWLINE);
7084 return CMD_WARNING;
7085 }
7086
7087 ospf_interface_unset (ifp);
7088 ospf->if_ospf_cli_count--;
7089 return CMD_SUCCESS;
7090 }
7091
7092 DEFUN (ospf_redistribute_source,
7093 ospf_redistribute_source_cmd,
7094 "redistribute " FRR_REDIST_STR_OSPFD " [<metric (0-16777214)|metric-type (1-2)|route-map WORD>]",
7095 REDIST_STR
7096 FRR_REDIST_HELP_STR_OSPFD
7097 "Metric for redistributed routes\n"
7098 "OSPF default metric\n"
7099 "OSPF exterior metric type for redistributed routes\n"
7100 "Set OSPF External Type 1 metrics\n"
7101 "Set OSPF External Type 2 metrics\n"
7102 "Route map reference\n"
7103 "Pointer to route-map entries\n")
7104 {
7105 VTY_DECLVAR_CONTEXT(ospf, ospf);
7106 int idx_protocol = 1;
7107 int source;
7108 int type = -1;
7109 int metric = -1;
7110 struct ospf_redist *red;
7111 int idx = 0;
7112
7113 if (!ospf)
7114 return CMD_SUCCESS;
7115
7116 /* Get distribute source. */
7117 source = proto_redistnum(AFI_IP, argv[idx_protocol]->text);
7118 if (source < 0)
7119 return CMD_WARNING;
7120
7121 red = ospf_redist_add(ospf, source, 0);
7122
7123 /* Get metric value. */
7124 if (argv_find (argv, argc, "(0-16777214)", &idx)) {
7125 if (!str2metric (argv[idx]->arg, &metric))
7126 return CMD_WARNING;
7127 }
7128 /* Get metric type. */
7129 else if (argv_find (argv, argc, "(1-2)", &idx)) {
7130 if (!str2metric_type (argv[idx]->arg, &type))
7131 return CMD_WARNING;
7132 }
7133 /* Get route-map */
7134 else if (argv_find (argv, argc, "WORD", &idx)) {
7135 ospf_routemap_set (red, argv[idx]->arg);
7136 }
7137 else
7138 ospf_routemap_unset (red);
7139
7140 return ospf_redistribute_set (ospf, source, 0, type, metric);
7141 }
7142
7143 DEFUN (no_ospf_redistribute_source,
7144 no_ospf_redistribute_source_cmd,
7145 "no redistribute " FRR_REDIST_STR_OSPFD " [<metric (0-16777214)|metric-type (1-2)|route-map WORD>]",
7146 NO_STR
7147 REDIST_STR
7148 FRR_REDIST_HELP_STR_OSPFD
7149 "Metric for redistributed routes\n"
7150 "OSPF default metric\n"
7151 "OSPF exterior metric type for redistributed routes\n"
7152 "Set OSPF External Type 1 metrics\n"
7153 "Set OSPF External Type 2 metrics\n"
7154 "Route map reference\n"
7155 "Pointer to route-map entries\n")
7156 {
7157 VTY_DECLVAR_CONTEXT(ospf, ospf);
7158 int idx_protocol = 2;
7159 int source;
7160 struct ospf_redist *red;
7161
7162 source = proto_redistnum(AFI_IP, argv[idx_protocol]->text);
7163 if (source < 0)
7164 return CMD_WARNING;
7165
7166 red = ospf_redist_lookup(ospf, source, 0);
7167 if (!red)
7168 return CMD_SUCCESS;
7169
7170 ospf_routemap_unset (red);
7171 return ospf_redistribute_unset (ospf, source, 0);
7172 }
7173
7174 DEFUN (ospf_redistribute_instance_source,
7175 ospf_redistribute_instance_source_cmd,
7176 "redistribute <ospf|table> (1-65535) [<metric (0-16777214)|metric-type (1-2)|route-map WORD>]",
7177 REDIST_STR
7178 "Open Shortest Path First\n"
7179 "Non-main Kernel Routing Table\n"
7180 "Instance ID/Table ID\n"
7181 "Metric for redistributed routes\n"
7182 "OSPF default metric\n"
7183 "OSPF exterior metric type for redistributed routes\n"
7184 "Set OSPF External Type 1 metrics\n"
7185 "Set OSPF External Type 2 metrics\n"
7186 "Route map reference\n"
7187 "Pointer to route-map entries\n")
7188 {
7189 VTY_DECLVAR_CONTEXT(ospf, ospf);
7190 int idx_ospf_table = 1;
7191 int idx_number = 2;
7192 int idx_redist_param = 3;
7193 int source;
7194 int type = -1;
7195 int metric = -1;
7196 u_short instance;
7197 struct ospf_redist *red;
7198
7199 if (!ospf)
7200 return CMD_SUCCESS;
7201
7202 source = proto_redistnum (AFI_IP, argv[idx_ospf_table]->text);
7203
7204 VTY_GET_INTEGER ("Instance ID", instance, argv[idx_number]->arg);
7205
7206 if (!ospf)
7207 return CMD_SUCCESS;
7208
7209 if ((source == ZEBRA_ROUTE_OSPF) && !ospf->instance)
7210 {
7211 vty_out (vty, "Instance redistribution in non-instanced OSPF not allowed%s",
7212 VTY_NEWLINE);
7213 return CMD_WARNING;
7214 }
7215
7216 if ((source == ZEBRA_ROUTE_OSPF) && (ospf->instance == instance))
7217 {
7218 vty_out (vty, "Same instance OSPF redistribution not allowed%s",
7219 VTY_NEWLINE);
7220 return CMD_WARNING;
7221 }
7222
7223 /* Get metric value. */
7224 if (strcmp (argv[idx_redist_param]->arg, "metric") == 0)
7225 if (!str2metric (argv[idx_redist_param+1]->arg, &metric))
7226 return CMD_WARNING;
7227
7228 /* Get metric type. */
7229 if (strcmp (argv[idx_redist_param]->arg, "metric-type") == 0)
7230 if (!str2metric_type (argv[idx_redist_param+1]->arg, &type))
7231 return CMD_WARNING;
7232
7233 red = ospf_redist_add(ospf, source, instance);
7234
7235 if (strcmp (argv[idx_redist_param]->arg, "route-map") == 0)
7236 ospf_routemap_set (red, argv[idx_redist_param+1]->arg);
7237 else
7238 ospf_routemap_unset (red);
7239
7240 return ospf_redistribute_set (ospf, source, instance, type, metric);
7241 }
7242
7243 DEFUN (no_ospf_redistribute_instance_source,
7244 no_ospf_redistribute_instance_source_cmd,
7245 "no redistribute <ospf|table> (1-65535) [<metric (0-16777214)|metric-type (1-2)|route-map WORD>]",
7246 NO_STR
7247 REDIST_STR
7248 "Open Shortest Path First\n"
7249 "Non-main Kernel Routing Table\n"
7250 "Instance ID/Table Id\n"
7251 "Metric for redistributed routes\n"
7252 "OSPF default metric\n"
7253 "OSPF exterior metric type for redistributed routes\n"
7254 "Set OSPF External Type 1 metrics\n"
7255 "Set OSPF External Type 2 metrics\n"
7256 "Route map reference\n"
7257 "Pointer to route-map entries\n")
7258 {
7259 VTY_DECLVAR_CONTEXT(ospf, ospf);
7260 int idx_ospf_table = 2;
7261 int idx_number = 3;
7262 u_int instance;
7263 struct ospf_redist *red;
7264 int source;
7265
7266 if (strncmp(argv[idx_ospf_table]->arg, "o", 1) == 0)
7267 source = ZEBRA_ROUTE_OSPF;
7268 else
7269 source = ZEBRA_ROUTE_TABLE;
7270
7271 VTY_GET_INTEGER ("Instance ID", instance, argv[idx_number]->arg);
7272
7273 if ((source == ZEBRA_ROUTE_OSPF) && !ospf->instance)
7274 {
7275 vty_out (vty, "Instance redistribution in non-instanced OSPF not allowed%s",
7276 VTY_NEWLINE);
7277 return CMD_WARNING;
7278 }
7279
7280 if ((source == ZEBRA_ROUTE_OSPF) && (ospf->instance == instance))
7281 {
7282 vty_out (vty, "Same instance OSPF redistribution not allowed%s",
7283 VTY_NEWLINE);
7284 return CMD_WARNING;
7285 }
7286
7287 red = ospf_redist_lookup(ospf, source, instance);
7288 if (!red)
7289 return CMD_SUCCESS;
7290
7291 ospf_routemap_unset (red);
7292 return ospf_redistribute_unset (ospf, source, instance);
7293 }
7294
7295 DEFUN (ospf_distribute_list_out,
7296 ospf_distribute_list_out_cmd,
7297 "distribute-list WORD out " FRR_REDIST_STR_OSPFD,
7298 "Filter networks in routing updates\n"
7299 "Access-list name\n"
7300 OUT_STR
7301 FRR_REDIST_HELP_STR_OSPFD)
7302 {
7303 VTY_DECLVAR_CONTEXT(ospf, ospf);
7304 int idx_word = 1;
7305 int source;
7306
7307 char *proto = argv[argc - 1]->text;
7308
7309 /* Get distribute source. */
7310 source = proto_redistnum(AFI_IP, proto);
7311 if (source < 0)
7312 return CMD_WARNING;
7313
7314 return ospf_distribute_list_out_set (ospf, source, argv[idx_word]->arg);
7315 }
7316
7317 DEFUN (no_ospf_distribute_list_out,
7318 no_ospf_distribute_list_out_cmd,
7319 "no distribute-list WORD out " FRR_REDIST_STR_OSPFD,
7320 NO_STR
7321 "Filter networks in routing updates\n"
7322 "Access-list name\n"
7323 OUT_STR
7324 FRR_REDIST_HELP_STR_OSPFD)
7325 {
7326 VTY_DECLVAR_CONTEXT(ospf, ospf);
7327 int idx_word = 2;
7328 int source;
7329
7330 char *proto = argv[argc - 1]->text;
7331 source = proto_redistnum(AFI_IP, proto);
7332 if (source < 0)
7333 return CMD_WARNING;
7334
7335 return ospf_distribute_list_out_unset (ospf, source, argv[idx_word]->arg);
7336 }
7337
7338 /* Default information originate. */
7339 DEFUN (ospf_default_information_originate,
7340 ospf_default_information_originate_cmd,
7341 "default-information originate [<always|metric (0-16777214)|metric-type (1-2)|route-map WORD>]",
7342 "Control distribution of default information\n"
7343 "Distribute a default route\n"
7344 "Always advertise default route\n"
7345 "OSPF default metric\n"
7346 "OSPF metric\n"
7347 "OSPF metric type for default routes\n"
7348 "Set OSPF External Type 1 metrics\n"
7349 "Set OSPF External Type 2 metrics\n"
7350 "Route map reference\n"
7351 "Pointer to route-map entries\n")
7352 {
7353 VTY_DECLVAR_CONTEXT(ospf, ospf);
7354 int default_originate = DEFAULT_ORIGINATE_ZEBRA;
7355 int type = -1;
7356 int metric = -1;
7357 struct ospf_redist *red;
7358 int idx = 0;
7359
7360 red = ospf_redist_add(ospf, DEFAULT_ROUTE, 0);
7361
7362 /* Check whether "always" was specified */
7363 if (argv_find (argv, argc, "always", &idx))
7364 default_originate = DEFAULT_ORIGINATE_ALWAYS;
7365 /* Get metric value */
7366 else if (argv_find (argv, argc, "(0-16777214)", &idx)) {
7367 if (!str2metric (argv[idx]->arg, &metric))
7368 return CMD_WARNING;
7369 }
7370 /* Get metric type. */
7371 else if (argv_find (argv, argc, "(1-2)", &idx)) {
7372 if (!str2metric_type (argv[idx]->arg, &type))
7373 return CMD_WARNING;
7374 }
7375 /* Get route-map */
7376 else if (argv_find (argv, argc, "WORD", &idx))
7377 ospf_routemap_set (red, argv[idx]->arg);
7378 else
7379 ospf_routemap_unset (red);
7380
7381 return ospf_redistribute_default_set (ospf, default_originate,
7382 type, metric);
7383 }
7384
7385 DEFUN (no_ospf_default_information_originate,
7386 no_ospf_default_information_originate_cmd,
7387 "no default-information originate [<always|metric (0-16777214)|metric-type (1-2)|route-map WORD>]",
7388 NO_STR
7389 "Control distribution of default information\n"
7390 "Distribute a default route\n"
7391 "Always advertise default route\n"
7392 "OSPF default metric\n"
7393 "OSPF metric\n"
7394 "OSPF metric type for default routes\n"
7395 "Set OSPF External Type 1 metrics\n"
7396 "Set OSPF External Type 2 metrics\n"
7397 "Route map reference\n"
7398 "Pointer to route-map entries\n")
7399 {
7400 VTY_DECLVAR_CONTEXT(ospf, ospf);
7401 struct prefix_ipv4 p;
7402 struct ospf_external *ext;
7403 struct ospf_redist *red;
7404
7405 p.family = AF_INET;
7406 p.prefix.s_addr = 0;
7407 p.prefixlen = 0;
7408
7409 ospf_external_lsa_flush (ospf, DEFAULT_ROUTE, &p, 0);
7410
7411 if ((ext = ospf_external_lookup(DEFAULT_ROUTE, 0)) &&
7412 EXTERNAL_INFO (ext)) {
7413 ospf_external_info_delete (DEFAULT_ROUTE, 0, p);
7414 ospf_external_del (DEFAULT_ROUTE, 0);
7415 }
7416
7417 red = ospf_redist_lookup(ospf, DEFAULT_ROUTE, 0);
7418 if (!red)
7419 return CMD_SUCCESS;
7420
7421 ospf_routemap_unset (red);
7422 return ospf_redistribute_default_unset (ospf);
7423 }
7424
7425 DEFUN (ospf_default_metric,
7426 ospf_default_metric_cmd,
7427 "default-metric (0-16777214)",
7428 "Set metric of redistributed routes\n"
7429 "Default metric\n")
7430 {
7431 VTY_DECLVAR_CONTEXT(ospf, ospf);
7432 int idx_number = 1;
7433 int metric = -1;
7434
7435 if (!str2metric (argv[idx_number]->arg, &metric))
7436 return CMD_WARNING;
7437
7438 ospf->default_metric = metric;
7439
7440 return CMD_SUCCESS;
7441 }
7442
7443 DEFUN (no_ospf_default_metric,
7444 no_ospf_default_metric_cmd,
7445 "no default-metric [(0-16777214)]",
7446 NO_STR
7447 "Set metric of redistributed routes\n"
7448 "Default metric\n")
7449 {
7450 VTY_DECLVAR_CONTEXT(ospf, ospf);
7451
7452 ospf->default_metric = -1;
7453
7454 return CMD_SUCCESS;
7455 }
7456
7457
7458 DEFUN (ospf_distance,
7459 ospf_distance_cmd,
7460 "distance (1-255)",
7461 "Administrative distance\n"
7462 "OSPF Administrative distance\n")
7463 {
7464 VTY_DECLVAR_CONTEXT(ospf, ospf);
7465 int idx_number = 1;
7466
7467 ospf->distance_all = atoi (argv[idx_number]->arg);
7468
7469 return CMD_SUCCESS;
7470 }
7471
7472 DEFUN (no_ospf_distance,
7473 no_ospf_distance_cmd,
7474 "no distance (1-255)",
7475 NO_STR
7476 "Administrative distance\n"
7477 "OSPF Administrative distance\n")
7478 {
7479 VTY_DECLVAR_CONTEXT(ospf, ospf);
7480
7481 ospf->distance_all = 0;
7482
7483 return CMD_SUCCESS;
7484 }
7485
7486 DEFUN (no_ospf_distance_ospf,
7487 no_ospf_distance_ospf_cmd,
7488 "no distance ospf [{intra-area [(1-255)]|inter-area [(1-255)]|external [(1-255)]}]",
7489 NO_STR
7490 "Administrative distance\n"
7491 "OSPF administrative distance\n"
7492 "Intra-area routes\n"
7493 "Distance for intra-area routes\n"
7494 "Inter-area routes\n"
7495 "Distance for inter-area routes\n"
7496 "External routes\n"
7497 "Distance for external routes\n")
7498 {
7499 VTY_DECLVAR_CONTEXT(ospf, ospf);
7500 int idx = 0;
7501
7502 if (!ospf)
7503 return CMD_SUCCESS;
7504
7505 if (argv_find (argv, argc, "intra-area", &idx) || argc == 3)
7506 idx = ospf->distance_intra = 0;
7507 if (argv_find (argv, argc, "inter-area", &idx) || argc == 3)
7508 idx = ospf->distance_inter = 0;
7509 if (argv_find (argv, argc, "external", &idx) || argc == 3)
7510 ospf->distance_external = 0;
7511
7512 return CMD_SUCCESS;
7513 }
7514
7515 DEFUN (ospf_distance_ospf,
7516 ospf_distance_ospf_cmd,
7517 "distance ospf {intra-area (1-255)|inter-area (1-255)|external (1-255)}",
7518 "Administrative distance\n"
7519 "OSPF administrative distance\n"
7520 "Intra-area routes\n"
7521 "Distance for intra-area routes\n"
7522 "Inter-area routes\n"
7523 "Distance for inter-area routes\n"
7524 "External routes\n"
7525 "Distance for external routes\n")
7526 {
7527 VTY_DECLVAR_CONTEXT(ospf, ospf);
7528 int idx = 0;
7529
7530 if (argv_find (argv, argc, "intra-area", &idx))
7531 ospf->distance_intra = atoi(argv[idx + 1]->arg);
7532 idx = 0;
7533 if (argv_find (argv, argc, "inter-area", &idx))
7534 ospf->distance_inter = atoi(argv[idx + 1]->arg);
7535 idx = 0;
7536 if (argv_find (argv, argc, "external", &idx))
7537 ospf->distance_external = atoi(argv[idx + 1]->arg);
7538
7539 return CMD_SUCCESS;
7540 }
7541
7542 #if 0
7543 DEFUN (ospf_distance_source,
7544 ospf_distance_source_cmd,
7545 "distance (1-255) A.B.C.D/M",
7546 "Administrative distance\n"
7547 "Distance value\n"
7548 "IP source prefix\n")
7549 {
7550 VTY_DECLVAR_CONTEXT(ospf, ospf);
7551 int idx_number = 1;
7552 int idx_ipv4_prefixlen = 2;
7553
7554 if (!ospf)
7555 return CMD_SUCCESS;
7556
7557 ospf_distance_set (vty, ospf, argv[idx_number]->arg, argv[idx_ipv4_prefixlen]->arg, NULL);
7558
7559 return CMD_SUCCESS;
7560 }
7561
7562 DEFUN (no_ospf_distance_source,
7563 no_ospf_distance_source_cmd,
7564 "no distance (1-255) A.B.C.D/M",
7565 NO_STR
7566 "Administrative distance\n"
7567 "Distance value\n"
7568 "IP source prefix\n")
7569 {
7570 VTY_DECLVAR_CONTEXT(ospf, ospf);
7571 int idx_number = 2;
7572 int idx_ipv4_prefixlen = 3;
7573
7574 if (!ospf)
7575 return CMD_SUCCESS;
7576
7577 ospf_distance_unset (vty, ospf, argv[idx_number]->arg, argv[idx_ipv4_prefixlen]->arg, NULL);
7578
7579 return CMD_SUCCESS;
7580 }
7581
7582 DEFUN (ospf_distance_source_access_list,
7583 ospf_distance_source_access_list_cmd,
7584 "distance (1-255) A.B.C.D/M WORD",
7585 "Administrative distance\n"
7586 "Distance value\n"
7587 "IP source prefix\n"
7588 "Access list name\n")
7589 {
7590 VTY_DECLVAR_CONTEXT(ospf, ospf);
7591 int idx_number = 1;
7592 int idx_ipv4_prefixlen = 2;
7593 int idx_word = 3;
7594
7595 if (!ospf)
7596 return CMD_SUCCESS;
7597
7598 ospf_distance_set (vty, ospf, argv[idx_number]->arg, argv[idx_ipv4_prefixlen]->arg, argv[idx_word]->arg);
7599
7600 return CMD_SUCCESS;
7601 }
7602
7603 DEFUN (no_ospf_distance_source_access_list,
7604 no_ospf_distance_source_access_list_cmd,
7605 "no distance (1-255) A.B.C.D/M WORD",
7606 NO_STR
7607 "Administrative distance\n"
7608 "Distance value\n"
7609 "IP source prefix\n"
7610 "Access list name\n")
7611 {
7612 VTY_DECLVAR_CONTEXT(ospf, ospf);
7613 int idx_number = 2;
7614 int idx_ipv4_prefixlen = 3;
7615 int idx_word = 4;
7616
7617 if (!ospf)
7618 return CMD_SUCCESS;
7619
7620 ospf_distance_unset (vty, ospf, argv[idx_number]->arg, argv[idx_ipv4_prefixlen]->arg, argv[idx_word]->arg);
7621
7622 return CMD_SUCCESS;
7623 }
7624 #endif
7625
7626 DEFUN (ip_ospf_mtu_ignore,
7627 ip_ospf_mtu_ignore_addr_cmd,
7628 "ip ospf mtu-ignore [A.B.C.D]",
7629 "IP Information\n"
7630 "OSPF interface commands\n"
7631 "Disable MTU mismatch detection on this interface\n"
7632 "Address of interface")
7633 {
7634 VTY_DECLVAR_CONTEXT(interface, ifp);
7635 int idx_ipv4 = 3;
7636 struct in_addr addr;
7637 int ret;
7638
7639 struct ospf_if_params *params;
7640 params = IF_DEF_PARAMS (ifp);
7641
7642 if (argc == 4)
7643 {
7644 ret = inet_aton(argv[idx_ipv4]->arg, &addr);
7645 if (!ret)
7646 {
7647 vty_out (vty, "Please specify interface address by A.B.C.D%s",
7648 VTY_NEWLINE);
7649 return CMD_WARNING;
7650 }
7651 params = ospf_get_if_params (ifp, addr);
7652 ospf_if_update_params (ifp, addr);
7653 }
7654 params->mtu_ignore = 1;
7655 if (params->mtu_ignore != OSPF_MTU_IGNORE_DEFAULT)
7656 SET_IF_PARAM (params, mtu_ignore);
7657 else
7658 {
7659 UNSET_IF_PARAM (params, mtu_ignore);
7660 if (params != IF_DEF_PARAMS (ifp))
7661 {
7662 ospf_free_if_params (ifp, addr);
7663 ospf_if_update_params (ifp, addr);
7664 }
7665 }
7666 return CMD_SUCCESS;
7667 }
7668
7669 DEFUN (no_ip_ospf_mtu_ignore,
7670 no_ip_ospf_mtu_ignore_addr_cmd,
7671 "no ip ospf mtu-ignore [A.B.C.D]",
7672 "IP Information\n"
7673 "OSPF interface commands\n"
7674 "Disable MTU mismatch detection on this interface\n"
7675 "Address of interface")
7676 {
7677 VTY_DECLVAR_CONTEXT(interface, ifp);
7678 int idx_ipv4 = 4;
7679 struct in_addr addr;
7680 int ret;
7681
7682 struct ospf_if_params *params;
7683 params = IF_DEF_PARAMS (ifp);
7684
7685 if (argc == 5)
7686 {
7687 ret = inet_aton(argv[idx_ipv4]->arg, &addr);
7688 if (!ret)
7689 {
7690 vty_out (vty, "Please specify interface address by A.B.C.D%s",
7691 VTY_NEWLINE);
7692 return CMD_WARNING;
7693 }
7694 params = ospf_get_if_params (ifp, addr);
7695 ospf_if_update_params (ifp, addr);
7696 }
7697 params->mtu_ignore = 0;
7698 if (params->mtu_ignore != OSPF_MTU_IGNORE_DEFAULT)
7699 SET_IF_PARAM (params, mtu_ignore);
7700 else
7701 {
7702 UNSET_IF_PARAM (params, mtu_ignore);
7703 if (params != IF_DEF_PARAMS (ifp))
7704 {
7705 ospf_free_if_params (ifp, addr);
7706 ospf_if_update_params (ifp, addr);
7707 }
7708 }
7709 return CMD_SUCCESS;
7710 }
7711
7712
7713 DEFUN (ospf_max_metric_router_lsa_admin,
7714 ospf_max_metric_router_lsa_admin_cmd,
7715 "max-metric router-lsa administrative",
7716 "OSPF maximum / infinite-distance metric\n"
7717 "Advertise own Router-LSA with infinite distance (stub router)\n"
7718 "Administratively applied, for an indefinite period\n")
7719 {
7720 VTY_DECLVAR_CONTEXT(ospf, ospf);
7721 struct listnode *ln;
7722 struct ospf_area *area;
7723
7724 for (ALL_LIST_ELEMENTS_RO (ospf->areas, ln, area))
7725 {
7726 SET_FLAG (area->stub_router_state, OSPF_AREA_ADMIN_STUB_ROUTED);
7727
7728 if (!CHECK_FLAG (area->stub_router_state, OSPF_AREA_IS_STUB_ROUTED))
7729 ospf_router_lsa_update_area (area);
7730 }
7731
7732 /* Allows for areas configured later to get the property */
7733 ospf->stub_router_admin_set = OSPF_STUB_ROUTER_ADMINISTRATIVE_SET;
7734
7735 return CMD_SUCCESS;
7736 }
7737
7738 DEFUN (no_ospf_max_metric_router_lsa_admin,
7739 no_ospf_max_metric_router_lsa_admin_cmd,
7740 "no max-metric router-lsa administrative",
7741 NO_STR
7742 "OSPF maximum / infinite-distance metric\n"
7743 "Advertise own Router-LSA with infinite distance (stub router)\n"
7744 "Administratively applied, for an indefinite period\n")
7745 {
7746 VTY_DECLVAR_CONTEXT(ospf, ospf);
7747 struct listnode *ln;
7748 struct ospf_area *area;
7749
7750 for (ALL_LIST_ELEMENTS_RO (ospf->areas, ln, area))
7751 {
7752 UNSET_FLAG (area->stub_router_state, OSPF_AREA_ADMIN_STUB_ROUTED);
7753
7754 /* Don't trample on the start-up stub timer */
7755 if (CHECK_FLAG (area->stub_router_state, OSPF_AREA_IS_STUB_ROUTED)
7756 && !area->t_stub_router)
7757 {
7758 UNSET_FLAG (area->stub_router_state, OSPF_AREA_IS_STUB_ROUTED);
7759 ospf_router_lsa_update_area (area);
7760 }
7761 }
7762 ospf->stub_router_admin_set = OSPF_STUB_ROUTER_ADMINISTRATIVE_UNSET;
7763 return CMD_SUCCESS;
7764 }
7765
7766 DEFUN (ospf_max_metric_router_lsa_startup,
7767 ospf_max_metric_router_lsa_startup_cmd,
7768 "max-metric router-lsa on-startup (5-86400)",
7769 "OSPF maximum / infinite-distance metric\n"
7770 "Advertise own Router-LSA with infinite distance (stub router)\n"
7771 "Automatically advertise stub Router-LSA on startup of OSPF\n"
7772 "Time (seconds) to advertise self as stub-router\n")
7773 {
7774 VTY_DECLVAR_CONTEXT(ospf, ospf);
7775 int idx_number = 3;
7776 unsigned int seconds;
7777
7778 if (argc != 1)
7779 {
7780 vty_out (vty, "%% Must supply stub-router period");
7781 return CMD_WARNING;
7782 }
7783
7784 VTY_GET_INTEGER ("stub-router startup period", seconds, argv[idx_number]->arg);
7785
7786 ospf->stub_router_startup_time = seconds;
7787
7788 return CMD_SUCCESS;
7789 }
7790
7791 DEFUN (no_ospf_max_metric_router_lsa_startup,
7792 no_ospf_max_metric_router_lsa_startup_cmd,
7793 "no max-metric router-lsa on-startup [(5-86400)]",
7794 NO_STR
7795 "OSPF maximum / infinite-distance metric\n"
7796 "Advertise own Router-LSA with infinite distance (stub router)\n"
7797 "Automatically advertise stub Router-LSA on startup of OSPF\n"
7798 "Time (seconds) to advertise self as stub-router\n")
7799 {
7800 VTY_DECLVAR_CONTEXT(ospf, ospf);
7801 struct listnode *ln;
7802 struct ospf_area *area;
7803
7804 ospf->stub_router_startup_time = OSPF_STUB_ROUTER_UNCONFIGURED;
7805
7806 for (ALL_LIST_ELEMENTS_RO (ospf->areas, ln, area))
7807 {
7808 SET_FLAG (area->stub_router_state, OSPF_AREA_WAS_START_STUB_ROUTED);
7809 OSPF_TIMER_OFF (area->t_stub_router);
7810
7811 /* Don't trample on admin stub routed */
7812 if (!CHECK_FLAG (area->stub_router_state, OSPF_AREA_ADMIN_STUB_ROUTED))
7813 {
7814 UNSET_FLAG (area->stub_router_state, OSPF_AREA_IS_STUB_ROUTED);
7815 ospf_router_lsa_update_area (area);
7816 }
7817 }
7818 return CMD_SUCCESS;
7819 }
7820
7821
7822 DEFUN (ospf_max_metric_router_lsa_shutdown,
7823 ospf_max_metric_router_lsa_shutdown_cmd,
7824 "max-metric router-lsa on-shutdown (5-100)",
7825 "OSPF maximum / infinite-distance metric\n"
7826 "Advertise own Router-LSA with infinite distance (stub router)\n"
7827 "Advertise stub-router prior to full shutdown of OSPF\n"
7828 "Time (seconds) to wait till full shutdown\n")
7829 {
7830 VTY_DECLVAR_CONTEXT(ospf, ospf);
7831 int idx_number = 3;
7832 unsigned int seconds;
7833
7834 if (argc != 1)
7835 {
7836 vty_out (vty, "%% Must supply stub-router shutdown period");
7837 return CMD_WARNING;
7838 }
7839
7840 VTY_GET_INTEGER ("stub-router shutdown wait period", seconds, argv[idx_number]->arg);
7841
7842 ospf->stub_router_shutdown_time = seconds;
7843
7844 return CMD_SUCCESS;
7845 }
7846
7847 DEFUN (no_ospf_max_metric_router_lsa_shutdown,
7848 no_ospf_max_metric_router_lsa_shutdown_cmd,
7849 "no max-metric router-lsa on-shutdown [(5-100)]",
7850 NO_STR
7851 "OSPF maximum / infinite-distance metric\n"
7852 "Advertise own Router-LSA with infinite distance (stub router)\n"
7853 "Advertise stub-router prior to full shutdown of OSPF\n"
7854 "Time (seconds) to wait till full shutdown\n")
7855 {
7856 VTY_DECLVAR_CONTEXT(ospf, ospf);
7857
7858 ospf->stub_router_shutdown_time = OSPF_STUB_ROUTER_UNCONFIGURED;
7859
7860 return CMD_SUCCESS;
7861 }
7862
7863 static void
7864 config_write_stub_router (struct vty *vty, struct ospf *ospf)
7865 {
7866 struct listnode *ln;
7867 struct ospf_area *area;
7868
7869 if (ospf->stub_router_startup_time != OSPF_STUB_ROUTER_UNCONFIGURED)
7870 vty_out (vty, " max-metric router-lsa on-startup %u%s",
7871 ospf->stub_router_startup_time, VTY_NEWLINE);
7872 if (ospf->stub_router_shutdown_time != OSPF_STUB_ROUTER_UNCONFIGURED)
7873 vty_out (vty, " max-metric router-lsa on-shutdown %u%s",
7874 ospf->stub_router_shutdown_time, VTY_NEWLINE);
7875 for (ALL_LIST_ELEMENTS_RO (ospf->areas, ln, area))
7876 {
7877 if (CHECK_FLAG (area->stub_router_state, OSPF_AREA_ADMIN_STUB_ROUTED))
7878 {
7879 vty_out (vty, " max-metric router-lsa administrative%s",
7880 VTY_NEWLINE);
7881 break;
7882 }
7883 }
7884 return;
7885 }
7886
7887 static void
7888 show_ip_ospf_route_network (struct vty *vty, struct route_table *rt)
7889 {
7890 struct route_node *rn;
7891 struct ospf_route *or;
7892 struct listnode *pnode, *pnnode;
7893 struct ospf_path *path;
7894
7895 vty_out (vty, "============ OSPF network routing table ============%s",
7896 VTY_NEWLINE);
7897
7898 for (rn = route_top (rt); rn; rn = route_next (rn))
7899 if ((or = rn->info) != NULL)
7900 {
7901 char buf1[19];
7902 snprintf (buf1, 19, "%s/%d",
7903 inet_ntoa (rn->p.u.prefix4), rn->p.prefixlen);
7904
7905 switch (or->path_type)
7906 {
7907 case OSPF_PATH_INTER_AREA:
7908 if (or->type == OSPF_DESTINATION_NETWORK)
7909 vty_out (vty, "N IA %-18s [%d] area: %s%s", buf1, or->cost,
7910 inet_ntoa (or->u.std.area_id), VTY_NEWLINE);
7911 else if (or->type == OSPF_DESTINATION_DISCARD)
7912 vty_out (vty, "D IA %-18s Discard entry%s", buf1, VTY_NEWLINE);
7913 break;
7914 case OSPF_PATH_INTRA_AREA:
7915 vty_out (vty, "N %-18s [%d] area: %s%s", buf1, or->cost,
7916 inet_ntoa (or->u.std.area_id), VTY_NEWLINE);
7917 break;
7918 default:
7919 break;
7920 }
7921
7922 if (or->type == OSPF_DESTINATION_NETWORK)
7923 for (ALL_LIST_ELEMENTS (or->paths, pnode, pnnode, path))
7924 {
7925 if (if_lookup_by_index(path->ifindex, VRF_DEFAULT))
7926 {
7927 if (path->nexthop.s_addr == 0)
7928 vty_out (vty, "%24s directly attached to %s%s",
7929 "", ifindex2ifname (path->ifindex, VRF_DEFAULT), VTY_NEWLINE);
7930 else
7931 vty_out (vty, "%24s via %s, %s%s", "",
7932 inet_ntoa (path->nexthop),
7933 ifindex2ifname (path->ifindex, VRF_DEFAULT), VTY_NEWLINE);
7934 }
7935 }
7936 }
7937 vty_out (vty, "%s", VTY_NEWLINE);
7938 }
7939
7940 static void
7941 show_ip_ospf_route_router (struct vty *vty, struct route_table *rtrs)
7942 {
7943 struct route_node *rn;
7944 struct ospf_route *or;
7945 struct listnode *pnode;
7946 struct listnode *node;
7947 struct ospf_path *path;
7948
7949 vty_out (vty, "============ OSPF router routing table =============%s",
7950 VTY_NEWLINE);
7951 for (rn = route_top (rtrs); rn; rn = route_next (rn))
7952 if (rn->info)
7953 {
7954 int flag = 0;
7955
7956 vty_out (vty, "R %-15s ", inet_ntoa (rn->p.u.prefix4));
7957
7958 for (ALL_LIST_ELEMENTS_RO ((struct list *)rn->info, node, or))
7959 {
7960 if (flag++)
7961 vty_out (vty, "%24s", "");
7962
7963 /* Show path. */
7964 vty_out (vty, "%s [%d] area: %s",
7965 (or->path_type == OSPF_PATH_INTER_AREA ? "IA" : " "),
7966 or->cost, inet_ntoa (or->u.std.area_id));
7967 /* Show flags. */
7968 vty_out (vty, "%s%s%s",
7969 (or->u.std.flags & ROUTER_LSA_BORDER ? ", ABR" : ""),
7970 (or->u.std.flags & ROUTER_LSA_EXTERNAL ? ", ASBR" : ""),
7971 VTY_NEWLINE);
7972
7973 for (ALL_LIST_ELEMENTS_RO (or->paths, pnode, path))
7974 {
7975 if (if_lookup_by_index(path->ifindex, VRF_DEFAULT))
7976 {
7977 if (path->nexthop.s_addr == 0)
7978 vty_out (vty, "%24s directly attached to %s%s",
7979 "", ifindex2ifname (path->ifindex, VRF_DEFAULT),
7980 VTY_NEWLINE);
7981 else
7982 vty_out (vty, "%24s via %s, %s%s", "",
7983 inet_ntoa (path->nexthop),
7984 ifindex2ifname (path->ifindex, VRF_DEFAULT),
7985 VTY_NEWLINE);
7986 }
7987 }
7988 }
7989 }
7990 vty_out (vty, "%s", VTY_NEWLINE);
7991 }
7992
7993 static void
7994 show_ip_ospf_route_external (struct vty *vty, struct route_table *rt)
7995 {
7996 struct route_node *rn;
7997 struct ospf_route *er;
7998 struct listnode *pnode, *pnnode;
7999 struct ospf_path *path;
8000
8001 vty_out (vty, "============ OSPF external routing table ===========%s",
8002 VTY_NEWLINE);
8003 for (rn = route_top (rt); rn; rn = route_next (rn))
8004 if ((er = rn->info) != NULL)
8005 {
8006 char buf1[19];
8007 snprintf (buf1, 19, "%s/%d",
8008 inet_ntoa (rn->p.u.prefix4), rn->p.prefixlen);
8009
8010 switch (er->path_type)
8011 {
8012 case OSPF_PATH_TYPE1_EXTERNAL:
8013 vty_out (vty, "N E1 %-18s [%d] tag: %"ROUTE_TAG_PRI"%s", buf1,
8014 er->cost, er->u.ext.tag, VTY_NEWLINE);
8015 break;
8016 case OSPF_PATH_TYPE2_EXTERNAL:
8017 vty_out (vty, "N E2 %-18s [%d/%d] tag: %"ROUTE_TAG_PRI"%s", buf1, er->cost,
8018 er->u.ext.type2_cost, er->u.ext.tag, VTY_NEWLINE);
8019 break;
8020 }
8021
8022 for (ALL_LIST_ELEMENTS (er->paths, pnode, pnnode, path))
8023 {
8024 if (if_lookup_by_index(path->ifindex, VRF_DEFAULT))
8025 {
8026 if (path->nexthop.s_addr == 0)
8027 vty_out (vty, "%24s directly attached to %s%s",
8028 "", ifindex2ifname (path->ifindex, VRF_DEFAULT), VTY_NEWLINE);
8029 else
8030 vty_out (vty, "%24s via %s, %s%s", "",
8031 inet_ntoa (path->nexthop),
8032 ifindex2ifname (path->ifindex, VRF_DEFAULT),
8033 VTY_NEWLINE);
8034 }
8035 }
8036 }
8037 vty_out (vty, "%s", VTY_NEWLINE);
8038 }
8039
8040 static int
8041 show_ip_ospf_border_routers_common (struct vty *vty, struct ospf *ospf)
8042 {
8043 if (ospf->instance)
8044 vty_out (vty, "%sOSPF Instance: %d%s%s", VTY_NEWLINE, ospf->instance,
8045 VTY_NEWLINE, VTY_NEWLINE);
8046
8047 if (ospf->new_table == NULL)
8048 {
8049 vty_out (vty, "No OSPF routing information exist%s", VTY_NEWLINE);
8050 return CMD_SUCCESS;
8051 }
8052
8053 /* Show Network routes.
8054 show_ip_ospf_route_network (vty, ospf->new_table); */
8055
8056 /* Show Router routes. */
8057 show_ip_ospf_route_router (vty, ospf->new_rtrs);
8058
8059 vty_out (vty, "%s", VTY_NEWLINE);
8060
8061 return CMD_SUCCESS;
8062 }
8063
8064 DEFUN (show_ip_ospf_border_routers,
8065 show_ip_ospf_border_routers_cmd,
8066 "show ip ospf border-routers",
8067 SHOW_STR
8068 IP_STR
8069 "OSPF information\n"
8070 "Show all the ABR's and ASBR's\n")
8071 {
8072 struct ospf *ospf;
8073
8074 if ((ospf = ospf_lookup ()) == NULL || !ospf->oi_running)
8075 return CMD_SUCCESS;
8076
8077 return show_ip_ospf_border_routers_common(vty, ospf);
8078 }
8079
8080 DEFUN (show_ip_ospf_instance_border_routers,
8081 show_ip_ospf_instance_border_routers_cmd,
8082 "show ip ospf (1-65535) border-routers",
8083 SHOW_STR
8084 IP_STR
8085 "OSPF information\n"
8086 "Instance ID\n"
8087 "Show all the ABR's and ASBR's\n")
8088 {
8089 int idx_number = 3;
8090 struct ospf *ospf;
8091 u_short instance = 0;
8092
8093 VTY_GET_INTEGER ("Instance", instance, argv[idx_number]->arg);
8094 if ((ospf = ospf_lookup_instance (instance)) == NULL || !ospf->oi_running)
8095 return CMD_SUCCESS;
8096
8097 return show_ip_ospf_border_routers_common(vty, ospf);
8098 }
8099
8100 static int
8101 show_ip_ospf_route_common (struct vty *vty, struct ospf *ospf)
8102 {
8103 if (ospf->instance)
8104 vty_out (vty, "%sOSPF Instance: %d%s%s", VTY_NEWLINE, ospf->instance,
8105 VTY_NEWLINE, VTY_NEWLINE);
8106
8107 if (ospf->new_table == NULL)
8108 {
8109 vty_out (vty, "No OSPF routing information exist%s", VTY_NEWLINE);
8110 return CMD_SUCCESS;
8111 }
8112
8113 /* Show Network routes. */
8114 show_ip_ospf_route_network (vty, ospf->new_table);
8115
8116 /* Show Router routes. */
8117 show_ip_ospf_route_router (vty, ospf->new_rtrs);
8118
8119 /* Show AS External routes. */
8120 show_ip_ospf_route_external (vty, ospf->old_external_route);
8121
8122 vty_out (vty, "%s", VTY_NEWLINE);
8123
8124 return CMD_SUCCESS;
8125 }
8126
8127 DEFUN (show_ip_ospf_route,
8128 show_ip_ospf_route_cmd,
8129 "show ip ospf route",
8130 SHOW_STR
8131 IP_STR
8132 "OSPF information\n"
8133 "OSPF routing table\n")
8134 {
8135 struct ospf *ospf;
8136
8137 if ((ospf = ospf_lookup ()) == NULL || !ospf->oi_running)
8138 return CMD_SUCCESS;
8139
8140 return show_ip_ospf_route_common(vty, ospf);
8141 }
8142
8143 DEFUN (show_ip_ospf_instance_route,
8144 show_ip_ospf_instance_route_cmd,
8145 "show ip ospf (1-65535) route",
8146 SHOW_STR
8147 IP_STR
8148 "OSPF information\n"
8149 "Instance ID\n"
8150 "OSPF routing table\n")
8151 {
8152 int idx_number = 3;
8153 struct ospf *ospf;
8154 u_short instance = 0;
8155
8156 VTY_GET_INTEGER ("Instance", instance, argv[idx_number]->arg);
8157 if ((ospf = ospf_lookup_instance (instance)) == NULL || !ospf->oi_running)
8158 return CMD_SUCCESS;
8159
8160 return show_ip_ospf_route_common(vty, ospf);
8161 }
8162
8163 const char *ospf_abr_type_str[] =
8164 {
8165 "unknown",
8166 "standard",
8167 "ibm",
8168 "cisco",
8169 "shortcut"
8170 };
8171
8172 const char *ospf_shortcut_mode_str[] =
8173 {
8174 "default",
8175 "enable",
8176 "disable"
8177 };
8178
8179
8180 static void
8181 area_id2str (char *buf, int length, struct ospf_area *area)
8182 {
8183 memset (buf, 0, length);
8184
8185 if (area->format == OSPF_AREA_ID_FORMAT_ADDRESS)
8186 strncpy (buf, inet_ntoa (area->area_id), length);
8187 else
8188 sprintf (buf, "%lu", (unsigned long) ntohl (area->area_id.s_addr));
8189 }
8190
8191
8192 const char *ospf_int_type_str[] =
8193 {
8194 "unknown", /* should never be used. */
8195 "point-to-point",
8196 "broadcast",
8197 "non-broadcast",
8198 "point-to-multipoint",
8199 "virtual-link", /* should never be used. */
8200 "loopback"
8201 };
8202
8203 /* Configuration write function for ospfd. */
8204 static int
8205 config_write_interface (struct vty *vty)
8206 {
8207 struct listnode *n1, *n2;
8208 struct interface *ifp;
8209 struct crypt_key *ck;
8210 int write = 0;
8211 struct route_node *rn = NULL;
8212 struct ospf_if_params *params;
8213 struct ospf *ospf = ospf_lookup();
8214
8215 for (ALL_LIST_ELEMENTS_RO (vrf_iflist (VRF_DEFAULT), n1, ifp))
8216 {
8217 if (memcmp (ifp->name, "VLINK", 5) == 0)
8218 continue;
8219
8220 if (ifp->ifindex == IFINDEX_DELETED)
8221 continue;
8222
8223 vty_out (vty, "!%s", VTY_NEWLINE);
8224 vty_out (vty, "interface %s%s", ifp->name,
8225 VTY_NEWLINE);
8226 if (ifp->desc)
8227 vty_out (vty, " description %s%s", ifp->desc,
8228 VTY_NEWLINE);
8229
8230 write++;
8231
8232 params = IF_DEF_PARAMS (ifp);
8233
8234 do {
8235 /* Interface Network print. */
8236 if (OSPF_IF_PARAM_CONFIGURED (params, type) &&
8237 params->type != OSPF_IFTYPE_LOOPBACK)
8238 {
8239 if (params->type != ospf_default_iftype(ifp))
8240 {
8241 vty_out (vty, " ip ospf network %s",
8242 ospf_int_type_str[params->type]);
8243 if (params != IF_DEF_PARAMS (ifp))
8244 vty_out (vty, " %s", inet_ntoa (rn->p.u.prefix4));
8245 vty_out (vty, "%s", VTY_NEWLINE);
8246 }
8247 }
8248
8249 /* OSPF interface authentication print */
8250 if (OSPF_IF_PARAM_CONFIGURED (params, auth_type) &&
8251 params->auth_type != OSPF_AUTH_NOTSET)
8252 {
8253 const char *auth_str;
8254
8255 /* Translation tables are not that much help here due to syntax
8256 of the simple option */
8257 switch (params->auth_type)
8258 {
8259
8260 case OSPF_AUTH_NULL:
8261 auth_str = " null";
8262 break;
8263
8264 case OSPF_AUTH_SIMPLE:
8265 auth_str = "";
8266 break;
8267
8268 case OSPF_AUTH_CRYPTOGRAPHIC:
8269 auth_str = " message-digest";
8270 break;
8271
8272 default:
8273 auth_str = "";
8274 break;
8275 }
8276
8277 vty_out (vty, " ip ospf authentication%s", auth_str);
8278 if (params != IF_DEF_PARAMS (ifp))
8279 vty_out (vty, " %s", inet_ntoa (rn->p.u.prefix4));
8280 vty_out (vty, "%s", VTY_NEWLINE);
8281 }
8282
8283 /* Simple Authentication Password print. */
8284 if (OSPF_IF_PARAM_CONFIGURED (params, auth_simple) &&
8285 params->auth_simple[0] != '\0')
8286 {
8287 vty_out (vty, " ip ospf authentication-key %s",
8288 params->auth_simple);
8289 if (params != IF_DEF_PARAMS (ifp))
8290 vty_out (vty, " %s", inet_ntoa (rn->p.u.prefix4));
8291 vty_out (vty, "%s", VTY_NEWLINE);
8292 }
8293
8294 /* Cryptographic Authentication Key print. */
8295 for (ALL_LIST_ELEMENTS_RO (params->auth_crypt, n2, ck))
8296 {
8297 vty_out (vty, " ip ospf message-digest-key %d md5 %s",
8298 ck->key_id, ck->auth_key);
8299 if (params != IF_DEF_PARAMS (ifp))
8300 vty_out (vty, " %s", inet_ntoa (rn->p.u.prefix4));
8301 vty_out (vty, "%s", VTY_NEWLINE);
8302 }
8303
8304 /* Interface Output Cost print. */
8305 if (OSPF_IF_PARAM_CONFIGURED (params, output_cost_cmd))
8306 {
8307 vty_out (vty, " ip ospf cost %u", params->output_cost_cmd);
8308 if (params != IF_DEF_PARAMS (ifp))
8309 vty_out (vty, " %s", inet_ntoa (rn->p.u.prefix4));
8310 vty_out (vty, "%s", VTY_NEWLINE);
8311 }
8312
8313 /* Hello Interval print. */
8314 if (OSPF_IF_PARAM_CONFIGURED (params, v_hello) &&
8315 params->v_hello != OSPF_HELLO_INTERVAL_DEFAULT)
8316 {
8317 vty_out (vty, " ip ospf hello-interval %u", params->v_hello);
8318 if (params != IF_DEF_PARAMS (ifp))
8319 vty_out (vty, " %s", inet_ntoa (rn->p.u.prefix4));
8320 vty_out (vty, "%s", VTY_NEWLINE);
8321 }
8322
8323
8324 /* Router Dead Interval print. */
8325 if (OSPF_IF_PARAM_CONFIGURED (params, v_wait) &&
8326 params->v_wait != OSPF_ROUTER_DEAD_INTERVAL_DEFAULT)
8327 {
8328 vty_out (vty, " ip ospf dead-interval ");
8329
8330 /* fast hello ? */
8331 if (OSPF_IF_PARAM_CONFIGURED (params, fast_hello))
8332 vty_out (vty, "minimal hello-multiplier %d",
8333 params->fast_hello);
8334 else
8335 vty_out (vty, "%u", params->v_wait);
8336
8337 if (params != IF_DEF_PARAMS (ifp))
8338 vty_out (vty, " %s", inet_ntoa (rn->p.u.prefix4));
8339 vty_out (vty, "%s", VTY_NEWLINE);
8340 }
8341
8342 /* Router Priority print. */
8343 if (OSPF_IF_PARAM_CONFIGURED (params, priority) &&
8344 params->priority != OSPF_ROUTER_PRIORITY_DEFAULT)
8345 {
8346 vty_out (vty, " ip ospf priority %u", params->priority);
8347 if (params != IF_DEF_PARAMS (ifp))
8348 vty_out (vty, " %s", inet_ntoa (rn->p.u.prefix4));
8349 vty_out (vty, "%s", VTY_NEWLINE);
8350 }
8351
8352 /* Retransmit Interval print. */
8353 if (OSPF_IF_PARAM_CONFIGURED (params, retransmit_interval) &&
8354 params->retransmit_interval != OSPF_RETRANSMIT_INTERVAL_DEFAULT)
8355 {
8356 vty_out (vty, " ip ospf retransmit-interval %u",
8357 params->retransmit_interval);
8358 if (params != IF_DEF_PARAMS (ifp))
8359 vty_out (vty, " %s", inet_ntoa (rn->p.u.prefix4));
8360 vty_out (vty, "%s", VTY_NEWLINE);
8361 }
8362
8363 /* Transmit Delay print. */
8364 if (OSPF_IF_PARAM_CONFIGURED (params, transmit_delay) &&
8365 params->transmit_delay != OSPF_TRANSMIT_DELAY_DEFAULT)
8366 {
8367 vty_out (vty, " ip ospf transmit-delay %u", params->transmit_delay);
8368 if (params != IF_DEF_PARAMS (ifp))
8369 vty_out (vty, " %s", inet_ntoa (rn->p.u.prefix4));
8370 vty_out (vty, "%s", VTY_NEWLINE);
8371 }
8372
8373 /* Area print. */
8374 if (OSPF_IF_PARAM_CONFIGURED (params, if_area))
8375 {
8376 if (ospf->instance)
8377 vty_out (vty, " ip ospf %d area %s%s", ospf->instance,
8378 inet_ntoa (params->if_area), VTY_NEWLINE);
8379 else
8380 vty_out (vty, " ip ospf area %s%s",
8381 inet_ntoa (params->if_area), VTY_NEWLINE);
8382
8383 }
8384
8385 /* bfd print. */
8386 ospf_bfd_write_config(vty, params);
8387
8388 /* MTU ignore print. */
8389 if (OSPF_IF_PARAM_CONFIGURED (params, mtu_ignore) &&
8390 params->mtu_ignore != OSPF_MTU_IGNORE_DEFAULT)
8391 {
8392 if (params->mtu_ignore == 0)
8393 vty_out (vty, " no ip ospf mtu-ignore");
8394 else
8395 vty_out (vty, " ip ospf mtu-ignore");
8396 if (params != IF_DEF_PARAMS (ifp))
8397 vty_out (vty, " %s", inet_ntoa (rn->p.u.prefix4));
8398 vty_out (vty, "%s", VTY_NEWLINE);
8399 }
8400
8401
8402 while (1)
8403 {
8404 if (rn == NULL)
8405 rn = route_top (IF_OIFS_PARAMS (ifp));
8406 else
8407 rn = route_next (rn);
8408
8409 if (rn == NULL)
8410 break;
8411 params = rn->info;
8412 if (params != NULL)
8413 break;
8414 }
8415 } while (rn);
8416
8417 ospf_opaque_config_write_if (vty, ifp);
8418 }
8419
8420 return write;
8421 }
8422
8423 static int
8424 config_write_network_area (struct vty *vty, struct ospf *ospf)
8425 {
8426 struct route_node *rn;
8427 u_char buf[INET_ADDRSTRLEN];
8428
8429 /* `network area' print. */
8430 for (rn = route_top (ospf->networks); rn; rn = route_next (rn))
8431 if (rn->info)
8432 {
8433 struct ospf_network *n = rn->info;
8434
8435 memset (buf, 0, INET_ADDRSTRLEN);
8436
8437 /* Create Area ID string by specified Area ID format. */
8438 if (n->format == OSPF_AREA_ID_FORMAT_ADDRESS)
8439 strncpy ((char *) buf, inet_ntoa (n->area_id), INET_ADDRSTRLEN);
8440 else
8441 sprintf ((char *) buf, "%lu",
8442 (unsigned long int) ntohl (n->area_id.s_addr));
8443
8444 /* Network print. */
8445 vty_out (vty, " network %s/%d area %s%s",
8446 inet_ntoa (rn->p.u.prefix4), rn->p.prefixlen,
8447 buf, VTY_NEWLINE);
8448 }
8449
8450 return 0;
8451 }
8452
8453 static int
8454 config_write_ospf_area (struct vty *vty, struct ospf *ospf)
8455 {
8456 struct listnode *node;
8457 struct ospf_area *area;
8458 u_char buf[INET_ADDRSTRLEN];
8459
8460 /* Area configuration print. */
8461 for (ALL_LIST_ELEMENTS_RO (ospf->areas, node, area))
8462 {
8463 struct route_node *rn1;
8464
8465 area_id2str ((char *) buf, INET_ADDRSTRLEN, area);
8466
8467 if (area->auth_type != OSPF_AUTH_NULL)
8468 {
8469 if (area->auth_type == OSPF_AUTH_SIMPLE)
8470 vty_out (vty, " area %s authentication%s", buf, VTY_NEWLINE);
8471 else
8472 vty_out (vty, " area %s authentication message-digest%s",
8473 buf, VTY_NEWLINE);
8474 }
8475
8476 if (area->shortcut_configured != OSPF_SHORTCUT_DEFAULT)
8477 vty_out (vty, " area %s shortcut %s%s", buf,
8478 ospf_shortcut_mode_str[area->shortcut_configured],
8479 VTY_NEWLINE);
8480
8481 if ((area->external_routing == OSPF_AREA_STUB)
8482 || (area->external_routing == OSPF_AREA_NSSA)
8483 )
8484 {
8485 if (area->external_routing == OSPF_AREA_STUB)
8486 vty_out (vty, " area %s stub", buf);
8487 else if (area->external_routing == OSPF_AREA_NSSA)
8488 {
8489 vty_out (vty, " area %s nssa", buf);
8490 switch (area->NSSATranslatorRole)
8491 {
8492 case OSPF_NSSA_ROLE_NEVER:
8493 vty_out (vty, " translate-never");
8494 break;
8495 case OSPF_NSSA_ROLE_ALWAYS:
8496 vty_out (vty, " translate-always");
8497 break;
8498 case OSPF_NSSA_ROLE_CANDIDATE:
8499 default:
8500 vty_out (vty, " translate-candidate");
8501 }
8502 }
8503
8504 if (area->no_summary)
8505 vty_out (vty, " no-summary");
8506
8507 vty_out (vty, "%s", VTY_NEWLINE);
8508
8509 if (area->default_cost != 1)
8510 vty_out (vty, " area %s default-cost %d%s", buf,
8511 area->default_cost, VTY_NEWLINE);
8512 }
8513
8514 for (rn1 = route_top (area->ranges); rn1; rn1 = route_next (rn1))
8515 if (rn1->info)
8516 {
8517 struct ospf_area_range *range = rn1->info;
8518
8519 vty_out (vty, " area %s range %s/%d", buf,
8520 inet_ntoa (rn1->p.u.prefix4), rn1->p.prefixlen);
8521
8522 if (range->cost_config != OSPF_AREA_RANGE_COST_UNSPEC)
8523 vty_out (vty, " cost %d", range->cost_config);
8524
8525 if (!CHECK_FLAG (range->flags, OSPF_AREA_RANGE_ADVERTISE))
8526 vty_out (vty, " not-advertise");
8527
8528 if (CHECK_FLAG (range->flags, OSPF_AREA_RANGE_SUBSTITUTE))
8529 vty_out (vty, " substitute %s/%d",
8530 inet_ntoa (range->subst_addr), range->subst_masklen);
8531
8532 vty_out (vty, "%s", VTY_NEWLINE);
8533 }
8534
8535 if (EXPORT_NAME (area))
8536 vty_out (vty, " area %s export-list %s%s", buf,
8537 EXPORT_NAME (area), VTY_NEWLINE);
8538
8539 if (IMPORT_NAME (area))
8540 vty_out (vty, " area %s import-list %s%s", buf,
8541 IMPORT_NAME (area), VTY_NEWLINE);
8542
8543 if (PREFIX_NAME_IN (area))
8544 vty_out (vty, " area %s filter-list prefix %s in%s", buf,
8545 PREFIX_NAME_IN (area), VTY_NEWLINE);
8546
8547 if (PREFIX_NAME_OUT (area))
8548 vty_out (vty, " area %s filter-list prefix %s out%s", buf,
8549 PREFIX_NAME_OUT (area), VTY_NEWLINE);
8550 }
8551
8552 return 0;
8553 }
8554
8555 static int
8556 config_write_ospf_nbr_nbma (struct vty *vty, struct ospf *ospf)
8557 {
8558 struct ospf_nbr_nbma *nbr_nbma;
8559 struct route_node *rn;
8560
8561 /* Static Neighbor configuration print. */
8562 for (rn = route_top (ospf->nbr_nbma); rn; rn = route_next (rn))
8563 if ((nbr_nbma = rn->info))
8564 {
8565 vty_out (vty, " neighbor %s", inet_ntoa (nbr_nbma->addr));
8566
8567 if (nbr_nbma->priority != OSPF_NEIGHBOR_PRIORITY_DEFAULT)
8568 vty_out (vty, " priority %d", nbr_nbma->priority);
8569
8570 if (nbr_nbma->v_poll != OSPF_POLL_INTERVAL_DEFAULT)
8571 vty_out (vty, " poll-interval %d", nbr_nbma->v_poll);
8572
8573 vty_out (vty, "%s", VTY_NEWLINE);
8574 }
8575
8576 return 0;
8577 }
8578
8579 static int
8580 config_write_virtual_link (struct vty *vty, struct ospf *ospf)
8581 {
8582 struct listnode *node;
8583 struct ospf_vl_data *vl_data;
8584 u_char buf[INET_ADDRSTRLEN];
8585
8586 /* Virtual-Link print */
8587 for (ALL_LIST_ELEMENTS_RO (ospf->vlinks, node, vl_data))
8588 {
8589 struct listnode *n2;
8590 struct crypt_key *ck;
8591 struct ospf_interface *oi;
8592
8593 if (vl_data != NULL)
8594 {
8595 memset (buf, 0, INET_ADDRSTRLEN);
8596
8597 if (vl_data->format == OSPF_AREA_ID_FORMAT_ADDRESS)
8598 strncpy ((char *) buf, inet_ntoa (vl_data->vl_area_id), INET_ADDRSTRLEN);
8599 else
8600 sprintf ((char *) buf, "%lu",
8601 (unsigned long int) ntohl (vl_data->vl_area_id.s_addr));
8602 oi = vl_data->vl_oi;
8603
8604 /* timers */
8605 if (OSPF_IF_PARAM (oi, v_hello) != OSPF_HELLO_INTERVAL_DEFAULT ||
8606 OSPF_IF_PARAM (oi, v_wait) != OSPF_ROUTER_DEAD_INTERVAL_DEFAULT ||
8607 OSPF_IF_PARAM (oi, retransmit_interval) != OSPF_RETRANSMIT_INTERVAL_DEFAULT ||
8608 OSPF_IF_PARAM (oi, transmit_delay) != OSPF_TRANSMIT_DELAY_DEFAULT)
8609 vty_out (vty, " area %s virtual-link %s hello-interval %d retransmit-interval %d transmit-delay %d dead-interval %d%s",
8610 buf,
8611 inet_ntoa (vl_data->vl_peer),
8612 OSPF_IF_PARAM (oi, v_hello),
8613 OSPF_IF_PARAM (oi, retransmit_interval),
8614 OSPF_IF_PARAM (oi, transmit_delay),
8615 OSPF_IF_PARAM (oi, v_wait),
8616 VTY_NEWLINE);
8617 else
8618 vty_out (vty, " area %s virtual-link %s%s", buf,
8619 inet_ntoa (vl_data->vl_peer), VTY_NEWLINE);
8620 /* Auth key */
8621 if (IF_DEF_PARAMS (vl_data->vl_oi->ifp)->auth_simple[0] != '\0')
8622 vty_out (vty, " area %s virtual-link %s authentication-key %s%s",
8623 buf,
8624 inet_ntoa (vl_data->vl_peer),
8625 IF_DEF_PARAMS (vl_data->vl_oi->ifp)->auth_simple,
8626 VTY_NEWLINE);
8627 /* md5 keys */
8628 for (ALL_LIST_ELEMENTS_RO (IF_DEF_PARAMS (vl_data->vl_oi->ifp)->auth_crypt,
8629 n2, ck))
8630 vty_out (vty, " area %s virtual-link %s"
8631 " message-digest-key %d md5 %s%s",
8632 buf,
8633 inet_ntoa (vl_data->vl_peer),
8634 ck->key_id, ck->auth_key, VTY_NEWLINE);
8635
8636 }
8637 }
8638
8639 return 0;
8640 }
8641
8642
8643 static int
8644 config_write_ospf_redistribute (struct vty *vty, struct ospf *ospf)
8645 {
8646 int type;
8647
8648 /* redistribute print. */
8649 for (type = 0; type < ZEBRA_ROUTE_MAX; type++)
8650 {
8651 struct list *red_list;
8652 struct listnode *node;
8653 struct ospf_redist *red;
8654
8655 red_list = ospf->redist[type];
8656 if (!red_list)
8657 continue;
8658
8659 for (ALL_LIST_ELEMENTS_RO(red_list, node, red))
8660 {
8661 vty_out (vty, " redistribute %s", zebra_route_string(type));
8662 if (red->instance)
8663 vty_out (vty, " %d", red->instance);
8664
8665 if (red->dmetric.value >= 0)
8666 vty_out (vty, " metric %d", red->dmetric.value);
8667
8668 if (red->dmetric.type == EXTERNAL_METRIC_TYPE_1)
8669 vty_out (vty, " metric-type 1");
8670
8671 if (ROUTEMAP_NAME (red))
8672 vty_out (vty, " route-map %s", ROUTEMAP_NAME (red));
8673
8674 vty_out (vty, "%s", VTY_NEWLINE);
8675 }
8676 }
8677
8678 return 0;
8679 }
8680
8681 static int
8682 config_write_ospf_default_metric (struct vty *vty, struct ospf *ospf)
8683 {
8684 if (ospf->default_metric != -1)
8685 vty_out (vty, " default-metric %d%s", ospf->default_metric,
8686 VTY_NEWLINE);
8687 return 0;
8688 }
8689
8690 static int
8691 config_write_ospf_distribute (struct vty *vty, struct ospf *ospf)
8692 {
8693 int type;
8694 struct ospf_redist *red;
8695
8696 if (ospf)
8697 {
8698 /* distribute-list print. */
8699 for (type = 0; type < ZEBRA_ROUTE_MAX; type++)
8700 if (DISTRIBUTE_NAME (ospf, type))
8701 vty_out (vty, " distribute-list %s out %s%s",
8702 DISTRIBUTE_NAME (ospf, type),
8703 zebra_route_string(type), VTY_NEWLINE);
8704
8705 /* default-information print. */
8706 if (ospf->default_originate != DEFAULT_ORIGINATE_NONE)
8707 {
8708 vty_out (vty, " default-information originate");
8709 if (ospf->default_originate == DEFAULT_ORIGINATE_ALWAYS)
8710 vty_out (vty, " always");
8711
8712 red = ospf_redist_lookup(ospf, DEFAULT_ROUTE, 0);
8713 if (red)
8714 {
8715 if (red->dmetric.value >= 0)
8716 vty_out (vty, " metric %d",
8717 red->dmetric.value);
8718 if (red->dmetric.type == EXTERNAL_METRIC_TYPE_1)
8719 vty_out (vty, " metric-type 1");
8720
8721 if (ROUTEMAP_NAME (red))
8722 vty_out (vty, " route-map %s",
8723 ROUTEMAP_NAME (red));
8724 }
8725
8726 vty_out (vty, "%s", VTY_NEWLINE);
8727 }
8728
8729 }
8730
8731 return 0;
8732 }
8733
8734 static int
8735 config_write_ospf_distance (struct vty *vty, struct ospf *ospf)
8736 {
8737 struct route_node *rn;
8738 struct ospf_distance *odistance;
8739
8740 if (ospf->distance_all)
8741 vty_out (vty, " distance %d%s", ospf->distance_all, VTY_NEWLINE);
8742
8743 if (ospf->distance_intra
8744 || ospf->distance_inter
8745 || ospf->distance_external)
8746 {
8747 vty_out (vty, " distance ospf");
8748
8749 if (ospf->distance_intra)
8750 vty_out (vty, " intra-area %d", ospf->distance_intra);
8751 if (ospf->distance_inter)
8752 vty_out (vty, " inter-area %d", ospf->distance_inter);
8753 if (ospf->distance_external)
8754 vty_out (vty, " external %d", ospf->distance_external);
8755
8756 vty_out (vty, "%s", VTY_NEWLINE);
8757 }
8758
8759 for (rn = route_top (ospf->distance_table); rn; rn = route_next (rn))
8760 if ((odistance = rn->info) != NULL)
8761 {
8762 vty_out (vty, " distance %d %s/%d %s%s", odistance->distance,
8763 inet_ntoa (rn->p.u.prefix4), rn->p.prefixlen,
8764 odistance->access_list ? odistance->access_list : "",
8765 VTY_NEWLINE);
8766 }
8767 return 0;
8768 }
8769
8770 /* OSPF configuration write function. */
8771 static int
8772 ospf_config_write (struct vty *vty)
8773 {
8774 struct ospf *ospf;
8775 struct interface *ifp;
8776 struct ospf_interface *oi;
8777 struct listnode *node;
8778 int write = 0;
8779
8780 ospf = ospf_lookup ();
8781 if (ospf != NULL && ospf->oi_running)
8782 {
8783 /* `router ospf' print. */
8784 if (ospf->instance)
8785 vty_out (vty, "router ospf %d%s", ospf->instance, VTY_NEWLINE);
8786 else
8787 vty_out (vty, "router ospf%s", VTY_NEWLINE);
8788
8789 write++;
8790
8791 if (!ospf->networks)
8792 return write;
8793
8794 /* Router ID print. */
8795 if (ospf->router_id_static.s_addr != 0)
8796 vty_out (vty, " ospf router-id %s%s",
8797 inet_ntoa (ospf->router_id_static), VTY_NEWLINE);
8798
8799 /* ABR type print. */
8800 if (ospf->abr_type != OSPF_ABR_DEFAULT)
8801 vty_out (vty, " ospf abr-type %s%s",
8802 ospf_abr_type_str[ospf->abr_type], VTY_NEWLINE);
8803
8804 /* log-adjacency-changes flag print. */
8805 if (CHECK_FLAG(ospf->config, OSPF_LOG_ADJACENCY_CHANGES))
8806 {
8807 if (CHECK_FLAG(ospf->config, OSPF_LOG_ADJACENCY_DETAIL))
8808 vty_out(vty, " log-adjacency-changes detail%s", VTY_NEWLINE);
8809 else if (!DFLT_OSPF_LOG_ADJACENCY_CHANGES)
8810 vty_out(vty, " log-adjacency-changes%s", VTY_NEWLINE);
8811 }
8812 else if (DFLT_OSPF_LOG_ADJACENCY_CHANGES)
8813 {
8814 vty_out(vty, " no log-adjacency-changes%s", VTY_NEWLINE);
8815 }
8816
8817 /* RFC1583 compatibility flag print -- Compatible with CISCO 12.1. */
8818 if (CHECK_FLAG (ospf->config, OSPF_RFC1583_COMPATIBLE))
8819 vty_out (vty, " compatible rfc1583%s", VTY_NEWLINE);
8820
8821 /* auto-cost reference-bandwidth configuration. */
8822 if (ospf->ref_bandwidth != OSPF_DEFAULT_REF_BANDWIDTH)
8823 {
8824 vty_out (vty, "! Important: ensure reference bandwidth "
8825 "is consistent across all routers%s", VTY_NEWLINE);
8826 vty_out (vty, " auto-cost reference-bandwidth %d%s",
8827 ospf->ref_bandwidth, VTY_NEWLINE);
8828 }
8829
8830 /* SPF timers print. */
8831 if (ospf->spf_delay != OSPF_SPF_DELAY_DEFAULT ||
8832 ospf->spf_holdtime != OSPF_SPF_HOLDTIME_DEFAULT ||
8833 ospf->spf_max_holdtime != OSPF_SPF_MAX_HOLDTIME_DEFAULT)
8834 vty_out (vty, " timers throttle spf %d %d %d%s",
8835 ospf->spf_delay, ospf->spf_holdtime,
8836 ospf->spf_max_holdtime, VTY_NEWLINE);
8837
8838 /* LSA timers print. */
8839 if (ospf->min_ls_interval != OSPF_MIN_LS_INTERVAL)
8840 vty_out (vty, " timers throttle lsa all %d%s",
8841 ospf->min_ls_interval, VTY_NEWLINE);
8842 if (ospf->min_ls_arrival != OSPF_MIN_LS_ARRIVAL)
8843 vty_out (vty, " timers lsa min-arrival %d%s",
8844 ospf->min_ls_arrival, VTY_NEWLINE);
8845
8846 /* Write multiplier print. */
8847 if (ospf->write_oi_count != OSPF_WRITE_INTERFACE_COUNT_DEFAULT)
8848 vty_out (vty, " ospf write-multiplier %d%s",
8849 ospf->write_oi_count, VTY_NEWLINE);
8850
8851 /* Max-metric router-lsa print */
8852 config_write_stub_router (vty, ospf);
8853
8854 /* SPF refresh parameters print. */
8855 if (ospf->lsa_refresh_interval != OSPF_LSA_REFRESH_INTERVAL_DEFAULT)
8856 vty_out (vty, " refresh timer %d%s",
8857 ospf->lsa_refresh_interval, VTY_NEWLINE);
8858
8859 /* Redistribute information print. */
8860 config_write_ospf_redistribute (vty, ospf);
8861
8862 /* passive-interface print. */
8863 if (ospf->passive_interface_default == OSPF_IF_PASSIVE)
8864 vty_out (vty, " passive-interface default%s", VTY_NEWLINE);
8865
8866 for (ALL_LIST_ELEMENTS_RO (om->iflist, node, ifp))
8867 if (OSPF_IF_PARAM_CONFIGURED (IF_DEF_PARAMS (ifp), passive_interface)
8868 && IF_DEF_PARAMS (ifp)->passive_interface !=
8869 ospf->passive_interface_default)
8870 {
8871 vty_out (vty, " %spassive-interface %s%s",
8872 IF_DEF_PARAMS (ifp)->passive_interface ? "" : "no ",
8873 ifp->name, VTY_NEWLINE);
8874 }
8875 for (ALL_LIST_ELEMENTS_RO (ospf->oiflist, node, oi))
8876 {
8877 if (!OSPF_IF_PARAM_CONFIGURED (oi->params, passive_interface))
8878 continue;
8879 if (OSPF_IF_PARAM_CONFIGURED (IF_DEF_PARAMS (oi->ifp),
8880 passive_interface))
8881 {
8882 if (oi->params->passive_interface == IF_DEF_PARAMS (oi->ifp)->passive_interface)
8883 continue;
8884 }
8885 else if (oi->params->passive_interface == ospf->passive_interface_default)
8886 continue;
8887
8888 vty_out (vty, " %spassive-interface %s %s%s",
8889 oi->params->passive_interface ? "" : "no ",
8890 oi->ifp->name,
8891 inet_ntoa (oi->address->u.prefix4), VTY_NEWLINE);
8892 }
8893
8894 /* Network area print. */
8895 config_write_network_area (vty, ospf);
8896
8897 /* Area config print. */
8898 config_write_ospf_area (vty, ospf);
8899
8900 /* static neighbor print. */
8901 config_write_ospf_nbr_nbma (vty, ospf);
8902
8903 /* Virtual-Link print. */
8904 config_write_virtual_link (vty, ospf);
8905
8906 /* Default metric configuration. */
8907 config_write_ospf_default_metric (vty, ospf);
8908
8909 /* Distribute-list and default-information print. */
8910 config_write_ospf_distribute (vty, ospf);
8911
8912 /* Distance configuration. */
8913 config_write_ospf_distance (vty, ospf);
8914
8915 ospf_opaque_config_write_router (vty, ospf);
8916 }
8917
8918 return write;
8919 }
8920
8921 void
8922 ospf_vty_show_init (void)
8923 {
8924 /* "show ip ospf" commands. */
8925 install_element (VIEW_NODE, &show_ip_ospf_cmd);
8926
8927 install_element (VIEW_NODE, &show_ip_ospf_instance_cmd);
8928
8929 /* "show ip ospf database" commands. */
8930 install_element (VIEW_NODE, &show_ip_ospf_database_type_adv_router_cmd);
8931 install_element (VIEW_NODE, &show_ip_ospf_database_max_cmd);
8932
8933 install_element (VIEW_NODE, &show_ip_ospf_instance_database_type_adv_router_cmd);
8934 install_element (VIEW_NODE, &show_ip_ospf_instance_database_cmd);
8935 install_element (VIEW_NODE, &show_ip_ospf_instance_database_max_cmd);
8936
8937 /* "show ip ospf interface" commands. */
8938 install_element (VIEW_NODE, &show_ip_ospf_interface_cmd);
8939
8940 install_element (VIEW_NODE, &show_ip_ospf_instance_interface_cmd);
8941
8942 /* "show ip ospf neighbor" commands. */
8943 install_element (VIEW_NODE, &show_ip_ospf_neighbor_int_detail_cmd);
8944 install_element (VIEW_NODE, &show_ip_ospf_neighbor_int_cmd);
8945 install_element (VIEW_NODE, &show_ip_ospf_neighbor_id_cmd);
8946 install_element (VIEW_NODE, &show_ip_ospf_neighbor_detail_all_cmd);
8947 install_element (VIEW_NODE, &show_ip_ospf_neighbor_detail_cmd);
8948 install_element (VIEW_NODE, &show_ip_ospf_neighbor_cmd);
8949 install_element (VIEW_NODE, &show_ip_ospf_neighbor_all_cmd);
8950
8951 install_element (VIEW_NODE, &show_ip_ospf_instance_neighbor_int_detail_cmd);
8952 install_element (VIEW_NODE, &show_ip_ospf_instance_neighbor_int_cmd);
8953 install_element (VIEW_NODE, &show_ip_ospf_instance_neighbor_id_cmd);
8954 install_element (VIEW_NODE, &show_ip_ospf_instance_neighbor_detail_all_cmd);
8955 install_element (VIEW_NODE, &show_ip_ospf_instance_neighbor_detail_cmd);
8956 install_element (VIEW_NODE, &show_ip_ospf_instance_neighbor_cmd);
8957 install_element (VIEW_NODE, &show_ip_ospf_instance_neighbor_all_cmd);
8958
8959 /* "show ip ospf route" commands. */
8960 install_element (VIEW_NODE, &show_ip_ospf_route_cmd);
8961 install_element (VIEW_NODE, &show_ip_ospf_border_routers_cmd);
8962
8963 install_element (VIEW_NODE, &show_ip_ospf_instance_route_cmd);
8964 install_element (VIEW_NODE, &show_ip_ospf_instance_border_routers_cmd);
8965 }
8966
8967
8968 /* ospfd's interface node. */
8969 static struct cmd_node interface_node =
8970 {
8971 INTERFACE_NODE,
8972 "%s(config-if)# ",
8973 1
8974 };
8975
8976 /* Initialization of OSPF interface. */
8977 static void
8978 ospf_vty_if_init (void)
8979 {
8980 /* Install interface node. */
8981 install_node (&interface_node, config_write_interface);
8982 if_cmd_init ();
8983
8984 /* "ip ospf authentication" commands. */
8985 install_element (INTERFACE_NODE, &ip_ospf_authentication_args_addr_cmd);
8986 install_element (INTERFACE_NODE, &ip_ospf_authentication_addr_cmd);
8987 install_element (INTERFACE_NODE, &no_ip_ospf_authentication_args_addr_cmd);
8988 install_element (INTERFACE_NODE, &no_ip_ospf_authentication_addr_cmd);
8989 install_element (INTERFACE_NODE, &ip_ospf_authentication_key_addr_cmd);
8990 install_element (INTERFACE_NODE, &no_ip_ospf_authentication_key_authkey_addr_cmd);
8991 install_element (INTERFACE_NODE, &no_ospf_authentication_key_authkey_addr_cmd);
8992
8993 /* "ip ospf message-digest-key" commands. */
8994 install_element (INTERFACE_NODE, &ip_ospf_message_digest_key_cmd);
8995 install_element (INTERFACE_NODE, &no_ip_ospf_message_digest_key_cmd);
8996
8997 /* "ip ospf cost" commands. */
8998 install_element (INTERFACE_NODE, &ip_ospf_cost_cmd);
8999 install_element (INTERFACE_NODE, &no_ip_ospf_cost_cmd);
9000
9001 /* "ip ospf mtu-ignore" commands. */
9002 install_element (INTERFACE_NODE, &ip_ospf_mtu_ignore_addr_cmd);
9003 install_element (INTERFACE_NODE, &no_ip_ospf_mtu_ignore_addr_cmd);
9004
9005 /* "ip ospf dead-interval" commands. */
9006 install_element (INTERFACE_NODE, &ip_ospf_dead_interval_cmd);
9007 install_element (INTERFACE_NODE, &ip_ospf_dead_interval_minimal_addr_cmd);
9008 install_element (INTERFACE_NODE, &no_ip_ospf_dead_interval_cmd);
9009
9010 /* "ip ospf hello-interval" commands. */
9011 install_element (INTERFACE_NODE, &ip_ospf_hello_interval_cmd);
9012 install_element (INTERFACE_NODE, &no_ip_ospf_hello_interval_cmd);
9013
9014 /* "ip ospf network" commands. */
9015 install_element (INTERFACE_NODE, &ip_ospf_network_cmd);
9016 install_element (INTERFACE_NODE, &no_ip_ospf_network_cmd);
9017
9018 /* "ip ospf priority" commands. */
9019 install_element (INTERFACE_NODE, &ip_ospf_priority_cmd);
9020 install_element (INTERFACE_NODE, &no_ip_ospf_priority_cmd);
9021
9022 /* "ip ospf retransmit-interval" commands. */
9023 install_element (INTERFACE_NODE, &ip_ospf_retransmit_interval_addr_cmd);
9024 install_element (INTERFACE_NODE, &no_ip_ospf_retransmit_interval_addr_cmd);
9025
9026 /* "ip ospf transmit-delay" commands. */
9027 install_element (INTERFACE_NODE, &ip_ospf_transmit_delay_addr_cmd);
9028 install_element (INTERFACE_NODE, &no_ip_ospf_transmit_delay_addr_cmd);
9029
9030 /* "ip ospf area" commands. */
9031 install_element (INTERFACE_NODE, &ip_ospf_area_cmd);
9032 install_element (INTERFACE_NODE, &no_ip_ospf_area_cmd);
9033
9034 /* These commands are compatibitliy for previous version. */
9035 install_element (INTERFACE_NODE, &ospf_authentication_key_cmd);
9036 install_element (INTERFACE_NODE, &ospf_message_digest_key_cmd);
9037 install_element (INTERFACE_NODE, &no_ospf_message_digest_key_cmd);
9038 install_element (INTERFACE_NODE, &ospf_dead_interval_cmd);
9039 install_element (INTERFACE_NODE, &no_ospf_dead_interval_cmd);
9040 install_element (INTERFACE_NODE, &ospf_hello_interval_cmd);
9041 install_element (INTERFACE_NODE, &no_ospf_hello_interval_cmd);
9042 install_element (INTERFACE_NODE, &ospf_cost_cmd);
9043 install_element (INTERFACE_NODE, &no_ospf_cost_cmd);
9044 install_element (INTERFACE_NODE, &ospf_network_cmd);
9045 install_element (INTERFACE_NODE, &no_ospf_network_cmd);
9046 install_element (INTERFACE_NODE, &ospf_priority_cmd);
9047 install_element (INTERFACE_NODE, &no_ospf_priority_cmd);
9048 install_element (INTERFACE_NODE, &ospf_retransmit_interval_cmd);
9049 install_element (INTERFACE_NODE, &no_ospf_retransmit_interval_cmd);
9050 install_element (INTERFACE_NODE, &ospf_transmit_delay_cmd);
9051 install_element (INTERFACE_NODE, &no_ospf_transmit_delay_cmd);
9052 }
9053
9054 static void
9055 ospf_vty_zebra_init (void)
9056 {
9057 install_element (OSPF_NODE, &ospf_redistribute_source_cmd);
9058 install_element (OSPF_NODE, &no_ospf_redistribute_source_cmd);
9059 install_element (OSPF_NODE, &ospf_redistribute_instance_source_cmd);
9060 install_element (OSPF_NODE, &no_ospf_redistribute_instance_source_cmd);
9061
9062 install_element (OSPF_NODE, &ospf_distribute_list_out_cmd);
9063 install_element (OSPF_NODE, &no_ospf_distribute_list_out_cmd);
9064
9065 install_element (OSPF_NODE, &ospf_default_information_originate_cmd);
9066 install_element (OSPF_NODE, &no_ospf_default_information_originate_cmd);
9067
9068 install_element (OSPF_NODE, &ospf_default_metric_cmd);
9069 install_element (OSPF_NODE, &no_ospf_default_metric_cmd);
9070
9071 install_element (OSPF_NODE, &ospf_distance_cmd);
9072 install_element (OSPF_NODE, &no_ospf_distance_cmd);
9073 install_element (OSPF_NODE, &no_ospf_distance_ospf_cmd);
9074 install_element (OSPF_NODE, &ospf_distance_ospf_cmd);
9075 #if 0
9076 install_element (OSPF_NODE, &ospf_distance_source_cmd);
9077 install_element (OSPF_NODE, &no_ospf_distance_source_cmd);
9078 install_element (OSPF_NODE, &ospf_distance_source_access_list_cmd);
9079 install_element (OSPF_NODE, &no_ospf_distance_source_access_list_cmd);
9080 #endif /* 0 */
9081 }
9082
9083 static struct cmd_node ospf_node =
9084 {
9085 OSPF_NODE,
9086 "%s(config-router)# ",
9087 1
9088 };
9089
9090 static void
9091 ospf_interface_clear (struct interface *ifp)
9092 {
9093 if (!if_is_operative (ifp)) return;
9094
9095 if (IS_DEBUG_OSPF (ism, ISM_EVENTS))
9096 zlog_debug("ISM[%s]: clear by reset", ifp->name);
9097
9098 ospf_if_reset(ifp);
9099 }
9100
9101 DEFUN (clear_ip_ospf_interface,
9102 clear_ip_ospf_interface_cmd,
9103 "clear ip ospf interface [IFNAME]",
9104 CLEAR_STR
9105 IP_STR
9106 "OSPF information\n"
9107 "Interface information\n"
9108 "Interface name\n")
9109 {
9110 int idx_ifname = 4;
9111 struct interface *ifp;
9112 struct listnode *node;
9113
9114 if (argc == 4) /* Clear all the ospfv2 interfaces. */
9115 {
9116 for (ALL_LIST_ELEMENTS_RO (vrf_iflist (VRF_DEFAULT), node, ifp))
9117 ospf_interface_clear(ifp);
9118 }
9119 else /* Interface name is specified. */
9120 {
9121 if ((ifp = if_lookup_by_name (argv[idx_ifname]->text, VRF_DEFAULT)) == NULL)
9122 vty_out (vty, "No such interface name%s", VTY_NEWLINE);
9123 else
9124 ospf_interface_clear(ifp);
9125 }
9126
9127 return CMD_SUCCESS;
9128 }
9129
9130 void
9131 ospf_vty_clear_init (void)
9132 {
9133 install_element (ENABLE_NODE, &clear_ip_ospf_interface_cmd);
9134 }
9135
9136
9137 /* Install OSPF related vty commands. */
9138 void
9139 ospf_vty_init (void)
9140 {
9141 /* Install ospf top node. */
9142 install_node (&ospf_node, ospf_config_write);
9143
9144 /* "router ospf" commands. */
9145 install_element (CONFIG_NODE, &router_ospf_cmd);
9146 install_element (CONFIG_NODE, &no_router_ospf_cmd);
9147
9148
9149 install_default (OSPF_NODE);
9150
9151 /* "ospf router-id" commands. */
9152 install_element (OSPF_NODE, &ospf_router_id_cmd);
9153 install_element (OSPF_NODE, &ospf_router_id_old_cmd);
9154 install_element (OSPF_NODE, &no_ospf_router_id_cmd);
9155
9156 /* "passive-interface" commands. */
9157 install_element (OSPF_NODE, &ospf_passive_interface_addr_cmd);
9158 install_element (OSPF_NODE, &no_ospf_passive_interface_addr_cmd);
9159
9160 /* "ospf abr-type" commands. */
9161 install_element (OSPF_NODE, &ospf_abr_type_cmd);
9162 install_element (OSPF_NODE, &no_ospf_abr_type_cmd);
9163
9164 /* "ospf log-adjacency-changes" commands. */
9165 install_element (OSPF_NODE, &ospf_log_adjacency_changes_cmd);
9166 install_element (OSPF_NODE, &ospf_log_adjacency_changes_detail_cmd);
9167 install_element (OSPF_NODE, &no_ospf_log_adjacency_changes_cmd);
9168 install_element (OSPF_NODE, &no_ospf_log_adjacency_changes_detail_cmd);
9169
9170 /* "ospf rfc1583-compatible" commands. */
9171 install_element (OSPF_NODE, &ospf_compatible_rfc1583_cmd);
9172 install_element (OSPF_NODE, &no_ospf_compatible_rfc1583_cmd);
9173 install_element (OSPF_NODE, &ospf_rfc1583_flag_cmd);
9174 install_element (OSPF_NODE, &no_ospf_rfc1583_flag_cmd);
9175
9176 /* "network area" commands. */
9177 install_element (OSPF_NODE, &ospf_network_area_cmd);
9178 install_element (OSPF_NODE, &no_ospf_network_area_cmd);
9179
9180 /* "area authentication" commands. */
9181 install_element (OSPF_NODE, &ospf_area_authentication_message_digest_cmd);
9182 install_element (OSPF_NODE, &ospf_area_authentication_cmd);
9183 install_element (OSPF_NODE, &no_ospf_area_authentication_cmd);
9184
9185 /* "area range" commands. */
9186 install_element (OSPF_NODE, &ospf_area_range_cmd);
9187 install_element (OSPF_NODE, &ospf_area_range_cost_cmd);
9188 install_element (OSPF_NODE, &ospf_area_range_not_advertise_cmd);
9189 install_element (OSPF_NODE, &no_ospf_area_range_cmd);
9190 install_element (OSPF_NODE, &ospf_area_range_substitute_cmd);
9191 install_element (OSPF_NODE, &no_ospf_area_range_substitute_cmd);
9192
9193 /* "area virtual-link" commands. */
9194 install_element (OSPF_NODE, &ospf_area_vlink_cmd);
9195 install_element (OSPF_NODE, &ospf_area_vlink_intervals_cmd);
9196 install_element (OSPF_NODE, &no_ospf_area_vlink_cmd);
9197 install_element (OSPF_NODE, &no_ospf_area_vlink_intervals_cmd);
9198
9199
9200
9201
9202
9203
9204
9205
9206
9207
9208 /* "area stub" commands. */
9209 install_element (OSPF_NODE, &ospf_area_stub_no_summary_cmd);
9210 install_element (OSPF_NODE, &ospf_area_stub_cmd);
9211 install_element (OSPF_NODE, &no_ospf_area_stub_no_summary_cmd);
9212 install_element (OSPF_NODE, &no_ospf_area_stub_cmd);
9213
9214 /* "area nssa" commands. */
9215 install_element (OSPF_NODE, &ospf_area_nssa_cmd);
9216 install_element (OSPF_NODE, &ospf_area_nssa_translate_no_summary_cmd);
9217 install_element (OSPF_NODE, &ospf_area_nssa_translate_cmd);
9218 install_element (OSPF_NODE, &ospf_area_nssa_no_summary_cmd);
9219 install_element (OSPF_NODE, &no_ospf_area_nssa_cmd);
9220
9221 install_element (OSPF_NODE, &ospf_area_default_cost_cmd);
9222 install_element (OSPF_NODE, &no_ospf_area_default_cost_cmd);
9223
9224 install_element (OSPF_NODE, &ospf_area_shortcut_cmd);
9225 install_element (OSPF_NODE, &no_ospf_area_shortcut_cmd);
9226
9227 install_element (OSPF_NODE, &ospf_area_export_list_cmd);
9228 install_element (OSPF_NODE, &no_ospf_area_export_list_cmd);
9229
9230 install_element (OSPF_NODE, &ospf_area_filter_list_cmd);
9231 install_element (OSPF_NODE, &no_ospf_area_filter_list_cmd);
9232
9233 install_element (OSPF_NODE, &ospf_area_import_list_cmd);
9234 install_element (OSPF_NODE, &no_ospf_area_import_list_cmd);
9235
9236 /* SPF timer commands */
9237 install_element (OSPF_NODE, &ospf_timers_throttle_spf_cmd);
9238 install_element (OSPF_NODE, &no_ospf_timers_throttle_spf_cmd);
9239
9240 /* LSA timers commands */
9241 install_element (OSPF_NODE, &ospf_timers_min_ls_interval_cmd);
9242 install_element (OSPF_NODE, &no_ospf_timers_min_ls_interval_cmd);
9243 install_element (OSPF_NODE, &ospf_timers_min_ls_arrival_cmd);
9244 install_element (OSPF_NODE, &no_ospf_timers_min_ls_arrival_cmd);
9245 install_element (OSPF_NODE, &ospf_timers_lsa_cmd);
9246 install_element (OSPF_NODE, &no_ospf_timers_lsa_cmd);
9247
9248 /* refresh timer commands */
9249 install_element (OSPF_NODE, &ospf_refresh_timer_cmd);
9250 install_element (OSPF_NODE, &no_ospf_refresh_timer_val_cmd);
9251
9252 /* max-metric commands */
9253 install_element (OSPF_NODE, &ospf_max_metric_router_lsa_admin_cmd);
9254 install_element (OSPF_NODE, &no_ospf_max_metric_router_lsa_admin_cmd);
9255 install_element (OSPF_NODE, &ospf_max_metric_router_lsa_startup_cmd);
9256 install_element (OSPF_NODE, &no_ospf_max_metric_router_lsa_startup_cmd);
9257 install_element (OSPF_NODE, &ospf_max_metric_router_lsa_shutdown_cmd);
9258 install_element (OSPF_NODE, &no_ospf_max_metric_router_lsa_shutdown_cmd);
9259
9260 /* reference bandwidth commands */
9261 install_element (OSPF_NODE, &ospf_auto_cost_reference_bandwidth_cmd);
9262 install_element (OSPF_NODE, &no_ospf_auto_cost_reference_bandwidth_cmd);
9263
9264 /* "neighbor" commands. */
9265 install_element (OSPF_NODE, &ospf_neighbor_cmd);
9266 install_element (OSPF_NODE, &ospf_neighbor_poll_interval_cmd);
9267 install_element (OSPF_NODE, &no_ospf_neighbor_cmd);
9268 install_element (OSPF_NODE, &no_ospf_neighbor_poll_cmd);
9269
9270 /* write multiplier commands */
9271 install_element (OSPF_NODE, &ospf_write_multiplier_cmd);
9272 install_element (OSPF_NODE, &write_multiplier_cmd);
9273 install_element (OSPF_NODE, &no_ospf_write_multiplier_cmd);
9274 install_element (OSPF_NODE, &no_write_multiplier_cmd);
9275
9276 /* Init interface related vty commands. */
9277 ospf_vty_if_init ();
9278
9279 /* Init zebra related vty commands. */
9280 ospf_vty_zebra_init ();
9281 }