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 "prefix.h" |
| 27 | #include "command.h" |
| 28 | #include "vty.h" |
| 29 | #include "routemap.h" |
| 30 | #include "table.h" |
| 31 | #include "plist.h" |
| 32 | #include "thread.h" |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 33 | #include "linklist.h" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 34 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 35 | #include "ospf6_proto.h" |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 36 | #include "ospf6_lsa.h" |
| 37 | #include "ospf6_lsdb.h" |
| 38 | #include "ospf6_route.h" |
| 39 | #include "ospf6_zebra.h" |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 40 | #include "ospf6_message.h" |
| 41 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 42 | #include "ospf6_top.h" |
| 43 | #include "ospf6_area.h" |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 44 | #include "ospf6_interface.h" |
| 45 | #include "ospf6_neighbor.h" |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 46 | #include "ospf6_asbr.h" |
| 47 | #include "ospf6_intra.h" |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 48 | #include "ospf6_flood.h" |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 49 | #include "ospf6d.h" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 50 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 51 | unsigned char conf_debug_ospf6_asbr = 0; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 52 | |
ajs | f52d13c | 2005-10-01 17:38:06 +0000 | [diff] [blame] | 53 | #define ZROUTE_NAME(x) zebra_route_string(x) |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 54 | |
| 55 | /* AS External LSA origination */ |
Paul Jakma | 6ac29a5 | 2008-08-15 13:45:30 +0100 | [diff] [blame] | 56 | static void |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 57 | ospf6_as_external_lsa_originate (struct ospf6_route *route) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 58 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 59 | char buffer[OSPF6_MAX_LSASIZE]; |
| 60 | struct ospf6_lsa_header *lsa_header; |
Paul Jakma | 7aa9dce | 2014-09-19 14:42:23 +0100 | [diff] [blame] | 61 | struct ospf6_lsa *lsa; |
Paul Jakma | 0b26f81 | 2006-05-15 10:47:53 +0000 | [diff] [blame] | 62 | struct ospf6_external_info *info = route->route_option; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 63 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 64 | struct ospf6_as_external_lsa *as_external_lsa; |
| 65 | char buf[64]; |
| 66 | caddr_t p; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 67 | |
hasso | 1e05838 | 2004-09-01 21:36:14 +0000 | [diff] [blame] | 68 | if (IS_OSPF6_DEBUG_ASBR || IS_OSPF6_DEBUG_ORIGINATE (AS_EXTERNAL)) |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 69 | { |
| 70 | prefix2str (&route->prefix, buf, sizeof (buf)); |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 71 | zlog_debug ("Originate AS-External-LSA for %s", buf); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 72 | } |
| 73 | |
| 74 | /* prepare buffer */ |
| 75 | memset (buffer, 0, sizeof (buffer)); |
| 76 | lsa_header = (struct ospf6_lsa_header *) buffer; |
| 77 | as_external_lsa = (struct ospf6_as_external_lsa *) |
| 78 | ((caddr_t) lsa_header + sizeof (struct ospf6_lsa_header)); |
| 79 | p = (caddr_t) |
| 80 | ((caddr_t) as_external_lsa + sizeof (struct ospf6_as_external_lsa)); |
| 81 | |
| 82 | /* Fill AS-External-LSA */ |
| 83 | /* Metric type */ |
| 84 | if (route->path.metric_type == 2) |
| 85 | SET_FLAG (as_external_lsa->bits_metric, OSPF6_ASBR_BIT_E); |
| 86 | else |
| 87 | UNSET_FLAG (as_external_lsa->bits_metric, OSPF6_ASBR_BIT_E); |
| 88 | |
| 89 | /* forwarding address */ |
Paul Jakma | 0b26f81 | 2006-05-15 10:47:53 +0000 | [diff] [blame] | 90 | if (! IN6_IS_ADDR_UNSPECIFIED (&info->forwarding)) |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 91 | SET_FLAG (as_external_lsa->bits_metric, OSPF6_ASBR_BIT_F); |
| 92 | else |
| 93 | UNSET_FLAG (as_external_lsa->bits_metric, OSPF6_ASBR_BIT_F); |
| 94 | |
| 95 | /* external route tag */ |
| 96 | UNSET_FLAG (as_external_lsa->bits_metric, OSPF6_ASBR_BIT_T); |
| 97 | |
| 98 | /* Set metric */ |
| 99 | OSPF6_ASBR_METRIC_SET (as_external_lsa, route->path.cost); |
| 100 | |
| 101 | /* prefixlen */ |
| 102 | as_external_lsa->prefix.prefix_length = route->prefix.prefixlen; |
| 103 | |
| 104 | /* PrefixOptions */ |
| 105 | as_external_lsa->prefix.prefix_options = route->path.prefix_options; |
| 106 | |
| 107 | /* don't use refer LS-type */ |
| 108 | as_external_lsa->prefix.prefix_refer_lstype = htons (0); |
| 109 | |
| 110 | /* set Prefix */ |
| 111 | memcpy (p, &route->prefix.u.prefix6, |
| 112 | OSPF6_PREFIX_SPACE (route->prefix.prefixlen)); |
| 113 | ospf6_prefix_apply_mask (&as_external_lsa->prefix); |
| 114 | p += OSPF6_PREFIX_SPACE (route->prefix.prefixlen); |
| 115 | |
| 116 | /* Forwarding address */ |
| 117 | if (CHECK_FLAG (as_external_lsa->bits_metric, OSPF6_ASBR_BIT_F)) |
| 118 | { |
Paul Jakma | 0b26f81 | 2006-05-15 10:47:53 +0000 | [diff] [blame] | 119 | memcpy (p, &info->forwarding, sizeof (struct in6_addr)); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 120 | p += sizeof (struct in6_addr); |
| 121 | } |
| 122 | |
| 123 | /* External Route Tag */ |
| 124 | if (CHECK_FLAG (as_external_lsa->bits_metric, OSPF6_ASBR_BIT_T)) |
| 125 | { |
| 126 | /* xxx */ |
| 127 | } |
| 128 | |
| 129 | /* Fill LSA Header */ |
| 130 | lsa_header->age = 0; |
| 131 | lsa_header->type = htons (OSPF6_LSTYPE_AS_EXTERNAL); |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 132 | lsa_header->id = route->path.origin.id; |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 133 | lsa_header->adv_router = ospf6->router_id; |
| 134 | lsa_header->seqnum = |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 135 | ospf6_new_ls_seqnum (lsa_header->type, lsa_header->id, |
| 136 | lsa_header->adv_router, ospf6->lsdb); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 137 | lsa_header->length = htons ((caddr_t) p - (caddr_t) lsa_header); |
| 138 | |
| 139 | /* LSA checksum */ |
| 140 | ospf6_lsa_checksum (lsa_header); |
| 141 | |
| 142 | /* create LSA */ |
| 143 | lsa = ospf6_lsa_create (lsa_header); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 144 | |
| 145 | /* Originate */ |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 146 | ospf6_lsa_originate_process (lsa, ospf6); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 147 | } |
| 148 | |
David Lamparter | 6b0655a | 2014-06-04 06:53:35 +0200 | [diff] [blame] | 149 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 150 | void |
| 151 | ospf6_asbr_lsa_add (struct ospf6_lsa *lsa) |
| 152 | { |
| 153 | struct ospf6_as_external_lsa *external; |
| 154 | struct prefix asbr_id; |
| 155 | struct ospf6_route *asbr_entry, *route; |
| 156 | char buf[64]; |
| 157 | int i; |
| 158 | |
| 159 | external = (struct ospf6_as_external_lsa *) |
| 160 | OSPF6_LSA_HEADER_END (lsa->header); |
| 161 | |
hasso | 1e05838 | 2004-09-01 21:36:14 +0000 | [diff] [blame] | 162 | if (IS_OSPF6_DEBUG_EXAMIN (AS_EXTERNAL)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 163 | zlog_debug ("Calculate AS-External route for %s", lsa->name); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 164 | |
| 165 | if (lsa->header->adv_router == ospf6->router_id) |
| 166 | { |
hasso | 1e05838 | 2004-09-01 21:36:14 +0000 | [diff] [blame] | 167 | if (IS_OSPF6_DEBUG_EXAMIN (AS_EXTERNAL)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 168 | zlog_debug ("Ignore self-originated AS-External-LSA"); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 169 | return; |
| 170 | } |
| 171 | |
Dinesh Dutt | 8551e6d | 2013-10-22 17:42:18 -0700 | [diff] [blame] | 172 | if (OSPF6_ASBR_METRIC (external) == OSPF_LS_INFINITY) |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 173 | { |
hasso | 1e05838 | 2004-09-01 21:36:14 +0000 | [diff] [blame] | 174 | if (IS_OSPF6_DEBUG_EXAMIN (AS_EXTERNAL)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 175 | zlog_debug ("Ignore LSA with LSInfinity Metric"); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 176 | return; |
| 177 | } |
| 178 | |
Dinesh Dutt | 0187911 | 2013-08-25 03:03:31 +0000 | [diff] [blame] | 179 | if (CHECK_FLAG(external->prefix.prefix_options, OSPF6_PREFIX_OPTION_NU)) |
| 180 | { |
| 181 | if (IS_OSPF6_DEBUG_EXAMIN (AS_EXTERNAL)) |
| 182 | zlog_debug ("Ignore LSA with NU bit set Metric"); |
| 183 | return; |
| 184 | } |
| 185 | |
hasso | ccb59b1 | 2004-08-25 09:10:37 +0000 | [diff] [blame] | 186 | ospf6_linkstate_prefix (lsa->header->adv_router, htonl (0), &asbr_id); |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 187 | asbr_entry = ospf6_route_lookup (&asbr_id, ospf6->brouter_table); |
hasso | 63069ad | 2004-09-02 13:01:01 +0000 | [diff] [blame] | 188 | if (asbr_entry == NULL || |
| 189 | ! CHECK_FLAG (asbr_entry->path.router_bits, OSPF6_ROUTER_BIT_E)) |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 190 | { |
hasso | 1e05838 | 2004-09-01 21:36:14 +0000 | [diff] [blame] | 191 | if (IS_OSPF6_DEBUG_EXAMIN (AS_EXTERNAL)) |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 192 | { |
| 193 | prefix2str (&asbr_id, buf, sizeof (buf)); |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 194 | zlog_debug ("ASBR entry not found: %s", buf); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 195 | } |
| 196 | return; |
| 197 | } |
| 198 | |
| 199 | route = ospf6_route_create (); |
| 200 | route->type = OSPF6_DEST_TYPE_NETWORK; |
| 201 | route->prefix.family = AF_INET6; |
| 202 | route->prefix.prefixlen = external->prefix.prefix_length; |
| 203 | ospf6_prefix_in6_addr (&route->prefix.u.prefix6, &external->prefix); |
| 204 | |
| 205 | route->path.area_id = asbr_entry->path.area_id; |
| 206 | route->path.origin.type = lsa->header->type; |
| 207 | route->path.origin.id = lsa->header->id; |
| 208 | route->path.origin.adv_router = lsa->header->adv_router; |
| 209 | |
| 210 | route->path.prefix_options = external->prefix.prefix_options; |
| 211 | if (CHECK_FLAG (external->bits_metric, OSPF6_ASBR_BIT_E)) |
| 212 | { |
| 213 | route->path.type = OSPF6_PATH_TYPE_EXTERNAL2; |
| 214 | route->path.metric_type = 2; |
| 215 | route->path.cost = asbr_entry->path.cost; |
| 216 | route->path.cost_e2 = OSPF6_ASBR_METRIC (external); |
| 217 | } |
| 218 | else |
| 219 | { |
| 220 | route->path.type = OSPF6_PATH_TYPE_EXTERNAL1; |
| 221 | route->path.metric_type = 1; |
| 222 | route->path.cost = asbr_entry->path.cost + OSPF6_ASBR_METRIC (external); |
| 223 | route->path.cost_e2 = 0; |
| 224 | } |
| 225 | |
| 226 | for (i = 0; i < OSPF6_MULTI_PATH_LIMIT; i++) |
| 227 | ospf6_nexthop_copy (&route->nexthop[i], &asbr_entry->nexthop[i]); |
| 228 | |
hasso | 1e05838 | 2004-09-01 21:36:14 +0000 | [diff] [blame] | 229 | if (IS_OSPF6_DEBUG_EXAMIN (AS_EXTERNAL)) |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 230 | { |
| 231 | prefix2str (&route->prefix, buf, sizeof (buf)); |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 232 | zlog_debug ("AS-External route add: %s", buf); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 233 | } |
| 234 | |
| 235 | ospf6_route_add (route, ospf6->route_table); |
| 236 | } |
| 237 | |
| 238 | void |
| 239 | ospf6_asbr_lsa_remove (struct ospf6_lsa *lsa) |
| 240 | { |
| 241 | struct ospf6_as_external_lsa *external; |
| 242 | struct prefix prefix; |
| 243 | struct ospf6_route *route; |
| 244 | char buf[64]; |
| 245 | |
| 246 | external = (struct ospf6_as_external_lsa *) |
| 247 | OSPF6_LSA_HEADER_END (lsa->header); |
| 248 | |
hasso | 1e05838 | 2004-09-01 21:36:14 +0000 | [diff] [blame] | 249 | if (IS_OSPF6_DEBUG_EXAMIN (AS_EXTERNAL)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 250 | zlog_debug ("Withdraw AS-External route for %s", lsa->name); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 251 | |
| 252 | if (lsa->header->adv_router == ospf6->router_id) |
| 253 | { |
hasso | 1e05838 | 2004-09-01 21:36:14 +0000 | [diff] [blame] | 254 | if (IS_OSPF6_DEBUG_EXAMIN (AS_EXTERNAL)) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 255 | zlog_debug ("Ignore self-originated AS-External-LSA"); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 256 | return; |
| 257 | } |
| 258 | |
| 259 | memset (&prefix, 0, sizeof (struct prefix)); |
| 260 | prefix.family = AF_INET6; |
| 261 | prefix.prefixlen = external->prefix.prefix_length; |
| 262 | ospf6_prefix_in6_addr (&prefix.u.prefix6, &external->prefix); |
| 263 | |
| 264 | route = ospf6_route_lookup (&prefix, ospf6->route_table); |
| 265 | if (route == NULL) |
| 266 | { |
hasso | 1e05838 | 2004-09-01 21:36:14 +0000 | [diff] [blame] | 267 | if (IS_OSPF6_DEBUG_EXAMIN (AS_EXTERNAL)) |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 268 | { |
| 269 | prefix2str (&prefix, buf, sizeof (buf)); |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 270 | zlog_debug ("AS-External route %s not found", buf); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 271 | } |
| 272 | return; |
| 273 | } |
| 274 | |
| 275 | for (ospf6_route_lock (route); |
| 276 | route && ospf6_route_is_prefix (&prefix, route); |
| 277 | route = ospf6_route_next (route)) |
| 278 | { |
| 279 | if (route->type != OSPF6_DEST_TYPE_NETWORK) |
| 280 | continue; |
| 281 | if (route->path.origin.type != lsa->header->type) |
| 282 | continue; |
| 283 | if (route->path.origin.id != lsa->header->id) |
| 284 | continue; |
| 285 | if (route->path.origin.adv_router != lsa->header->adv_router) |
| 286 | continue; |
| 287 | |
hasso | 1e05838 | 2004-09-01 21:36:14 +0000 | [diff] [blame] | 288 | if (IS_OSPF6_DEBUG_EXAMIN (AS_EXTERNAL)) |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 289 | { |
| 290 | prefix2str (&route->prefix, buf, sizeof (buf)); |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 291 | zlog_debug ("AS-External route remove: %s", buf); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 292 | } |
| 293 | ospf6_route_remove (route, ospf6->route_table); |
| 294 | } |
Christian Franke | c78a46c | 2013-03-20 10:50:09 +0000 | [diff] [blame] | 295 | if (route != NULL) |
| 296 | ospf6_route_unlock (route); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 297 | } |
| 298 | |
| 299 | void |
| 300 | ospf6_asbr_lsentry_add (struct ospf6_route *asbr_entry) |
| 301 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 302 | struct ospf6_lsa *lsa; |
| 303 | u_int16_t type; |
| 304 | u_int32_t router; |
| 305 | |
Paul Jakma | cb4b884 | 2006-05-15 10:39:30 +0000 | [diff] [blame] | 306 | if (! CHECK_FLAG (asbr_entry->flag, OSPF6_ROUTE_BEST)) |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 307 | { |
Paul Jakma | cb4b884 | 2006-05-15 10:39:30 +0000 | [diff] [blame] | 308 | char buf[16]; |
| 309 | inet_ntop (AF_INET, &ADV_ROUTER_IN_PREFIX (&asbr_entry->prefix), |
| 310 | buf, sizeof (buf)); |
| 311 | zlog_info ("ignore non-best path: lsentry %s add", buf); |
| 312 | return; |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 313 | } |
| 314 | |
| 315 | type = htons (OSPF6_LSTYPE_AS_EXTERNAL); |
| 316 | router = ospf6_linkstate_prefix_adv_router (&asbr_entry->prefix); |
Paul Jakma | cb4b884 | 2006-05-15 10:39:30 +0000 | [diff] [blame] | 317 | for (lsa = ospf6_lsdb_type_router_head (type, router, ospf6->lsdb); lsa; |
| 318 | lsa = ospf6_lsdb_type_router_next (type, router, lsa)) |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 319 | { |
| 320 | if (! OSPF6_LSA_IS_MAXAGE (lsa)) |
| 321 | ospf6_asbr_lsa_add (lsa); |
| 322 | } |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 323 | } |
| 324 | |
| 325 | void |
| 326 | ospf6_asbr_lsentry_remove (struct ospf6_route *asbr_entry) |
| 327 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 328 | struct ospf6_lsa *lsa; |
| 329 | u_int16_t type; |
| 330 | u_int32_t router; |
| 331 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 332 | type = htons (OSPF6_LSTYPE_AS_EXTERNAL); |
| 333 | router = ospf6_linkstate_prefix_adv_router (&asbr_entry->prefix); |
| 334 | for (lsa = ospf6_lsdb_type_router_head (type, router, ospf6->lsdb); |
| 335 | lsa; lsa = ospf6_lsdb_type_router_next (type, router, lsa)) |
| 336 | ospf6_asbr_lsa_remove (lsa); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 337 | } |
| 338 | |
| 339 | |
David Lamparter | 6b0655a | 2014-06-04 06:53:35 +0200 | [diff] [blame] | 340 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 341 | /* redistribute function */ |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 342 | |
Paul Jakma | 6ac29a5 | 2008-08-15 13:45:30 +0100 | [diff] [blame] | 343 | static void |
paul | 0c083ee | 2004-10-10 12:54:58 +0000 | [diff] [blame] | 344 | ospf6_asbr_routemap_set (int type, const char *mapname) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 345 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 346 | if (ospf6->rmap[type].name) |
| 347 | free (ospf6->rmap[type].name); |
| 348 | ospf6->rmap[type].name = strdup (mapname); |
| 349 | ospf6->rmap[type].map = route_map_lookup_by_name (mapname); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 350 | } |
| 351 | |
Paul Jakma | 6ac29a5 | 2008-08-15 13:45:30 +0100 | [diff] [blame] | 352 | static void |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 353 | ospf6_asbr_routemap_unset (int type) |
| 354 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 355 | if (ospf6->rmap[type].name) |
| 356 | free (ospf6->rmap[type].name); |
| 357 | ospf6->rmap[type].name = NULL; |
| 358 | ospf6->rmap[type].map = NULL; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 359 | } |
| 360 | |
Paul Jakma | 6ac29a5 | 2008-08-15 13:45:30 +0100 | [diff] [blame] | 361 | static void |
paul | 0c083ee | 2004-10-10 12:54:58 +0000 | [diff] [blame] | 362 | ospf6_asbr_routemap_update (const char *mapname) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 363 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 364 | int type; |
| 365 | |
| 366 | if (ospf6 == NULL) |
| 367 | return; |
| 368 | |
| 369 | for (type = 0; type < ZEBRA_ROUTE_MAX; type++) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 370 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 371 | if (ospf6->rmap[type].name) |
| 372 | ospf6->rmap[type].map = |
| 373 | route_map_lookup_by_name (ospf6->rmap[type].name); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 374 | else |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 375 | ospf6->rmap[type].map = NULL; |
| 376 | } |
| 377 | } |
| 378 | |
| 379 | int |
| 380 | ospf6_asbr_is_asbr (struct ospf6 *o) |
| 381 | { |
| 382 | return o->external_table->count; |
| 383 | } |
| 384 | |
Paul Jakma | 6ac29a5 | 2008-08-15 13:45:30 +0100 | [diff] [blame] | 385 | static void |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 386 | ospf6_asbr_redistribute_set (int type) |
| 387 | { |
| 388 | ospf6_zebra_redistribute (type); |
| 389 | } |
| 390 | |
Paul Jakma | 6ac29a5 | 2008-08-15 13:45:30 +0100 | [diff] [blame] | 391 | static void |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 392 | ospf6_asbr_redistribute_unset (int type) |
| 393 | { |
| 394 | struct ospf6_route *route; |
| 395 | struct ospf6_external_info *info; |
| 396 | |
| 397 | ospf6_zebra_no_redistribute (type); |
| 398 | |
| 399 | for (route = ospf6_route_head (ospf6->external_table); route; |
| 400 | route = ospf6_route_next (route)) |
| 401 | { |
| 402 | info = route->route_option; |
| 403 | if (info->type != type) |
| 404 | continue; |
| 405 | |
| 406 | ospf6_asbr_redistribute_remove (info->type, route->nexthop[0].ifindex, |
| 407 | &route->prefix); |
| 408 | } |
Christian Franke | d962872 | 2013-03-08 21:47:35 +0100 | [diff] [blame] | 409 | |
| 410 | ospf6_asbr_routemap_unset (type); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 411 | } |
| 412 | |
| 413 | void |
| 414 | ospf6_asbr_redistribute_add (int type, int ifindex, struct prefix *prefix, |
| 415 | u_int nexthop_num, struct in6_addr *nexthop) |
| 416 | { |
| 417 | int ret; |
| 418 | struct ospf6_route troute; |
| 419 | struct ospf6_external_info tinfo; |
| 420 | struct ospf6_route *route, *match; |
| 421 | struct ospf6_external_info *info; |
| 422 | struct prefix prefix_id; |
| 423 | struct route_node *node; |
| 424 | char pbuf[64], ibuf[16]; |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 425 | struct listnode *lnode, *lnnode; |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 426 | struct ospf6_area *oa; |
| 427 | |
| 428 | if (! ospf6_zebra_is_redistribute (type)) |
| 429 | return; |
| 430 | |
| 431 | if (IS_OSPF6_DEBUG_ASBR) |
| 432 | { |
| 433 | prefix2str (prefix, pbuf, sizeof (pbuf)); |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 434 | zlog_debug ("Redistribute %s (%s)", pbuf, ZROUTE_NAME (type)); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 435 | } |
| 436 | |
| 437 | /* if route-map was specified but not found, do not advertise */ |
| 438 | if (ospf6->rmap[type].name) |
| 439 | { |
| 440 | if (ospf6->rmap[type].map == NULL) |
hasso | 03d52f8 | 2004-09-29 00:26:19 +0000 | [diff] [blame] | 441 | ospf6_asbr_routemap_update (NULL); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 442 | if (ospf6->rmap[type].map == NULL) |
| 443 | { |
| 444 | zlog_warn ("route-map \"%s\" not found, suppress redistributing", |
| 445 | ospf6->rmap[type].name); |
| 446 | return; |
| 447 | } |
| 448 | } |
| 449 | |
| 450 | /* apply route-map */ |
| 451 | if (ospf6->rmap[type].map) |
| 452 | { |
| 453 | memset (&troute, 0, sizeof (troute)); |
| 454 | memset (&tinfo, 0, sizeof (tinfo)); |
| 455 | troute.route_option = &tinfo; |
Vyacheslav Trushkin | 42a7deb | 2011-11-16 14:22:03 +0400 | [diff] [blame] | 456 | tinfo.ifindex = ifindex; |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 457 | |
| 458 | ret = route_map_apply (ospf6->rmap[type].map, prefix, |
| 459 | RMAP_OSPF6, &troute); |
paul | 4782874 | 2005-08-10 15:46:11 +0000 | [diff] [blame] | 460 | if (ret == RMAP_DENYMATCH) |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 461 | { |
| 462 | if (IS_OSPF6_DEBUG_ASBR) |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 463 | zlog_debug ("Denied by route-map \"%s\"", ospf6->rmap[type].name); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 464 | return; |
| 465 | } |
| 466 | } |
| 467 | |
| 468 | match = ospf6_route_lookup (prefix, ospf6->external_table); |
| 469 | if (match) |
| 470 | { |
| 471 | info = match->route_option; |
| 472 | |
| 473 | /* copy result of route-map */ |
| 474 | if (ospf6->rmap[type].map) |
| 475 | { |
| 476 | if (troute.path.metric_type) |
| 477 | match->path.metric_type = troute.path.metric_type; |
| 478 | if (troute.path.cost) |
| 479 | match->path.cost = troute.path.cost; |
| 480 | if (! IN6_IS_ADDR_UNSPECIFIED (&tinfo.forwarding)) |
| 481 | memcpy (&info->forwarding, &tinfo.forwarding, |
| 482 | sizeof (struct in6_addr)); |
| 483 | } |
| 484 | |
| 485 | info->type = type; |
| 486 | match->nexthop[0].ifindex = ifindex; |
| 487 | if (nexthop_num && nexthop) |
| 488 | memcpy (&match->nexthop[0].address, nexthop, sizeof (struct in6_addr)); |
| 489 | |
| 490 | /* create/update binding in external_id_table */ |
| 491 | prefix_id.family = AF_INET; |
| 492 | prefix_id.prefixlen = 32; |
| 493 | prefix_id.u.prefix4.s_addr = htonl (info->id); |
| 494 | node = route_node_get (ospf6->external_id_table, &prefix_id); |
| 495 | node->info = match; |
| 496 | |
| 497 | if (IS_OSPF6_DEBUG_ASBR) |
| 498 | { |
| 499 | inet_ntop (AF_INET, &prefix_id.u.prefix4, ibuf, sizeof (ibuf)); |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 500 | zlog_debug ("Advertise as AS-External Id:%s", ibuf); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 501 | } |
| 502 | |
hasso | 3b68735 | 2004-08-19 06:56:53 +0000 | [diff] [blame] | 503 | match->path.origin.id = htonl (info->id); |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 504 | ospf6_as_external_lsa_originate (match); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 505 | return; |
| 506 | } |
| 507 | |
| 508 | /* create new entry */ |
| 509 | route = ospf6_route_create (); |
| 510 | route->type = OSPF6_DEST_TYPE_NETWORK; |
| 511 | memcpy (&route->prefix, prefix, sizeof (struct prefix)); |
| 512 | |
| 513 | info = (struct ospf6_external_info *) |
Stephen Hemminger | 393deb9 | 2008-08-18 14:13:29 -0700 | [diff] [blame] | 514 | XCALLOC (MTYPE_OSPF6_EXTERNAL_INFO, sizeof (struct ospf6_external_info)); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 515 | route->route_option = info; |
| 516 | info->id = ospf6->external_id++; |
| 517 | |
| 518 | /* copy result of route-map */ |
| 519 | if (ospf6->rmap[type].map) |
| 520 | { |
| 521 | if (troute.path.metric_type) |
| 522 | route->path.metric_type = troute.path.metric_type; |
| 523 | if (troute.path.cost) |
| 524 | route->path.cost = troute.path.cost; |
| 525 | if (! IN6_IS_ADDR_UNSPECIFIED (&tinfo.forwarding)) |
| 526 | memcpy (&info->forwarding, &tinfo.forwarding, |
| 527 | sizeof (struct in6_addr)); |
| 528 | } |
| 529 | |
| 530 | info->type = type; |
| 531 | route->nexthop[0].ifindex = ifindex; |
| 532 | if (nexthop_num && nexthop) |
| 533 | memcpy (&route->nexthop[0].address, nexthop, sizeof (struct in6_addr)); |
| 534 | |
| 535 | /* create/update binding in external_id_table */ |
| 536 | prefix_id.family = AF_INET; |
| 537 | prefix_id.prefixlen = 32; |
| 538 | prefix_id.u.prefix4.s_addr = htonl (info->id); |
| 539 | node = route_node_get (ospf6->external_id_table, &prefix_id); |
| 540 | node->info = route; |
| 541 | |
| 542 | route = ospf6_route_add (route, ospf6->external_table); |
| 543 | route->route_option = info; |
| 544 | |
| 545 | if (IS_OSPF6_DEBUG_ASBR) |
| 546 | { |
| 547 | inet_ntop (AF_INET, &prefix_id.u.prefix4, ibuf, sizeof (ibuf)); |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 548 | zlog_debug ("Advertise as AS-External Id:%s", ibuf); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 549 | } |
| 550 | |
hasso | 3b68735 | 2004-08-19 06:56:53 +0000 | [diff] [blame] | 551 | route->path.origin.id = htonl (info->id); |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 552 | ospf6_as_external_lsa_originate (route); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 553 | |
| 554 | /* Router-Bit (ASBR Flag) may have to be updated */ |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 555 | for (ALL_LIST_ELEMENTS (ospf6->area_list, lnode, lnnode, oa)) |
| 556 | OSPF6_ROUTER_LSA_SCHEDULE (oa); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 557 | } |
| 558 | |
| 559 | void |
| 560 | ospf6_asbr_redistribute_remove (int type, int ifindex, struct prefix *prefix) |
| 561 | { |
| 562 | struct ospf6_route *match; |
| 563 | struct ospf6_external_info *info = NULL; |
| 564 | struct route_node *node; |
| 565 | struct ospf6_lsa *lsa; |
| 566 | struct prefix prefix_id; |
| 567 | char pbuf[64], ibuf[16]; |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 568 | struct listnode *lnode, *lnnode; |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 569 | struct ospf6_area *oa; |
| 570 | |
| 571 | match = ospf6_route_lookup (prefix, ospf6->external_table); |
| 572 | if (match == NULL) |
| 573 | { |
| 574 | if (IS_OSPF6_DEBUG_ASBR) |
| 575 | { |
| 576 | prefix2str (prefix, pbuf, sizeof (pbuf)); |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 577 | zlog_debug ("No such route %s to withdraw", pbuf); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 578 | } |
| 579 | return; |
| 580 | } |
| 581 | |
| 582 | info = match->route_option; |
| 583 | assert (info); |
| 584 | |
| 585 | if (info->type != type) |
| 586 | { |
| 587 | if (IS_OSPF6_DEBUG_ASBR) |
| 588 | { |
| 589 | prefix2str (prefix, pbuf, sizeof (pbuf)); |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 590 | zlog_debug ("Original protocol mismatch: %s", pbuf); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 591 | } |
| 592 | return; |
| 593 | } |
| 594 | |
| 595 | if (IS_OSPF6_DEBUG_ASBR) |
| 596 | { |
| 597 | prefix2str (prefix, pbuf, sizeof (pbuf)); |
| 598 | inet_ntop (AF_INET, &prefix_id.u.prefix4, ibuf, sizeof (ibuf)); |
hasso | c6487d6 | 2004-12-24 06:00:11 +0000 | [diff] [blame] | 599 | zlog_debug ("Withdraw %s (AS-External Id:%s)", pbuf, ibuf); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 600 | } |
| 601 | |
| 602 | lsa = ospf6_lsdb_lookup (htons (OSPF6_LSTYPE_AS_EXTERNAL), |
| 603 | htonl (info->id), ospf6->router_id, ospf6->lsdb); |
| 604 | if (lsa) |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 605 | ospf6_lsa_purge (lsa); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 606 | |
| 607 | /* remove binding in external_id_table */ |
| 608 | prefix_id.family = AF_INET; |
| 609 | prefix_id.prefixlen = 32; |
| 610 | prefix_id.u.prefix4.s_addr = htonl (info->id); |
| 611 | node = route_node_lookup (ospf6->external_id_table, &prefix_id); |
| 612 | assert (node); |
| 613 | node->info = NULL; |
| 614 | route_unlock_node (node); |
| 615 | |
| 616 | ospf6_route_remove (match, ospf6->external_table); |
| 617 | XFREE (MTYPE_OSPF6_EXTERNAL_INFO, info); |
| 618 | |
| 619 | /* Router-Bit (ASBR Flag) may have to be updated */ |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 620 | for (ALL_LIST_ELEMENTS (ospf6->area_list, lnode, lnnode, oa)) |
| 621 | OSPF6_ROUTER_LSA_SCHEDULE (oa); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 622 | } |
| 623 | |
| 624 | DEFUN (ospf6_redistribute, |
| 625 | ospf6_redistribute_cmd, |
David Lamparter | e0ca5fd | 2009-09-16 01:52:42 +0200 | [diff] [blame] | 626 | "redistribute " QUAGGA_REDIST_STR_OSPF6D, |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 627 | "Redistribute\n" |
David Lamparter | e0ca5fd | 2009-09-16 01:52:42 +0200 | [diff] [blame] | 628 | QUAGGA_REDIST_HELP_STR_OSPF6D |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 629 | ) |
| 630 | { |
David Lamparter | e0ca5fd | 2009-09-16 01:52:42 +0200 | [diff] [blame] | 631 | int type; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 632 | |
David Lamparter | e0ca5fd | 2009-09-16 01:52:42 +0200 | [diff] [blame] | 633 | type = proto_redistnum(AFI_IP6, argv[0]); |
| 634 | if (type < 0 || type == ZEBRA_ROUTE_OSPF6) |
| 635 | return CMD_WARNING; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 636 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 637 | ospf6_asbr_redistribute_unset (type); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 638 | ospf6_asbr_redistribute_set (type); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 639 | return CMD_SUCCESS; |
| 640 | } |
| 641 | |
| 642 | DEFUN (ospf6_redistribute_routemap, |
| 643 | ospf6_redistribute_routemap_cmd, |
David Lamparter | e0ca5fd | 2009-09-16 01:52:42 +0200 | [diff] [blame] | 644 | "redistribute " QUAGGA_REDIST_STR_OSPF6D " route-map WORD", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 645 | "Redistribute\n" |
David Lamparter | e0ca5fd | 2009-09-16 01:52:42 +0200 | [diff] [blame] | 646 | QUAGGA_REDIST_HELP_STR_OSPF6D |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 647 | "Route map reference\n" |
| 648 | "Route map name\n" |
| 649 | ) |
| 650 | { |
David Lamparter | e0ca5fd | 2009-09-16 01:52:42 +0200 | [diff] [blame] | 651 | int type; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 652 | |
David Lamparter | e0ca5fd | 2009-09-16 01:52:42 +0200 | [diff] [blame] | 653 | type = proto_redistnum(AFI_IP6, argv[0]); |
| 654 | if (type < 0 || type == ZEBRA_ROUTE_OSPF6) |
| 655 | return CMD_WARNING; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 656 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 657 | ospf6_asbr_redistribute_unset (type); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 658 | ospf6_asbr_routemap_set (type, argv[1]); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 659 | ospf6_asbr_redistribute_set (type); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 660 | return CMD_SUCCESS; |
| 661 | } |
| 662 | |
| 663 | DEFUN (no_ospf6_redistribute, |
| 664 | no_ospf6_redistribute_cmd, |
David Lamparter | e0ca5fd | 2009-09-16 01:52:42 +0200 | [diff] [blame] | 665 | "no redistribute " QUAGGA_REDIST_STR_OSPF6D, |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 666 | NO_STR |
| 667 | "Redistribute\n" |
David Lamparter | e0ca5fd | 2009-09-16 01:52:42 +0200 | [diff] [blame] | 668 | QUAGGA_REDIST_HELP_STR_OSPF6D |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 669 | ) |
| 670 | { |
David Lamparter | e0ca5fd | 2009-09-16 01:52:42 +0200 | [diff] [blame] | 671 | int type; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 672 | |
David Lamparter | e0ca5fd | 2009-09-16 01:52:42 +0200 | [diff] [blame] | 673 | type = proto_redistnum(AFI_IP6, argv[0]); |
| 674 | if (type < 0 || type == ZEBRA_ROUTE_OSPF6) |
| 675 | return CMD_WARNING; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 676 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 677 | ospf6_asbr_redistribute_unset (type); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 678 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 679 | return CMD_SUCCESS; |
| 680 | } |
| 681 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 682 | int |
| 683 | ospf6_redistribute_config_write (struct vty *vty) |
| 684 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 685 | int type; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 686 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 687 | for (type = 0; type < ZEBRA_ROUTE_MAX; type++) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 688 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 689 | if (type == ZEBRA_ROUTE_OSPF6) |
| 690 | continue; |
| 691 | if (! ospf6_zebra_is_redistribute (type)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 692 | continue; |
| 693 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 694 | if (ospf6->rmap[type].name) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 695 | vty_out (vty, " redistribute %s route-map %s%s", |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 696 | ZROUTE_NAME (type), ospf6->rmap[type].name, VNL); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 697 | else |
| 698 | vty_out (vty, " redistribute %s%s", |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 699 | ZROUTE_NAME (type), VNL); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 700 | } |
| 701 | |
| 702 | return 0; |
| 703 | } |
| 704 | |
Paul Jakma | 6ac29a5 | 2008-08-15 13:45:30 +0100 | [diff] [blame] | 705 | static void |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 706 | ospf6_redistribute_show_config (struct vty *vty) |
| 707 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 708 | int type; |
| 709 | int nroute[ZEBRA_ROUTE_MAX]; |
| 710 | int total; |
| 711 | struct ospf6_route *route; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 712 | struct ospf6_external_info *info; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 713 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 714 | total = 0; |
| 715 | for (type = 0; type < ZEBRA_ROUTE_MAX; type++) |
| 716 | nroute[type] = 0; |
| 717 | for (route = ospf6_route_head (ospf6->external_table); route; |
| 718 | route = ospf6_route_next (route)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 719 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 720 | info = route->route_option; |
| 721 | nroute[info->type]++; |
| 722 | total++; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 723 | } |
| 724 | |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 725 | vty_out (vty, "Redistributing External Routes from:%s", VNL); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 726 | for (type = 0; type < ZEBRA_ROUTE_MAX; type++) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 727 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 728 | if (type == ZEBRA_ROUTE_OSPF6) |
| 729 | continue; |
| 730 | if (! ospf6_zebra_is_redistribute (type)) |
hasso | e26bbeb | 2003-05-25 21:39:29 +0000 | [diff] [blame] | 731 | continue; |
| 732 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 733 | if (ospf6->rmap[type].name) |
| 734 | vty_out (vty, " %d: %s with route-map \"%s\"%s%s", nroute[type], |
| 735 | ZROUTE_NAME (type), ospf6->rmap[type].name, |
| 736 | (ospf6->rmap[type].map ? "" : " (not found !)"), |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 737 | VNL); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 738 | else |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 739 | vty_out (vty, " %d: %s%s", nroute[type], |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 740 | ZROUTE_NAME (type), VNL); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 741 | } |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 742 | vty_out (vty, "Total %d routes%s", total, VNL); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 743 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 744 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 745 | |
David Lamparter | 6b0655a | 2014-06-04 06:53:35 +0200 | [diff] [blame] | 746 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 747 | /* Routemap Functions */ |
Paul Jakma | 6ac29a5 | 2008-08-15 13:45:30 +0100 | [diff] [blame] | 748 | static route_map_result_t |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 749 | ospf6_routemap_rule_match_address_prefixlist (void *rule, |
| 750 | struct prefix *prefix, |
| 751 | route_map_object_t type, |
| 752 | void *object) |
| 753 | { |
| 754 | struct prefix_list *plist; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 755 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 756 | if (type != RMAP_OSPF6) |
| 757 | return RMAP_NOMATCH; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 758 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 759 | plist = prefix_list_lookup (AFI_IP6, (char *) rule); |
| 760 | if (plist == NULL) |
| 761 | return RMAP_NOMATCH; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 762 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 763 | return (prefix_list_apply (plist, prefix) == PREFIX_DENY ? |
| 764 | RMAP_NOMATCH : RMAP_MATCH); |
| 765 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 766 | |
Paul Jakma | 6ac29a5 | 2008-08-15 13:45:30 +0100 | [diff] [blame] | 767 | static void * |
paul | 0c083ee | 2004-10-10 12:54:58 +0000 | [diff] [blame] | 768 | ospf6_routemap_rule_match_address_prefixlist_compile (const char *arg) |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 769 | { |
| 770 | return XSTRDUP (MTYPE_ROUTE_MAP_COMPILED, arg); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 771 | } |
| 772 | |
Paul Jakma | 6ac29a5 | 2008-08-15 13:45:30 +0100 | [diff] [blame] | 773 | static void |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 774 | ospf6_routemap_rule_match_address_prefixlist_free (void *rule) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 775 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 776 | XFREE (MTYPE_ROUTE_MAP_COMPILED, rule); |
| 777 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 778 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 779 | struct route_map_rule_cmd |
| 780 | ospf6_routemap_rule_match_address_prefixlist_cmd = |
| 781 | { |
| 782 | "ipv6 address prefix-list", |
| 783 | ospf6_routemap_rule_match_address_prefixlist, |
| 784 | ospf6_routemap_rule_match_address_prefixlist_compile, |
| 785 | ospf6_routemap_rule_match_address_prefixlist_free, |
| 786 | }; |
hasso | e26bbeb | 2003-05-25 21:39:29 +0000 | [diff] [blame] | 787 | |
Vyacheslav Trushkin | 42a7deb | 2011-11-16 14:22:03 +0400 | [diff] [blame] | 788 | /* `match interface IFNAME' */ |
| 789 | /* Match function should return 1 if match is success else return |
| 790 | zero. */ |
| 791 | static route_map_result_t |
| 792 | ospf6_routemap_rule_match_interface (void *rule, struct prefix *prefix, |
| 793 | route_map_object_t type, void *object) |
| 794 | { |
| 795 | struct interface *ifp; |
| 796 | struct ospf6_external_info *ei; |
| 797 | |
| 798 | if (type == RMAP_OSPF6) |
| 799 | { |
| 800 | ei = ((struct ospf6_route *) object)->route_option; |
| 801 | ifp = if_lookup_by_name ((char *)rule); |
| 802 | |
| 803 | if (ifp != NULL |
| 804 | && ei->ifindex == ifp->ifindex) |
| 805 | return RMAP_MATCH; |
| 806 | } |
| 807 | |
| 808 | return RMAP_NOMATCH; |
| 809 | } |
| 810 | |
| 811 | /* Route map `interface' match statement. `arg' should be |
| 812 | interface name. */ |
| 813 | static void * |
| 814 | ospf6_routemap_rule_match_interface_compile (const char *arg) |
| 815 | { |
| 816 | return XSTRDUP (MTYPE_ROUTE_MAP_COMPILED, arg); |
| 817 | } |
| 818 | |
| 819 | /* Free route map's compiled `interface' value. */ |
| 820 | static void |
| 821 | ospf6_routemap_rule_match_interface_free (void *rule) |
| 822 | { |
| 823 | XFREE (MTYPE_ROUTE_MAP_COMPILED, rule); |
| 824 | } |
| 825 | |
| 826 | /* Route map commands for interface matching. */ |
| 827 | struct route_map_rule_cmd |
| 828 | ospf6_routemap_rule_match_interface_cmd = |
| 829 | { |
| 830 | "interface", |
| 831 | ospf6_routemap_rule_match_interface, |
| 832 | ospf6_routemap_rule_match_interface_compile, |
| 833 | ospf6_routemap_rule_match_interface_free |
| 834 | }; |
| 835 | |
Paul Jakma | 6ac29a5 | 2008-08-15 13:45:30 +0100 | [diff] [blame] | 836 | static route_map_result_t |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 837 | ospf6_routemap_rule_set_metric_type (void *rule, struct prefix *prefix, |
| 838 | route_map_object_t type, void *object) |
| 839 | { |
| 840 | char *metric_type = rule; |
| 841 | struct ospf6_route *route = object; |
hasso | e26bbeb | 2003-05-25 21:39:29 +0000 | [diff] [blame] | 842 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 843 | if (type != RMAP_OSPF6) |
| 844 | return RMAP_OKAY; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 845 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 846 | if (strcmp (metric_type, "type-2") == 0) |
| 847 | route->path.metric_type = 2; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 848 | else |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 849 | route->path.metric_type = 1; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 850 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 851 | return RMAP_OKAY; |
| 852 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 853 | |
Paul Jakma | 6ac29a5 | 2008-08-15 13:45:30 +0100 | [diff] [blame] | 854 | static void * |
paul | 0c083ee | 2004-10-10 12:54:58 +0000 | [diff] [blame] | 855 | ospf6_routemap_rule_set_metric_type_compile (const char *arg) |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 856 | { |
| 857 | if (strcmp (arg, "type-2") && strcmp (arg, "type-1")) |
| 858 | return NULL; |
| 859 | return XSTRDUP (MTYPE_ROUTE_MAP_COMPILED, arg); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 860 | } |
| 861 | |
Paul Jakma | 6ac29a5 | 2008-08-15 13:45:30 +0100 | [diff] [blame] | 862 | static void |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 863 | ospf6_routemap_rule_set_metric_type_free (void *rule) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 864 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 865 | XFREE (MTYPE_ROUTE_MAP_COMPILED, rule); |
| 866 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 867 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 868 | struct route_map_rule_cmd |
| 869 | ospf6_routemap_rule_set_metric_type_cmd = |
| 870 | { |
| 871 | "metric-type", |
| 872 | ospf6_routemap_rule_set_metric_type, |
| 873 | ospf6_routemap_rule_set_metric_type_compile, |
| 874 | ospf6_routemap_rule_set_metric_type_free, |
| 875 | }; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 876 | |
Paul Jakma | 6ac29a5 | 2008-08-15 13:45:30 +0100 | [diff] [blame] | 877 | static route_map_result_t |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 878 | ospf6_routemap_rule_set_metric (void *rule, struct prefix *prefix, |
| 879 | route_map_object_t type, void *object) |
| 880 | { |
| 881 | char *metric = rule; |
| 882 | struct ospf6_route *route = object; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 883 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 884 | if (type != RMAP_OSPF6) |
| 885 | return RMAP_OKAY; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 886 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 887 | route->path.cost = atoi (metric); |
| 888 | return RMAP_OKAY; |
| 889 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 890 | |
Paul Jakma | 6ac29a5 | 2008-08-15 13:45:30 +0100 | [diff] [blame] | 891 | static void * |
paul | 0c083ee | 2004-10-10 12:54:58 +0000 | [diff] [blame] | 892 | ospf6_routemap_rule_set_metric_compile (const char *arg) |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 893 | { |
| 894 | u_int32_t metric; |
| 895 | char *endp; |
| 896 | metric = strtoul (arg, &endp, 0); |
Dinesh Dutt | 8551e6d | 2013-10-22 17:42:18 -0700 | [diff] [blame] | 897 | if (metric > OSPF_LS_INFINITY || *endp != '\0') |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 898 | return NULL; |
| 899 | return XSTRDUP (MTYPE_ROUTE_MAP_COMPILED, arg); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 900 | } |
| 901 | |
Paul Jakma | 6ac29a5 | 2008-08-15 13:45:30 +0100 | [diff] [blame] | 902 | static void |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 903 | ospf6_routemap_rule_set_metric_free (void *rule) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 904 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 905 | XFREE (MTYPE_ROUTE_MAP_COMPILED, rule); |
| 906 | } |
| 907 | |
| 908 | struct route_map_rule_cmd |
| 909 | ospf6_routemap_rule_set_metric_cmd = |
| 910 | { |
| 911 | "metric", |
| 912 | ospf6_routemap_rule_set_metric, |
| 913 | ospf6_routemap_rule_set_metric_compile, |
| 914 | ospf6_routemap_rule_set_metric_free, |
| 915 | }; |
| 916 | |
Paul Jakma | 6ac29a5 | 2008-08-15 13:45:30 +0100 | [diff] [blame] | 917 | static route_map_result_t |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 918 | ospf6_routemap_rule_set_forwarding (void *rule, struct prefix *prefix, |
| 919 | route_map_object_t type, void *object) |
| 920 | { |
| 921 | char *forwarding = rule; |
| 922 | struct ospf6_route *route = object; |
| 923 | struct ospf6_external_info *info = route->route_option; |
| 924 | |
| 925 | if (type != RMAP_OSPF6) |
| 926 | return RMAP_OKAY; |
| 927 | |
| 928 | if (inet_pton (AF_INET6, forwarding, &info->forwarding) != 1) |
| 929 | { |
| 930 | memset (&info->forwarding, 0, sizeof (struct in6_addr)); |
| 931 | return RMAP_ERROR; |
| 932 | } |
| 933 | |
| 934 | return RMAP_OKAY; |
| 935 | } |
| 936 | |
Paul Jakma | 6ac29a5 | 2008-08-15 13:45:30 +0100 | [diff] [blame] | 937 | static void * |
paul | 0c083ee | 2004-10-10 12:54:58 +0000 | [diff] [blame] | 938 | ospf6_routemap_rule_set_forwarding_compile (const char *arg) |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 939 | { |
| 940 | struct in6_addr a; |
| 941 | if (inet_pton (AF_INET6, arg, &a) != 1) |
| 942 | return NULL; |
| 943 | return XSTRDUP (MTYPE_ROUTE_MAP_COMPILED, arg); |
| 944 | } |
| 945 | |
Paul Jakma | 6ac29a5 | 2008-08-15 13:45:30 +0100 | [diff] [blame] | 946 | static void |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 947 | ospf6_routemap_rule_set_forwarding_free (void *rule) |
| 948 | { |
| 949 | XFREE (MTYPE_ROUTE_MAP_COMPILED, rule); |
| 950 | } |
| 951 | |
| 952 | struct route_map_rule_cmd |
| 953 | ospf6_routemap_rule_set_forwarding_cmd = |
| 954 | { |
| 955 | "forwarding-address", |
| 956 | ospf6_routemap_rule_set_forwarding, |
| 957 | ospf6_routemap_rule_set_forwarding_compile, |
| 958 | ospf6_routemap_rule_set_forwarding_free, |
| 959 | }; |
| 960 | |
Paul Jakma | 6ac29a5 | 2008-08-15 13:45:30 +0100 | [diff] [blame] | 961 | static int |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 962 | route_map_command_status (struct vty *vty, int ret) |
| 963 | { |
| 964 | if (! ret) |
| 965 | return CMD_SUCCESS; |
| 966 | |
| 967 | switch (ret) |
| 968 | { |
| 969 | case RMAP_RULE_MISSING: |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 970 | vty_out (vty, "Can't find rule.%s", VNL); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 971 | break; |
| 972 | case RMAP_COMPILE_ERROR: |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 973 | vty_out (vty, "Argument is malformed.%s", VNL); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 974 | break; |
| 975 | default: |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 976 | vty_out (vty, "route-map add set failed.%s", VNL); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 977 | break; |
| 978 | } |
| 979 | return CMD_WARNING; |
| 980 | } |
| 981 | |
| 982 | /* add "match address" */ |
| 983 | DEFUN (ospf6_routemap_match_address_prefixlist, |
| 984 | ospf6_routemap_match_address_prefixlist_cmd, |
| 985 | "match ipv6 address prefix-list WORD", |
| 986 | "Match values\n" |
| 987 | IPV6_STR |
| 988 | "Match address of route\n" |
| 989 | "Match entries of prefix-lists\n" |
| 990 | "IPv6 prefix-list name\n") |
| 991 | { |
| 992 | int ret = route_map_add_match ((struct route_map_index *) vty->index, |
| 993 | "ipv6 address prefix-list", argv[0]); |
| 994 | return route_map_command_status (vty, ret); |
| 995 | } |
| 996 | |
| 997 | /* delete "match address" */ |
| 998 | DEFUN (ospf6_routemap_no_match_address_prefixlist, |
| 999 | ospf6_routemap_no_match_address_prefixlist_cmd, |
| 1000 | "no match ipv6 address prefix-list WORD", |
| 1001 | NO_STR |
| 1002 | "Match values\n" |
| 1003 | IPV6_STR |
| 1004 | "Match address of route\n" |
| 1005 | "Match entries of prefix-lists\n" |
| 1006 | "IPv6 prefix-list name\n") |
| 1007 | { |
| 1008 | int ret = route_map_delete_match ((struct route_map_index *) vty->index, |
| 1009 | "ipv6 address prefix-list", argv[0]); |
| 1010 | return route_map_command_status (vty, ret); |
| 1011 | } |
| 1012 | |
Vyacheslav Trushkin | 42a7deb | 2011-11-16 14:22:03 +0400 | [diff] [blame] | 1013 | /* "match interface" */ |
| 1014 | DEFUN (ospf6_routemap_match_interface, |
| 1015 | ospf6_routemap_match_interface_cmd, |
| 1016 | "match interface WORD", |
| 1017 | MATCH_STR |
| 1018 | "Match first hop interface of route\n" |
| 1019 | "Interface name\n") |
| 1020 | { |
| 1021 | return route_map_add_match ((struct route_map_index *) vty->index, |
| 1022 | "interface", argv[0]); |
| 1023 | } |
| 1024 | |
| 1025 | /* "no match interface WORD" */ |
| 1026 | DEFUN (ospf6_routemap_no_match_interface, |
| 1027 | ospf6_routemap_no_match_interface_cmd, |
| 1028 | "no match interface", |
| 1029 | MATCH_STR |
| 1030 | NO_STR |
| 1031 | "Match first hop interface of route\n") |
| 1032 | { |
| 1033 | int ret = route_map_delete_match ((struct route_map_index *) vty->index, |
| 1034 | "interface", (argc == 0) ? NULL : argv[0]); |
| 1035 | return route_map_command_status (vty, ret); |
| 1036 | } |
| 1037 | |
| 1038 | ALIAS (ospf6_routemap_no_match_interface, |
| 1039 | ospf6_routemap_no_match_interface_val_cmd, |
| 1040 | "no match interface WORD", |
| 1041 | MATCH_STR |
| 1042 | NO_STR |
| 1043 | "Match first hop interface of route\n" |
| 1044 | "Interface name\n") |
| 1045 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1046 | /* add "set metric-type" */ |
| 1047 | DEFUN (ospf6_routemap_set_metric_type, |
| 1048 | ospf6_routemap_set_metric_type_cmd, |
| 1049 | "set metric-type (type-1|type-2)", |
| 1050 | "Set value\n" |
| 1051 | "Type of metric\n" |
| 1052 | "OSPF6 external type 1 metric\n" |
| 1053 | "OSPF6 external type 2 metric\n") |
| 1054 | { |
| 1055 | int ret = route_map_add_set ((struct route_map_index *) vty->index, |
| 1056 | "metric-type", argv[0]); |
| 1057 | return route_map_command_status (vty, ret); |
| 1058 | } |
| 1059 | |
| 1060 | /* delete "set metric-type" */ |
| 1061 | DEFUN (ospf6_routemap_no_set_metric_type, |
| 1062 | ospf6_routemap_no_set_metric_type_cmd, |
| 1063 | "no set metric-type (type-1|type-2)", |
| 1064 | NO_STR |
| 1065 | "Set value\n" |
| 1066 | "Type of metric\n" |
| 1067 | "OSPF6 external type 1 metric\n" |
| 1068 | "OSPF6 external type 2 metric\n") |
| 1069 | { |
| 1070 | int ret = route_map_delete_set ((struct route_map_index *) vty->index, |
| 1071 | "metric-type", argv[0]); |
| 1072 | return route_map_command_status (vty, ret); |
| 1073 | } |
| 1074 | |
| 1075 | /* add "set metric" */ |
| 1076 | DEFUN (set_metric, |
| 1077 | set_metric_cmd, |
| 1078 | "set metric <0-4294967295>", |
| 1079 | "Set value\n" |
| 1080 | "Metric value\n" |
| 1081 | "Metric value\n") |
| 1082 | { |
| 1083 | int ret = route_map_add_set ((struct route_map_index *) vty->index, |
| 1084 | "metric", argv[0]); |
| 1085 | return route_map_command_status (vty, ret); |
| 1086 | } |
| 1087 | |
| 1088 | /* delete "set metric" */ |
| 1089 | DEFUN (no_set_metric, |
| 1090 | no_set_metric_cmd, |
| 1091 | "no set metric <0-4294967295>", |
| 1092 | NO_STR |
| 1093 | "Set value\n" |
| 1094 | "Metric\n" |
| 1095 | "METRIC value\n") |
| 1096 | { |
| 1097 | int ret = route_map_delete_set ((struct route_map_index *) vty->index, |
| 1098 | "metric", argv[0]); |
| 1099 | return route_map_command_status (vty, ret); |
| 1100 | } |
| 1101 | |
| 1102 | /* add "set forwarding-address" */ |
| 1103 | DEFUN (ospf6_routemap_set_forwarding, |
| 1104 | ospf6_routemap_set_forwarding_cmd, |
| 1105 | "set forwarding-address X:X::X:X", |
| 1106 | "Set value\n" |
| 1107 | "Forwarding Address\n" |
| 1108 | "IPv6 Address\n") |
| 1109 | { |
| 1110 | int ret = route_map_add_set ((struct route_map_index *) vty->index, |
| 1111 | "forwarding-address", argv[0]); |
| 1112 | return route_map_command_status (vty, ret); |
| 1113 | } |
| 1114 | |
| 1115 | /* delete "set forwarding-address" */ |
| 1116 | DEFUN (ospf6_routemap_no_set_forwarding, |
| 1117 | ospf6_routemap_no_set_forwarding_cmd, |
| 1118 | "no set forwarding-address X:X::X:X", |
| 1119 | NO_STR |
| 1120 | "Set value\n" |
| 1121 | "Forwarding Address\n" |
| 1122 | "IPv6 Address\n") |
| 1123 | { |
| 1124 | int ret = route_map_delete_set ((struct route_map_index *) vty->index, |
| 1125 | "forwarding-address", argv[0]); |
| 1126 | return route_map_command_status (vty, ret); |
| 1127 | } |
| 1128 | |
Paul Jakma | 6ac29a5 | 2008-08-15 13:45:30 +0100 | [diff] [blame] | 1129 | static void |
| 1130 | ospf6_routemap_init (void) |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1131 | { |
| 1132 | route_map_init (); |
| 1133 | route_map_init_vty (); |
| 1134 | route_map_add_hook (ospf6_asbr_routemap_update); |
| 1135 | route_map_delete_hook (ospf6_asbr_routemap_update); |
| 1136 | |
| 1137 | route_map_install_match (&ospf6_routemap_rule_match_address_prefixlist_cmd); |
Vyacheslav Trushkin | 42a7deb | 2011-11-16 14:22:03 +0400 | [diff] [blame] | 1138 | route_map_install_match (&ospf6_routemap_rule_match_interface_cmd); |
| 1139 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1140 | route_map_install_set (&ospf6_routemap_rule_set_metric_type_cmd); |
| 1141 | route_map_install_set (&ospf6_routemap_rule_set_metric_cmd); |
| 1142 | route_map_install_set (&ospf6_routemap_rule_set_forwarding_cmd); |
| 1143 | |
| 1144 | /* Match address prefix-list */ |
| 1145 | install_element (RMAP_NODE, &ospf6_routemap_match_address_prefixlist_cmd); |
| 1146 | install_element (RMAP_NODE, &ospf6_routemap_no_match_address_prefixlist_cmd); |
| 1147 | |
Vyacheslav Trushkin | 42a7deb | 2011-11-16 14:22:03 +0400 | [diff] [blame] | 1148 | /* Match interface */ |
| 1149 | install_element (RMAP_NODE, &ospf6_routemap_match_interface_cmd); |
| 1150 | install_element (RMAP_NODE, &ospf6_routemap_no_match_interface_cmd); |
| 1151 | install_element (RMAP_NODE, &ospf6_routemap_no_match_interface_val_cmd); |
| 1152 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1153 | /* ASE Metric Type (e.g. Type-1/Type-2) */ |
| 1154 | install_element (RMAP_NODE, &ospf6_routemap_set_metric_type_cmd); |
| 1155 | install_element (RMAP_NODE, &ospf6_routemap_no_set_metric_type_cmd); |
| 1156 | |
| 1157 | /* ASE Metric */ |
| 1158 | install_element (RMAP_NODE, &set_metric_cmd); |
| 1159 | install_element (RMAP_NODE, &no_set_metric_cmd); |
| 1160 | |
| 1161 | /* ASE Metric */ |
| 1162 | install_element (RMAP_NODE, &ospf6_routemap_set_forwarding_cmd); |
| 1163 | install_element (RMAP_NODE, &ospf6_routemap_no_set_forwarding_cmd); |
| 1164 | } |
| 1165 | |
David Lamparter | 6b0655a | 2014-06-04 06:53:35 +0200 | [diff] [blame] | 1166 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1167 | /* Display functions */ |
Dinesh Dutt | e68a676 | 2013-08-25 03:03:23 +0000 | [diff] [blame] | 1168 | static char * |
| 1169 | ospf6_as_external_lsa_get_prefix_str (struct ospf6_lsa *lsa, char *buf, |
| 1170 | int buflen, int pos) |
| 1171 | { |
| 1172 | struct ospf6_as_external_lsa *external; |
| 1173 | struct in6_addr in6; |
| 1174 | int prefix_length = 0; |
| 1175 | |
| 1176 | if (lsa) |
| 1177 | { |
| 1178 | external = (struct ospf6_as_external_lsa *) |
| 1179 | OSPF6_LSA_HEADER_END (lsa->header); |
| 1180 | |
| 1181 | if (pos == 0) |
| 1182 | { |
| 1183 | ospf6_prefix_in6_addr (&in6, &external->prefix); |
| 1184 | prefix_length = external->prefix.prefix_length; |
| 1185 | } |
| 1186 | else { |
| 1187 | in6 = *((struct in6_addr *) |
| 1188 | ((caddr_t) external + sizeof (struct ospf6_as_external_lsa) + |
| 1189 | OSPF6_PREFIX_SPACE (external->prefix.prefix_length))); |
| 1190 | } |
| 1191 | if (buf) |
| 1192 | { |
| 1193 | inet_ntop (AF_INET6, &in6, buf, buflen); |
| 1194 | if (prefix_length) |
| 1195 | sprintf (&buf[strlen(buf)], "/%d", prefix_length); |
| 1196 | } |
| 1197 | } |
| 1198 | return (buf); |
| 1199 | } |
| 1200 | |
Paul Jakma | 6ac29a5 | 2008-08-15 13:45:30 +0100 | [diff] [blame] | 1201 | static int |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1202 | ospf6_as_external_lsa_show (struct vty *vty, struct ospf6_lsa *lsa) |
| 1203 | { |
| 1204 | struct ospf6_as_external_lsa *external; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1205 | char buf[64]; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1206 | |
| 1207 | assert (lsa->header); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1208 | external = (struct ospf6_as_external_lsa *) |
| 1209 | OSPF6_LSA_HEADER_END (lsa->header); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1210 | |
| 1211 | /* bits */ |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1212 | snprintf (buf, sizeof (buf), "%c%c%c", |
| 1213 | (CHECK_FLAG (external->bits_metric, OSPF6_ASBR_BIT_E) ? 'E' : '-'), |
| 1214 | (CHECK_FLAG (external->bits_metric, OSPF6_ASBR_BIT_F) ? 'F' : '-'), |
| 1215 | (CHECK_FLAG (external->bits_metric, OSPF6_ASBR_BIT_T) ? 'T' : '-')); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1216 | |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 1217 | vty_out (vty, " Bits: %s%s", buf, VNL); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1218 | vty_out (vty, " Metric: %5lu%s", (u_long) OSPF6_ASBR_METRIC (external), |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 1219 | VNL); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1220 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1221 | ospf6_prefix_options_printbuf (external->prefix.prefix_options, |
| 1222 | buf, sizeof (buf)); |
| 1223 | vty_out (vty, " Prefix Options: %s%s", buf, |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 1224 | VNL); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1225 | |
| 1226 | vty_out (vty, " Referenced LSType: %d%s", |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1227 | ntohs (external->prefix.prefix_refer_lstype), |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 1228 | VNL); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1229 | |
Dinesh Dutt | e68a676 | 2013-08-25 03:03:23 +0000 | [diff] [blame] | 1230 | vty_out (vty, " Prefix: %s%s", |
| 1231 | ospf6_as_external_lsa_get_prefix_str (lsa, buf, sizeof(buf), 0), VNL); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1232 | |
| 1233 | /* Forwarding-Address */ |
| 1234 | if (CHECK_FLAG (external->bits_metric, OSPF6_ASBR_BIT_F)) |
| 1235 | { |
Dinesh Dutt | e68a676 | 2013-08-25 03:03:23 +0000 | [diff] [blame] | 1236 | vty_out (vty, " Forwarding-Address: %s%s", |
| 1237 | ospf6_as_external_lsa_get_prefix_str (lsa, buf, sizeof(buf), 1), |
| 1238 | VNL); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1239 | } |
| 1240 | |
| 1241 | return 0; |
| 1242 | } |
| 1243 | |
Paul Jakma | 6ac29a5 | 2008-08-15 13:45:30 +0100 | [diff] [blame] | 1244 | static void |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1245 | ospf6_asbr_external_route_show (struct vty *vty, struct ospf6_route *route) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1246 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1247 | struct ospf6_external_info *info = route->route_option; |
| 1248 | char prefix[64], id[16], forwarding[64]; |
| 1249 | u_int32_t tmp_id; |
| 1250 | |
| 1251 | prefix2str (&route->prefix, prefix, sizeof (prefix)); |
| 1252 | tmp_id = ntohl (info->id); |
| 1253 | inet_ntop (AF_INET, &tmp_id, id, sizeof (id)); |
| 1254 | if (! IN6_IS_ADDR_UNSPECIFIED (&info->forwarding)) |
| 1255 | inet_ntop (AF_INET6, &info->forwarding, forwarding, sizeof (forwarding)); |
| 1256 | else |
| 1257 | snprintf (forwarding, sizeof (forwarding), ":: (ifindex %d)", |
| 1258 | route->nexthop[0].ifindex); |
| 1259 | |
ajs | f52d13c | 2005-10-01 17:38:06 +0000 | [diff] [blame] | 1260 | vty_out (vty, "%c %-32s %-15s type-%d %5lu %s%s", |
| 1261 | zebra_route_char(info->type), |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1262 | prefix, id, route->path.metric_type, |
| 1263 | (u_long) (route->path.metric_type == 2 ? |
| 1264 | route->path.cost_e2 : route->path.cost), |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 1265 | forwarding, VNL); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1266 | } |
| 1267 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1268 | DEFUN (show_ipv6_ospf6_redistribute, |
| 1269 | show_ipv6_ospf6_redistribute_cmd, |
| 1270 | "show ipv6 ospf6 redistribute", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1271 | SHOW_STR |
| 1272 | IP6_STR |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1273 | OSPF6_STR |
| 1274 | "redistributing External information\n" |
| 1275 | ) |
| 1276 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1277 | struct ospf6_route *route; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1278 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1279 | ospf6_redistribute_show_config (vty); |
| 1280 | |
| 1281 | for (route = ospf6_route_head (ospf6->external_table); route; |
| 1282 | route = ospf6_route_next (route)) |
| 1283 | ospf6_asbr_external_route_show (vty, route); |
| 1284 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1285 | return CMD_SUCCESS; |
| 1286 | } |
| 1287 | |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 1288 | struct ospf6_lsa_handler as_external_handler = |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1289 | { |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 1290 | OSPF6_LSTYPE_AS_EXTERNAL, |
| 1291 | "AS-External", |
Dinesh Dutt | e68a676 | 2013-08-25 03:03:23 +0000 | [diff] [blame] | 1292 | "ASE", |
| 1293 | ospf6_as_external_lsa_show, |
| 1294 | ospf6_as_external_lsa_get_prefix_str |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 1295 | }; |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1296 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1297 | void |
Paul Jakma | 6ac29a5 | 2008-08-15 13:45:30 +0100 | [diff] [blame] | 1298 | ospf6_asbr_init (void) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1299 | { |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1300 | ospf6_routemap_init (); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1301 | |
hasso | 6452df0 | 2004-08-15 05:52:07 +0000 | [diff] [blame] | 1302 | ospf6_install_lsa_handler (&as_external_handler); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1303 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1304 | install_element (VIEW_NODE, &show_ipv6_ospf6_redistribute_cmd); |
| 1305 | install_element (ENABLE_NODE, &show_ipv6_ospf6_redistribute_cmd); |
| 1306 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1307 | install_element (OSPF6_NODE, &ospf6_redistribute_cmd); |
| 1308 | install_element (OSPF6_NODE, &ospf6_redistribute_routemap_cmd); |
| 1309 | install_element (OSPF6_NODE, &no_ospf6_redistribute_cmd); |
| 1310 | } |
| 1311 | |
Tom Goff | ae2254a | 2010-11-10 13:01:41 -0800 | [diff] [blame] | 1312 | void |
Christian Franke | d962872 | 2013-03-08 21:47:35 +0100 | [diff] [blame] | 1313 | ospf6_asbr_redistribute_reset (void) |
| 1314 | { |
| 1315 | int type; |
| 1316 | |
| 1317 | for (type = 0; type < ZEBRA_ROUTE_MAX; type++) |
| 1318 | { |
| 1319 | if (type == ZEBRA_ROUTE_OSPF6) |
| 1320 | continue; |
| 1321 | if (ospf6_zebra_is_redistribute (type)) |
| 1322 | ospf6_asbr_redistribute_unset(type); |
| 1323 | } |
| 1324 | } |
| 1325 | |
| 1326 | void |
Tom Goff | ae2254a | 2010-11-10 13:01:41 -0800 | [diff] [blame] | 1327 | ospf6_asbr_terminate (void) |
| 1328 | { |
| 1329 | route_map_finish (); |
| 1330 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1331 | |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1332 | DEFUN (debug_ospf6_asbr, |
| 1333 | debug_ospf6_asbr_cmd, |
| 1334 | "debug ospf6 asbr", |
| 1335 | DEBUG_STR |
| 1336 | OSPF6_STR |
| 1337 | "Debug OSPFv3 ASBR function\n" |
| 1338 | ) |
| 1339 | { |
| 1340 | OSPF6_DEBUG_ASBR_ON (); |
| 1341 | return CMD_SUCCESS; |
| 1342 | } |
| 1343 | |
| 1344 | DEFUN (no_debug_ospf6_asbr, |
| 1345 | no_debug_ospf6_asbr_cmd, |
| 1346 | "no debug ospf6 asbr", |
| 1347 | NO_STR |
| 1348 | DEBUG_STR |
| 1349 | OSPF6_STR |
| 1350 | "Debug OSPFv3 ASBR function\n" |
| 1351 | ) |
| 1352 | { |
| 1353 | OSPF6_DEBUG_ASBR_OFF (); |
| 1354 | return CMD_SUCCESS; |
| 1355 | } |
| 1356 | |
| 1357 | int |
| 1358 | config_write_ospf6_debug_asbr (struct vty *vty) |
| 1359 | { |
| 1360 | if (IS_OSPF6_DEBUG_ASBR) |
hasso | 049207c | 2004-08-04 20:02:13 +0000 | [diff] [blame] | 1361 | vty_out (vty, "debug ospf6 asbr%s", VNL); |
hasso | 508e53e | 2004-05-18 18:57:06 +0000 | [diff] [blame] | 1362 | return 0; |
| 1363 | } |
| 1364 | |
| 1365 | void |
| 1366 | install_element_ospf6_debug_asbr () |
| 1367 | { |
| 1368 | install_element (ENABLE_NODE, &debug_ospf6_asbr_cmd); |
| 1369 | install_element (ENABLE_NODE, &no_debug_ospf6_asbr_cmd); |
| 1370 | install_element (CONFIG_NODE, &debug_ospf6_asbr_cmd); |
| 1371 | install_element (CONFIG_NODE, &no_debug_ospf6_asbr_cmd); |
| 1372 | } |
| 1373 | |
| 1374 | |