paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1 | /* |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 2 | * Copyright (C) 2003 Yasuhiro Ohara |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3 | * |
| 4 | * This file is part of GNU Zebra. |
| 5 | * |
| 6 | * GNU Zebra is free software; you can redistribute it and/or modify it |
| 7 | * under the terms of the GNU General Public License as published by the |
| 8 | * Free Software Foundation; either version 2, or (at your option) any |
| 9 | * later version. |
| 10 | * |
| 11 | * GNU Zebra is distributed in the hope that it will be useful, but |
| 12 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 14 | * General Public License for more details. |
| 15 | * |
| 16 | * You should have received a copy of the GNU General Public License |
| 17 | * along with GNU Zebra; see the file COPYING. If not, write to the |
| 18 | * Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
| 19 | * Boston, MA 02111-1307, USA. |
| 20 | */ |
| 21 | |
| 22 | #include <zebra.h> |
| 23 | |
| 24 | #include "log.h" |
| 25 | #include "memory.h" |
| 26 | #include "vty.h" |
| 27 | #include "linklist.h" |
| 28 | #include "prefix.h" |
| 29 | #include "table.h" |
| 30 | #include "thread.h" |
| 31 | #include "command.h" |
| 32 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 33 | #include "ospf6_proto.h" |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 34 | #include "ospf6_message.h" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 35 | #include "ospf6_lsa.h" |
| 36 | #include "ospf6_lsdb.h" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 37 | #include "ospf6_route.h" |
| 38 | #include "ospf6_zebra.h" |
| 39 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 40 | #include "ospf6_top.h" |
| 41 | #include "ospf6_area.h" |
| 42 | #include "ospf6_interface.h" |
| 43 | #include "ospf6_neighbor.h" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 44 | |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 45 | #include "ospf6_flood.h" |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 46 | #include "ospf6_asbr.h" |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 47 | #include "ospf6_abr.h" |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 48 | #include "ospf6_intra.h" |
Dinesh Dutt | 3810e06 | 2013-08-24 07:54:09 +0000 | [diff] [blame] | 49 | #include "ospf6_spf.h" |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 50 | #include "ospf6d.h" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 51 | |
| 52 | /* global ospf6d variable */ |
| 53 | struct ospf6 *ospf6; |
| 54 | |
Tom Goff | ae2254a | 2010-11-10 13:01:41 -0800 | [diff] [blame] | 55 | static void ospf6_disable (struct ospf6 *o); |
| 56 | |
Paul Jakma | 6ac29a5 | 2008-08-15 13:45:30 +0100 | [diff] [blame] | 57 | static void |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 58 | ospf6_top_lsdb_hook_add (struct ospf6_lsa *lsa) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 59 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 60 | switch (ntohs (lsa->header->type)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 61 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 62 | case OSPF6_LSTYPE_AS_EXTERNAL: |
| 63 | ospf6_asbr_lsa_add (lsa); |
| 64 | break; |
| 65 | |
| 66 | default: |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 67 | break; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 68 | } |
| 69 | } |
| 70 | |
Paul Jakma | 6ac29a5 | 2008-08-15 13:45:30 +0100 | [diff] [blame] | 71 | static void |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 72 | ospf6_top_lsdb_hook_remove (struct ospf6_lsa *lsa) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 73 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 74 | switch (ntohs (lsa->header->type)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 75 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 76 | case OSPF6_LSTYPE_AS_EXTERNAL: |
| 77 | ospf6_asbr_lsa_remove (lsa); |
| 78 | break; |
| 79 | |
| 80 | default: |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 81 | break; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 82 | } |
| 83 | } |
| 84 | |
Paul Jakma | 6ac29a5 | 2008-08-15 13:45:30 +0100 | [diff] [blame] | 85 | static void |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 86 | ospf6_top_route_hook_add (struct ospf6_route *route) |
| 87 | { |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 88 | ospf6_abr_originate_summary (route); |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 89 | ospf6_zebra_route_update_add (route); |
| 90 | } |
| 91 | |
Paul Jakma | 6ac29a5 | 2008-08-15 13:45:30 +0100 | [diff] [blame] | 92 | static void |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 93 | ospf6_top_route_hook_remove (struct ospf6_route *route) |
| 94 | { |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 95 | ospf6_abr_originate_summary (route); |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 96 | ospf6_zebra_route_update_remove (route); |
| 97 | } |
| 98 | |
Paul Jakma | 6ac29a5 | 2008-08-15 13:45:30 +0100 | [diff] [blame] | 99 | static void |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 100 | ospf6_top_brouter_hook_add (struct ospf6_route *route) |
| 101 | { |
hasso | ccb59b1 | 2004-08-25 09:10:37 +0000 | [diff] [blame] | 102 | ospf6_abr_examin_brouter (ADV_ROUTER_IN_PREFIX (&route->prefix)); |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 103 | ospf6_asbr_lsentry_add (route); |
hasso | ccb59b1 | 2004-08-25 09:10:37 +0000 | [diff] [blame] | 104 | ospf6_abr_originate_summary (route); |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 105 | } |
| 106 | |
Paul Jakma | 6ac29a5 | 2008-08-15 13:45:30 +0100 | [diff] [blame] | 107 | static void |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 108 | ospf6_top_brouter_hook_remove (struct ospf6_route *route) |
| 109 | { |
hasso | ccb59b1 | 2004-08-25 09:10:37 +0000 | [diff] [blame] | 110 | ospf6_abr_examin_brouter (ADV_ROUTER_IN_PREFIX (&route->prefix)); |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 111 | ospf6_asbr_lsentry_remove (route); |
hasso | ccb59b1 | 2004-08-25 09:10:37 +0000 | [diff] [blame] | 112 | ospf6_abr_originate_summary (route); |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 113 | } |
| 114 | |
Paul Jakma | 6ac29a5 | 2008-08-15 13:45:30 +0100 | [diff] [blame] | 115 | static struct ospf6 * |
| 116 | ospf6_create (void) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 117 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 118 | struct ospf6 *o; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 119 | |
Stephen Hemminger | 393deb9 | 2008-08-18 14:13:29 -0700 | [diff] [blame] | 120 | o = XCALLOC (MTYPE_OSPF6_TOP, sizeof (struct ospf6)); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 121 | |
| 122 | /* initialize */ |
Takashi Sogabe | 86f72dc | 2009-06-22 13:07:02 +0900 | [diff] [blame] | 123 | quagga_gettime (QUAGGA_CLK_MONOTONIC, &o->starttime); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 124 | o->area_list = list_new (); |
| 125 | o->area_list->cmp = ospf6_area_cmp; |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 126 | o->lsdb = ospf6_lsdb_create (o); |
| 127 | o->lsdb_self = ospf6_lsdb_create (o); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 128 | o->lsdb->hook_add = ospf6_top_lsdb_hook_add; |
| 129 | o->lsdb->hook_remove = ospf6_top_lsdb_hook_remove; |
| 130 | |
Dinesh Dutt | 3810e06 | 2013-08-24 07:54:09 +0000 | [diff] [blame] | 131 | o->spf_delay = OSPF_SPF_DELAY_DEFAULT; |
| 132 | o->spf_holdtime = OSPF_SPF_HOLDTIME_DEFAULT; |
| 133 | o->spf_max_holdtime = OSPF_SPF_MAX_HOLDTIME_DEFAULT; |
| 134 | o->spf_hold_multiplier = 1; |
| 135 | |
Paul Jakma | cf1ce25 | 2006-05-15 10:46:07 +0000 | [diff] [blame] | 136 | o->route_table = OSPF6_ROUTE_TABLE_CREATE (GLOBAL, ROUTES); |
| 137 | o->route_table->scope = o; |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 138 | o->route_table->hook_add = ospf6_top_route_hook_add; |
| 139 | o->route_table->hook_remove = ospf6_top_route_hook_remove; |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 140 | |
Paul Jakma | cf1ce25 | 2006-05-15 10:46:07 +0000 | [diff] [blame] | 141 | o->brouter_table = OSPF6_ROUTE_TABLE_CREATE (GLOBAL, BORDER_ROUTERS); |
| 142 | o->brouter_table->scope = o; |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 143 | o->brouter_table->hook_add = ospf6_top_brouter_hook_add; |
| 144 | o->brouter_table->hook_remove = ospf6_top_brouter_hook_remove; |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 145 | |
Paul Jakma | cf1ce25 | 2006-05-15 10:46:07 +0000 | [diff] [blame] | 146 | o->external_table = OSPF6_ROUTE_TABLE_CREATE (GLOBAL, EXTERNAL_ROUTES); |
| 147 | o->external_table->scope = o; |
| 148 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 149 | o->external_id_table = route_table_init (); |
| 150 | |
| 151 | return o; |
| 152 | } |
| 153 | |
Tom Goff | ae2254a | 2010-11-10 13:01:41 -0800 | [diff] [blame] | 154 | void |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 155 | ospf6_delete (struct ospf6 *o) |
| 156 | { |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 157 | struct listnode *node, *nnode; |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 158 | struct ospf6_area *oa; |
| 159 | |
Tom Goff | ae2254a | 2010-11-10 13:01:41 -0800 | [diff] [blame] | 160 | ospf6_disable (ospf6); |
| 161 | |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 162 | for (ALL_LIST_ELEMENTS (o->area_list, node, nnode, oa)) |
| 163 | ospf6_area_delete (oa); |
Tom Goff | ae2254a | 2010-11-10 13:01:41 -0800 | [diff] [blame] | 164 | list_delete (o->area_list); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 165 | |
| 166 | ospf6_lsdb_delete (o->lsdb); |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 167 | ospf6_lsdb_delete (o->lsdb_self); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 168 | |
| 169 | ospf6_route_table_delete (o->route_table); |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 170 | ospf6_route_table_delete (o->brouter_table); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 171 | |
| 172 | ospf6_route_table_delete (o->external_table); |
| 173 | route_table_finish (o->external_id_table); |
| 174 | |
| 175 | XFREE (MTYPE_OSPF6_TOP, o); |
| 176 | } |
| 177 | |
Paul Jakma | 6ac29a5 | 2008-08-15 13:45:30 +0100 | [diff] [blame] | 178 | static void |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 179 | ospf6_enable (struct ospf6 *o) |
| 180 | { |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 181 | struct listnode *node, *nnode; |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 182 | struct ospf6_area *oa; |
| 183 | |
| 184 | if (CHECK_FLAG (o->flag, OSPF6_DISABLED)) |
| 185 | { |
| 186 | UNSET_FLAG (o->flag, OSPF6_DISABLED); |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 187 | for (ALL_LIST_ELEMENTS (o->area_list, node, nnode, oa)) |
| 188 | ospf6_area_enable (oa); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 189 | } |
| 190 | } |
| 191 | |
Paul Jakma | 6ac29a5 | 2008-08-15 13:45:30 +0100 | [diff] [blame] | 192 | static void |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 193 | ospf6_disable (struct ospf6 *o) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 194 | { |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 195 | struct listnode *node, *nnode; |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 196 | struct ospf6_area *oa; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 197 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 198 | if (! CHECK_FLAG (o->flag, OSPF6_DISABLED)) |
| 199 | { |
| 200 | SET_FLAG (o->flag, OSPF6_DISABLED); |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 201 | |
| 202 | for (ALL_LIST_ELEMENTS (o->area_list, node, nnode, oa)) |
| 203 | ospf6_area_disable (oa); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 204 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 205 | ospf6_lsdb_remove_all (o->lsdb); |
| 206 | ospf6_route_remove_all (o->route_table); |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 207 | ospf6_route_remove_all (o->brouter_table); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 208 | } |
| 209 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 210 | |
Dinesh Dutt | 2449fcd | 2013-08-24 07:54:17 +0000 | [diff] [blame^] | 211 | int |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 212 | ospf6_maxage_remover (struct thread *thread) |
| 213 | { |
| 214 | struct ospf6 *o = (struct ospf6 *) THREAD_ARG (thread); |
| 215 | struct ospf6_area *oa; |
| 216 | struct ospf6_interface *oi; |
| 217 | struct ospf6_neighbor *on; |
hasso | 52dc7ee | 2004-09-23 19:18:23 +0000 | [diff] [blame] | 218 | struct listnode *i, *j, *k; |
Dinesh Dutt | 2449fcd | 2013-08-24 07:54:17 +0000 | [diff] [blame^] | 219 | int reschedule = 0; |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 220 | |
| 221 | o->maxage_remover = (struct thread *) NULL; |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 222 | |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 223 | for (ALL_LIST_ELEMENTS_RO (o->area_list, i, oa)) |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 224 | { |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 225 | for (ALL_LIST_ELEMENTS_RO (oa->if_list, j, oi)) |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 226 | { |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 227 | for (ALL_LIST_ELEMENTS_RO (oi->neighbor_list, k, on)) |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 228 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 229 | if (on->state != OSPF6_NEIGHBOR_EXCHANGE && |
| 230 | on->state != OSPF6_NEIGHBOR_LOADING) |
Dinesh Dutt | 2449fcd | 2013-08-24 07:54:17 +0000 | [diff] [blame^] | 231 | continue; |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 232 | |
Dinesh Dutt | 2449fcd | 2013-08-24 07:54:17 +0000 | [diff] [blame^] | 233 | ospf6_maxage_remove (o); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 234 | return 0; |
| 235 | } |
| 236 | } |
| 237 | } |
| 238 | |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 239 | for (ALL_LIST_ELEMENTS_RO (o->area_list, i, oa)) |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 240 | { |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 241 | for (ALL_LIST_ELEMENTS_RO (oa->if_list, j, oi)) |
Dinesh Dutt | 2449fcd | 2013-08-24 07:54:17 +0000 | [diff] [blame^] | 242 | { |
| 243 | if (ospf6_lsdb_maxage_remover (oi->lsdb)) |
| 244 | { |
| 245 | reschedule = 1; |
| 246 | } |
| 247 | } |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 248 | |
Dinesh Dutt | 2449fcd | 2013-08-24 07:54:17 +0000 | [diff] [blame^] | 249 | if (ospf6_lsdb_maxage_remover (oa->lsdb)) |
| 250 | { |
| 251 | reschedule = 1; |
| 252 | } |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 253 | } |
Dinesh Dutt | 2449fcd | 2013-08-24 07:54:17 +0000 | [diff] [blame^] | 254 | |
| 255 | if (ospf6_lsdb_maxage_remover (o->lsdb)) |
| 256 | { |
| 257 | reschedule = 1; |
| 258 | } |
| 259 | |
| 260 | if (reschedule) |
| 261 | { |
| 262 | ospf6_maxage_remove (o); |
| 263 | } |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 264 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 265 | return 0; |
| 266 | } |
| 267 | |
| 268 | void |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 269 | ospf6_maxage_remove (struct ospf6 *o) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 270 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 271 | if (o && ! o->maxage_remover) |
Dinesh Dutt | 2449fcd | 2013-08-24 07:54:17 +0000 | [diff] [blame^] | 272 | o->maxage_remover = thread_add_timer (master, ospf6_maxage_remover, o, |
| 273 | OSPF_LSA_MAXAGE_REMOVE_DELAY_DEFAULT); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 274 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 275 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 276 | /* start ospf6 */ |
| 277 | DEFUN (router_ospf6, |
| 278 | router_ospf6_cmd, |
| 279 | "router ospf6", |
| 280 | ROUTER_STR |
| 281 | OSPF6_STR) |
| 282 | { |
| 283 | if (ospf6 == NULL) |
| 284 | ospf6 = ospf6_create (); |
| 285 | if (CHECK_FLAG (ospf6->flag, OSPF6_DISABLED)) |
| 286 | ospf6_enable (ospf6); |
| 287 | |
| 288 | /* set current ospf point. */ |
| 289 | vty->node = OSPF6_NODE; |
| 290 | vty->index = ospf6; |
| 291 | |
| 292 | return CMD_SUCCESS; |
| 293 | } |
| 294 | |
| 295 | /* stop ospf6 */ |
| 296 | DEFUN (no_router_ospf6, |
| 297 | no_router_ospf6_cmd, |
| 298 | "no router ospf6", |
| 299 | NO_STR |
| 300 | OSPF6_ROUTER_STR) |
| 301 | { |
| 302 | if (ospf6 == NULL || CHECK_FLAG (ospf6->flag, OSPF6_DISABLED)) |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 303 | vty_out (vty, "OSPFv3 is not running%s", VNL); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 304 | else |
| 305 | ospf6_disable (ospf6); |
| 306 | |
| 307 | /* return to config node . */ |
| 308 | vty->node = CONFIG_NODE; |
| 309 | vty->index = NULL; |
| 310 | |
| 311 | return CMD_SUCCESS; |
| 312 | } |
| 313 | |
| 314 | /* change Router_ID commands. */ |
| 315 | DEFUN (ospf6_router_id, |
| 316 | ospf6_router_id_cmd, |
| 317 | "router-id A.B.C.D", |
| 318 | "Configure OSPF Router-ID\n" |
| 319 | V4NOTATION_STR) |
| 320 | { |
| 321 | int ret; |
| 322 | u_int32_t router_id; |
| 323 | struct ospf6 *o; |
| 324 | |
| 325 | o = (struct ospf6 *) vty->index; |
| 326 | |
| 327 | ret = inet_pton (AF_INET, argv[0], &router_id); |
| 328 | if (ret == 0) |
| 329 | { |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 330 | vty_out (vty, "malformed OSPF Router-ID: %s%s", argv[0], VNL); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 331 | return CMD_SUCCESS; |
| 332 | } |
| 333 | |
hasso | c8a440e | 2004-10-11 17:02:40 +0000 | [diff] [blame] | 334 | o->router_id_static = router_id; |
| 335 | if (o->router_id == 0) |
| 336 | o->router_id = router_id; |
| 337 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 338 | return CMD_SUCCESS; |
| 339 | } |
| 340 | |
| 341 | DEFUN (ospf6_interface_area, |
| 342 | ospf6_interface_area_cmd, |
| 343 | "interface IFNAME area A.B.C.D", |
| 344 | "Enable routing on an IPv6 interface\n" |
| 345 | IFNAME_STR |
| 346 | "Specify the OSPF6 area ID\n" |
| 347 | "OSPF6 area ID in IPv4 address notation\n" |
| 348 | ) |
| 349 | { |
| 350 | struct ospf6 *o; |
hasso | 3b68735 | 2004-08-19 06:56:53 +0000 | [diff] [blame] | 351 | struct ospf6_area *oa; |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 352 | struct ospf6_interface *oi; |
| 353 | struct interface *ifp; |
| 354 | u_int32_t area_id; |
| 355 | |
| 356 | o = (struct ospf6 *) vty->index; |
| 357 | |
| 358 | /* find/create ospf6 interface */ |
| 359 | ifp = if_get_by_name (argv[0]); |
| 360 | oi = (struct ospf6_interface *) ifp->info; |
| 361 | if (oi == NULL) |
| 362 | oi = ospf6_interface_create (ifp); |
| 363 | if (oi->area) |
| 364 | { |
| 365 | vty_out (vty, "%s already attached to Area %s%s", |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 366 | oi->interface->name, oi->area->name, VNL); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 367 | return CMD_SUCCESS; |
| 368 | } |
| 369 | |
| 370 | /* parse Area-ID */ |
| 371 | if (inet_pton (AF_INET, argv[1], &area_id) != 1) |
| 372 | { |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 373 | vty_out (vty, "Invalid Area-ID: %s%s", argv[1], VNL); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 374 | return CMD_SUCCESS; |
| 375 | } |
| 376 | |
| 377 | /* find/create ospf6 area */ |
| 378 | oa = ospf6_area_lookup (area_id, o); |
| 379 | if (oa == NULL) |
| 380 | oa = ospf6_area_create (area_id, o); |
| 381 | |
| 382 | /* attach interface to area */ |
| 383 | listnode_add (oa->if_list, oi); /* sort ?? */ |
| 384 | oi->area = oa; |
| 385 | |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 386 | SET_FLAG (oa->flag, OSPF6_AREA_ENABLE); |
| 387 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 388 | /* start up */ |
| 389 | thread_add_event (master, interface_up, oi, 0); |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 390 | |
hasso | 3b68735 | 2004-08-19 06:56:53 +0000 | [diff] [blame] | 391 | /* If the router is ABR, originate summary routes */ |
| 392 | if (ospf6_is_router_abr (o)) |
| 393 | ospf6_abr_enable_area (oa); |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 394 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 395 | return CMD_SUCCESS; |
| 396 | } |
| 397 | |
| 398 | DEFUN (no_ospf6_interface_area, |
| 399 | no_ospf6_interface_area_cmd, |
| 400 | "no interface IFNAME area A.B.C.D", |
| 401 | NO_STR |
| 402 | "Disable routing on an IPv6 interface\n" |
| 403 | IFNAME_STR |
| 404 | "Specify the OSPF6 area ID\n" |
| 405 | "OSPF6 area ID in IPv4 address notation\n" |
| 406 | ) |
| 407 | { |
| 408 | struct ospf6 *o; |
| 409 | struct ospf6_interface *oi; |
hasso | 3b68735 | 2004-08-19 06:56:53 +0000 | [diff] [blame] | 410 | struct ospf6_area *oa; |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 411 | struct interface *ifp; |
| 412 | u_int32_t area_id; |
| 413 | |
| 414 | o = (struct ospf6 *) vty->index; |
| 415 | |
| 416 | ifp = if_lookup_by_name (argv[0]); |
| 417 | if (ifp == NULL) |
| 418 | { |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 419 | vty_out (vty, "No such interface %s%s", argv[0], VNL); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 420 | return CMD_SUCCESS; |
| 421 | } |
| 422 | |
| 423 | oi = (struct ospf6_interface *) ifp->info; |
| 424 | if (oi == NULL) |
| 425 | { |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 426 | vty_out (vty, "Interface %s not enabled%s", ifp->name, VNL); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 427 | return CMD_SUCCESS; |
| 428 | } |
| 429 | |
| 430 | /* parse Area-ID */ |
| 431 | if (inet_pton (AF_INET, argv[1], &area_id) != 1) |
| 432 | { |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 433 | vty_out (vty, "Invalid Area-ID: %s%s", argv[1], VNL); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 434 | return CMD_SUCCESS; |
| 435 | } |
| 436 | |
Jon | 56abbb8 | 2009-02-11 17:30:44 -0800 | [diff] [blame] | 437 | /* Verify Area */ |
| 438 | if (oi->area == NULL) |
| 439 | { |
| 440 | vty_out (vty, "No such Area-ID: %s%s", argv[1], VNL); |
| 441 | return CMD_SUCCESS; |
| 442 | } |
| 443 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 444 | if (oi->area->area_id != area_id) |
| 445 | { |
| 446 | vty_out (vty, "Wrong Area-ID: %s is attached to area %s%s", |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 447 | oi->interface->name, oi->area->name, VNL); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 448 | return CMD_SUCCESS; |
| 449 | } |
| 450 | |
| 451 | thread_execute (master, interface_down, oi, 0); |
| 452 | |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 453 | oa = oi->area; |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 454 | listnode_delete (oi->area->if_list, oi); |
| 455 | oi->area = (struct ospf6_area *) NULL; |
| 456 | |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 457 | /* Withdraw inter-area routes from this area, if necessary */ |
| 458 | if (oa->if_list->count == 0) |
| 459 | { |
| 460 | UNSET_FLAG (oa->flag, OSPF6_AREA_ENABLE); |
hasso | 3b68735 | 2004-08-19 06:56:53 +0000 | [diff] [blame] | 461 | ospf6_abr_disable_area (oa); |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 462 | } |
| 463 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 464 | return CMD_SUCCESS; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 465 | } |
| 466 | |
Paul Jakma | 6ac29a5 | 2008-08-15 13:45:30 +0100 | [diff] [blame] | 467 | static void |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 468 | ospf6_show (struct vty *vty, struct ospf6 *o) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 469 | { |
hasso | 52dc7ee | 2004-09-23 19:18:23 +0000 | [diff] [blame] | 470 | struct listnode *n; |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 471 | struct ospf6_area *oa; |
| 472 | char router_id[16], duration[32]; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 473 | struct timeval now, running; |
| 474 | |
| 475 | /* process id, router id */ |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 476 | inet_ntop (AF_INET, &o->router_id, router_id, sizeof (router_id)); |
| 477 | vty_out (vty, " OSPFv3 Routing Process (0) with Router-ID %s%s", |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 478 | router_id, VNL); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 479 | |
| 480 | /* running time */ |
Takashi Sogabe | 86f72dc | 2009-06-22 13:07:02 +0900 | [diff] [blame] | 481 | quagga_gettime (QUAGGA_CLK_MONOTONIC, &now); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 482 | timersub (&now, &o->starttime, &running); |
| 483 | timerstring (&running, duration, sizeof (duration)); |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 484 | vty_out (vty, " Running %s%s", duration, VNL); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 485 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 486 | /* Redistribute configuration */ |
| 487 | /* XXX */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 488 | |
| 489 | /* LSAs */ |
| 490 | vty_out (vty, " Number of AS scoped LSAs is %u%s", |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 491 | o->lsdb->count, VNL); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 492 | |
| 493 | /* Areas */ |
| 494 | vty_out (vty, " Number of areas in this router is %u%s", |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 495 | listcount (o->area_list), VNL); |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 496 | |
| 497 | for (ALL_LIST_ELEMENTS_RO (o->area_list, n, oa)) |
| 498 | ospf6_area_show (vty, oa); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 499 | } |
| 500 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 501 | /* show top level structures */ |
| 502 | DEFUN (show_ipv6_ospf6, |
| 503 | show_ipv6_ospf6_cmd, |
| 504 | "show ipv6 ospf6", |
| 505 | SHOW_STR |
| 506 | IP6_STR |
| 507 | OSPF6_STR) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 508 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 509 | OSPF6_CMD_CHECK_RUNNING (); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 510 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 511 | ospf6_show (vty, ospf6); |
| 512 | return CMD_SUCCESS; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 513 | } |
| 514 | |
| 515 | DEFUN (show_ipv6_ospf6_route, |
| 516 | show_ipv6_ospf6_route_cmd, |
| 517 | "show ipv6 ospf6 route", |
| 518 | SHOW_STR |
| 519 | IP6_STR |
| 520 | OSPF6_STR |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 521 | ROUTE_STR |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 522 | ) |
| 523 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 524 | ospf6_route_table_show (vty, argc, argv, ospf6->route_table); |
| 525 | return CMD_SUCCESS; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 526 | } |
| 527 | |
| 528 | ALIAS (show_ipv6_ospf6_route, |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 529 | show_ipv6_ospf6_route_detail_cmd, |
hasso | 4846ef6 | 2004-09-03 06:04:00 +0000 | [diff] [blame] | 530 | "show ipv6 ospf6 route (X:X::X:X|X:X::X:X/M|detail|summary)", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 531 | SHOW_STR |
| 532 | IP6_STR |
| 533 | OSPF6_STR |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 534 | ROUTE_STR |
| 535 | "Specify IPv6 address\n" |
| 536 | "Specify IPv6 prefix\n" |
| 537 | "Detailed information\n" |
| 538 | "Summary of route table\n" |
Paul Jakma | 6ac29a5 | 2008-08-15 13:45:30 +0100 | [diff] [blame] | 539 | ) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 540 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 541 | DEFUN (show_ipv6_ospf6_route_match, |
| 542 | show_ipv6_ospf6_route_match_cmd, |
hasso | 4846ef6 | 2004-09-03 06:04:00 +0000 | [diff] [blame] | 543 | "show ipv6 ospf6 route X:X::X:X/M match", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 544 | SHOW_STR |
| 545 | IP6_STR |
| 546 | OSPF6_STR |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 547 | ROUTE_STR |
| 548 | "Specify IPv6 prefix\n" |
| 549 | "Display routes which match the specified route\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 550 | ) |
| 551 | { |
paul | 0c083ee | 2004-10-10 12:54:58 +0000 | [diff] [blame] | 552 | const char *sargv[CMD_ARGC_MAX]; |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 553 | int i, sargc; |
| 554 | |
| 555 | /* copy argv to sargv and then append "match" */ |
| 556 | for (i = 0; i < argc; i++) |
| 557 | sargv[i] = argv[i]; |
| 558 | sargc = argc; |
| 559 | sargv[sargc++] = "match"; |
| 560 | sargv[sargc] = NULL; |
| 561 | |
| 562 | ospf6_route_table_show (vty, sargc, sargv, ospf6->route_table); |
| 563 | return CMD_SUCCESS; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 564 | } |
| 565 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 566 | DEFUN (show_ipv6_ospf6_route_match_detail, |
| 567 | show_ipv6_ospf6_route_match_detail_cmd, |
hasso | 4846ef6 | 2004-09-03 06:04:00 +0000 | [diff] [blame] | 568 | "show ipv6 ospf6 route X:X::X:X/M match detail", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 569 | SHOW_STR |
| 570 | IP6_STR |
| 571 | OSPF6_STR |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 572 | ROUTE_STR |
| 573 | "Specify IPv6 prefix\n" |
| 574 | "Display routes which match the specified route\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 575 | "Detailed information\n" |
| 576 | ) |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 577 | { |
paul | 0c083ee | 2004-10-10 12:54:58 +0000 | [diff] [blame] | 578 | const char *sargv[CMD_ARGC_MAX]; |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 579 | int i, sargc; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 580 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 581 | /* copy argv to sargv and then append "match" and "detail" */ |
| 582 | for (i = 0; i < argc; i++) |
| 583 | sargv[i] = argv[i]; |
| 584 | sargc = argc; |
| 585 | sargv[sargc++] = "match"; |
| 586 | sargv[sargc++] = "detail"; |
| 587 | sargv[sargc] = NULL; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 588 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 589 | ospf6_route_table_show (vty, sargc, sargv, ospf6->route_table); |
| 590 | return CMD_SUCCESS; |
| 591 | } |
| 592 | |
Paul Jakma | cb4b884 | 2006-05-15 10:39:30 +0000 | [diff] [blame] | 593 | ALIAS (show_ipv6_ospf6_route_match, |
| 594 | show_ipv6_ospf6_route_longer_cmd, |
| 595 | "show ipv6 ospf6 route X:X::X:X/M longer", |
| 596 | SHOW_STR |
| 597 | IP6_STR |
| 598 | OSPF6_STR |
| 599 | ROUTE_STR |
| 600 | "Specify IPv6 prefix\n" |
| 601 | "Display routes longer than the specified route\n" |
Paul Jakma | 6ac29a5 | 2008-08-15 13:45:30 +0100 | [diff] [blame] | 602 | ) |
Paul Jakma | cb4b884 | 2006-05-15 10:39:30 +0000 | [diff] [blame] | 603 | |
| 604 | DEFUN (show_ipv6_ospf6_route_match_detail, |
| 605 | show_ipv6_ospf6_route_longer_detail_cmd, |
| 606 | "show ipv6 ospf6 route X:X::X:X/M longer detail", |
| 607 | SHOW_STR |
| 608 | IP6_STR |
| 609 | OSPF6_STR |
| 610 | ROUTE_STR |
| 611 | "Specify IPv6 prefix\n" |
| 612 | "Display routes longer than the specified route\n" |
| 613 | "Detailed information\n" |
| 614 | ); |
| 615 | |
hasso | 4846ef6 | 2004-09-03 06:04:00 +0000 | [diff] [blame] | 616 | ALIAS (show_ipv6_ospf6_route, |
| 617 | show_ipv6_ospf6_route_type_cmd, |
| 618 | "show ipv6 ospf6 route (intra-area|inter-area|external-1|external-2)", |
| 619 | SHOW_STR |
| 620 | IP6_STR |
| 621 | OSPF6_STR |
| 622 | ROUTE_STR |
Denis Ovsienko | ea40219 | 2011-08-19 16:27:16 +0400 | [diff] [blame] | 623 | "Display Intra-Area routes\n" |
| 624 | "Display Inter-Area routes\n" |
| 625 | "Display Type-1 External routes\n" |
| 626 | "Display Type-2 External routes\n" |
Paul Jakma | 6ac29a5 | 2008-08-15 13:45:30 +0100 | [diff] [blame] | 627 | ) |
hasso | 4846ef6 | 2004-09-03 06:04:00 +0000 | [diff] [blame] | 628 | |
| 629 | DEFUN (show_ipv6_ospf6_route_type_detail, |
| 630 | show_ipv6_ospf6_route_type_detail_cmd, |
| 631 | "show ipv6 ospf6 route (intra-area|inter-area|external-1|external-2) detail", |
| 632 | SHOW_STR |
| 633 | IP6_STR |
| 634 | OSPF6_STR |
| 635 | ROUTE_STR |
Denis Ovsienko | ea40219 | 2011-08-19 16:27:16 +0400 | [diff] [blame] | 636 | "Display Intra-Area routes\n" |
| 637 | "Display Inter-Area routes\n" |
| 638 | "Display Type-1 External routes\n" |
| 639 | "Display Type-2 External routes\n" |
hasso | 4846ef6 | 2004-09-03 06:04:00 +0000 | [diff] [blame] | 640 | "Detailed information\n" |
| 641 | ) |
| 642 | { |
paul | 0c083ee | 2004-10-10 12:54:58 +0000 | [diff] [blame] | 643 | const char *sargv[CMD_ARGC_MAX]; |
hasso | 4846ef6 | 2004-09-03 06:04:00 +0000 | [diff] [blame] | 644 | int i, sargc; |
| 645 | |
| 646 | /* copy argv to sargv and then append "detail" */ |
| 647 | for (i = 0; i < argc; i++) |
| 648 | sargv[i] = argv[i]; |
| 649 | sargc = argc; |
| 650 | sargv[sargc++] = "detail"; |
| 651 | sargv[sargc] = NULL; |
| 652 | |
| 653 | ospf6_route_table_show (vty, sargc, sargv, ospf6->route_table); |
| 654 | return CMD_SUCCESS; |
| 655 | } |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 656 | |
| 657 | /* OSPF configuration write function. */ |
Paul Jakma | 6ac29a5 | 2008-08-15 13:45:30 +0100 | [diff] [blame] | 658 | static int |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 659 | config_write_ospf6 (struct vty *vty) |
| 660 | { |
| 661 | char router_id[16]; |
hasso | 52dc7ee | 2004-09-23 19:18:23 +0000 | [diff] [blame] | 662 | struct listnode *j, *k; |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 663 | struct ospf6_area *oa; |
| 664 | struct ospf6_interface *oi; |
| 665 | |
| 666 | /* OSPFv6 configuration. */ |
| 667 | if (ospf6 == NULL) |
| 668 | return CMD_SUCCESS; |
| 669 | if (CHECK_FLAG (ospf6->flag, OSPF6_DISABLED)) |
| 670 | return CMD_SUCCESS; |
| 671 | |
hasso | c8a440e | 2004-10-11 17:02:40 +0000 | [diff] [blame] | 672 | inet_ntop (AF_INET, &ospf6->router_id_static, router_id, sizeof (router_id)); |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 673 | vty_out (vty, "router ospf6%s", VNL); |
hasso | c8a440e | 2004-10-11 17:02:40 +0000 | [diff] [blame] | 674 | if (ospf6->router_id_static != 0) |
| 675 | vty_out (vty, " router-id %s%s", router_id, VNL); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 676 | |
| 677 | ospf6_redistribute_config_write (vty); |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 678 | ospf6_area_config_write (vty); |
Dinesh Dutt | 3810e06 | 2013-08-24 07:54:09 +0000 | [diff] [blame] | 679 | ospf6_spf_config_write (vty); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 680 | |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 681 | for (ALL_LIST_ELEMENTS_RO (ospf6->area_list, j, oa)) |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 682 | { |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 683 | for (ALL_LIST_ELEMENTS_RO (oa->if_list, k, oi)) |
| 684 | vty_out (vty, " interface %s area %s%s", |
| 685 | oi->interface->name, oa->name, VNL); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 686 | } |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 687 | vty_out (vty, "!%s", VNL); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 688 | return 0; |
| 689 | } |
| 690 | |
| 691 | /* OSPF6 node structure. */ |
Stephen Hemminger | 7fc626d | 2008-12-01 11:10:34 -0800 | [diff] [blame] | 692 | static struct cmd_node ospf6_node = |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 693 | { |
| 694 | OSPF6_NODE, |
| 695 | "%s(config-ospf6)# ", |
hasso | 69b4a81 | 2004-08-26 18:10:36 +0000 | [diff] [blame] | 696 | 1 /* VTYSH */ |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 697 | }; |
| 698 | |
| 699 | /* Install ospf related commands. */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 700 | void |
Paul Jakma | 6ac29a5 | 2008-08-15 13:45:30 +0100 | [diff] [blame] | 701 | ospf6_top_init (void) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 702 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 703 | /* Install ospf6 top node. */ |
| 704 | install_node (&ospf6_node, config_write_ospf6); |
| 705 | |
| 706 | install_element (VIEW_NODE, &show_ipv6_ospf6_cmd); |
| 707 | install_element (ENABLE_NODE, &show_ipv6_ospf6_cmd); |
| 708 | install_element (CONFIG_NODE, &router_ospf6_cmd); |
Jon | 6c19d26 | 2009-02-11 17:19:07 -0800 | [diff] [blame] | 709 | install_element (CONFIG_NODE, &no_router_ospf6_cmd); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 710 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 711 | install_element (VIEW_NODE, &show_ipv6_ospf6_route_cmd); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 712 | install_element (VIEW_NODE, &show_ipv6_ospf6_route_detail_cmd); |
| 713 | install_element (VIEW_NODE, &show_ipv6_ospf6_route_match_cmd); |
| 714 | install_element (VIEW_NODE, &show_ipv6_ospf6_route_match_detail_cmd); |
Paul Jakma | cb4b884 | 2006-05-15 10:39:30 +0000 | [diff] [blame] | 715 | install_element (VIEW_NODE, &show_ipv6_ospf6_route_longer_cmd); |
| 716 | install_element (VIEW_NODE, &show_ipv6_ospf6_route_longer_detail_cmd); |
hasso | 4846ef6 | 2004-09-03 06:04:00 +0000 | [diff] [blame] | 717 | install_element (VIEW_NODE, &show_ipv6_ospf6_route_type_cmd); |
| 718 | install_element (VIEW_NODE, &show_ipv6_ospf6_route_type_detail_cmd); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 719 | install_element (ENABLE_NODE, &show_ipv6_ospf6_route_cmd); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 720 | install_element (ENABLE_NODE, &show_ipv6_ospf6_route_detail_cmd); |
| 721 | install_element (ENABLE_NODE, &show_ipv6_ospf6_route_match_cmd); |
| 722 | install_element (ENABLE_NODE, &show_ipv6_ospf6_route_match_detail_cmd); |
Paul Jakma | cb4b884 | 2006-05-15 10:39:30 +0000 | [diff] [blame] | 723 | install_element (ENABLE_NODE, &show_ipv6_ospf6_route_longer_cmd); |
| 724 | install_element (ENABLE_NODE, &show_ipv6_ospf6_route_longer_detail_cmd); |
hasso | 4846ef6 | 2004-09-03 06:04:00 +0000 | [diff] [blame] | 725 | install_element (ENABLE_NODE, &show_ipv6_ospf6_route_type_cmd); |
| 726 | install_element (ENABLE_NODE, &show_ipv6_ospf6_route_type_detail_cmd); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 727 | |
| 728 | install_default (OSPF6_NODE); |
| 729 | install_element (OSPF6_NODE, &ospf6_router_id_cmd); |
| 730 | install_element (OSPF6_NODE, &ospf6_interface_area_cmd); |
| 731 | install_element (OSPF6_NODE, &no_ospf6_interface_area_cmd); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 732 | } |
| 733 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 734 | |