ospf_dump.c
上传用户:xiaozhuqw
上传日期:2009-11-15
资源大小:1338k
文件大小:45k
源码类别:

网络

开发平台:

Unix_Linux

  1. /*
  2.  * OSPFd dump routine.
  3.  * Copyright (C) 1999, 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
  19.  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  20.  * Boston, MA 02111-1307, USA. 
  21.  */
  22. #include <zebra.h>
  23. #include "linklist.h"
  24. #include "thread.h"
  25. #include "prefix.h"
  26. #include "command.h"
  27. #include "stream.h"
  28. #include "log.h"
  29. #include "ospfd/ospfd.h"
  30. #include "ospfd/ospf_interface.h"
  31. #include "ospfd/ospf_ism.h"
  32. #include "ospfd/ospf_asbr.h"
  33. #include "ospfd/ospf_lsa.h"
  34. #include "ospfd/ospf_lsdb.h"
  35. #include "ospfd/ospf_neighbor.h"
  36. #include "ospfd/ospf_nsm.h"
  37. #include "ospfd/ospf_dump.h"
  38. #include "ospfd/ospf_packet.h"
  39. #include "ospfd/ospf_network.h"
  40. struct message ospf_ism_state_msg[] =
  41. {
  42.   { ISM_DependUpon,   "DependUpon" },
  43.   { ISM_Down,         "Down" },
  44.   { ISM_Loopback,     "Loopback" },
  45.   { ISM_Waiting,      "Waiting" },
  46.   { ISM_PointToPoint, "Point-To-Point" },
  47.   { ISM_DROther,      "DROther" },
  48.   { ISM_Backup,       "Backup" },
  49.   { ISM_DR,           "DR" },
  50. };
  51. int ospf_ism_state_msg_max = OSPF_ISM_STATE_MAX;
  52. struct message ospf_nsm_state_msg[] =
  53. {
  54.   { NSM_DependUpon, "DependUpon" },
  55.   { NSM_Down,       "Down" },
  56.   { NSM_Attempt,    "Attempt" },
  57.   { NSM_Init,       "Init" },
  58.   { NSM_TwoWay,     "2-Way" },
  59.   { NSM_ExStart,    "ExStart" },
  60.   { NSM_Exchange,   "Exchange" },
  61.   { NSM_Loading,    "Loading" },
  62.   { NSM_Full,       "Full" },
  63. };
  64. int ospf_nsm_state_msg_max = OSPF_NSM_STATE_MAX;
  65. struct message ospf_lsa_type_msg[] =
  66. {
  67.   { OSPF_UNKNOWN_LSA,      "unknown" },
  68.   { OSPF_ROUTER_LSA,       "router-LSA" },
  69.   { OSPF_NETWORK_LSA,      "network-LSA" },
  70.   { OSPF_SUMMARY_LSA,      "summary-LSA" },
  71.   { OSPF_ASBR_SUMMARY_LSA, "summary-LSA" },
  72.   { OSPF_AS_EXTERNAL_LSA,  "AS-external-LSA" },
  73.   { OSPF_GROUP_MEMBER_LSA, "GROUP MEMBER LSA" },
  74.   { OSPF_AS_NSSA_LSA,      "NSSA-LSA" },
  75.   { 8,                     "Type-8 LSA" },
  76.   { OSPF_OPAQUE_LINK_LSA,  "Link-Local Opaque-LSA" },
  77.   { OSPF_OPAQUE_AREA_LSA,  "Area-Local Opaque-LSA" },
  78.   { OSPF_OPAQUE_AS_LSA,    "AS-external Opaque-LSA" },
  79. };
  80. int ospf_lsa_type_msg_max = OSPF_MAX_LSA;
  81. struct message ospf_link_state_id_type_msg[] =
  82. {
  83.   { OSPF_UNKNOWN_LSA,      "(unknown)" },
  84.   { OSPF_ROUTER_LSA,       "" },
  85.   { OSPF_NETWORK_LSA,      "(address of Designated Router)" },
  86.   { OSPF_SUMMARY_LSA,      "(summary Network Number)" },
  87.   { OSPF_ASBR_SUMMARY_LSA, "(AS Boundary Router address)" },
  88.   { OSPF_AS_EXTERNAL_LSA,  "(External Network Number)" },
  89.   { OSPF_GROUP_MEMBER_LSA, "(Group membership information)" },
  90.   { OSPF_AS_NSSA_LSA,      "(External Network Number for NSSA)" },
  91.   { 8,                     "(Type-8 LSID)" },
  92.   { OSPF_OPAQUE_LINK_LSA,  "(Link-Local Opaque-Type/ID)" },
  93.   { OSPF_OPAQUE_AREA_LSA,  "(Area-Local Opaque-Type/ID)" },
  94.   { OSPF_OPAQUE_AS_LSA,    "(AS-external Opaque-Type/ID)" },
  95. };
  96. int ospf_link_state_id_type_msg_max = OSPF_MAX_LSA;
  97. struct message ospf_redistributed_proto[] =
  98. {
  99.   { ZEBRA_ROUTE_SYSTEM,   "System" },
  100.   { ZEBRA_ROUTE_KERNEL,   "Kernel" },
  101.   { ZEBRA_ROUTE_CONNECT,  "Connected" },
  102.   { ZEBRA_ROUTE_STATIC,   "Static" },
  103.   { ZEBRA_ROUTE_RIP,      "RIP" },
  104.   { ZEBRA_ROUTE_RIPNG,    "RIPng" },
  105.   { ZEBRA_ROUTE_OSPF,     "OSPF" },
  106.   { ZEBRA_ROUTE_OSPF6,    "OSPFv3" },
  107.   { ZEBRA_ROUTE_BGP,      "BGP" },
  108.   { ZEBRA_ROUTE_MAX,   "Default" },
  109. };
  110. int ospf_redistributed_proto_max = ZEBRA_ROUTE_MAX + 1;
  111. struct message ospf_network_type_msg[] =
  112. {
  113.   { OSPF_IFTYPE_NONE,   "NONE" },
  114.   { OSPF_IFTYPE_POINTOPOINT,      "Point-to-Point" },
  115.   { OSPF_IFTYPE_BROADCAST,        "Broadcast" },
  116.   { OSPF_IFTYPE_NBMA,             "NBMA" },
  117.   { OSPF_IFTYPE_POINTOMULTIPOINT, "Point-to-MultiPoint" },
  118.   { OSPF_IFTYPE_VIRTUALLINK,      "Virtual-Link" },
  119. };
  120. int ospf_network_type_msg_max = OSPF_IFTYPE_MAX;
  121. /* Configuration debug option variables. */
  122. unsigned long conf_debug_ospf_packet[5] = {0, 0, 0, 0, 0};
  123. unsigned long conf_debug_ospf_event = 0;
  124. unsigned long conf_debug_ospf_ism = 0;
  125. unsigned long conf_debug_ospf_nsm = 0;
  126. unsigned long conf_debug_ospf_lsa = 0;
  127. unsigned long conf_debug_ospf_zebra = 0;
  128. unsigned long conf_debug_ospf_nssa = 0;
  129. /* Enable debug option variables -- valid only session. */
  130. unsigned long term_debug_ospf_packet[5] = {0, 0, 0, 0, 0};
  131. unsigned long term_debug_ospf_event = 0;
  132. unsigned long term_debug_ospf_ism = 0;
  133. unsigned long term_debug_ospf_nsm = 0;
  134. unsigned long term_debug_ospf_lsa = 0;
  135. unsigned long term_debug_ospf_zebra = 0;
  136. unsigned long term_debug_ospf_nssa = 0;
  137. #define OSPF_AREA_STRING_MAXLEN  16
  138. char *
  139. ospf_area_name_string (struct ospf_area *area)
  140. {
  141.   static char buf[OSPF_AREA_STRING_MAXLEN] = "";
  142.   u_int32_t area_id;
  143.   if (!area)
  144.     return "-";
  145.   area_id = ntohl (area->area_id.s_addr);
  146.   snprintf (buf, OSPF_AREA_STRING_MAXLEN, "%d.%d.%d.%d",
  147.             (area_id >> 24) & 0xff, (area_id >> 16) & 0xff,
  148.             (area_id >> 8) & 0xff, area_id & 0xff);
  149.   return buf;
  150. }
  151. #define OSPF_AREA_DESC_STRING_MAXLEN  23
  152. char *
  153. ospf_area_desc_string (struct ospf_area *area)
  154. {
  155.   static char buf[OSPF_AREA_DESC_STRING_MAXLEN] = "";
  156.   u_char type;
  157.   if (!area)
  158.     return "(incomplete)";
  159.   type = area->external_routing;
  160.   switch (type)
  161.     {
  162.     case OSPF_AREA_NSSA:
  163.       snprintf (buf, OSPF_AREA_DESC_STRING_MAXLEN, "%s [NSSA]",
  164.                 ospf_area_name_string (area));
  165.       break;
  166.     case OSPF_AREA_STUB:
  167.       snprintf (buf, OSPF_AREA_DESC_STRING_MAXLEN, "%s [Stub]",
  168.                 ospf_area_name_string (area));
  169.       break;
  170.     default:
  171.       return ospf_area_name_string (area);
  172.       break;
  173.     }
  174.   return buf;
  175. }
  176. #define OSPF_IF_STRING_MAXLEN  40
  177. char *
  178. ospf_if_name_string (struct ospf_interface *oi)
  179. {
  180.   static char buf[OSPF_IF_STRING_MAXLEN] = "";
  181.   u_int32_t ifaddr;
  182.   if (!oi)
  183.     return "inactive";
  184.   if (oi->type == OSPF_IFTYPE_VIRTUALLINK)
  185.     return oi->ifp->name;
  186.   ifaddr = ntohl (oi->address->u.prefix4.s_addr);
  187.   snprintf (buf, OSPF_IF_STRING_MAXLEN,
  188.             "%s:%d.%d.%d.%d", oi->ifp->name,
  189.             (ifaddr >> 24) & 0xff, (ifaddr >> 16) & 0xff,
  190.             (ifaddr >> 8) & 0xff, ifaddr & 0xff);
  191.   return buf;
  192. }
  193. void
  194. ospf_nbr_state_message (struct ospf_neighbor *nbr, char *buf, size_t size)
  195. {
  196.   int state;
  197.   struct ospf_interface *oi = nbr->oi;
  198.   if (IPV4_ADDR_SAME (&DR (oi), &nbr->address.u.prefix4))
  199.     state = ISM_DR;
  200.   else if (IPV4_ADDR_SAME (&BDR (oi), &nbr->address.u.prefix4))
  201.     state = ISM_Backup;
  202.   else
  203.     state = ISM_DROther;
  204.   memset (buf, 0, size);
  205.   snprintf (buf, size, "%s/%s",
  206.     LOOKUP (ospf_nsm_state_msg, nbr->state),
  207.     LOOKUP (ospf_ism_state_msg, state));
  208. }
  209. char *
  210. ospf_timer_dump (struct thread *t, char *buf, size_t size)
  211. {
  212.   struct timeval now;
  213.   unsigned long h, m, s;
  214.   if (!t)
  215.     return "inactive";
  216.   h = m = s = 0;
  217.   memset (buf, 0, size);
  218.   gettimeofday (&now, NULL);
  219.   s = t->u.sands.tv_sec - now.tv_sec;
  220.   if (s >= 3600)
  221.     {
  222.       h = s / 3600;
  223.       s -= h * 3600;
  224.     }
  225.   if (s >= 60)
  226.     {
  227.       m = s / 60;
  228.       s -= m * 60;
  229.     }
  230.   snprintf (buf, size, "%02ld:%02ld:%02ld", h, m, s);
  231.   return buf;
  232. }
  233. #define OSPF_OPTION_STR_MAXLEN 24
  234. char *
  235. ospf_options_dump (u_char options)
  236. {
  237.   static char buf[OSPF_OPTION_STR_MAXLEN];
  238.   snprintf (buf, OSPF_OPTION_STR_MAXLEN, "*|%s|%s|%s|%s|%s|%s|*",
  239.     (options & OSPF_OPTION_O) ? "O" : "-",
  240.     (options & OSPF_OPTION_DC) ? "DC" : "-",
  241.     (options & OSPF_OPTION_EA) ? "EA" : "-",
  242.     (options & OSPF_OPTION_NP) ? "N/P" : "-",
  243.     (options & OSPF_OPTION_MC) ? "MC" : "-",
  244.     (options & OSPF_OPTION_E) ? "E" : "-");
  245.   return buf;
  246. }
  247. void
  248. ospf_packet_hello_dump (struct stream *s, u_int16_t length)
  249. {
  250.   struct ospf_hello *hello;
  251.   int i;
  252.   hello = (struct ospf_hello *) STREAM_PNT (s);
  253.   zlog_info ("Hello");
  254.   zlog_info ("  NetworkMask %s", inet_ntoa (hello->network_mask));
  255.   zlog_info ("  HelloInterval %d", ntohs (hello->hello_interval));
  256.   zlog_info ("  Options %d (%s)", hello->options,
  257.      ospf_options_dump (hello->options));
  258.   zlog_info ("  RtrPriority %d", hello->priority);
  259.   zlog_info ("  RtrDeadInterval %ld", (u_long)ntohl (hello->dead_interval));
  260.   zlog_info ("  DRouter %s", inet_ntoa (hello->d_router));
  261.   zlog_info ("  BDRouter %s", inet_ntoa (hello->bd_router));
  262.   length -= OSPF_HEADER_SIZE + OSPF_HELLO_MIN_SIZE;
  263.   zlog_info ("  # Neighbors %d", length / 4);
  264.   for (i = 0; length > 0; i++, length -= sizeof (struct in_addr))
  265.     zlog_info ("    Neighbor %s", inet_ntoa (hello->neighbors[i]));
  266. }
  267. char *
  268. ospf_dd_flags_dump (u_char flags, char *buf, size_t size)
  269. {
  270.   memset (buf, 0, size);
  271.   snprintf (buf, size, "%s|%s|%s",
  272.     (flags & OSPF_DD_FLAG_I) ? "I" : "-",
  273.     (flags & OSPF_DD_FLAG_M) ? "M" : "-",
  274.     (flags & OSPF_DD_FLAG_MS) ? "MS" : "-");
  275.   return buf;
  276. }
  277. void
  278. ospf_lsa_header_dump (struct lsa_header *lsah)
  279. {
  280.   zlog_info ("  LSA Header");
  281.   zlog_info ("    LS age %d", ntohs (lsah->ls_age));
  282.   zlog_info ("    Options %d (%s)", lsah->options,
  283.      ospf_options_dump (lsah->options));
  284.   zlog_info ("    LS type %d (%s)", lsah->type,
  285.      LOOKUP (ospf_lsa_type_msg, lsah->type));
  286.   zlog_info ("    Link State ID %s", inet_ntoa (lsah->id));
  287.   zlog_info ("    Advertising Router %s", inet_ntoa (lsah->adv_router));
  288.   zlog_info ("    LS sequence number 0x%lx", (u_long)ntohl (lsah->ls_seqnum));
  289.   zlog_info ("    LS checksum 0x%x", ntohs (lsah->checksum));
  290.   zlog_info ("    length %d", ntohs (lsah->length));
  291. }
  292. char *
  293. ospf_router_lsa_flags_dump (u_char flags, char *buf, size_t size)
  294. {
  295.   memset (buf, 0, size);
  296.   snprintf (buf, size, "%s|%s|%s",
  297.     (flags & ROUTER_LSA_VIRTUAL) ? "V" : "-",
  298.     (flags & ROUTER_LSA_EXTERNAL) ? "E" : "-",
  299.     (flags & ROUTER_LSA_BORDER) ? "B" : "-");
  300.   return buf;
  301. }
  302. void
  303. ospf_router_lsa_dump (struct stream *s, u_int16_t length)
  304. {
  305.   char buf[BUFSIZ];
  306.   struct router_lsa *rl;
  307.   int i, len;
  308.   rl = (struct router_lsa *) STREAM_PNT (s);
  309.   zlog_info ("  Router-LSA");
  310.   zlog_info ("    flags %s", 
  311.      ospf_router_lsa_flags_dump (rl->flags, buf, BUFSIZ));
  312.   zlog_info ("    # links %d", ntohs (rl->links));
  313.   len = ntohs (rl->header.length) - OSPF_LSA_HEADER_SIZE - 4;
  314.   for (i = 0; len > 0; i++)
  315.     {
  316.       zlog_info ("    Link ID %s", inet_ntoa (rl->link[i].link_id));
  317.       zlog_info ("    Link Data %s", inet_ntoa (rl->link[i].link_data));
  318.       zlog_info ("    Type %d", (u_char) rl->link[i].type);
  319.       zlog_info ("    TOS %d", (u_char) rl->link[i].tos);
  320.       zlog_info ("    metric %d", ntohs (rl->link[i].metric));
  321.       len -= 12;
  322.     }
  323. }
  324. void
  325. ospf_network_lsa_dump (struct stream *s, u_int16_t length)
  326. {
  327.   struct network_lsa *nl;
  328.   int i, cnt;
  329.   nl = (struct network_lsa *) STREAM_PNT (s);
  330.   cnt = (ntohs (nl->header.length) - (OSPF_LSA_HEADER_SIZE + 4)) / 4;
  331.   
  332.   zlog_info ("  Network-LSA");
  333.   /*
  334.   zlog_info ("LSA total size %d", ntohs (nl->header.length));
  335.   zlog_info ("Network-LSA size %d", 
  336.   ntohs (nl->header.length) - OSPF_LSA_HEADER_SIZE);
  337.   */
  338.   zlog_info ("    Network Mask %s", inet_ntoa (nl->mask));
  339.   zlog_info ("    # Attached Routers %d", cnt);
  340.   for (i = 0; i < cnt; i++)
  341.     zlog_info ("      Attached Router %s", inet_ntoa (nl->routers[i]));
  342. }
  343. void
  344. ospf_summary_lsa_dump (struct stream *s, u_int16_t length)
  345. {
  346.   struct summary_lsa *sl;
  347.   int size;
  348.   int i;
  349.   sl = (struct summary_lsa *) STREAM_PNT (s);
  350.   zlog_info ("  Summary-LSA");
  351.   zlog_info ("    Network Mask %s", inet_ntoa (sl->mask));
  352.   size = ntohs (sl->header.length) - OSPF_LSA_HEADER_SIZE - 4;
  353.   for (i = 0; size > 0; size -= 4, i++)
  354.     zlog_info ("    TOS=%d metric %d", sl->tos,
  355.        GET_METRIC (sl->metric));
  356. }
  357. void
  358. ospf_as_external_lsa_dump (struct stream *s, u_int16_t length)
  359. {
  360.   struct as_external_lsa *al;
  361.   int size;
  362.   int i;
  363.   al = (struct as_external_lsa *) STREAM_PNT (s);
  364.   zlog_info ("  AS-external-LSA");
  365.   zlog_info ("    Network Mask %s", inet_ntoa (al->mask));
  366.   size = ntohs (al->header.length) - OSPF_LSA_HEADER_SIZE -4;
  367.   for (i = 0; size > 0; size -= 12, i++)
  368.     {
  369.       zlog_info ("    bit %s TOS=%d metric %d",
  370.  IS_EXTERNAL_METRIC (al->e[i].tos) ? "E" : "-",
  371.  al->e[i].tos & 0x7f, GET_METRIC (al->e[i].metric));
  372.       zlog_info ("    Forwarding address %s", inet_ntoa (al->e[i].fwd_addr));
  373.       zlog_info ("    External Route Tag %d", al->e[i].route_tag);
  374.     }
  375. }
  376. void
  377. ospf_lsa_header_list_dump (struct stream *s, u_int16_t length)
  378. {
  379.   struct lsa_header *lsa;
  380.   zlog_info ("  # LSA Headers %d", length / OSPF_LSA_HEADER_SIZE);
  381.   /* LSA Headers. */
  382.   while (length > 0)
  383.     {
  384.       lsa = (struct lsa_header *) STREAM_PNT (s);
  385.       ospf_lsa_header_dump (lsa);
  386.       stream_forward (s, OSPF_LSA_HEADER_SIZE);
  387.       length -= OSPF_LSA_HEADER_SIZE;
  388.     }
  389. }
  390. void
  391. ospf_packet_db_desc_dump (struct stream *s, u_int16_t length)
  392. {
  393.   struct ospf_db_desc *dd;
  394.   char dd_flags[8];
  395.   u_int32_t gp;
  396.   gp = stream_get_getp (s);
  397.   dd = (struct ospf_db_desc *) STREAM_PNT (s);
  398.   zlog_info ("Database Description");
  399.   zlog_info ("  Interface MTU %d", ntohs (dd->mtu));
  400.   zlog_info ("  Options %d (%s)", dd->options,
  401.      ospf_options_dump (dd->options));
  402.   zlog_info ("  Flags %d (%s)", dd->flags,
  403.      ospf_dd_flags_dump (dd->flags, dd_flags, sizeof dd_flags));
  404.   zlog_info ("  Sequence Number 0x%08lx", (u_long)ntohl (dd->dd_seqnum));
  405.   length -= OSPF_HEADER_SIZE + OSPF_DB_DESC_MIN_SIZE;
  406.   stream_forward (s, OSPF_DB_DESC_MIN_SIZE);
  407.   ospf_lsa_header_list_dump (s, length);
  408.   stream_set_getp (s, gp);
  409. }
  410. void
  411. ospf_packet_ls_req_dump (struct stream *s, u_int16_t length)
  412. {
  413.   u_int32_t sp;
  414.   u_int32_t ls_type;
  415.   struct in_addr ls_id;
  416.   struct in_addr adv_router;
  417.   sp = stream_get_getp (s);
  418.   length -= OSPF_HEADER_SIZE;
  419.   zlog_info ("Link State Request");
  420.   zlog_info ("  # Requests %d", length / 12);
  421.   for (; length > 0; length -= 12)
  422.     {
  423.       ls_type = stream_getl (s);
  424.       ls_id.s_addr = stream_get_ipv4 (s);
  425.       adv_router.s_addr = stream_get_ipv4 (s);
  426.       zlog_info ("  LS type %d", ls_type);
  427.       zlog_info ("  Link State ID %s", inet_ntoa (ls_id));
  428.       zlog_info ("  Advertising Router %s",
  429.  inet_ntoa (adv_router));
  430.     }
  431.   stream_set_getp (s, sp);
  432. }
  433. void
  434. ospf_packet_ls_upd_dump (struct stream *s, u_int16_t length)
  435. {
  436.   u_int32_t sp;
  437.   struct lsa_header *lsa;
  438.   int lsa_len;
  439.   u_int32_t count;
  440.   length -= OSPF_HEADER_SIZE;
  441.   sp = stream_get_getp (s);
  442.   count = stream_getl (s);
  443.   length -= 4;
  444.   zlog_info ("Link State Update");
  445.   zlog_info ("  # LSAs %d", count);
  446.   while (length > 0 && count > 0)
  447.     {
  448.       if (length < OSPF_HEADER_SIZE || length % 4 != 0)
  449. {
  450.           zlog_info ("  Remaining %d bytes; Incorrect length.", length);
  451.   break;
  452. }
  453.       lsa = (struct lsa_header *) STREAM_PNT (s);
  454.       lsa_len = ntohs (lsa->length);
  455.       ospf_lsa_header_dump (lsa);
  456.       switch (lsa->type)
  457. {
  458. case OSPF_ROUTER_LSA:
  459.   ospf_router_lsa_dump (s, length);
  460.   break;
  461. case OSPF_NETWORK_LSA:
  462.   ospf_network_lsa_dump (s, length);
  463.   break;
  464. case OSPF_SUMMARY_LSA:
  465. case OSPF_ASBR_SUMMARY_LSA:
  466.   ospf_summary_lsa_dump (s, length);
  467.   break;
  468. case OSPF_AS_EXTERNAL_LSA:
  469.   ospf_as_external_lsa_dump (s, length);
  470.   break;
  471. #ifdef HAVE_NSSA
  472. case OSPF_AS_NSSA_LSA:
  473.   /* XXX */
  474.   break;
  475. #endif /* HAVE_NSSA */
  476. #ifdef HAVE_OPAQUE_LSA
  477. case OSPF_OPAQUE_LINK_LSA:
  478. case OSPF_OPAQUE_AREA_LSA:
  479. case OSPF_OPAQUE_AS_LSA:
  480.   ospf_opaque_lsa_dump (s, length);
  481.   break;
  482. #endif /* HAVE_OPAQUE_LSA */
  483. default:
  484.   break;
  485. }
  486.       stream_forward (s, lsa_len);
  487.       length -= lsa_len;
  488.       count--;
  489.     }
  490.   stream_set_getp (s, sp);
  491. }
  492. void
  493. ospf_packet_ls_ack_dump (struct stream *s, u_int16_t length)
  494. {
  495.   u_int32_t sp;
  496.   length -= OSPF_HEADER_SIZE;
  497.   sp = stream_get_getp (s);
  498.   zlog_info ("Link State Acknowledgment");
  499.   ospf_lsa_header_list_dump (s, length);
  500.   stream_set_getp (s, sp);
  501. }
  502. void
  503. ospf_ip_header_dump (struct stream *s)
  504. {
  505.   u_int16_t length;
  506.   struct ip *iph;
  507.   iph = (struct ip *) STREAM_PNT (s);
  508. #ifdef GNU_LINUX
  509.   length = ntohs (iph->ip_len);
  510. #else /* GNU_LINUX */
  511.   length = iph->ip_len;
  512. #endif /* GNU_LINUX */
  513.   /* IP Header dump. */
  514.   zlog_info ("ip_v %d", iph->ip_v);
  515.   zlog_info ("ip_hl %d", iph->ip_hl);
  516.   zlog_info ("ip_tos %d", iph->ip_tos);
  517.   zlog_info ("ip_len %d", length);
  518.   zlog_info ("ip_id %u", (u_int32_t) iph->ip_id);
  519.   zlog_info ("ip_off %u", (u_int32_t) iph->ip_off);
  520.   zlog_info ("ip_ttl %d", iph->ip_ttl);
  521.   zlog_info ("ip_p %d", iph->ip_p);
  522.   /* There is a report that Linux 2.0.37 does not have ip_sum.  But
  523.      I'm not sure.  Temporary commented out by kunihiro. */
  524.   /* zlog_info ("ip_sum 0x%x", (u_int32_t) ntohs (iph->ip_sum)); */
  525.   zlog_info ("ip_src %s",  inet_ntoa (iph->ip_src));
  526.   zlog_info ("ip_dst %s", inet_ntoa (iph->ip_dst));
  527. }
  528. void
  529. ospf_header_dump (struct ospf_header *ospfh)
  530. {
  531.   char buf[9];
  532.   zlog_info ("Header");
  533.   zlog_info ("  Version %d", ospfh->version);
  534.   zlog_info ("  Type %d (%s)", ospfh->type,
  535.      ospf_packet_type_str[ospfh->type]);
  536.   zlog_info ("  Packet Len %d", ntohs (ospfh->length));
  537.   zlog_info ("  Router ID %s", inet_ntoa (ospfh->router_id));
  538.   zlog_info ("  Area ID %s", inet_ntoa (ospfh->area_id));
  539.   zlog_info ("  Checksum 0x%x", ntohs (ospfh->checksum));
  540.   zlog_info ("  AuType %d", ntohs (ospfh->auth_type));
  541.   switch (ntohs (ospfh->auth_type))
  542.     {
  543.     case OSPF_AUTH_NULL:
  544.       break;
  545.     case OSPF_AUTH_SIMPLE:
  546.       memset (buf, 0, 9);
  547.       strncpy (buf, ospfh->u.auth_data, 8);
  548.       zlog_info ("  Simple Password %s", buf);
  549.       break;
  550.     case OSPF_AUTH_CRYPTOGRAPHIC:
  551.       zlog_info ("  Cryptographic Authentication");
  552.       zlog_info ("  Key ID %d", ospfh->u.crypt.key_id);
  553.       zlog_info ("  Auth Data Len %d", ospfh->u.crypt.auth_data_len);
  554.       zlog_info ("  Sequence number %ld",
  555.  (u_long)ntohl (ospfh->u.crypt.crypt_seqnum));
  556.       break;
  557.     default:
  558.       zlog_info ("* This is not supported authentication type");
  559.       break;
  560.     }
  561.     
  562. }
  563. void
  564. ospf_packet_dump (struct stream *s)
  565. {
  566.   struct ospf_header *ospfh;
  567.   unsigned long gp;
  568.   /* Preserve pointer. */
  569.   gp = stream_get_getp (s);
  570.   /* OSPF Header dump. */
  571.   ospfh = (struct ospf_header *) STREAM_PNT (s);
  572.   /* Until detail flag is set, return. */
  573.   if (!(term_debug_ospf_packet[ospfh->type - 1] & OSPF_DEBUG_DETAIL))
  574.     return;
  575.   /* Show OSPF header detail. */
  576.   ospf_header_dump (ospfh);
  577.   stream_forward (s, OSPF_HEADER_SIZE);
  578.   switch (ospfh->type)
  579.     {
  580.     case OSPF_MSG_HELLO:
  581.       ospf_packet_hello_dump (s, ntohs (ospfh->length));
  582.       break;
  583.     case OSPF_MSG_DB_DESC:
  584.       ospf_packet_db_desc_dump (s, ntohs (ospfh->length));
  585.       break;
  586.     case OSPF_MSG_LS_REQ:
  587.       ospf_packet_ls_req_dump (s, ntohs (ospfh->length));
  588.       break;
  589.     case OSPF_MSG_LS_UPD:
  590.       ospf_packet_ls_upd_dump (s, ntohs (ospfh->length));
  591.       break;
  592.     case OSPF_MSG_LS_ACK:
  593.       ospf_packet_ls_ack_dump (s, ntohs (ospfh->length));
  594.       break;
  595.     default:
  596.       break;
  597.     }
  598.   stream_set_getp (s, gp);
  599. }
  600. /*
  601.    [no] debug ospf packet (hello|dd|ls-request|ls-update|ls-ack|all)
  602.                           [send|recv [detail]]
  603. */
  604. DEFUN (debug_ospf_packet,
  605.        debug_ospf_packet_all_cmd,
  606.        "debug ospf packet (hello|dd|ls-request|ls-update|ls-ack|all)",
  607.        DEBUG_STR
  608.        OSPF_STR
  609.        "OSPF packetsn"
  610.        "OSPF Hellon"
  611.        "OSPF Database Descriptionn"
  612.        "OSPF Link State Requestn"
  613.        "OSPF Link State Updaten"
  614.        "OSPF Link State Acknowledgmentn"
  615.        "OSPF all packetsn")
  616. {
  617.   int type = 0;
  618.   int flag = 0;
  619.   int i;
  620.   assert (argc > 0);
  621.   /* Check packet type. */
  622.   if (strncmp (argv[0], "h", 1) == 0)
  623.     type = OSPF_DEBUG_HELLO;
  624.   else if (strncmp (argv[0], "d", 1) == 0)
  625.     type = OSPF_DEBUG_DB_DESC;
  626.   else if (strncmp (argv[0], "ls-r", 4) == 0)
  627.     type = OSPF_DEBUG_LS_REQ;
  628.   else if (strncmp (argv[0], "ls-u", 4) == 0)
  629.     type = OSPF_DEBUG_LS_UPD;
  630.   else if (strncmp (argv[0], "ls-a", 4) == 0)
  631.     type = OSPF_DEBUG_LS_ACK;
  632.   else if (strncmp (argv[0], "a", 1) == 0)
  633.     type = OSPF_DEBUG_ALL;
  634.   /* Default, both send and recv. */
  635.   if (argc == 1)
  636.     flag = OSPF_DEBUG_SEND | OSPF_DEBUG_RECV;
  637.   /* send or recv. */
  638.   if (argc >= 2)
  639.     {
  640.       if (strncmp (argv[1], "s", 1) == 0)
  641. flag = OSPF_DEBUG_SEND;
  642.       else if (strncmp (argv[1], "r", 1) == 0)
  643. flag = OSPF_DEBUG_RECV;
  644.       else if (strncmp (argv[1], "d", 1) == 0)
  645. flag = OSPF_DEBUG_SEND | OSPF_DEBUG_RECV | OSPF_DEBUG_DETAIL;
  646.     }
  647.   /* detail. */
  648.   if (argc == 3)
  649.     if (strncmp (argv[2], "d", 1) == 0)
  650.       flag |= OSPF_DEBUG_DETAIL;
  651.   for (i = 0; i < 5; i++)
  652.     if (type & (0x01 << i))
  653.       {
  654. if (vty->node == CONFIG_NODE)
  655.   DEBUG_PACKET_ON (i, flag);
  656. else
  657.   TERM_DEBUG_PACKET_ON (i, flag);
  658.       }
  659.   return CMD_SUCCESS;
  660. }
  661. ALIAS (debug_ospf_packet,
  662.        debug_ospf_packet_send_recv_cmd,
  663.        "debug ospf packet (hello|dd|ls-request|ls-update|ls-ack|all) (send|recv|detail)",
  664.        "Debugging functionsn"
  665.        "OSPF informationn"
  666.        "OSPF packetsn"
  667.        "OSPF Hellon"
  668.        "OSPF Database Descriptionn"
  669.        "OSPF Link State Requestn"
  670.        "OSPF Link State Updaten"
  671.        "OSPF Link State Acknowledgmentn"
  672.        "OSPF all packetsn"
  673.        "Packet sentn"
  674.        "Packet receivedn"
  675.        "Detail informationn");
  676. ALIAS (debug_ospf_packet,
  677.        debug_ospf_packet_send_recv_detail_cmd,
  678.        "debug ospf packet (hello|dd|ls-request|ls-update|ls-ack|all) (send|recv) (detail|)",
  679.        "Debugging functionsn"
  680.        "OSPF informationn"
  681.        "OSPF packetsn"
  682.        "OSPF Hellon"
  683.        "OSPF Database Descriptionn"
  684.        "OSPF Link State Requestn"
  685.        "OSPF Link State Updaten"
  686.        "OSPF Link State Acknowledgmentn"
  687.        "OSPF all packetsn"
  688.        "Packet sentn"
  689.        "Packet receivedn"
  690.        "Detail Informationn");
  691.        
  692. DEFUN (no_debug_ospf_packet,
  693.        no_debug_ospf_packet_all_cmd,
  694.        "no debug ospf packet (hello|dd|ls-request|ls-update|ls-ack|all)",
  695.        NO_STR
  696.        DEBUG_STR
  697.        OSPF_STR
  698.        "OSPF packetsn"
  699.        "OSPF Hellon"
  700.        "OSPF Database Descriptionn"
  701.        "OSPF Link State Requestn"
  702.        "OSPF Link State Updaten"
  703.        "OSPF Link State Acknowledgmentn"
  704.        "OSPF all packetsn")
  705. {
  706.   int type = 0;
  707.   int flag = 0;
  708.   int i;
  709.   assert (argc > 0);
  710.   /* Check packet type. */
  711.   if (strncmp (argv[0], "h", 1) == 0)
  712.     type = OSPF_DEBUG_HELLO;
  713.   else if (strncmp (argv[0], "d", 1) == 0)
  714.     type = OSPF_DEBUG_DB_DESC;
  715.   else if (strncmp (argv[0], "ls-r", 4) == 0)
  716.     type = OSPF_DEBUG_LS_REQ;
  717.   else if (strncmp (argv[0], "ls-u", 4) == 0)
  718.     type = OSPF_DEBUG_LS_UPD;
  719.   else if (strncmp (argv[0], "ls-a", 4) == 0)
  720.     type = OSPF_DEBUG_LS_ACK;
  721.   else if (strncmp (argv[0], "a", 1) == 0)
  722.     type = OSPF_DEBUG_ALL;
  723.   /* Default, both send and recv. */
  724.   if (argc == 1)
  725.     flag = OSPF_DEBUG_SEND | OSPF_DEBUG_RECV | OSPF_DEBUG_DETAIL ;
  726.   /* send or recv. */
  727.   if (argc == 2)
  728.     {
  729.       if (strncmp (argv[1], "s", 1) == 0)
  730. flag = OSPF_DEBUG_SEND | OSPF_DEBUG_DETAIL;
  731.       else if (strncmp (argv[1], "r", 1) == 0)
  732. flag = OSPF_DEBUG_RECV | OSPF_DEBUG_DETAIL;
  733.       else if (strncmp (argv[1], "d", 1) == 0)
  734. flag = OSPF_DEBUG_DETAIL;
  735.     }
  736.   /* detail. */
  737.   if (argc == 3)
  738.     if (strncmp (argv[2], "d", 1) == 0)
  739.       flag = OSPF_DEBUG_DETAIL;
  740.   for (i = 0; i < 5; i++)
  741.     if (type & (0x01 << i))
  742.       {
  743. if (vty->node == CONFIG_NODE)
  744.   DEBUG_PACKET_OFF (i, flag);
  745. else
  746.   TERM_DEBUG_PACKET_OFF (i, flag);
  747.       }
  748. #ifdef DEBUG
  749.   for (i = 0; i < 5; i++)
  750.     zlog_info ("flag[%d] = %d", i, ospf_debug_packet[i]);
  751. #endif /* DEBUG */
  752.   return CMD_SUCCESS;
  753. }
  754. ALIAS (no_debug_ospf_packet,
  755.        no_debug_ospf_packet_send_recv_cmd,
  756.        "no debug ospf packet (hello|dd|ls-request|ls-update|ls-ack|all) (send|recv|detail)",
  757.        NO_STR
  758.        "Debugging functionsn"
  759.        "OSPF informationn"
  760.        "OSPF packetsn"
  761.        "OSPF Hellon"
  762.        "OSPF Database Descriptionn"
  763.        "OSPF Link State Requestn"
  764.        "OSPF Link State Updaten"
  765.        "OSPF Link State Acknowledgmentn"
  766.        "OSPF all packetsn"
  767.        "Packet sentn"
  768.        "Packet receivedn"
  769.        "Detail Informationn");
  770. ALIAS (no_debug_ospf_packet,
  771.        no_debug_ospf_packet_send_recv_detail_cmd,
  772.        "no debug ospf packet (hello|dd|ls-request|ls-update|ls-ack|all) (send|recv) (detail|)",
  773.        NO_STR
  774.        "Debugging functionsn"
  775.        "OSPF informationn"
  776.        "OSPF packetsn"
  777.        "OSPF Hellon"
  778.        "OSPF Database Descriptionn"
  779.        "OSPF Link State Requestn"
  780.        "OSPF Link State Updaten"
  781.        "OSPF Link State Acknowledgmentn"
  782.        "OSPF all packetsn"
  783.        "Packet sentn"
  784.        "Packet receivedn"
  785.        "Detail Informationn");
  786. DEFUN (debug_ospf_ism,
  787.        debug_ospf_ism_cmd,
  788.        "debug ospf ism",
  789.        DEBUG_STR
  790.        OSPF_STR
  791.        "OSPF Interface State Machinen")
  792. {
  793.   if (vty->node == CONFIG_NODE)
  794.     {
  795.       if (argc == 0)
  796. DEBUG_ON (ism, ISM);
  797.       else if (argc == 1)
  798. {
  799.   if (strncmp (argv[0], "s", 1) == 0)
  800.     DEBUG_ON (ism, ISM_STATUS);
  801.   else if (strncmp (argv[0], "e", 1) == 0)
  802.     DEBUG_ON (ism, ISM_EVENTS);
  803.   else if (strncmp (argv[0], "t", 1) == 0)
  804.     DEBUG_ON (ism, ISM_TIMERS);
  805. }
  806.       return CMD_SUCCESS;
  807.     }
  808.   /* ENABLE_NODE. */
  809.   if (argc == 0)
  810.     TERM_DEBUG_ON (ism, ISM);
  811.   else if (argc == 1)
  812.     {
  813.       if (strncmp (argv[0], "s", 1) == 0)
  814. TERM_DEBUG_ON (ism, ISM_STATUS);
  815.       else if (strncmp (argv[0], "e", 1) == 0)
  816. TERM_DEBUG_ON (ism, ISM_EVENTS);
  817.       else if (strncmp (argv[0], "t", 1) == 0)
  818. TERM_DEBUG_ON (ism, ISM_TIMERS);
  819.     }
  820.   return CMD_SUCCESS;
  821. }
  822. ALIAS (debug_ospf_ism,
  823.        debug_ospf_ism_sub_cmd,
  824.        "debug ospf ism (status|events|timers)",
  825.        DEBUG_STR
  826.        OSPF_STR
  827.        "OSPF Interface State Machinen"
  828.        "ISM Status Informationn"
  829.        "ISM Event Informationn"
  830.        "ISM TImer Informationn");
  831. DEFUN (no_debug_ospf_ism,
  832.        no_debug_ospf_ism_cmd,
  833.        "no debug ospf ism",
  834.        NO_STR
  835.        DEBUG_STR
  836.        OSPF_STR
  837.        "OSPF Interface State Machine")
  838. {
  839.   if (vty->node == CONFIG_NODE)
  840.     {
  841.       if (argc == 0)
  842. DEBUG_OFF (ism, ISM);
  843.       else if (argc == 1)
  844. {
  845.   if (strncmp (argv[0], "s", 1) == 0)
  846.     DEBUG_OFF (ism, ISM_STATUS);
  847.   else if (strncmp (argv[0], "e", 1) == 0)
  848.     DEBUG_OFF (ism, ISM_EVENTS);
  849.   else if (strncmp (argv[0], "t", 1) == 0)
  850.     DEBUG_OFF (ism, ISM_TIMERS);
  851. }
  852.       return CMD_SUCCESS;
  853.     }
  854.   /* ENABLE_NODE. */
  855.   if (argc == 0)
  856.     TERM_DEBUG_OFF (ism, ISM);
  857.   else if (argc == 1)
  858.     {
  859.       if (strncmp (argv[0], "s", 1) == 0)
  860. TERM_DEBUG_OFF (ism, ISM_STATUS);
  861.       else if (strncmp (argv[0], "e", 1) == 0)
  862. TERM_DEBUG_OFF (ism, ISM_EVENTS);
  863.       else if (strncmp (argv[0], "t", 1) == 0)
  864. TERM_DEBUG_OFF (ism, ISM_TIMERS);
  865.     }
  866.   return CMD_SUCCESS;
  867. }
  868. ALIAS (no_debug_ospf_ism,
  869.        no_debug_ospf_ism_sub_cmd,
  870.        "no debug ospf ism (status|events|timers)",
  871.        NO_STR
  872.        "Debugging functionsn"
  873.        "OSPF informationn"
  874.        "OSPF Interface State Machinen"
  875.        "ISM Status Informationn"
  876.        "ISM Event Informationn"
  877.        "ISM Timer Informationn");
  878. DEFUN (debug_ospf_nsm,
  879.        debug_ospf_nsm_cmd,
  880.        "debug ospf nsm",
  881.        DEBUG_STR
  882.        OSPF_STR
  883.        "OSPF Neighbor State Machinen")
  884. {
  885.   if (vty->node == CONFIG_NODE)
  886.     {
  887.       if (argc == 0)
  888. DEBUG_ON (nsm, NSM);
  889.       else if (argc == 1)
  890. {
  891.   if (strncmp (argv[0], "s", 1) == 0)
  892.     DEBUG_ON (nsm, NSM_STATUS);
  893.   else if (strncmp (argv[0], "e", 1) == 0)
  894.     DEBUG_ON (nsm, NSM_EVENTS);
  895.   else if (strncmp (argv[0], "t", 1) == 0)
  896.     DEBUG_ON (nsm, NSM_TIMERS);
  897. }
  898.       return CMD_SUCCESS;
  899.     }
  900.   /* ENABLE_NODE. */
  901.   if (argc == 0)
  902.     TERM_DEBUG_ON (nsm, NSM);
  903.   else if (argc == 1)
  904.     {
  905.       if (strncmp (argv[0], "s", 1) == 0)
  906. TERM_DEBUG_ON (nsm, NSM_STATUS);
  907.       else if (strncmp (argv[0], "e", 1) == 0)
  908. TERM_DEBUG_ON (nsm, NSM_EVENTS);
  909.       else if (strncmp (argv[0], "t", 1) == 0)
  910. TERM_DEBUG_ON (nsm, NSM_TIMERS);
  911.     }
  912.   return CMD_SUCCESS;
  913. }
  914. ALIAS (debug_ospf_nsm,
  915.        debug_ospf_nsm_sub_cmd,
  916.        "debug ospf nsm (status|events|timers)",
  917.        DEBUG_STR
  918.        OSPF_STR
  919.        "OSPF Neighbor State Machinen"
  920.        "NSM Status Informationn"
  921.        "NSM Event Informationn"
  922.        "NSM Timer Informationn");
  923. DEFUN (no_debug_ospf_nsm,
  924.        no_debug_ospf_nsm_cmd,
  925.        "no debug ospf nsm",
  926.        NO_STR
  927.        DEBUG_STR
  928.        OSPF_STR
  929.        "OSPF Neighbor State Machine")
  930. {
  931.   if (vty->node == CONFIG_NODE)
  932.     {
  933.       if (argc == 0)
  934. DEBUG_OFF (nsm, NSM);
  935.       else if (argc == 1)
  936. {
  937.   if (strncmp (argv[0], "s", 1) == 0)
  938.     DEBUG_OFF (nsm, NSM_STATUS);
  939.   else if (strncmp (argv[0], "e", 1) == 0)
  940.     DEBUG_OFF (nsm, NSM_EVENTS);
  941.   else if (strncmp (argv[0], "t", 1) == 0)
  942.     DEBUG_OFF (nsm, NSM_TIMERS);
  943. }
  944.       return CMD_SUCCESS;
  945.     }
  946.   /* ENABLE_NODE. */
  947.   if (argc == 0)
  948.     TERM_DEBUG_OFF (nsm, NSM);
  949.   else if (argc == 1)
  950.     {
  951.       if (strncmp (argv[0], "s", 1) == 0)
  952. TERM_DEBUG_OFF (nsm, NSM_STATUS);
  953.       else if (strncmp (argv[0], "e", 1) == 0)
  954. TERM_DEBUG_OFF (nsm, NSM_EVENTS);
  955.       else if (strncmp (argv[0], "t", 1) == 0)
  956. TERM_DEBUG_OFF (nsm, NSM_TIMERS);
  957.     }
  958.   return CMD_SUCCESS;
  959. }
  960. ALIAS (no_debug_ospf_nsm,
  961.        no_debug_ospf_nsm_sub_cmd,
  962.        "no debug ospf nsm (status|events|timers)",
  963.        NO_STR
  964.        "Debugging functionsn"
  965.        "OSPF informationn"
  966.        "OSPF Interface State Machinen"
  967.        "NSM Status Informationn"
  968.        "NSM Event Informationn"
  969.        "NSM Timer Informationn");
  970. DEFUN (debug_ospf_lsa,
  971.        debug_ospf_lsa_cmd,
  972.        "debug ospf lsa",
  973.        DEBUG_STR
  974.        OSPF_STR
  975.        "OSPF Link State Advertisementn")
  976. {
  977.   if (vty->node == CONFIG_NODE)
  978.     {
  979.       if (argc == 0)
  980. DEBUG_ON (lsa, LSA);
  981.       else if (argc == 1)
  982. {
  983.   if (strncmp (argv[0], "g", 1) == 0)
  984.     DEBUG_ON (lsa, LSA_GENERATE);
  985.   else if (strncmp (argv[0], "f", 1) == 0)
  986.     DEBUG_ON (lsa, LSA_FLOODING);
  987.   else if (strncmp (argv[0], "i", 1) == 0)
  988.     DEBUG_ON (lsa, LSA_INSTALL);
  989.   else if (strncmp (argv[0], "r", 1) == 0)
  990.     DEBUG_ON (lsa, LSA_REFRESH);
  991. }
  992.       return CMD_SUCCESS;
  993.     }
  994.   /* ENABLE_NODE. */
  995.   if (argc == 0)
  996.     TERM_DEBUG_ON (lsa, LSA);
  997.   else if (argc == 1)
  998.     {
  999.       if (strncmp (argv[0], "g", 1) == 0)
  1000. TERM_DEBUG_ON (lsa, LSA_GENERATE);
  1001.       else if (strncmp (argv[0], "f", 1) == 0)
  1002. TERM_DEBUG_ON (lsa, LSA_FLOODING);
  1003.       else if (strncmp (argv[0], "i", 1) == 0)
  1004. TERM_DEBUG_ON (lsa, LSA_INSTALL);
  1005.       else if (strncmp (argv[0], "r", 1) == 0)
  1006. TERM_DEBUG_ON (lsa, LSA_REFRESH);
  1007.     }
  1008.   return CMD_SUCCESS;
  1009. }
  1010. ALIAS (debug_ospf_lsa,
  1011.        debug_ospf_lsa_sub_cmd,
  1012.        "debug ospf lsa (generate|flooding|install|refresh)",
  1013.        DEBUG_STR
  1014.        OSPF_STR
  1015.        "OSPF Link State Advertisementn"
  1016.        "LSA Generationn"
  1017.        "LSA Floodingn"
  1018.        "LSA Install/Deleten"
  1019.        "LSA Refreshn");
  1020. DEFUN (no_debug_ospf_lsa,
  1021.        no_debug_ospf_lsa_cmd,
  1022.        "no debug ospf lsa",
  1023.        NO_STR
  1024.        DEBUG_STR
  1025.        OSPF_STR
  1026.        "OSPF Link State Advertisementn")
  1027. {
  1028.   if (vty->node == CONFIG_NODE)
  1029.     {
  1030.       if (argc == 0)
  1031. DEBUG_OFF (lsa, LSA);
  1032.       else if (argc == 1)
  1033. {
  1034.   if (strncmp (argv[0], "g", 1) == 0)
  1035.     DEBUG_OFF (lsa, LSA_GENERATE);
  1036.   else if (strncmp (argv[0], "f", 1) == 0)
  1037.     DEBUG_OFF (lsa, LSA_FLOODING);
  1038.   else if (strncmp (argv[0], "i", 1) == 0)
  1039.     DEBUG_OFF (lsa, LSA_INSTALL);
  1040.   else if (strncmp (argv[0], "r", 1) == 0)
  1041.     DEBUG_OFF (lsa, LSA_REFRESH);
  1042. }
  1043.       return CMD_SUCCESS;
  1044.     }
  1045.   /* ENABLE_NODE. */
  1046.   if (argc == 0)
  1047.     TERM_DEBUG_OFF (lsa, LSA);
  1048.   else if (argc == 1)
  1049.     {
  1050.       if (strncmp (argv[0], "g", 1) == 0)
  1051. TERM_DEBUG_OFF (lsa, LSA_GENERATE);
  1052.       else if (strncmp (argv[0], "f", 1) == 0)
  1053. TERM_DEBUG_OFF (lsa, LSA_FLOODING);
  1054.       else if (strncmp (argv[0], "i", 1) == 0)
  1055. TERM_DEBUG_OFF (lsa, LSA_INSTALL);
  1056.       else if (strncmp (argv[0], "r", 1) == 0)
  1057. TERM_DEBUG_OFF (lsa, LSA_REFRESH);
  1058.     }
  1059.   return CMD_SUCCESS;
  1060. }
  1061. ALIAS (no_debug_ospf_lsa,
  1062.        no_debug_ospf_lsa_sub_cmd,
  1063.        "no debug ospf lsa (generate|flooding|install|refresh)",
  1064.        NO_STR
  1065.        DEBUG_STR
  1066.        OSPF_STR
  1067.        "OSPF Link State Advertisementn"
  1068.        "LSA Generationn"
  1069.        "LSA Floodingn"
  1070.        "LSA Install/Deleten"
  1071.        "LSA Refresn");
  1072. DEFUN (debug_ospf_zebra,
  1073.        debug_ospf_zebra_cmd,
  1074.        "debug ospf zebra",
  1075.        DEBUG_STR
  1076.        OSPF_STR
  1077.        "OSPF Zebra informationn")
  1078. {
  1079.   if (vty->node == CONFIG_NODE)
  1080.     {
  1081.       if (argc == 0)
  1082. DEBUG_ON (zebra, ZEBRA);
  1083.       else if (argc == 1)
  1084. {
  1085.   if (strncmp (argv[0], "i", 1) == 0)
  1086.     DEBUG_ON (zebra, ZEBRA_INTERFACE);
  1087.   else if (strncmp (argv[0], "r", 1) == 0)
  1088.     DEBUG_ON (zebra, ZEBRA_REDISTRIBUTE);
  1089. }
  1090.       return CMD_SUCCESS;
  1091.     }
  1092.   /* ENABLE_NODE. */
  1093.   if (argc == 0)
  1094.     TERM_DEBUG_ON (zebra, ZEBRA);
  1095.   else if (argc == 1)
  1096.     {
  1097.       if (strncmp (argv[0], "i", 1) == 0)
  1098. TERM_DEBUG_ON (zebra, ZEBRA_INTERFACE);
  1099.       else if (strncmp (argv[0], "r", 1) == 0)
  1100. TERM_DEBUG_ON (zebra, ZEBRA_REDISTRIBUTE);
  1101.     }
  1102.   return CMD_SUCCESS;
  1103. }
  1104. ALIAS (debug_ospf_zebra,
  1105.        debug_ospf_zebra_sub_cmd,
  1106.        "debug ospf zebra (interface|redistribute)",
  1107.        DEBUG_STR
  1108.        OSPF_STR
  1109.        "OSPF Zebra informationn"
  1110.        "Zebra interfacen"
  1111.        "Zebra redistributen");
  1112. DEFUN (no_debug_ospf_zebra,
  1113.        no_debug_ospf_zebra_cmd,
  1114.        "no debug ospf zebra",
  1115.        NO_STR
  1116.        DEBUG_STR
  1117.        OSPF_STR
  1118.        "OSPF Zebra informationn")
  1119. {
  1120.   if (vty->node == CONFIG_NODE)
  1121.     {
  1122.       if (argc == 0)
  1123. DEBUG_OFF (zebra, ZEBRA);
  1124.       else if (argc == 1)
  1125. {
  1126.   if (strncmp (argv[0], "i", 1) == 0)
  1127.     DEBUG_OFF (zebra, ZEBRA_INTERFACE);
  1128.   else if (strncmp (argv[0], "r", 1) == 0)
  1129.     DEBUG_OFF (zebra, ZEBRA_REDISTRIBUTE);
  1130. }
  1131.       return CMD_SUCCESS;
  1132.     }
  1133.   /* ENABLE_NODE. */
  1134.   if (argc == 0)
  1135.     TERM_DEBUG_OFF (zebra, ZEBRA);
  1136.   else if (argc == 1)
  1137.     {
  1138.       if (strncmp (argv[0], "i", 1) == 0)
  1139. TERM_DEBUG_OFF (zebra, ZEBRA_INTERFACE);
  1140.       else if (strncmp (argv[0], "r", 1) == 0)
  1141. TERM_DEBUG_OFF (zebra, ZEBRA_REDISTRIBUTE);
  1142.     }
  1143.   return CMD_SUCCESS;
  1144. }
  1145. ALIAS (no_debug_ospf_zebra,
  1146.        no_debug_ospf_zebra_sub_cmd,
  1147.        "no debug ospf zebra (interface|redistribute)",
  1148.        NO_STR
  1149.        DEBUG_STR
  1150.        OSPF_STR
  1151.        "OSPF Zebra informationn"
  1152.        "Zebra interfacen"
  1153.        "Zebra redistributen");
  1154. DEFUN (debug_ospf_event,
  1155.        debug_ospf_event_cmd,
  1156.        "debug ospf event",
  1157.        DEBUG_STR
  1158.        OSPF_STR
  1159.        "OSPF event informationn")
  1160. {
  1161.   if (vty->node == CONFIG_NODE)
  1162.     CONF_DEBUG_ON (event, EVENT);
  1163.   TERM_DEBUG_ON (event, EVENT);
  1164.   return CMD_SUCCESS;
  1165. }
  1166. DEFUN (no_debug_ospf_event,
  1167.        no_debug_ospf_event_cmd,
  1168.        "no debug ospf event",
  1169.        NO_STR
  1170.        DEBUG_STR
  1171.        OSPF_STR
  1172.        "OSPF event informationn")
  1173. {
  1174.   if (vty->node == CONFIG_NODE)
  1175.     CONF_DEBUG_OFF (event, EVENT);
  1176.   TERM_DEBUG_OFF (event, EVENT);
  1177.   return CMD_SUCCESS;
  1178. }
  1179. DEFUN (debug_ospf_nssa,
  1180.        debug_ospf_nssa_cmd,
  1181.        "debug ospf nssa",
  1182.        DEBUG_STR
  1183.        OSPF_STR
  1184.        "OSPF nssa informationn")
  1185. {
  1186.   if (vty->node == CONFIG_NODE)
  1187.     CONF_DEBUG_ON (nssa, NSSA);
  1188.   TERM_DEBUG_ON (nssa, NSSA);
  1189.   return CMD_SUCCESS;
  1190. }
  1191. DEFUN (no_debug_ospf_nssa,
  1192.        no_debug_ospf_nssa_cmd,
  1193.        "no debug ospf nssa",
  1194.        NO_STR
  1195.        DEBUG_STR
  1196.        OSPF_STR
  1197.        "OSPF nssa informationn")
  1198. {
  1199.   if (vty->node == CONFIG_NODE)
  1200.     CONF_DEBUG_OFF (nssa, NSSA);
  1201.   TERM_DEBUG_OFF (nssa, NSSA);
  1202.   return CMD_SUCCESS;
  1203. }
  1204. DEFUN (show_debugging_ospf,
  1205.        show_debugging_ospf_cmd,
  1206.        "show debugging ospf",
  1207.        SHOW_STR
  1208.        DEBUG_STR
  1209.        OSPF_STR)
  1210. {
  1211.   int i;
  1212.   vty_out (vty, "Zebra debugging status:%s", VTY_NEWLINE);
  1213.   /* Show debug status for ISM. */
  1214.   if (IS_DEBUG_OSPF (ism, ISM) == OSPF_DEBUG_ISM)
  1215.     vty_out (vty, "  OSPF ISM debugging is on%s", VTY_NEWLINE);
  1216.   else
  1217.     {
  1218.       if (IS_DEBUG_OSPF (ism, ISM_STATUS))
  1219. vty_out (vty, "  OSPF ISM status debugging is on%s", VTY_NEWLINE);
  1220.       if (IS_DEBUG_OSPF (ism, ISM_EVENTS))
  1221. vty_out (vty, "  OSPF ISM event debugging is on%s", VTY_NEWLINE);
  1222.       if (IS_DEBUG_OSPF (ism, ISM_TIMERS))
  1223. vty_out (vty, "  OSPF ISM timer debugging is on%s", VTY_NEWLINE);
  1224.     }
  1225.   /* Show debug status for NSM. */
  1226.   if (IS_DEBUG_OSPF (nsm, NSM) == OSPF_DEBUG_NSM)
  1227.     vty_out (vty, "  OSPF NSM debugging is on%s", VTY_NEWLINE);
  1228.   else
  1229.     {
  1230.       if (IS_DEBUG_OSPF (nsm, NSM_STATUS))
  1231. vty_out (vty, "  OSPF NSM status debugging is on%s", VTY_NEWLINE);
  1232.       if (IS_DEBUG_OSPF (nsm, NSM_EVENTS))
  1233. vty_out (vty, "  OSPF NSM event debugging is on%s", VTY_NEWLINE);
  1234.       if (IS_DEBUG_OSPF (nsm, NSM_TIMERS))
  1235. vty_out (vty, "  OSPF NSM timer debugging is on%s", VTY_NEWLINE);
  1236.     }
  1237.   /* Show debug status for OSPF Packets. */
  1238.   for (i = 0; i < 5; i++)
  1239.     if (IS_DEBUG_OSPF_PACKET (i, SEND) && IS_DEBUG_OSPF_PACKET (i, RECV))
  1240.       {
  1241. vty_out (vty, "  OSPF packet %s%s debugging is on%s",
  1242.  ospf_packet_type_str[i + 1],
  1243.  IS_DEBUG_OSPF_PACKET (i, DETAIL) ? " detail" : "",
  1244.  VTY_NEWLINE);
  1245.       }
  1246.     else
  1247.       {
  1248. if (IS_DEBUG_OSPF_PACKET (i, SEND))
  1249.   vty_out (vty, "  OSPF packet %s send%s debugging is on%s",
  1250.    ospf_packet_type_str[i + 1],
  1251.    IS_DEBUG_OSPF_PACKET (i, DETAIL) ? " detail" : "",
  1252.    VTY_NEWLINE);
  1253. if (IS_DEBUG_OSPF_PACKET (i, RECV))
  1254.   vty_out (vty, "  OSPF packet %s receive%s debugging is on%s",
  1255.    ospf_packet_type_str[i + 1],
  1256.    IS_DEBUG_OSPF_PACKET (i, DETAIL) ? " detail" : "",
  1257.    VTY_NEWLINE);
  1258.       }
  1259.   /* Show debug status for OSPF LSAs. */
  1260.   if (IS_DEBUG_OSPF (lsa, LSA) == OSPF_DEBUG_LSA)
  1261.     vty_out (vty, "  OSPF LSA debugging is on%s", VTY_NEWLINE);
  1262.   else
  1263.     {
  1264.       if (IS_DEBUG_OSPF (lsa, LSA_GENERATE))
  1265. vty_out (vty, "  OSPF LSA generation debugging is on%s", VTY_NEWLINE);
  1266.       if (IS_DEBUG_OSPF (lsa, LSA_FLOODING))
  1267. vty_out (vty, "  OSPF LSA flooding debugging is on%s", VTY_NEWLINE);
  1268.       if (IS_DEBUG_OSPF (lsa, LSA_INSTALL))
  1269. vty_out (vty, "  OSPF LSA install debugging is on%s", VTY_NEWLINE);
  1270.       if (IS_DEBUG_OSPF (lsa, LSA_REFRESH))
  1271. vty_out (vty, "  OSPF LSA refresh debugging is on%s", VTY_NEWLINE);
  1272.     }
  1273.   /* Show debug status for Zebra. */
  1274.   if (IS_DEBUG_OSPF (zebra, ZEBRA) == OSPF_DEBUG_ZEBRA)
  1275.     vty_out (vty, "  OSPF Zebra debugging is on%s", VTY_NEWLINE);
  1276.   else
  1277.     {
  1278.       if (IS_DEBUG_OSPF (zebra, ZEBRA_INTERFACE))
  1279. vty_out (vty, "  OSPF Zebra interface debugging is on%s", VTY_NEWLINE);
  1280.       if (IS_DEBUG_OSPF (zebra, ZEBRA_REDISTRIBUTE))
  1281. vty_out (vty, "  OSPF Zebra redistribute debugging is on%s", VTY_NEWLINE);
  1282.     }
  1283.   return CMD_SUCCESS;
  1284. }
  1285. /* Debug node. */
  1286. struct cmd_node debug_node =
  1287. {
  1288.   DEBUG_NODE,
  1289.   ""
  1290. };
  1291. int
  1292. config_write_debug (struct vty *vty)
  1293. {
  1294.   int write = 0;
  1295.   int i, r;
  1296.   char *type_str[] = {"hello", "dd", "ls-request", "ls-update", "ls-ack"};
  1297.   char *detail_str[] = {"", " send", " recv", "", " detail",
  1298. " send detail", " recv detail", " detail"};
  1299.   /* debug ospf ism (status|events|timers). */
  1300.   if (IS_CONF_DEBUG_OSPF (ism, ISM) == OSPF_DEBUG_ISM)
  1301.     vty_out (vty, "debug ospf ism%s", VTY_NEWLINE);
  1302.   else
  1303.     {
  1304.       if (IS_CONF_DEBUG_OSPF (ism, ISM_STATUS))
  1305. vty_out (vty, "debug ospf ism status%s", VTY_NEWLINE);
  1306.       if (IS_CONF_DEBUG_OSPF (ism, ISM_EVENTS))
  1307. vty_out (vty, "debug ospf ism event%s", VTY_NEWLINE);
  1308.       if (IS_CONF_DEBUG_OSPF (ism, ISM_TIMERS))
  1309. vty_out (vty, "debug ospf ism timer%s", VTY_NEWLINE);
  1310.     }
  1311.   /* debug ospf nsm (status|events|timers). */
  1312.   if (IS_CONF_DEBUG_OSPF (nsm, NSM) == OSPF_DEBUG_NSM)
  1313.     vty_out (vty, "debug ospf nsm%s", VTY_NEWLINE);
  1314.   else
  1315.     {
  1316.       if (IS_CONF_DEBUG_OSPF (nsm, NSM_STATUS))
  1317. vty_out (vty, "debug ospf ism status%s", VTY_NEWLINE);
  1318.       if (IS_CONF_DEBUG_OSPF (nsm, NSM_EVENTS))
  1319. vty_out (vty, "debug ospf nsm event%s", VTY_NEWLINE);
  1320.       if (IS_CONF_DEBUG_OSPF (nsm, NSM_TIMERS))
  1321. vty_out (vty, "debug ospf nsm timer%s", VTY_NEWLINE);
  1322.     }
  1323.   /* debug ospf lsa (generate|flooding|install|refresh). */
  1324.   if (IS_CONF_DEBUG_OSPF (lsa, LSA) == OSPF_DEBUG_LSA)
  1325.     vty_out (vty, "debug ospf lsa%s", VTY_NEWLINE);
  1326.   else
  1327.     {
  1328.       if (IS_CONF_DEBUG_OSPF (lsa, LSA_GENERATE))
  1329. vty_out (vty, "debug ospf lsa generate%s", VTY_NEWLINE);
  1330.       if (IS_CONF_DEBUG_OSPF (lsa, LSA_FLOODING))
  1331. vty_out (vty, "debug ospf lsa flooding%s", VTY_NEWLINE);
  1332.       if (IS_CONF_DEBUG_OSPF (lsa, LSA_INSTALL))
  1333. vty_out (vty, "debug ospf lsa install%s", VTY_NEWLINE);
  1334.       if (IS_CONF_DEBUG_OSPF (lsa, LSA_REFRESH))
  1335. vty_out (vty, "debug ospf lsa refresh%s", VTY_NEWLINE);
  1336.       write = 1;
  1337.     }
  1338.   /* debug ospf zebra (interface|redistribute). */
  1339.   if (IS_CONF_DEBUG_OSPF (zebra, ZEBRA) == OSPF_DEBUG_ZEBRA)
  1340.     vty_out (vty, "debug ospf zebra%s", VTY_NEWLINE);
  1341.   else
  1342.     {
  1343.       if (IS_CONF_DEBUG_OSPF (zebra, ZEBRA_INTERFACE))
  1344. vty_out (vty, "debug ospf zebra interface%s", VTY_NEWLINE);
  1345.       if (IS_CONF_DEBUG_OSPF (zebra, ZEBRA_REDISTRIBUTE))
  1346. vty_out (vty, "debug ospf zebra redistribute%s", VTY_NEWLINE);
  1347.       write = 1;
  1348.     }
  1349.   /* debug ospf event. */
  1350.   if (IS_CONF_DEBUG_OSPF (event, EVENT) == OSPF_DEBUG_EVENT)
  1351.     {
  1352.       vty_out (vty, "debug ospf event%s", VTY_NEWLINE);
  1353.       write = 1;
  1354.     }
  1355.   /* debug ospf nssa. */
  1356.   if (IS_CONF_DEBUG_OSPF (nssa, NSSA) == OSPF_DEBUG_NSSA)
  1357.     {
  1358.       vty_out (vty, "debug ospf nssa%s", VTY_NEWLINE);
  1359.       write = 1;
  1360.     }
  1361.   
  1362.   /* debug ospf packet all detail. */
  1363.   r = OSPF_DEBUG_SEND_RECV|OSPF_DEBUG_DETAIL;
  1364.   for (i = 0; i < 5; i++)
  1365.     r &= conf_debug_ospf_packet[i] & (OSPF_DEBUG_SEND_RECV|OSPF_DEBUG_DETAIL);
  1366.   if (r == (OSPF_DEBUG_SEND_RECV|OSPF_DEBUG_DETAIL))
  1367.     {
  1368.       vty_out (vty, "debug ospf packet all detail%s", VTY_NEWLINE);
  1369.       return 1;
  1370.     }
  1371.   /* debug ospf packet all. */
  1372.   r = OSPF_DEBUG_SEND_RECV;
  1373.   for (i = 0; i < 5; i++)
  1374.     r &= conf_debug_ospf_packet[i] & OSPF_DEBUG_SEND_RECV;
  1375.   if (r == OSPF_DEBUG_SEND_RECV)
  1376.     {
  1377.       vty_out (vty, "debug ospf packet all%s", VTY_NEWLINE);
  1378.       for (i = 0; i < 5; i++)
  1379. if (conf_debug_ospf_packet[i] & OSPF_DEBUG_DETAIL)
  1380.   vty_out (vty, "debug ospf packet %s detail%s",
  1381.    type_str[i],
  1382.    VTY_NEWLINE);
  1383.       return 1;
  1384.     }
  1385.   /* debug ospf packet (hello|dd|ls-request|ls-update|ls-ack)
  1386.      (send|recv) (detail). */
  1387.   for (i = 0; i < 5; i++)
  1388.     {
  1389.       if (conf_debug_ospf_packet[i] == 0)
  1390. continue;
  1391.       
  1392.       vty_out (vty, "debug ospf packet %s%s%s",
  1393.        type_str[i], detail_str[conf_debug_ospf_packet[i]],
  1394.        VTY_NEWLINE);
  1395.       write = 1;
  1396.     }
  1397.   return write;
  1398. }
  1399. /* Initialize debug commands. */
  1400. void
  1401. debug_init ()
  1402. {
  1403.   install_node (&debug_node, config_write_debug);
  1404.   install_element (ENABLE_NODE, &show_debugging_ospf_cmd);
  1405.   install_element (ENABLE_NODE, &debug_ospf_packet_send_recv_detail_cmd);
  1406.   install_element (ENABLE_NODE, &debug_ospf_packet_send_recv_cmd);
  1407.   install_element (ENABLE_NODE, &debug_ospf_packet_all_cmd);
  1408.   install_element (ENABLE_NODE, &debug_ospf_ism_sub_cmd);
  1409.   install_element (ENABLE_NODE, &debug_ospf_ism_cmd);
  1410.   install_element (ENABLE_NODE, &debug_ospf_nsm_sub_cmd);
  1411.   install_element (ENABLE_NODE, &debug_ospf_nsm_cmd);
  1412.   install_element (ENABLE_NODE, &debug_ospf_lsa_sub_cmd);
  1413.   install_element (ENABLE_NODE, &debug_ospf_lsa_cmd);
  1414.   install_element (ENABLE_NODE, &debug_ospf_zebra_sub_cmd);
  1415.   install_element (ENABLE_NODE, &debug_ospf_zebra_cmd);
  1416.   install_element (ENABLE_NODE, &debug_ospf_event_cmd);
  1417. #ifdef HAVE_NSSA
  1418.   install_element (ENABLE_NODE, &debug_ospf_nssa_cmd);
  1419. #endif /* HAVE_NSSA */
  1420.   install_element (ENABLE_NODE, &no_debug_ospf_packet_send_recv_detail_cmd);
  1421.   install_element (ENABLE_NODE, &no_debug_ospf_packet_send_recv_cmd);
  1422.   install_element (ENABLE_NODE, &no_debug_ospf_packet_all_cmd);
  1423.   install_element (ENABLE_NODE, &no_debug_ospf_ism_sub_cmd);
  1424.   install_element (ENABLE_NODE, &no_debug_ospf_ism_cmd);
  1425.   install_element (ENABLE_NODE, &no_debug_ospf_nsm_sub_cmd);
  1426.   install_element (ENABLE_NODE, &no_debug_ospf_nsm_cmd);
  1427.   install_element (ENABLE_NODE, &no_debug_ospf_lsa_sub_cmd);
  1428.   install_element (ENABLE_NODE, &no_debug_ospf_lsa_cmd);
  1429.   install_element (ENABLE_NODE, &no_debug_ospf_zebra_sub_cmd);
  1430.   install_element (ENABLE_NODE, &no_debug_ospf_zebra_cmd);
  1431.   install_element (ENABLE_NODE, &no_debug_ospf_event_cmd);
  1432. #ifdef HAVE_NSSA
  1433.   install_element (ENABLE_NODE, &no_debug_ospf_nssa_cmd);
  1434. #endif /* HAVE_NSSA */
  1435.   install_element (CONFIG_NODE, &debug_ospf_packet_send_recv_detail_cmd);
  1436.   install_element (CONFIG_NODE, &debug_ospf_packet_send_recv_cmd);
  1437.   install_element (CONFIG_NODE, &debug_ospf_packet_all_cmd);
  1438.   install_element (CONFIG_NODE, &debug_ospf_ism_sub_cmd);
  1439.   install_element (CONFIG_NODE, &debug_ospf_ism_cmd);
  1440.   install_element (CONFIG_NODE, &debug_ospf_nsm_sub_cmd);
  1441.   install_element (CONFIG_NODE, &debug_ospf_nsm_cmd);
  1442.   install_element (CONFIG_NODE, &debug_ospf_lsa_sub_cmd);
  1443.   install_element (CONFIG_NODE, &debug_ospf_lsa_cmd);
  1444.   install_element (CONFIG_NODE, &debug_ospf_zebra_sub_cmd);
  1445.   install_element (CONFIG_NODE, &debug_ospf_zebra_cmd);
  1446.   install_element (CONFIG_NODE, &debug_ospf_event_cmd);
  1447. #ifdef HAVE_NSSA
  1448.   install_element (CONFIG_NODE, &debug_ospf_nssa_cmd);
  1449. #endif /* HAVE_NSSA */
  1450.   install_element (CONFIG_NODE, &no_debug_ospf_packet_send_recv_detail_cmd);
  1451.   install_element (CONFIG_NODE, &no_debug_ospf_packet_send_recv_cmd);
  1452.   install_element (CONFIG_NODE, &no_debug_ospf_packet_all_cmd);
  1453.   install_element (CONFIG_NODE, &no_debug_ospf_ism_sub_cmd);
  1454.   install_element (CONFIG_NODE, &no_debug_ospf_ism_cmd);
  1455.   install_element (CONFIG_NODE, &no_debug_ospf_nsm_sub_cmd);
  1456.   install_element (CONFIG_NODE, &no_debug_ospf_nsm_cmd);
  1457.   install_element (CONFIG_NODE, &no_debug_ospf_lsa_sub_cmd);
  1458.   install_element (CONFIG_NODE, &no_debug_ospf_lsa_cmd);
  1459.   install_element (CONFIG_NODE, &no_debug_ospf_zebra_sub_cmd);
  1460.   install_element (CONFIG_NODE, &no_debug_ospf_zebra_cmd);
  1461.   install_element (CONFIG_NODE, &no_debug_ospf_event_cmd);
  1462. #ifdef HAVE_NSSA
  1463.   install_element (CONFIG_NODE, &no_debug_ospf_nssa_cmd);
  1464. #endif /* HAVE_NSSA */
  1465. }