jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1 | /* |
| 2 | * IS-IS Rout(e)ing protocol - isis_circuit.h |
| 3 | * |
| 4 | * Copyright (C) 2001,2002 Sampo Saaristo |
| 5 | * Tampere University of Technology |
| 6 | * Institute of Communications Engineering |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify it |
| 9 | * under the terms of the GNU General Public Licenseas published by the Free |
| 10 | * Software Foundation; either version 2 of the License, or (at your option) |
| 11 | * any later version. |
| 12 | * |
| 13 | * This program is distributed in the hope that it will be useful,but WITHOUT |
| 14 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 15 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
| 16 | * more details. |
| 17 | |
| 18 | * You should have received a copy of the GNU General Public License along |
| 19 | * with this program; if not, write to the Free Software Foundation, Inc., |
| 20 | * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
| 21 | */ |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 22 | #include <zebra.h> |
hasso | 37da8c0 | 2004-05-19 11:38:40 +0000 | [diff] [blame] | 23 | #ifdef GNU_LINUX |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 24 | #include <net/ethernet.h> |
hasso | 37da8c0 | 2004-05-19 11:38:40 +0000 | [diff] [blame] | 25 | #else |
| 26 | #include <netinet/if_ether.h> |
| 27 | #endif |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 28 | |
Paul Jakma | 238497f | 2007-08-07 18:49:18 +0000 | [diff] [blame] | 29 | #ifndef ETHER_ADDR_LEN |
| 30 | #define ETHER_ADDR_LEN ETHERADDRL |
| 31 | #endif |
| 32 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 33 | #include "log.h" |
| 34 | #include "memory.h" |
| 35 | #include "if.h" |
| 36 | #include "linklist.h" |
| 37 | #include "command.h" |
| 38 | #include "thread.h" |
Olivier Dugeon | 4f59357 | 2016-04-19 19:03:05 +0200 | [diff] [blame] | 39 | #include "vty.h" |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 40 | #include "hash.h" |
| 41 | #include "prefix.h" |
| 42 | #include "stream.h" |
| 43 | |
| 44 | #include "isisd/dict.h" |
| 45 | #include "isisd/include-netbsd/iso.h" |
| 46 | #include "isisd/isis_constants.h" |
| 47 | #include "isisd/isis_common.h" |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 48 | #include "isisd/isis_flags.h" |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 49 | #include "isisd/isis_circuit.h" |
| 50 | #include "isisd/isis_tlv.h" |
| 51 | #include "isisd/isis_lsp.h" |
| 52 | #include "isisd/isis_pdu.h" |
| 53 | #include "isisd/isis_network.h" |
| 54 | #include "isisd/isis_misc.h" |
| 55 | #include "isisd/isis_constants.h" |
| 56 | #include "isisd/isis_adjacency.h" |
| 57 | #include "isisd/isis_dr.h" |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 58 | #include "isisd/isisd.h" |
| 59 | #include "isisd/isis_csm.h" |
| 60 | #include "isisd/isis_events.h" |
Olivier Dugeon | 4f59357 | 2016-04-19 19:03:05 +0200 | [diff] [blame] | 61 | #include "isisd/isis_te.h" |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 62 | |
Paul Jakma | 41b36e9 | 2006-12-08 01:09:50 +0000 | [diff] [blame] | 63 | /* |
| 64 | * Prototypes. |
| 65 | */ |
Paul Jakma | 41b36e9 | 2006-12-08 01:09:50 +0000 | [diff] [blame] | 66 | int isis_interface_config_write(struct vty *); |
| 67 | int isis_if_new_hook(struct interface *); |
| 68 | int isis_if_delete_hook(struct interface *); |
| 69 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 70 | struct isis_circuit * |
| 71 | isis_circuit_new () |
| 72 | { |
| 73 | struct isis_circuit *circuit; |
| 74 | int i; |
| 75 | |
hasso | 3fdb2dd | 2005-09-28 18:45:54 +0000 | [diff] [blame] | 76 | circuit = XCALLOC (MTYPE_ISIS_CIRCUIT, sizeof (struct isis_circuit)); |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 77 | if (circuit == NULL) |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 78 | { |
| 79 | zlog_err ("Can't malloc isis circuit"); |
| 80 | return NULL; |
| 81 | } |
| 82 | |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 83 | /* |
| 84 | * Default values |
| 85 | */ |
| 86 | circuit->is_type = IS_LEVEL_1_AND_2; |
| 87 | circuit->flags = 0; |
| 88 | circuit->pad_hellos = 1; |
| 89 | for (i = 0; i < 2; i++) |
| 90 | { |
| 91 | circuit->hello_interval[i] = DEFAULT_HELLO_INTERVAL; |
| 92 | circuit->hello_multiplier[i] = DEFAULT_HELLO_MULTIPLIER; |
| 93 | circuit->csnp_interval[i] = DEFAULT_CSNP_INTERVAL; |
| 94 | circuit->psnp_interval[i] = DEFAULT_PSNP_INTERVAL; |
| 95 | circuit->priority[i] = DEFAULT_PRIORITY; |
| 96 | circuit->metrics[i].metric_default = DEFAULT_CIRCUIT_METRIC; |
| 97 | circuit->metrics[i].metric_expense = METRICS_UNSUPPORTED; |
| 98 | circuit->metrics[i].metric_error = METRICS_UNSUPPORTED; |
| 99 | circuit->metrics[i].metric_delay = METRICS_UNSUPPORTED; |
| 100 | circuit->te_metric[i] = DEFAULT_CIRCUIT_METRIC; |
| 101 | } |
| 102 | |
Olivier Dugeon | 4f59357 | 2016-04-19 19:03:05 +0200 | [diff] [blame] | 103 | circuit->mtc = mpls_te_circuit_new(); |
| 104 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 105 | return circuit; |
| 106 | } |
| 107 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 108 | void |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 109 | isis_circuit_del (struct isis_circuit *circuit) |
| 110 | { |
| 111 | if (!circuit) |
| 112 | return; |
| 113 | |
| 114 | isis_circuit_if_unbind (circuit, circuit->interface); |
| 115 | |
| 116 | /* and lastly the circuit itself */ |
| 117 | XFREE (MTYPE_ISIS_CIRCUIT, circuit); |
| 118 | |
| 119 | return; |
| 120 | } |
| 121 | |
| 122 | void |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 123 | isis_circuit_configure (struct isis_circuit *circuit, struct isis_area *area) |
| 124 | { |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 125 | assert (area); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 126 | circuit->area = area; |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 127 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 128 | /* |
Christian Franke | 7324ae1 | 2015-11-10 18:04:48 +0100 | [diff] [blame] | 129 | * Whenever the is-type of an area is changed, the is-type of each circuit |
| 130 | * in that area is updated to a non-empty subset of the area is-type. |
| 131 | * Inversely, when configuring a new circuit, this property should be |
| 132 | * ensured as well. |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 133 | */ |
Christian Franke | 7324ae1 | 2015-11-10 18:04:48 +0100 | [diff] [blame] | 134 | if (area->is_type != IS_LEVEL_1_AND_2) |
| 135 | circuit->is_type = area->is_type; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 136 | |
| 137 | /* |
| 138 | * Add the circuit into area |
| 139 | */ |
| 140 | listnode_add (area->circuit_list, circuit); |
| 141 | |
| 142 | circuit->idx = flags_get_index (&area->flags); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 143 | |
| 144 | return; |
| 145 | } |
| 146 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 147 | void |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 148 | isis_circuit_deconfigure (struct isis_circuit *circuit, struct isis_area *area) |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 149 | { |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 150 | /* Free the index of SRM and SSN flags */ |
| 151 | flags_free_index (&area->flags, circuit->idx); |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 152 | circuit->idx = 0; |
| 153 | /* Remove circuit from area */ |
| 154 | assert (circuit->area == area); |
| 155 | listnode_delete (area->circuit_list, circuit); |
| 156 | circuit->area = NULL; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 157 | |
| 158 | return; |
| 159 | } |
| 160 | |
| 161 | struct isis_circuit * |
| 162 | circuit_lookup_by_ifp (struct interface *ifp, struct list *list) |
| 163 | { |
| 164 | struct isis_circuit *circuit = NULL; |
| 165 | struct listnode *node; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 166 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 167 | if (!list) |
| 168 | return NULL; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 169 | |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 170 | for (ALL_LIST_ELEMENTS_RO (list, node, circuit)) |
| 171 | if (circuit->interface == ifp) |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 172 | { |
| 173 | assert (ifp->info == circuit); |
| 174 | return circuit; |
| 175 | } |
| 176 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 177 | return NULL; |
| 178 | } |
| 179 | |
| 180 | struct isis_circuit * |
| 181 | circuit_scan_by_ifp (struct interface *ifp) |
| 182 | { |
| 183 | struct isis_area *area; |
| 184 | struct listnode *node; |
| 185 | struct isis_circuit *circuit; |
| 186 | |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 187 | if (ifp->info) |
| 188 | return (struct isis_circuit *)ifp->info; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 189 | |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 190 | if (isis->area_list) |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 191 | { |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 192 | for (ALL_LIST_ELEMENTS_RO (isis->area_list, node, area)) |
| 193 | { |
| 194 | circuit = circuit_lookup_by_ifp (ifp, area->circuit_list); |
| 195 | if (circuit) |
| 196 | return circuit; |
| 197 | } |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 198 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 199 | return circuit_lookup_by_ifp (ifp, isis->init_circ_list); |
| 200 | } |
| 201 | |
Olivier Dugeon | 4f59357 | 2016-04-19 19:03:05 +0200 | [diff] [blame] | 202 | struct isis_circuit * isis_circuit_lookup (struct vty *vty) |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 203 | { |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 204 | struct interface *ifp; |
| 205 | struct isis_circuit *circuit; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 206 | |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 207 | ifp = (struct interface *) vty->index; |
| 208 | if (!ifp) |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 209 | { |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 210 | vty_out (vty, "Invalid interface %s", VTY_NEWLINE); |
| 211 | return NULL; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 212 | } |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 213 | |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 214 | circuit = circuit_scan_by_ifp (ifp); |
| 215 | if (!circuit) |
| 216 | { |
| 217 | vty_out (vty, "ISIS is not enabled on circuit %s%s", |
| 218 | ifp->name, VTY_NEWLINE); |
| 219 | return NULL; |
| 220 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 221 | |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 222 | return circuit; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 223 | } |
| 224 | |
| 225 | void |
hasso | f891f44 | 2004-09-14 13:54:30 +0000 | [diff] [blame] | 226 | isis_circuit_add_addr (struct isis_circuit *circuit, |
| 227 | struct connected *connected) |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 228 | { |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 229 | struct listnode *node; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 230 | struct prefix_ipv4 *ipv4; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 231 | u_char buf[BUFSIZ]; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 232 | #ifdef HAVE_IPV6 |
| 233 | struct prefix_ipv6 *ipv6; |
| 234 | #endif /* HAVE_IPV6 */ |
hasso | f891f44 | 2004-09-14 13:54:30 +0000 | [diff] [blame] | 235 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 236 | memset (&buf, 0, BUFSIZ); |
hasso | f891f44 | 2004-09-14 13:54:30 +0000 | [diff] [blame] | 237 | if (connected->address->family == AF_INET) |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 238 | { |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 239 | u_int32_t addr = connected->address->u.prefix4.s_addr; |
| 240 | addr = ntohl (addr); |
| 241 | if (IPV4_NET0(addr) || |
| 242 | IPV4_NET127(addr) || |
| 243 | IN_CLASSD(addr) || |
| 244 | IPV4_LINKLOCAL(addr)) |
| 245 | return; |
| 246 | |
| 247 | for (ALL_LIST_ELEMENTS_RO (circuit->ip_addrs, node, ipv4)) |
| 248 | if (prefix_same ((struct prefix *) ipv4, connected->address)) |
| 249 | return; |
| 250 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 251 | ipv4 = prefix_ipv4_new (); |
hasso | f891f44 | 2004-09-14 13:54:30 +0000 | [diff] [blame] | 252 | ipv4->prefixlen = connected->address->prefixlen; |
| 253 | ipv4->prefix = connected->address->u.prefix4; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 254 | listnode_add (circuit->ip_addrs, ipv4); |
Olivier Dugeon | 4f59357 | 2016-04-19 19:03:05 +0200 | [diff] [blame] | 255 | |
| 256 | /* Update MPLS TE Local IP address parameter */ |
| 257 | set_circuitparams_local_ipaddr (circuit->mtc, ipv4->prefix); |
| 258 | |
hasso | 0dae85e | 2004-09-26 19:53:47 +0000 | [diff] [blame] | 259 | if (circuit->area) |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 260 | lsp_regenerate_schedule (circuit->area, circuit->is_type, 0); |
hasso | f891f44 | 2004-09-14 13:54:30 +0000 | [diff] [blame] | 261 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 262 | #ifdef EXTREME_DEBUG |
hasso | f891f44 | 2004-09-14 13:54:30 +0000 | [diff] [blame] | 263 | prefix2str (connected->address, buf, BUFSIZ); |
hasso | 529d65b | 2004-12-24 00:14:50 +0000 | [diff] [blame] | 264 | zlog_debug ("Added IP address %s to circuit %d", buf, |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 265 | circuit->circuit_id); |
| 266 | #endif /* EXTREME_DEBUG */ |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 267 | } |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 268 | #ifdef HAVE_IPV6 |
hasso | f891f44 | 2004-09-14 13:54:30 +0000 | [diff] [blame] | 269 | if (connected->address->family == AF_INET6) |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 270 | { |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 271 | if (IN6_IS_ADDR_LOOPBACK(&connected->address->u.prefix6)) |
| 272 | return; |
| 273 | |
| 274 | for (ALL_LIST_ELEMENTS_RO (circuit->ipv6_link, node, ipv6)) |
| 275 | if (prefix_same ((struct prefix *) ipv6, connected->address)) |
| 276 | return; |
| 277 | for (ALL_LIST_ELEMENTS_RO (circuit->ipv6_non_link, node, ipv6)) |
| 278 | if (prefix_same ((struct prefix *) ipv6, connected->address)) |
| 279 | return; |
| 280 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 281 | ipv6 = prefix_ipv6_new (); |
hasso | f891f44 | 2004-09-14 13:54:30 +0000 | [diff] [blame] | 282 | ipv6->prefixlen = connected->address->prefixlen; |
| 283 | ipv6->prefix = connected->address->u.prefix6; |
| 284 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 285 | if (IN6_IS_ADDR_LINKLOCAL (&ipv6->prefix)) |
hasso | f891f44 | 2004-09-14 13:54:30 +0000 | [diff] [blame] | 286 | listnode_add (circuit->ipv6_link, ipv6); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 287 | else |
hasso | f891f44 | 2004-09-14 13:54:30 +0000 | [diff] [blame] | 288 | listnode_add (circuit->ipv6_non_link, ipv6); |
hasso | 0dae85e | 2004-09-26 19:53:47 +0000 | [diff] [blame] | 289 | if (circuit->area) |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 290 | lsp_regenerate_schedule (circuit->area, circuit->is_type, 0); |
hasso | f891f44 | 2004-09-14 13:54:30 +0000 | [diff] [blame] | 291 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 292 | #ifdef EXTREME_DEBUG |
hasso | f891f44 | 2004-09-14 13:54:30 +0000 | [diff] [blame] | 293 | prefix2str (connected->address, buf, BUFSIZ); |
hasso | 529d65b | 2004-12-24 00:14:50 +0000 | [diff] [blame] | 294 | zlog_debug ("Added IPv6 address %s to circuit %d", buf, |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 295 | circuit->circuit_id); |
| 296 | #endif /* EXTREME_DEBUG */ |
| 297 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 298 | #endif /* HAVE_IPV6 */ |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 299 | return; |
| 300 | } |
| 301 | |
| 302 | void |
| 303 | isis_circuit_del_addr (struct isis_circuit *circuit, |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 304 | struct connected *connected) |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 305 | { |
hasso | f891f44 | 2004-09-14 13:54:30 +0000 | [diff] [blame] | 306 | struct prefix_ipv4 *ipv4, *ip = NULL; |
| 307 | struct listnode *node; |
hasso | f891f44 | 2004-09-14 13:54:30 +0000 | [diff] [blame] | 308 | u_char buf[BUFSIZ]; |
| 309 | #ifdef HAVE_IPV6 |
| 310 | struct prefix_ipv6 *ipv6, *ip6 = NULL; |
Paul Jakma | 41b36e9 | 2006-12-08 01:09:50 +0000 | [diff] [blame] | 311 | int found = 0; |
hasso | f891f44 | 2004-09-14 13:54:30 +0000 | [diff] [blame] | 312 | #endif /* HAVE_IPV6 */ |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 313 | |
hasso | f891f44 | 2004-09-14 13:54:30 +0000 | [diff] [blame] | 314 | memset (&buf, 0, BUFSIZ); |
| 315 | if (connected->address->family == AF_INET) |
| 316 | { |
| 317 | ipv4 = prefix_ipv4_new (); |
| 318 | ipv4->prefixlen = connected->address->prefixlen; |
| 319 | ipv4->prefix = connected->address->u.prefix4; |
| 320 | |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 321 | for (ALL_LIST_ELEMENTS_RO (circuit->ip_addrs, node, ip)) |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 322 | if (prefix_same ((struct prefix *) ip, (struct prefix *) ipv4)) |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 323 | break; |
hasso | f891f44 | 2004-09-14 13:54:30 +0000 | [diff] [blame] | 324 | |
| 325 | if (ip) |
| 326 | { |
| 327 | listnode_delete (circuit->ip_addrs, ip); |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 328 | if (circuit->area) |
| 329 | lsp_regenerate_schedule (circuit->area, circuit->is_type, 0); |
hasso | f891f44 | 2004-09-14 13:54:30 +0000 | [diff] [blame] | 330 | } |
| 331 | else |
| 332 | { |
hasso | f7c43dc | 2004-09-26 16:24:14 +0000 | [diff] [blame] | 333 | prefix2str (connected->address, (char *)buf, BUFSIZ); |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 334 | zlog_warn ("Nonexitant ip address %s removal attempt from \ |
| 335 | circuit %d", buf, circuit->circuit_id); |
Christian Franke | ec87416 | 2015-11-10 18:33:12 +0100 | [diff] [blame] | 336 | zlog_warn ("Current ip addresses on %s:", circuit->interface->name); |
| 337 | for (ALL_LIST_ELEMENTS_RO(circuit->ip_addrs, node, ip)) |
| 338 | { |
| 339 | prefix2str((struct prefix*)ip, (char *)buf, BUFSIZ); |
| 340 | zlog_warn(" %s", buf); |
| 341 | } |
| 342 | zlog_warn("End of addresses"); |
hasso | f891f44 | 2004-09-14 13:54:30 +0000 | [diff] [blame] | 343 | } |
David Lamparter | e8aca32 | 2012-11-27 01:10:30 +0000 | [diff] [blame] | 344 | |
| 345 | prefix_ipv4_free (ipv4); |
hasso | f891f44 | 2004-09-14 13:54:30 +0000 | [diff] [blame] | 346 | } |
| 347 | #ifdef HAVE_IPV6 |
| 348 | if (connected->address->family == AF_INET6) |
| 349 | { |
| 350 | ipv6 = prefix_ipv6_new (); |
| 351 | ipv6->prefixlen = connected->address->prefixlen; |
| 352 | ipv6->prefix = connected->address->u.prefix6; |
| 353 | |
| 354 | if (IN6_IS_ADDR_LINKLOCAL (&ipv6->prefix)) |
| 355 | { |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 356 | for (ALL_LIST_ELEMENTS_RO (circuit->ipv6_link, node, ip6)) |
hasso | f891f44 | 2004-09-14 13:54:30 +0000 | [diff] [blame] | 357 | { |
hasso | f891f44 | 2004-09-14 13:54:30 +0000 | [diff] [blame] | 358 | if (prefix_same ((struct prefix *) ip6, (struct prefix *) ipv6)) |
| 359 | break; |
| 360 | } |
| 361 | if (ip6) |
| 362 | { |
| 363 | listnode_delete (circuit->ipv6_link, ip6); |
| 364 | found = 1; |
| 365 | } |
| 366 | } |
| 367 | else |
| 368 | { |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 369 | for (ALL_LIST_ELEMENTS_RO (circuit->ipv6_non_link, node, ip6)) |
hasso | f891f44 | 2004-09-14 13:54:30 +0000 | [diff] [blame] | 370 | { |
hasso | f891f44 | 2004-09-14 13:54:30 +0000 | [diff] [blame] | 371 | if (prefix_same ((struct prefix *) ip6, (struct prefix *) ipv6)) |
| 372 | break; |
| 373 | } |
| 374 | if (ip6) |
| 375 | { |
| 376 | listnode_delete (circuit->ipv6_non_link, ip6); |
| 377 | found = 1; |
| 378 | } |
| 379 | } |
| 380 | |
| 381 | if (!found) |
| 382 | { |
hasso | f7c43dc | 2004-09-26 16:24:14 +0000 | [diff] [blame] | 383 | prefix2str (connected->address, (char *)buf, BUFSIZ); |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 384 | zlog_warn ("Nonexitant ip address %s removal attempt from \ |
| 385 | circuit %d", buf, circuit->circuit_id); |
Christian Franke | ec87416 | 2015-11-10 18:33:12 +0100 | [diff] [blame] | 386 | zlog_warn ("Current ip addresses on %s:", circuit->interface->name); |
| 387 | for (ALL_LIST_ELEMENTS_RO(circuit->ipv6_link, node, ip6)) |
| 388 | { |
| 389 | prefix2str((struct prefix*)ip6, (char *)buf, BUFSIZ); |
| 390 | zlog_warn(" %s", buf); |
| 391 | } |
| 392 | zlog_warn(" -----"); |
| 393 | for (ALL_LIST_ELEMENTS_RO(circuit->ipv6_non_link, node, ip6)) |
| 394 | { |
| 395 | prefix2str((struct prefix*)ip6, (char *)buf, BUFSIZ); |
| 396 | zlog_warn(" %s", buf); |
| 397 | } |
| 398 | zlog_warn("End of addresses"); |
hasso | f891f44 | 2004-09-14 13:54:30 +0000 | [diff] [blame] | 399 | } |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 400 | else if (circuit->area) |
| 401 | lsp_regenerate_schedule (circuit->area, circuit->is_type, 0); |
David Lamparter | e8aca32 | 2012-11-27 01:10:30 +0000 | [diff] [blame] | 402 | |
| 403 | prefix_ipv6_free (ipv6); |
hasso | f891f44 | 2004-09-14 13:54:30 +0000 | [diff] [blame] | 404 | } |
| 405 | #endif /* HAVE_IPV6 */ |
| 406 | return; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 407 | } |
| 408 | |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 409 | static u_char |
| 410 | isis_circuit_id_gen (struct interface *ifp) |
| 411 | { |
| 412 | u_char id = 0; |
| 413 | char ifname[16]; |
| 414 | unsigned int i; |
| 415 | int start = -1, end = -1; |
| 416 | |
| 417 | /* |
| 418 | * Get a stable circuit id from ifname. This makes |
| 419 | * the ifindex from flapping when netdevs are created |
| 420 | * and deleted on the fly. Note that this circuit id |
| 421 | * is used in pseudo lsps so it is better to be stable. |
| 422 | * The following code works on any reasonanle ifname |
| 423 | * like: eth1 or trk-1.1 etc. |
| 424 | */ |
| 425 | for (i = 0; i < strlen (ifp->name); i++) |
| 426 | { |
David Lamparter | 52f02b4 | 2015-04-10 09:14:30 +0200 | [diff] [blame] | 427 | if (isdigit((unsigned char)ifp->name[i])) |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 428 | { |
| 429 | if (start < 0) |
| 430 | { |
| 431 | start = i; |
| 432 | end = i + 1; |
| 433 | } |
| 434 | else |
| 435 | { |
| 436 | end = i + 1; |
| 437 | } |
| 438 | } |
| 439 | else if (start >= 0) |
| 440 | break; |
| 441 | } |
| 442 | |
| 443 | if ((start >= 0) && (end >= start) && (end - start) < 16) |
| 444 | { |
| 445 | memset (ifname, 0, 16); |
| 446 | strncpy (ifname, &ifp->name[start], end - start); |
| 447 | id = (u_char)atoi(ifname); |
| 448 | } |
| 449 | |
| 450 | /* Try to be unique. */ |
| 451 | if (!id) |
| 452 | id = (u_char)((ifp->ifindex & 0xff) | 0x80); |
| 453 | |
| 454 | return id; |
| 455 | } |
| 456 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 457 | void |
| 458 | isis_circuit_if_add (struct isis_circuit *circuit, struct interface *ifp) |
| 459 | { |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 460 | struct listnode *node, *nnode; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 461 | struct connected *conn; |
| 462 | |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 463 | circuit->circuit_id = isis_circuit_id_gen (ifp); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 464 | |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 465 | isis_circuit_if_bind (circuit, ifp); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 466 | /* isis_circuit_update_addrs (circuit, ifp); */ |
| 467 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 468 | if (if_is_broadcast (ifp)) |
| 469 | { |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 470 | if (circuit->circ_type_config == CIRCUIT_T_P2P) |
| 471 | circuit->circ_type = CIRCUIT_T_P2P; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 472 | else |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 473 | circuit->circ_type = CIRCUIT_T_BROADCAST; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 474 | } |
| 475 | else if (if_is_pointopoint (ifp)) |
| 476 | { |
| 477 | circuit->circ_type = CIRCUIT_T_P2P; |
| 478 | } |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 479 | else if (if_is_loopback (ifp)) |
| 480 | { |
| 481 | circuit->circ_type = CIRCUIT_T_LOOPBACK; |
| 482 | circuit->is_passive = 1; |
| 483 | } |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 484 | else |
| 485 | { |
hasso | c89c05d | 2005-09-04 21:36:36 +0000 | [diff] [blame] | 486 | /* It's normal in case of loopback etc. */ |
| 487 | if (isis->debugs & DEBUG_EVENTS) |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 488 | zlog_debug ("isis_circuit_if_add: unsupported media"); |
| 489 | circuit->circ_type = CIRCUIT_T_UNKNOWN; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 490 | } |
| 491 | |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 492 | circuit->ip_addrs = list_new (); |
| 493 | #ifdef HAVE_IPV6 |
| 494 | circuit->ipv6_link = list_new (); |
| 495 | circuit->ipv6_non_link = list_new (); |
| 496 | #endif /* HAVE_IPV6 */ |
| 497 | |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 498 | for (ALL_LIST_ELEMENTS (ifp->connected, node, nnode, conn)) |
| 499 | isis_circuit_add_addr (circuit, conn); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 500 | |
| 501 | return; |
| 502 | } |
| 503 | |
| 504 | void |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 505 | isis_circuit_if_del (struct isis_circuit *circuit, struct interface *ifp) |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 506 | { |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 507 | struct listnode *node, *nnode; |
| 508 | struct connected *conn; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 509 | |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 510 | assert (circuit->interface == ifp); |
| 511 | |
| 512 | /* destroy addresses */ |
| 513 | for (ALL_LIST_ELEMENTS (ifp->connected, node, nnode, conn)) |
| 514 | isis_circuit_del_addr (circuit, conn); |
| 515 | |
| 516 | if (circuit->ip_addrs) |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 517 | { |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 518 | assert (listcount(circuit->ip_addrs) == 0); |
| 519 | list_delete (circuit->ip_addrs); |
| 520 | circuit->ip_addrs = NULL; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 521 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 522 | |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 523 | #ifdef HAVE_IPV6 |
| 524 | if (circuit->ipv6_link) |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 525 | { |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 526 | assert (listcount(circuit->ipv6_link) == 0); |
| 527 | list_delete (circuit->ipv6_link); |
| 528 | circuit->ipv6_link = NULL; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 529 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 530 | |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 531 | if (circuit->ipv6_non_link) |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 532 | { |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 533 | assert (listcount(circuit->ipv6_non_link) == 0); |
| 534 | list_delete (circuit->ipv6_non_link); |
| 535 | circuit->ipv6_non_link = NULL; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 536 | } |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 537 | #endif /* HAVE_IPV6 */ |
| 538 | |
| 539 | circuit->circ_type = CIRCUIT_T_UNKNOWN; |
| 540 | circuit->circuit_id = 0; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 541 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 542 | return; |
| 543 | } |
| 544 | |
| 545 | void |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 546 | isis_circuit_if_bind (struct isis_circuit *circuit, struct interface *ifp) |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 547 | { |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 548 | assert (circuit != NULL); |
| 549 | assert (ifp != NULL); |
| 550 | if (circuit->interface) |
| 551 | assert (circuit->interface == ifp); |
| 552 | else |
| 553 | circuit->interface = ifp; |
| 554 | if (ifp->info) |
| 555 | assert (ifp->info == circuit); |
| 556 | else |
| 557 | ifp->info = circuit; |
Olivier Dugeon | 4f59357 | 2016-04-19 19:03:05 +0200 | [diff] [blame] | 558 | isis_link_params_update (circuit, ifp); |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 559 | } |
| 560 | |
| 561 | void |
| 562 | isis_circuit_if_unbind (struct isis_circuit *circuit, struct interface *ifp) |
| 563 | { |
| 564 | assert (circuit != NULL); |
| 565 | assert (ifp != NULL); |
| 566 | assert (circuit->interface == ifp); |
| 567 | assert (ifp->info == circuit); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 568 | circuit->interface = NULL; |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 569 | ifp->info = NULL; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 570 | } |
| 571 | |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 572 | static void |
| 573 | isis_circuit_update_all_srmflags (struct isis_circuit *circuit, int is_set) |
| 574 | { |
| 575 | struct isis_area *area; |
| 576 | struct isis_lsp *lsp; |
| 577 | dnode_t *dnode, *dnode_next; |
| 578 | int level; |
| 579 | |
| 580 | assert (circuit); |
| 581 | area = circuit->area; |
| 582 | assert (area); |
| 583 | for (level = ISIS_LEVEL1; level <= ISIS_LEVEL2; level++) |
| 584 | { |
| 585 | if (level & circuit->is_type) |
| 586 | { |
| 587 | if (area->lspdb[level - 1] && |
| 588 | dict_count (area->lspdb[level - 1]) > 0) |
| 589 | { |
| 590 | for (dnode = dict_first (area->lspdb[level - 1]); |
| 591 | dnode != NULL; dnode = dnode_next) |
| 592 | { |
| 593 | dnode_next = dict_next (area->lspdb[level - 1], dnode); |
| 594 | lsp = dnode_get (dnode); |
| 595 | if (is_set) |
| 596 | { |
| 597 | ISIS_SET_FLAG (lsp->SRMflags, circuit); |
| 598 | } |
| 599 | else |
| 600 | { |
| 601 | ISIS_CLEAR_FLAG (lsp->SRMflags, circuit); |
| 602 | } |
| 603 | } |
| 604 | } |
| 605 | } |
| 606 | } |
| 607 | } |
| 608 | |
Christian Franke | f1fc1db | 2015-11-10 18:43:31 +0100 | [diff] [blame] | 609 | size_t |
| 610 | isis_circuit_pdu_size(struct isis_circuit *circuit) |
| 611 | { |
| 612 | return ISO_MTU(circuit); |
| 613 | } |
| 614 | |
| 615 | void |
| 616 | isis_circuit_stream(struct isis_circuit *circuit, struct stream **stream) |
| 617 | { |
| 618 | size_t stream_size = isis_circuit_pdu_size(circuit); |
| 619 | |
| 620 | if (!*stream) |
| 621 | { |
| 622 | *stream = stream_new(stream_size); |
| 623 | } |
| 624 | else |
| 625 | { |
| 626 | if (STREAM_SIZE(*stream) != stream_size) |
| 627 | stream_resize(*stream, stream_size); |
| 628 | stream_reset(*stream); |
| 629 | } |
| 630 | } |
| 631 | |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 632 | int |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 633 | isis_circuit_up (struct isis_circuit *circuit) |
| 634 | { |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 635 | int retv; |
| 636 | |
| 637 | /* Set the flags for all the lsps of the circuit. */ |
| 638 | isis_circuit_update_all_srmflags (circuit, 1); |
| 639 | |
| 640 | if (circuit->state == C_STATE_UP) |
| 641 | return ISIS_OK; |
| 642 | |
| 643 | if (circuit->is_passive) |
| 644 | return ISIS_OK; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 645 | |
Christian Franke | f1fc1db | 2015-11-10 18:43:31 +0100 | [diff] [blame] | 646 | if (circuit->area->lsp_mtu > isis_circuit_pdu_size(circuit)) |
| 647 | { |
| 648 | zlog_err("Interface MTU %zu on %s is too low to support area lsp mtu %u!", |
| 649 | isis_circuit_pdu_size(circuit), circuit->interface->name, |
| 650 | circuit->area->lsp_mtu); |
Christian Franke | 8ed8d0b | 2016-04-03 12:46:26 -0300 | [diff] [blame] | 651 | isis_circuit_update_all_srmflags(circuit, 0); |
Christian Franke | f1fc1db | 2015-11-10 18:43:31 +0100 | [diff] [blame] | 652 | return ISIS_ERROR; |
| 653 | } |
| 654 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 655 | if (circuit->circ_type == CIRCUIT_T_BROADCAST) |
| 656 | { |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 657 | /* |
| 658 | * Get the Hardware Address |
| 659 | */ |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 660 | if (circuit->interface->hw_addr_len != ETH_ALEN) |
| 661 | { |
| 662 | zlog_warn ("unsupported link layer"); |
| 663 | } |
| 664 | else |
| 665 | { |
| 666 | memcpy (circuit->u.bc.snpa, circuit->interface->hw_addr, ETH_ALEN); |
| 667 | } |
| 668 | #ifdef EXTREME_DEGUG |
| 669 | zlog_debug ("isis_circuit_if_add: if_id %d, isomtu %d snpa %s", |
| 670 | circuit->interface->ifindex, ISO_MTU (circuit), |
| 671 | snpa_print (circuit->u.bc.snpa)); |
| 672 | #endif /* EXTREME_DEBUG */ |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 673 | |
| 674 | circuit->u.bc.adjdb[0] = list_new (); |
| 675 | circuit->u.bc.adjdb[1] = list_new (); |
| 676 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 677 | /* |
| 678 | * ISO 10589 - 8.4.1 Enabling of broadcast circuits |
| 679 | */ |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 680 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 681 | /* initilizing the hello sending threads |
| 682 | * for a broadcast IF |
| 683 | */ |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 684 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 685 | /* 8.4.1 a) commence sending of IIH PDUs */ |
| 686 | |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 687 | if (circuit->is_type & IS_LEVEL_1) |
| 688 | { |
| 689 | thread_add_event (master, send_lan_l1_hello, circuit, 0); |
| 690 | circuit->u.bc.lan_neighs[0] = list_new (); |
| 691 | } |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 692 | |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 693 | if (circuit->is_type & IS_LEVEL_2) |
| 694 | { |
| 695 | thread_add_event (master, send_lan_l2_hello, circuit, 0); |
| 696 | circuit->u.bc.lan_neighs[1] = list_new (); |
| 697 | } |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 698 | |
| 699 | /* 8.4.1 b) FIXME: solicit ES - 8.4.6 */ |
| 700 | /* 8.4.1 c) FIXME: listen for ESH PDUs */ |
| 701 | |
| 702 | /* 8.4.1 d) */ |
| 703 | /* dr election will commence in... */ |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 704 | if (circuit->is_type & IS_LEVEL_1) |
| 705 | THREAD_TIMER_ON (master, circuit->u.bc.t_run_dr[0], isis_run_dr_l1, |
| 706 | circuit, 2 * circuit->hello_interval[0]); |
| 707 | if (circuit->is_type & IS_LEVEL_2) |
| 708 | THREAD_TIMER_ON (master, circuit->u.bc.t_run_dr[1], isis_run_dr_l2, |
| 709 | circuit, 2 * circuit->hello_interval[1]); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 710 | } |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 711 | else |
| 712 | { |
| 713 | /* initializing the hello send threads |
| 714 | * for a ptp IF |
| 715 | */ |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 716 | circuit->u.p2p.neighbor = NULL; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 717 | thread_add_event (master, send_p2p_hello, circuit, 0); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 718 | } |
| 719 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 720 | /* initializing PSNP timers */ |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 721 | if (circuit->is_type & IS_LEVEL_1) |
| 722 | THREAD_TIMER_ON (master, circuit->t_send_psnp[0], send_l1_psnp, circuit, |
| 723 | isis_jitter (circuit->psnp_interval[0], PSNP_JITTER)); |
| 724 | |
| 725 | if (circuit->is_type & IS_LEVEL_2) |
| 726 | THREAD_TIMER_ON (master, circuit->t_send_psnp[1], send_l2_psnp, circuit, |
| 727 | isis_jitter (circuit->psnp_interval[1], PSNP_JITTER)); |
| 728 | |
| 729 | /* unified init for circuits; ignore warnings below this level */ |
| 730 | retv = isis_sock_init (circuit); |
| 731 | if (retv != ISIS_OK) |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 732 | { |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 733 | isis_circuit_down (circuit); |
| 734 | return retv; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 735 | } |
| 736 | |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 737 | /* initialize the circuit streams after opening connection */ |
Christian Franke | f1fc1db | 2015-11-10 18:43:31 +0100 | [diff] [blame] | 738 | isis_circuit_stream(circuit, &circuit->rcv_stream); |
| 739 | isis_circuit_stream(circuit, &circuit->snd_stream); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 740 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 741 | #ifdef GNU_LINUX |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 742 | THREAD_READ_ON (master, circuit->t_read, isis_receive, circuit, |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 743 | circuit->fd); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 744 | #else |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 745 | THREAD_TIMER_ON (master, circuit->t_read, isis_receive, circuit, |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 746 | circuit->fd); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 747 | #endif |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 748 | |
| 749 | circuit->lsp_queue = list_new (); |
| 750 | circuit->lsp_queue_last_cleared = time (NULL); |
| 751 | |
| 752 | return ISIS_OK; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 753 | } |
| 754 | |
| 755 | void |
| 756 | isis_circuit_down (struct isis_circuit *circuit) |
| 757 | { |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 758 | if (circuit->state != C_STATE_UP) |
| 759 | return; |
| 760 | |
| 761 | /* Clear the flags for all the lsps of the circuit. */ |
| 762 | isis_circuit_update_all_srmflags (circuit, 0); |
| 763 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 764 | if (circuit->circ_type == CIRCUIT_T_BROADCAST) |
| 765 | { |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 766 | /* destroy neighbour lists */ |
| 767 | if (circuit->u.bc.lan_neighs[0]) |
| 768 | { |
| 769 | list_delete (circuit->u.bc.lan_neighs[0]); |
| 770 | circuit->u.bc.lan_neighs[0] = NULL; |
| 771 | } |
| 772 | if (circuit->u.bc.lan_neighs[1]) |
| 773 | { |
| 774 | list_delete (circuit->u.bc.lan_neighs[1]); |
| 775 | circuit->u.bc.lan_neighs[1] = NULL; |
| 776 | } |
| 777 | /* destroy adjacency databases */ |
| 778 | if (circuit->u.bc.adjdb[0]) |
| 779 | { |
| 780 | circuit->u.bc.adjdb[0]->del = isis_delete_adj; |
| 781 | list_delete (circuit->u.bc.adjdb[0]); |
| 782 | circuit->u.bc.adjdb[0] = NULL; |
| 783 | } |
| 784 | if (circuit->u.bc.adjdb[1]) |
| 785 | { |
| 786 | circuit->u.bc.adjdb[1]->del = isis_delete_adj; |
| 787 | list_delete (circuit->u.bc.adjdb[1]); |
| 788 | circuit->u.bc.adjdb[1] = NULL; |
| 789 | } |
| 790 | if (circuit->u.bc.is_dr[0]) |
| 791 | { |
| 792 | isis_dr_resign (circuit, 1); |
| 793 | circuit->u.bc.is_dr[0] = 0; |
| 794 | } |
| 795 | memset (circuit->u.bc.l1_desig_is, 0, ISIS_SYS_ID_LEN + 1); |
| 796 | if (circuit->u.bc.is_dr[1]) |
| 797 | { |
| 798 | isis_dr_resign (circuit, 2); |
| 799 | circuit->u.bc.is_dr[1] = 0; |
| 800 | } |
| 801 | memset (circuit->u.bc.l2_desig_is, 0, ISIS_SYS_ID_LEN + 1); |
| 802 | memset (circuit->u.bc.snpa, 0, ETH_ALEN); |
| 803 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 804 | THREAD_TIMER_OFF (circuit->u.bc.t_send_lan_hello[0]); |
| 805 | THREAD_TIMER_OFF (circuit->u.bc.t_send_lan_hello[1]); |
hasso | f891f44 | 2004-09-14 13:54:30 +0000 | [diff] [blame] | 806 | THREAD_TIMER_OFF (circuit->u.bc.t_run_dr[0]); |
| 807 | THREAD_TIMER_OFF (circuit->u.bc.t_run_dr[1]); |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 808 | THREAD_TIMER_OFF (circuit->u.bc.t_refresh_pseudo_lsp[0]); |
| 809 | THREAD_TIMER_OFF (circuit->u.bc.t_refresh_pseudo_lsp[1]); |
Christian Franke | 61010c3 | 2015-11-10 18:43:34 +0100 | [diff] [blame] | 810 | circuit->lsp_regenerate_pending[0] = 0; |
| 811 | circuit->lsp_regenerate_pending[1] = 0; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 812 | } |
| 813 | else if (circuit->circ_type == CIRCUIT_T_P2P) |
| 814 | { |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 815 | isis_delete_adj (circuit->u.p2p.neighbor); |
| 816 | circuit->u.p2p.neighbor = NULL; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 817 | THREAD_TIMER_OFF (circuit->u.p2p.t_send_p2p_hello); |
| 818 | } |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 819 | |
| 820 | /* Cancel all active threads */ |
| 821 | THREAD_TIMER_OFF (circuit->t_send_csnp[0]); |
| 822 | THREAD_TIMER_OFF (circuit->t_send_csnp[1]); |
| 823 | THREAD_TIMER_OFF (circuit->t_send_psnp[0]); |
| 824 | THREAD_TIMER_OFF (circuit->t_send_psnp[1]); |
| 825 | THREAD_OFF (circuit->t_read); |
| 826 | |
| 827 | if (circuit->lsp_queue) |
| 828 | { |
| 829 | circuit->lsp_queue->del = NULL; |
| 830 | list_delete (circuit->lsp_queue); |
| 831 | circuit->lsp_queue = NULL; |
| 832 | } |
| 833 | |
| 834 | /* send one gratuitous hello to spead up convergence */ |
| 835 | if (circuit->is_type & IS_LEVEL_1) |
| 836 | send_hello (circuit, IS_LEVEL_1); |
| 837 | if (circuit->is_type & IS_LEVEL_2) |
| 838 | send_hello (circuit, IS_LEVEL_2); |
| 839 | |
| 840 | circuit->upadjcount[0] = 0; |
| 841 | circuit->upadjcount[1] = 0; |
| 842 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 843 | /* close the socket */ |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 844 | if (circuit->fd) |
| 845 | { |
| 846 | close (circuit->fd); |
| 847 | circuit->fd = 0; |
| 848 | } |
| 849 | |
| 850 | if (circuit->rcv_stream != NULL) |
| 851 | { |
| 852 | stream_free (circuit->rcv_stream); |
| 853 | circuit->rcv_stream = NULL; |
| 854 | } |
| 855 | |
| 856 | if (circuit->snd_stream != NULL) |
| 857 | { |
| 858 | stream_free (circuit->snd_stream); |
| 859 | circuit->snd_stream = NULL; |
| 860 | } |
| 861 | |
| 862 | thread_cancel_event (master, circuit); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 863 | |
| 864 | return; |
| 865 | } |
| 866 | |
| 867 | void |
| 868 | circuit_update_nlpids (struct isis_circuit *circuit) |
| 869 | { |
| 870 | circuit->nlpids.count = 0; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 871 | |
| 872 | if (circuit->ip_router) |
| 873 | { |
| 874 | circuit->nlpids.nlpids[0] = NLPID_IP; |
| 875 | circuit->nlpids.count++; |
| 876 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 877 | #ifdef HAVE_IPV6 |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 878 | if (circuit->ipv6_router) |
| 879 | { |
| 880 | circuit->nlpids.nlpids[circuit->nlpids.count] = NLPID_IPV6; |
| 881 | circuit->nlpids.count++; |
| 882 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 883 | #endif /* HAVE_IPV6 */ |
| 884 | return; |
| 885 | } |
| 886 | |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 887 | void |
| 888 | isis_circuit_print_vty (struct isis_circuit *circuit, struct vty *vty, |
| 889 | char detail) |
| 890 | { |
| 891 | if (detail == ISIS_UI_LEVEL_BRIEF) |
| 892 | { |
| 893 | vty_out (vty, " %-12s", circuit->interface->name); |
| 894 | vty_out (vty, "0x%-7x", circuit->circuit_id); |
| 895 | vty_out (vty, "%-9s", circuit_state2string (circuit->state)); |
| 896 | vty_out (vty, "%-9s", circuit_type2string (circuit->circ_type)); |
| 897 | vty_out (vty, "%-9s", circuit_t2string (circuit->is_type)); |
| 898 | vty_out (vty, "%s", VTY_NEWLINE); |
| 899 | } |
| 900 | |
| 901 | if (detail == ISIS_UI_LEVEL_DETAIL) |
| 902 | { |
Christian Franke | cb32a19 | 2015-11-10 18:33:13 +0100 | [diff] [blame] | 903 | struct listnode *node; |
| 904 | struct prefix *ip_addr; |
| 905 | u_char buf[BUFSIZ]; |
| 906 | |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 907 | vty_out (vty, " Interface: %s", circuit->interface->name); |
| 908 | vty_out (vty, ", State: %s", circuit_state2string (circuit->state)); |
| 909 | if (circuit->is_passive) |
| 910 | vty_out (vty, ", Passive"); |
| 911 | else |
| 912 | vty_out (vty, ", Active"); |
| 913 | vty_out (vty, ", Circuit Id: 0x%x", circuit->circuit_id); |
| 914 | vty_out (vty, "%s", VTY_NEWLINE); |
| 915 | vty_out (vty, " Type: %s", circuit_type2string (circuit->circ_type)); |
| 916 | vty_out (vty, ", Level: %s", circuit_t2string (circuit->is_type)); |
| 917 | if (circuit->circ_type == CIRCUIT_T_BROADCAST) |
| 918 | vty_out (vty, ", SNPA: %-10s", snpa_print (circuit->u.bc.snpa)); |
| 919 | vty_out (vty, "%s", VTY_NEWLINE); |
| 920 | if (circuit->is_type & IS_LEVEL_1) |
| 921 | { |
| 922 | vty_out (vty, " Level-1 Information:%s", VTY_NEWLINE); |
| 923 | if (circuit->area->newmetric) |
| 924 | vty_out (vty, " Metric: %d", circuit->te_metric[0]); |
| 925 | else |
| 926 | vty_out (vty, " Metric: %d", |
| 927 | circuit->metrics[0].metric_default); |
| 928 | if (!circuit->is_passive) |
| 929 | { |
| 930 | vty_out (vty, ", Active neighbors: %u%s", |
| 931 | circuit->upadjcount[0], VTY_NEWLINE); |
| 932 | vty_out (vty, " Hello interval: %u, " |
| 933 | "Holddown count: %u %s%s", |
| 934 | circuit->hello_interval[0], |
| 935 | circuit->hello_multiplier[0], |
| 936 | (circuit->pad_hellos ? "(pad)" : "(no-pad)"), |
| 937 | VTY_NEWLINE); |
| 938 | vty_out (vty, " CNSP interval: %u, " |
| 939 | "PSNP interval: %u%s", |
| 940 | circuit->csnp_interval[0], |
| 941 | circuit->psnp_interval[0], VTY_NEWLINE); |
| 942 | if (circuit->circ_type == CIRCUIT_T_BROADCAST) |
| 943 | vty_out (vty, " LAN Priority: %u, %s%s", |
| 944 | circuit->priority[0], |
| 945 | (circuit->u.bc.is_dr[0] ? \ |
| 946 | "is DIS" : "is not DIS"), VTY_NEWLINE); |
| 947 | } |
| 948 | else |
| 949 | { |
| 950 | vty_out (vty, "%s", VTY_NEWLINE); |
| 951 | } |
| 952 | } |
| 953 | if (circuit->is_type & IS_LEVEL_2) |
| 954 | { |
| 955 | vty_out (vty, " Level-2 Information:%s", VTY_NEWLINE); |
| 956 | if (circuit->area->newmetric) |
| 957 | vty_out (vty, " Metric: %d", circuit->te_metric[1]); |
| 958 | else |
| 959 | vty_out (vty, " Metric: %d", |
| 960 | circuit->metrics[1].metric_default); |
| 961 | if (!circuit->is_passive) |
| 962 | { |
| 963 | vty_out (vty, ", Active neighbors: %u%s", |
| 964 | circuit->upadjcount[1], VTY_NEWLINE); |
| 965 | vty_out (vty, " Hello interval: %u, " |
| 966 | "Holddown count: %u %s%s", |
| 967 | circuit->hello_interval[1], |
| 968 | circuit->hello_multiplier[1], |
| 969 | (circuit->pad_hellos ? "(pad)" : "(no-pad)"), |
| 970 | VTY_NEWLINE); |
| 971 | vty_out (vty, " CNSP interval: %u, " |
| 972 | "PSNP interval: %u%s", |
| 973 | circuit->csnp_interval[1], |
| 974 | circuit->psnp_interval[1], VTY_NEWLINE); |
| 975 | if (circuit->circ_type == CIRCUIT_T_BROADCAST) |
| 976 | vty_out (vty, " LAN Priority: %u, %s%s", |
| 977 | circuit->priority[1], |
| 978 | (circuit->u.bc.is_dr[1] ? \ |
| 979 | "is DIS" : "is not DIS"), VTY_NEWLINE); |
| 980 | } |
| 981 | else |
| 982 | { |
| 983 | vty_out (vty, "%s", VTY_NEWLINE); |
| 984 | } |
| 985 | } |
| 986 | if (circuit->ip_addrs && listcount (circuit->ip_addrs) > 0) |
| 987 | { |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 988 | vty_out (vty, " IP Prefix(es):%s", VTY_NEWLINE); |
| 989 | for (ALL_LIST_ELEMENTS_RO (circuit->ip_addrs, node, ip_addr)) |
| 990 | { |
| 991 | prefix2str (ip_addr, (char*)buf, BUFSIZ), |
| 992 | vty_out (vty, " %s%s", buf, VTY_NEWLINE); |
| 993 | } |
| 994 | } |
Christian Franke | cb32a19 | 2015-11-10 18:33:13 +0100 | [diff] [blame] | 995 | if (circuit->ipv6_link && listcount(circuit->ipv6_link) > 0) |
| 996 | { |
| 997 | vty_out(vty, " IPv6 Link-Locals:%s", VTY_NEWLINE); |
| 998 | for (ALL_LIST_ELEMENTS_RO(circuit->ipv6_link, node, ip_addr)) |
| 999 | { |
| 1000 | prefix2str(ip_addr, (char*)buf, BUFSIZ), |
| 1001 | vty_out(vty, " %s%s", buf, VTY_NEWLINE); |
| 1002 | } |
| 1003 | } |
| 1004 | if (circuit->ipv6_link && listcount(circuit->ipv6_non_link) > 0) |
| 1005 | { |
| 1006 | vty_out(vty, " IPv6 Prefixes:%s", VTY_NEWLINE); |
| 1007 | for (ALL_LIST_ELEMENTS_RO(circuit->ipv6_non_link, node, ip_addr)) |
| 1008 | { |
| 1009 | prefix2str(ip_addr, (char*)buf, BUFSIZ), |
| 1010 | vty_out(vty, " %s%s", buf, VTY_NEWLINE); |
| 1011 | } |
| 1012 | } |
| 1013 | |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1014 | vty_out (vty, "%s", VTY_NEWLINE); |
| 1015 | } |
| 1016 | return; |
| 1017 | } |
| 1018 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1019 | int |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1020 | isis_interface_config_write (struct vty *vty) |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1021 | { |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1022 | int write = 0; |
hasso | 3fdb2dd | 2005-09-28 18:45:54 +0000 | [diff] [blame] | 1023 | struct listnode *node, *node2; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1024 | struct interface *ifp; |
| 1025 | struct isis_area *area; |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1026 | struct isis_circuit *circuit; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1027 | int i; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1028 | |
hasso | 3fdb2dd | 2005-09-28 18:45:54 +0000 | [diff] [blame] | 1029 | for (ALL_LIST_ELEMENTS_RO (iflist, node, ifp)) |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1030 | { |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1031 | /* IF name */ |
| 1032 | vty_out (vty, "interface %s%s", ifp->name, VTY_NEWLINE); |
| 1033 | write++; |
| 1034 | /* IF desc */ |
| 1035 | if (ifp->desc) |
| 1036 | { |
| 1037 | vty_out (vty, " description %s%s", ifp->desc, VTY_NEWLINE); |
| 1038 | write++; |
| 1039 | } |
| 1040 | /* ISIS Circuit */ |
| 1041 | for (ALL_LIST_ELEMENTS_RO (isis->area_list, node2, area)) |
| 1042 | { |
| 1043 | circuit = circuit_lookup_by_ifp (ifp, area->circuit_list); |
| 1044 | if (circuit == NULL) |
| 1045 | continue; |
| 1046 | if (circuit->ip_router) |
| 1047 | { |
| 1048 | vty_out (vty, " ip router isis %s%s", area->area_tag, |
| 1049 | VTY_NEWLINE); |
| 1050 | write++; |
| 1051 | } |
| 1052 | if (circuit->is_passive) |
| 1053 | { |
| 1054 | vty_out (vty, " isis passive%s", VTY_NEWLINE); |
| 1055 | write++; |
| 1056 | } |
| 1057 | if (circuit->circ_type_config == CIRCUIT_T_P2P) |
| 1058 | { |
| 1059 | vty_out (vty, " isis network point-to-point%s", VTY_NEWLINE); |
| 1060 | write++; |
| 1061 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1062 | #ifdef HAVE_IPV6 |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1063 | if (circuit->ipv6_router) |
| 1064 | { |
| 1065 | vty_out (vty, " ipv6 router isis %s%s", area->area_tag, |
| 1066 | VTY_NEWLINE); |
| 1067 | write++; |
| 1068 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1069 | #endif /* HAVE_IPV6 */ |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1070 | |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1071 | /* ISIS - circuit type */ |
| 1072 | if (circuit->is_type == IS_LEVEL_1) |
| 1073 | { |
| 1074 | vty_out (vty, " isis circuit-type level-1%s", VTY_NEWLINE); |
| 1075 | write++; |
| 1076 | } |
| 1077 | else |
| 1078 | { |
| 1079 | if (circuit->is_type == IS_LEVEL_2) |
| 1080 | { |
| 1081 | vty_out (vty, " isis circuit-type level-2-only%s", |
| 1082 | VTY_NEWLINE); |
| 1083 | write++; |
| 1084 | } |
| 1085 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1086 | |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1087 | /* ISIS - CSNP interval */ |
| 1088 | if (circuit->csnp_interval[0] == circuit->csnp_interval[1]) |
| 1089 | { |
| 1090 | if (circuit->csnp_interval[0] != DEFAULT_CSNP_INTERVAL) |
| 1091 | { |
| 1092 | vty_out (vty, " isis csnp-interval %d%s", |
| 1093 | circuit->csnp_interval[0], VTY_NEWLINE); |
| 1094 | write++; |
| 1095 | } |
| 1096 | } |
| 1097 | else |
| 1098 | { |
| 1099 | for (i = 0; i < 2; i++) |
| 1100 | { |
| 1101 | if (circuit->csnp_interval[i] != DEFAULT_CSNP_INTERVAL) |
| 1102 | { |
| 1103 | vty_out (vty, " isis csnp-interval %d level-%d%s", |
| 1104 | circuit->csnp_interval[i], i + 1, VTY_NEWLINE); |
| 1105 | write++; |
| 1106 | } |
| 1107 | } |
| 1108 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1109 | |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1110 | /* ISIS - PSNP interval */ |
| 1111 | if (circuit->psnp_interval[0] == circuit->psnp_interval[1]) |
| 1112 | { |
| 1113 | if (circuit->psnp_interval[0] != DEFAULT_PSNP_INTERVAL) |
| 1114 | { |
| 1115 | vty_out (vty, " isis psnp-interval %d%s", |
| 1116 | circuit->psnp_interval[0], VTY_NEWLINE); |
| 1117 | write++; |
| 1118 | } |
| 1119 | } |
| 1120 | else |
| 1121 | { |
| 1122 | for (i = 0; i < 2; i++) |
| 1123 | { |
| 1124 | if (circuit->psnp_interval[i] != DEFAULT_PSNP_INTERVAL) |
| 1125 | { |
| 1126 | vty_out (vty, " isis psnp-interval %d level-%d%s", |
| 1127 | circuit->psnp_interval[i], i + 1, VTY_NEWLINE); |
| 1128 | write++; |
| 1129 | } |
| 1130 | } |
| 1131 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1132 | |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1133 | /* ISIS - Hello padding - Defaults to true so only display if false */ |
| 1134 | if (circuit->pad_hellos == 0) |
| 1135 | { |
| 1136 | vty_out (vty, " no isis hello padding%s", VTY_NEWLINE); |
| 1137 | write++; |
| 1138 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1139 | |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1140 | /* ISIS - Hello interval */ |
| 1141 | if (circuit->hello_interval[0] == circuit->hello_interval[1]) |
| 1142 | { |
| 1143 | if (circuit->hello_interval[0] != DEFAULT_HELLO_INTERVAL) |
| 1144 | { |
| 1145 | vty_out (vty, " isis hello-interval %d%s", |
| 1146 | circuit->hello_interval[0], VTY_NEWLINE); |
| 1147 | write++; |
| 1148 | } |
| 1149 | } |
| 1150 | else |
| 1151 | { |
| 1152 | for (i = 0; i < 2; i++) |
| 1153 | { |
| 1154 | if (circuit->hello_interval[i] != DEFAULT_HELLO_INTERVAL) |
| 1155 | { |
| 1156 | vty_out (vty, " isis hello-interval %d level-%d%s", |
| 1157 | circuit->hello_interval[i], i + 1, VTY_NEWLINE); |
| 1158 | write++; |
| 1159 | } |
| 1160 | } |
| 1161 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1162 | |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1163 | /* ISIS - Hello Multiplier */ |
| 1164 | if (circuit->hello_multiplier[0] == circuit->hello_multiplier[1]) |
| 1165 | { |
| 1166 | if (circuit->hello_multiplier[0] != DEFAULT_HELLO_MULTIPLIER) |
| 1167 | { |
| 1168 | vty_out (vty, " isis hello-multiplier %d%s", |
| 1169 | circuit->hello_multiplier[0], VTY_NEWLINE); |
| 1170 | write++; |
| 1171 | } |
| 1172 | } |
| 1173 | else |
| 1174 | { |
| 1175 | for (i = 0; i < 2; i++) |
| 1176 | { |
| 1177 | if (circuit->hello_multiplier[i] != DEFAULT_HELLO_MULTIPLIER) |
| 1178 | { |
| 1179 | vty_out (vty, " isis hello-multiplier %d level-%d%s", |
| 1180 | circuit->hello_multiplier[i], i + 1, |
| 1181 | VTY_NEWLINE); |
| 1182 | write++; |
| 1183 | } |
| 1184 | } |
| 1185 | } |
| 1186 | |
| 1187 | /* ISIS - Priority */ |
| 1188 | if (circuit->priority[0] == circuit->priority[1]) |
| 1189 | { |
| 1190 | if (circuit->priority[0] != DEFAULT_PRIORITY) |
| 1191 | { |
| 1192 | vty_out (vty, " isis priority %d%s", |
| 1193 | circuit->priority[0], VTY_NEWLINE); |
| 1194 | write++; |
| 1195 | } |
| 1196 | } |
| 1197 | else |
| 1198 | { |
| 1199 | for (i = 0; i < 2; i++) |
| 1200 | { |
| 1201 | if (circuit->priority[i] != DEFAULT_PRIORITY) |
| 1202 | { |
| 1203 | vty_out (vty, " isis priority %d level-%d%s", |
| 1204 | circuit->priority[i], i + 1, VTY_NEWLINE); |
| 1205 | write++; |
| 1206 | } |
| 1207 | } |
| 1208 | } |
| 1209 | |
| 1210 | /* ISIS - Metric */ |
| 1211 | if (circuit->te_metric[0] == circuit->te_metric[1]) |
| 1212 | { |
| 1213 | if (circuit->te_metric[0] != DEFAULT_CIRCUIT_METRIC) |
| 1214 | { |
| 1215 | vty_out (vty, " isis metric %d%s", circuit->te_metric[0], |
| 1216 | VTY_NEWLINE); |
| 1217 | write++; |
| 1218 | } |
| 1219 | } |
| 1220 | else |
| 1221 | { |
| 1222 | for (i = 0; i < 2; i++) |
| 1223 | { |
| 1224 | if (circuit->te_metric[i] != DEFAULT_CIRCUIT_METRIC) |
| 1225 | { |
| 1226 | vty_out (vty, " isis metric %d level-%d%s", |
| 1227 | circuit->te_metric[i], i + 1, VTY_NEWLINE); |
| 1228 | write++; |
| 1229 | } |
| 1230 | } |
| 1231 | } |
| 1232 | if (circuit->passwd.type == ISIS_PASSWD_TYPE_HMAC_MD5) |
| 1233 | { |
| 1234 | vty_out (vty, " isis password md5 %s%s", circuit->passwd.passwd, |
| 1235 | VTY_NEWLINE); |
| 1236 | write++; |
| 1237 | } |
| 1238 | else if (circuit->passwd.type == ISIS_PASSWD_TYPE_CLEARTXT) |
| 1239 | { |
| 1240 | vty_out (vty, " isis password clear %s%s", circuit->passwd.passwd, |
| 1241 | VTY_NEWLINE); |
| 1242 | write++; |
| 1243 | } |
| 1244 | } |
| 1245 | vty_out (vty, "!%s", VTY_NEWLINE); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1246 | } |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1247 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1248 | return write; |
| 1249 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1250 | |
David Lamparter | 3732cba | 2016-07-29 16:19:40 +0200 | [diff] [blame] | 1251 | struct isis_circuit * |
| 1252 | isis_circuit_create (struct isis_area *area, struct interface *ifp) |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1253 | { |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1254 | struct isis_circuit *circuit; |
David Lamparter | 3732cba | 2016-07-29 16:19:40 +0200 | [diff] [blame] | 1255 | circuit = isis_csm_state_change (ISIS_ENABLE, NULL, area); |
| 1256 | assert (circuit->state == C_STATE_CONF || circuit->state == C_STATE_UP); |
| 1257 | isis_circuit_if_bind (circuit, ifp); |
| 1258 | return circuit; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1259 | } |
| 1260 | |
David Lamparter | 3732cba | 2016-07-29 16:19:40 +0200 | [diff] [blame] | 1261 | void |
| 1262 | isis_circuit_af_set (struct isis_circuit *circuit, bool ip_router, bool ipv6_router) |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1263 | { |
David Lamparter | 3732cba | 2016-07-29 16:19:40 +0200 | [diff] [blame] | 1264 | struct isis_area *area = circuit->area; |
| 1265 | bool change = circuit->ip_router != ip_router || circuit->ipv6_router != ipv6_router; |
| 1266 | bool was_enabled = circuit->ip_router || circuit->ipv6_router; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1267 | |
David Lamparter | 3732cba | 2016-07-29 16:19:40 +0200 | [diff] [blame] | 1268 | area->ip_circuits += ip_router - circuit->ip_router; |
| 1269 | area->ipv6_circuits += ipv6_router - circuit->ipv6_router; |
| 1270 | circuit->ip_router = ip_router; |
| 1271 | circuit->ipv6_router = ipv6_router; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1272 | |
David Lamparter | 3732cba | 2016-07-29 16:19:40 +0200 | [diff] [blame] | 1273 | if (!change) |
| 1274 | return; |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1275 | |
David Lamparter | 3732cba | 2016-07-29 16:19:40 +0200 | [diff] [blame] | 1276 | circuit_update_nlpids (circuit); |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1277 | |
David Lamparter | 3732cba | 2016-07-29 16:19:40 +0200 | [diff] [blame] | 1278 | if (!ip_router && !ipv6_router) |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1279 | isis_csm_state_change (ISIS_DISABLE, circuit, area); |
David Lamparter | 3732cba | 2016-07-29 16:19:40 +0200 | [diff] [blame] | 1280 | else if (!was_enabled) |
| 1281 | isis_csm_state_change (ISIS_ENABLE, circuit, area); |
Christian Franke | 84a4da0 | 2016-04-03 12:46:27 -0300 | [diff] [blame] | 1282 | else |
Christian Franke | 84a4da0 | 2016-04-03 12:46:27 -0300 | [diff] [blame] | 1283 | lsp_regenerate_schedule(circuit->area, circuit->is_type, 0); |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1284 | } |
| 1285 | |
David Lamparter | 3732cba | 2016-07-29 16:19:40 +0200 | [diff] [blame] | 1286 | int |
| 1287 | isis_circuit_passive_set (struct isis_circuit *circuit, bool passive) |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1288 | { |
David Lamparter | 3732cba | 2016-07-29 16:19:40 +0200 | [diff] [blame] | 1289 | if (circuit->is_passive == passive) |
| 1290 | return 0; |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1291 | |
David Lamparter | 3732cba | 2016-07-29 16:19:40 +0200 | [diff] [blame] | 1292 | if (if_is_loopback (circuit->interface) && !passive) |
| 1293 | return -1; |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1294 | |
| 1295 | if (circuit->state != C_STATE_UP) |
| 1296 | { |
David Lamparter | 3732cba | 2016-07-29 16:19:40 +0200 | [diff] [blame] | 1297 | circuit->is_passive = passive; |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1298 | } |
| 1299 | else |
| 1300 | { |
| 1301 | struct isis_area *area = circuit->area; |
| 1302 | isis_csm_state_change (ISIS_DISABLE, circuit, area); |
David Lamparter | 3732cba | 2016-07-29 16:19:40 +0200 | [diff] [blame] | 1303 | circuit->is_passive = passive; |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1304 | isis_csm_state_change (ISIS_ENABLE, circuit, area); |
| 1305 | } |
| 1306 | |
David Lamparter | 3732cba | 2016-07-29 16:19:40 +0200 | [diff] [blame] | 1307 | return 0; |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1308 | } |
| 1309 | |
David Lamparter | 3732cba | 2016-07-29 16:19:40 +0200 | [diff] [blame] | 1310 | void |
| 1311 | isis_circuit_is_type_set (struct isis_circuit *circuit, int circ_type) |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1312 | { |
David Lamparter | 3732cba | 2016-07-29 16:19:40 +0200 | [diff] [blame] | 1313 | if (circuit->circ_type != circ_type) |
| 1314 | isis_event_circuit_type_change (circuit, circ_type); |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1315 | } |
| 1316 | |
David Lamparter | 3732cba | 2016-07-29 16:19:40 +0200 | [diff] [blame] | 1317 | int |
| 1318 | isis_circuit_metric_set (struct isis_circuit *circuit, int level, int metric) |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1319 | { |
David Lamparter | 3732cba | 2016-07-29 16:19:40 +0200 | [diff] [blame] | 1320 | assert (level == IS_LEVEL_1 || level == IS_LEVEL_2); |
| 1321 | if (metric > MAX_WIDE_LINK_METRIC) |
| 1322 | return -1; |
| 1323 | if (circuit->area && circuit->area->oldmetric |
| 1324 | && metric > MAX_NARROW_LINK_METRIC) |
| 1325 | return -1; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1326 | |
David Lamparter | 3732cba | 2016-07-29 16:19:40 +0200 | [diff] [blame] | 1327 | circuit->te_metric[level - 1] = metric; |
| 1328 | circuit->metrics[level - 1].metric_default = metric; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1329 | |
David Lamparter | 3732cba | 2016-07-29 16:19:40 +0200 | [diff] [blame] | 1330 | if (circuit->area) |
| 1331 | lsp_regenerate_schedule (circuit->area, level, 0); |
| 1332 | return 0; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1333 | } |
| 1334 | |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1335 | DEFUN (isis_passwd_md5, |
| 1336 | isis_passwd_md5_cmd, |
| 1337 | "isis password md5 WORD", |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1338 | "IS-IS commands\n" |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1339 | "Configure the authentication password for a circuit\n" |
| 1340 | "Authentication type\n" |
| 1341 | "Circuit password\n") |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1342 | { |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1343 | int len; |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1344 | struct isis_circuit *circuit = isis_circuit_lookup (vty); |
| 1345 | if (!circuit) |
| 1346 | return CMD_ERR_NO_MATCH; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1347 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1348 | len = strlen (argv[0]); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1349 | if (len > 254) |
| 1350 | { |
| 1351 | vty_out (vty, "Too long circuit password (>254)%s", VTY_NEWLINE); |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1352 | return CMD_ERR_AMBIGUOUS; |
| 1353 | } |
| 1354 | circuit->passwd.len = len; |
| 1355 | circuit->passwd.type = ISIS_PASSWD_TYPE_HMAC_MD5; |
| 1356 | strncpy ((char *)circuit->passwd.passwd, argv[0], 255); |
| 1357 | |
| 1358 | return CMD_SUCCESS; |
| 1359 | } |
| 1360 | |
| 1361 | DEFUN (isis_passwd_clear, |
| 1362 | isis_passwd_clear_cmd, |
| 1363 | "isis password clear WORD", |
| 1364 | "IS-IS commands\n" |
| 1365 | "Configure the authentication password for a circuit\n" |
| 1366 | "Authentication type\n" |
| 1367 | "Circuit password\n") |
| 1368 | { |
| 1369 | int len; |
| 1370 | struct isis_circuit *circuit = isis_circuit_lookup (vty); |
| 1371 | if (!circuit) |
| 1372 | return CMD_ERR_NO_MATCH; |
| 1373 | |
| 1374 | len = strlen (argv[0]); |
| 1375 | if (len > 254) |
| 1376 | { |
| 1377 | vty_out (vty, "Too long circuit password (>254)%s", VTY_NEWLINE); |
| 1378 | return CMD_ERR_AMBIGUOUS; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1379 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1380 | circuit->passwd.len = len; |
| 1381 | circuit->passwd.type = ISIS_PASSWD_TYPE_CLEARTXT; |
hasso | f7c43dc | 2004-09-26 16:24:14 +0000 | [diff] [blame] | 1382 | strncpy ((char *)circuit->passwd.passwd, argv[0], 255); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1383 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1384 | return CMD_SUCCESS; |
| 1385 | } |
| 1386 | |
| 1387 | DEFUN (no_isis_passwd, |
| 1388 | no_isis_passwd_cmd, |
| 1389 | "no isis password", |
| 1390 | NO_STR |
| 1391 | "IS-IS commands\n" |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1392 | "Configure the authentication password for a circuit\n") |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1393 | { |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1394 | struct isis_circuit *circuit = isis_circuit_lookup (vty); |
| 1395 | if (!circuit) |
| 1396 | return CMD_ERR_NO_MATCH; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1397 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1398 | memset (&circuit->passwd, 0, sizeof (struct isis_passwd)); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1399 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1400 | return CMD_SUCCESS; |
| 1401 | } |
| 1402 | |
hasso | f21fb27 | 2005-09-26 17:05:55 +0000 | [diff] [blame] | 1403 | DEFUN (isis_hello_interval, |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1404 | isis_hello_interval_cmd, |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1405 | "isis hello-interval <1-600>", |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1406 | "IS-IS commands\n" |
| 1407 | "Set Hello interval\n" |
| 1408 | "Hello interval value\n" |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1409 | "Holdtime 1 seconds, interval depends on multiplier\n") |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1410 | { |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1411 | int interval; |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1412 | struct isis_circuit *circuit = isis_circuit_lookup (vty); |
| 1413 | if (!circuit) |
| 1414 | return CMD_ERR_NO_MATCH; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1415 | |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1416 | interval = atoi (argv[0]); |
| 1417 | if (interval < MIN_HELLO_INTERVAL || interval > MAX_HELLO_INTERVAL) |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1418 | { |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1419 | vty_out (vty, "Invalid hello-interval %d - should be <1-600>%s", |
| 1420 | interval, VTY_NEWLINE); |
| 1421 | return CMD_ERR_AMBIGUOUS; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1422 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1423 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1424 | circuit->hello_interval[0] = (u_int16_t) interval; |
| 1425 | circuit->hello_interval[1] = (u_int16_t) interval; |
| 1426 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1427 | return CMD_SUCCESS; |
| 1428 | } |
| 1429 | |
| 1430 | DEFUN (no_isis_hello_interval, |
| 1431 | no_isis_hello_interval_cmd, |
| 1432 | "no isis hello-interval", |
| 1433 | NO_STR |
| 1434 | "IS-IS commands\n" |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1435 | "Set Hello interval\n") |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1436 | { |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1437 | struct isis_circuit *circuit = isis_circuit_lookup (vty); |
| 1438 | if (!circuit) |
| 1439 | return CMD_ERR_NO_MATCH; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1440 | |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1441 | circuit->hello_interval[0] = DEFAULT_HELLO_INTERVAL; |
| 1442 | circuit->hello_interval[1] = DEFAULT_HELLO_INTERVAL; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1443 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1444 | return CMD_SUCCESS; |
| 1445 | } |
| 1446 | |
| 1447 | ALIAS (no_isis_hello_interval, |
| 1448 | no_isis_hello_interval_arg_cmd, |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1449 | "no isis hello-interval <1-600>", |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1450 | NO_STR |
| 1451 | "IS-IS commands\n" |
| 1452 | "Set Hello interval\n" |
| 1453 | "Hello interval value\n" |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1454 | "Holdtime 1 second, interval depends on multiplier\n") |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1455 | |
| 1456 | DEFUN (isis_hello_interval_l1, |
| 1457 | isis_hello_interval_l1_cmd, |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1458 | "isis hello-interval <1-600> level-1", |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1459 | "IS-IS commands\n" |
| 1460 | "Set Hello interval\n" |
| 1461 | "Hello interval value\n" |
| 1462 | "Holdtime 1 second, interval depends on multiplier\n" |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1463 | "Specify hello-interval for level-1 IIHs\n") |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1464 | { |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1465 | long interval; |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1466 | struct isis_circuit *circuit = isis_circuit_lookup (vty); |
| 1467 | if (!circuit) |
| 1468 | return CMD_ERR_NO_MATCH; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1469 | |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1470 | interval = atoi (argv[0]); |
| 1471 | if (interval < MIN_HELLO_INTERVAL || interval > MAX_HELLO_INTERVAL) |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1472 | { |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1473 | vty_out (vty, "Invalid hello-interval %ld - should be <1-600>%s", |
| 1474 | interval, VTY_NEWLINE); |
| 1475 | return CMD_ERR_AMBIGUOUS; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1476 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1477 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1478 | circuit->hello_interval[0] = (u_int16_t) interval; |
| 1479 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1480 | return CMD_SUCCESS; |
| 1481 | } |
| 1482 | |
| 1483 | DEFUN (no_isis_hello_interval_l1, |
| 1484 | no_isis_hello_interval_l1_cmd, |
| 1485 | "no isis hello-interval level-1", |
| 1486 | NO_STR |
| 1487 | "IS-IS commands\n" |
| 1488 | "Set Hello interval\n" |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1489 | "Specify hello-interval for level-1 IIHs\n") |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1490 | { |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1491 | struct isis_circuit *circuit = isis_circuit_lookup (vty); |
| 1492 | if (!circuit) |
| 1493 | return CMD_ERR_NO_MATCH; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1494 | |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1495 | circuit->hello_interval[0] = DEFAULT_HELLO_INTERVAL; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1496 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1497 | return CMD_SUCCESS; |
| 1498 | } |
| 1499 | |
| 1500 | ALIAS (no_isis_hello_interval_l1, |
| 1501 | no_isis_hello_interval_l1_arg_cmd, |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1502 | "no isis hello-interval <1-600> level-1", |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1503 | NO_STR |
| 1504 | "IS-IS commands\n" |
| 1505 | "Set Hello interval\n" |
| 1506 | "Hello interval value\n" |
| 1507 | "Holdtime 1 second, interval depends on multiplier\n" |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1508 | "Specify hello-interval for level-1 IIHs\n") |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1509 | |
| 1510 | DEFUN (isis_hello_interval_l2, |
| 1511 | isis_hello_interval_l2_cmd, |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1512 | "isis hello-interval <1-600> level-2", |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1513 | "IS-IS commands\n" |
| 1514 | "Set Hello interval\n" |
| 1515 | "Hello interval value\n" |
| 1516 | "Holdtime 1 second, interval depends on multiplier\n" |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1517 | "Specify hello-interval for level-2 IIHs\n") |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1518 | { |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1519 | long interval; |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1520 | struct isis_circuit *circuit = isis_circuit_lookup (vty); |
| 1521 | if (!circuit) |
| 1522 | return CMD_ERR_NO_MATCH; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1523 | |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1524 | interval = atoi (argv[0]); |
| 1525 | if (interval < MIN_HELLO_INTERVAL || interval > MAX_HELLO_INTERVAL) |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1526 | { |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1527 | vty_out (vty, "Invalid hello-interval %ld - should be <1-600>%s", |
| 1528 | interval, VTY_NEWLINE); |
| 1529 | return CMD_ERR_AMBIGUOUS; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1530 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1531 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1532 | circuit->hello_interval[1] = (u_int16_t) interval; |
| 1533 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1534 | return CMD_SUCCESS; |
| 1535 | } |
| 1536 | |
| 1537 | DEFUN (no_isis_hello_interval_l2, |
| 1538 | no_isis_hello_interval_l2_cmd, |
| 1539 | "no isis hello-interval level-2", |
| 1540 | NO_STR |
| 1541 | "IS-IS commands\n" |
| 1542 | "Set Hello interval\n" |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1543 | "Specify hello-interval for level-2 IIHs\n") |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1544 | { |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1545 | struct isis_circuit *circuit = isis_circuit_lookup (vty); |
| 1546 | if (!circuit) |
| 1547 | return CMD_ERR_NO_MATCH; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1548 | |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1549 | circuit->hello_interval[1] = DEFAULT_HELLO_INTERVAL; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1550 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1551 | return CMD_SUCCESS; |
| 1552 | } |
| 1553 | |
| 1554 | ALIAS (no_isis_hello_interval_l2, |
| 1555 | no_isis_hello_interval_l2_arg_cmd, |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1556 | "no isis hello-interval <1-600> level-2", |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1557 | NO_STR |
| 1558 | "IS-IS commands\n" |
| 1559 | "Set Hello interval\n" |
| 1560 | "Hello interval value\n" |
| 1561 | "Holdtime 1 second, interval depends on multiplier\n" |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1562 | "Specify hello-interval for level-2 IIHs\n") |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1563 | |
| 1564 | DEFUN (isis_hello_multiplier, |
| 1565 | isis_hello_multiplier_cmd, |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1566 | "isis hello-multiplier <2-100>", |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1567 | "IS-IS commands\n" |
| 1568 | "Set multiplier for Hello holding time\n" |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1569 | "Hello multiplier value\n") |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1570 | { |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1571 | int mult; |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1572 | struct isis_circuit *circuit = isis_circuit_lookup (vty); |
| 1573 | if (!circuit) |
| 1574 | return CMD_ERR_NO_MATCH; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1575 | |
| 1576 | mult = atoi (argv[0]); |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1577 | if (mult < MIN_HELLO_MULTIPLIER || mult > MAX_HELLO_MULTIPLIER) |
| 1578 | { |
| 1579 | vty_out (vty, "Invalid hello-multiplier %d - should be <2-100>%s", |
| 1580 | mult, VTY_NEWLINE); |
| 1581 | return CMD_ERR_AMBIGUOUS; |
| 1582 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1583 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1584 | circuit->hello_multiplier[0] = (u_int16_t) mult; |
| 1585 | circuit->hello_multiplier[1] = (u_int16_t) mult; |
| 1586 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1587 | return CMD_SUCCESS; |
| 1588 | } |
| 1589 | |
| 1590 | DEFUN (no_isis_hello_multiplier, |
| 1591 | no_isis_hello_multiplier_cmd, |
| 1592 | "no isis hello-multiplier", |
| 1593 | NO_STR |
| 1594 | "IS-IS commands\n" |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1595 | "Set multiplier for Hello holding time\n") |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1596 | { |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1597 | struct isis_circuit *circuit = isis_circuit_lookup (vty); |
| 1598 | if (!circuit) |
| 1599 | return CMD_ERR_NO_MATCH; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1600 | |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1601 | circuit->hello_multiplier[0] = DEFAULT_HELLO_MULTIPLIER; |
| 1602 | circuit->hello_multiplier[1] = DEFAULT_HELLO_MULTIPLIER; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1603 | |
| 1604 | return CMD_SUCCESS; |
| 1605 | } |
| 1606 | |
| 1607 | ALIAS (no_isis_hello_multiplier, |
| 1608 | no_isis_hello_multiplier_arg_cmd, |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1609 | "no isis hello-multiplier <2-100>", |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1610 | NO_STR |
| 1611 | "IS-IS commands\n" |
| 1612 | "Set multiplier for Hello holding time\n" |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1613 | "Hello multiplier value\n") |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1614 | |
| 1615 | DEFUN (isis_hello_multiplier_l1, |
| 1616 | isis_hello_multiplier_l1_cmd, |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1617 | "isis hello-multiplier <2-100> level-1", |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1618 | "IS-IS commands\n" |
| 1619 | "Set multiplier for Hello holding time\n" |
| 1620 | "Hello multiplier value\n" |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1621 | "Specify hello multiplier for level-1 IIHs\n") |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1622 | { |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1623 | int mult; |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1624 | struct isis_circuit *circuit = isis_circuit_lookup (vty); |
| 1625 | if (!circuit) |
| 1626 | return CMD_ERR_NO_MATCH; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1627 | |
| 1628 | mult = atoi (argv[0]); |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1629 | if (mult < MIN_HELLO_MULTIPLIER || mult > MAX_HELLO_MULTIPLIER) |
| 1630 | { |
| 1631 | vty_out (vty, "Invalid hello-multiplier %d - should be <2-100>%s", |
| 1632 | mult, VTY_NEWLINE); |
| 1633 | return CMD_ERR_AMBIGUOUS; |
| 1634 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1635 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1636 | circuit->hello_multiplier[0] = (u_int16_t) mult; |
| 1637 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1638 | return CMD_SUCCESS; |
| 1639 | } |
| 1640 | |
| 1641 | DEFUN (no_isis_hello_multiplier_l1, |
| 1642 | no_isis_hello_multiplier_l1_cmd, |
| 1643 | "no isis hello-multiplier level-1", |
| 1644 | NO_STR |
| 1645 | "IS-IS commands\n" |
| 1646 | "Set multiplier for Hello holding time\n" |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1647 | "Specify hello multiplier for level-1 IIHs\n") |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1648 | { |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1649 | struct isis_circuit *circuit = isis_circuit_lookup (vty); |
| 1650 | if (!circuit) |
| 1651 | return CMD_ERR_NO_MATCH; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1652 | |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1653 | circuit->hello_multiplier[0] = DEFAULT_HELLO_MULTIPLIER; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1654 | |
| 1655 | return CMD_SUCCESS; |
| 1656 | } |
| 1657 | |
| 1658 | ALIAS (no_isis_hello_multiplier_l1, |
| 1659 | no_isis_hello_multiplier_l1_arg_cmd, |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1660 | "no isis hello-multiplier <2-100> level-1", |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1661 | NO_STR |
| 1662 | "IS-IS commands\n" |
| 1663 | "Set multiplier for Hello holding time\n" |
| 1664 | "Hello multiplier value\n" |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1665 | "Specify hello multiplier for level-1 IIHs\n") |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1666 | |
| 1667 | DEFUN (isis_hello_multiplier_l2, |
| 1668 | isis_hello_multiplier_l2_cmd, |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1669 | "isis hello-multiplier <2-100> level-2", |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1670 | "IS-IS commands\n" |
| 1671 | "Set multiplier for Hello holding time\n" |
| 1672 | "Hello multiplier value\n" |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1673 | "Specify hello multiplier for level-2 IIHs\n") |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1674 | { |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1675 | int mult; |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1676 | struct isis_circuit *circuit = isis_circuit_lookup (vty); |
| 1677 | if (!circuit) |
| 1678 | return CMD_ERR_NO_MATCH; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1679 | |
| 1680 | mult = atoi (argv[0]); |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1681 | if (mult < MIN_HELLO_MULTIPLIER || mult > MAX_HELLO_MULTIPLIER) |
| 1682 | { |
| 1683 | vty_out (vty, "Invalid hello-multiplier %d - should be <2-100>%s", |
| 1684 | mult, VTY_NEWLINE); |
| 1685 | return CMD_ERR_AMBIGUOUS; |
| 1686 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1687 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1688 | circuit->hello_multiplier[1] = (u_int16_t) mult; |
| 1689 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1690 | return CMD_SUCCESS; |
| 1691 | } |
| 1692 | |
| 1693 | DEFUN (no_isis_hello_multiplier_l2, |
| 1694 | no_isis_hello_multiplier_l2_cmd, |
| 1695 | "no isis hello-multiplier level-2", |
| 1696 | NO_STR |
| 1697 | "IS-IS commands\n" |
| 1698 | "Set multiplier for Hello holding time\n" |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1699 | "Specify hello multiplier for level-2 IIHs\n") |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1700 | { |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1701 | struct isis_circuit *circuit = isis_circuit_lookup (vty); |
| 1702 | if (!circuit) |
| 1703 | return CMD_ERR_NO_MATCH; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1704 | |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1705 | circuit->hello_multiplier[1] = DEFAULT_HELLO_MULTIPLIER; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1706 | |
| 1707 | return CMD_SUCCESS; |
| 1708 | } |
| 1709 | |
| 1710 | ALIAS (no_isis_hello_multiplier_l2, |
| 1711 | no_isis_hello_multiplier_l2_arg_cmd, |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1712 | "no isis hello-multiplier <2-100> level-2", |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1713 | NO_STR |
| 1714 | "IS-IS commands\n" |
| 1715 | "Set multiplier for Hello holding time\n" |
| 1716 | "Hello multiplier value\n" |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1717 | "Specify hello multiplier for level-2 IIHs\n") |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1718 | |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1719 | DEFUN (isis_hello_padding, |
| 1720 | isis_hello_padding_cmd, |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1721 | "isis hello padding", |
| 1722 | "IS-IS commands\n" |
| 1723 | "Add padding to IS-IS hello packets\n" |
| 1724 | "Pad hello packets\n" |
| 1725 | "<cr>\n") |
| 1726 | { |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1727 | struct isis_circuit *circuit = isis_circuit_lookup (vty); |
| 1728 | if (!circuit) |
| 1729 | return CMD_ERR_NO_MATCH; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1730 | |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1731 | circuit->pad_hellos = 1; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1732 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1733 | return CMD_SUCCESS; |
| 1734 | } |
| 1735 | |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1736 | DEFUN (no_isis_hello_padding, |
| 1737 | no_isis_hello_padding_cmd, |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1738 | "no isis hello padding", |
| 1739 | NO_STR |
| 1740 | "IS-IS commands\n" |
| 1741 | "Add padding to IS-IS hello packets\n" |
| 1742 | "Pad hello packets\n" |
| 1743 | "<cr>\n") |
| 1744 | { |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1745 | struct isis_circuit *circuit = isis_circuit_lookup (vty); |
| 1746 | if (!circuit) |
| 1747 | return CMD_ERR_NO_MATCH; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1748 | |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1749 | circuit->pad_hellos = 0; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1750 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1751 | return CMD_SUCCESS; |
| 1752 | } |
| 1753 | |
| 1754 | DEFUN (csnp_interval, |
| 1755 | csnp_interval_cmd, |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1756 | "isis csnp-interval <1-600>", |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1757 | "IS-IS commands\n" |
| 1758 | "Set CSNP interval in seconds\n" |
| 1759 | "CSNP interval value\n") |
| 1760 | { |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1761 | unsigned long interval; |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1762 | struct isis_circuit *circuit = isis_circuit_lookup (vty); |
| 1763 | if (!circuit) |
| 1764 | return CMD_ERR_NO_MATCH; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1765 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1766 | interval = atol (argv[0]); |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1767 | if (interval < MIN_CSNP_INTERVAL || interval > MAX_CSNP_INTERVAL) |
| 1768 | { |
| 1769 | vty_out (vty, "Invalid csnp-interval %lu - should be <1-600>%s", |
| 1770 | interval, VTY_NEWLINE); |
| 1771 | return CMD_ERR_AMBIGUOUS; |
| 1772 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1773 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1774 | circuit->csnp_interval[0] = (u_int16_t) interval; |
| 1775 | circuit->csnp_interval[1] = (u_int16_t) interval; |
| 1776 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1777 | return CMD_SUCCESS; |
| 1778 | } |
| 1779 | |
| 1780 | DEFUN (no_csnp_interval, |
| 1781 | no_csnp_interval_cmd, |
| 1782 | "no isis csnp-interval", |
| 1783 | NO_STR |
| 1784 | "IS-IS commands\n" |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1785 | "Set CSNP interval in seconds\n") |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1786 | { |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1787 | struct isis_circuit *circuit = isis_circuit_lookup (vty); |
| 1788 | if (!circuit) |
| 1789 | return CMD_ERR_NO_MATCH; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1790 | |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1791 | circuit->csnp_interval[0] = DEFAULT_CSNP_INTERVAL; |
| 1792 | circuit->csnp_interval[1] = DEFAULT_CSNP_INTERVAL; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1793 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1794 | return CMD_SUCCESS; |
| 1795 | } |
| 1796 | |
| 1797 | ALIAS (no_csnp_interval, |
| 1798 | no_csnp_interval_arg_cmd, |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1799 | "no isis csnp-interval <1-600>", |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1800 | NO_STR |
| 1801 | "IS-IS commands\n" |
| 1802 | "Set CSNP interval in seconds\n" |
| 1803 | "CSNP interval value\n") |
| 1804 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1805 | DEFUN (csnp_interval_l1, |
| 1806 | csnp_interval_l1_cmd, |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1807 | "isis csnp-interval <1-600> level-1", |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1808 | "IS-IS commands\n" |
| 1809 | "Set CSNP interval in seconds\n" |
| 1810 | "CSNP interval value\n" |
| 1811 | "Specify interval for level-1 CSNPs\n") |
| 1812 | { |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1813 | unsigned long interval; |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1814 | struct isis_circuit *circuit = isis_circuit_lookup (vty); |
| 1815 | if (!circuit) |
| 1816 | return CMD_ERR_NO_MATCH; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1817 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1818 | interval = atol (argv[0]); |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1819 | if (interval < MIN_CSNP_INTERVAL || interval > MAX_CSNP_INTERVAL) |
| 1820 | { |
| 1821 | vty_out (vty, "Invalid csnp-interval %lu - should be <1-600>%s", |
| 1822 | interval, VTY_NEWLINE); |
| 1823 | return CMD_ERR_AMBIGUOUS; |
| 1824 | } |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1825 | |
| 1826 | circuit->csnp_interval[0] = (u_int16_t) interval; |
| 1827 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1828 | return CMD_SUCCESS; |
| 1829 | } |
| 1830 | |
| 1831 | DEFUN (no_csnp_interval_l1, |
| 1832 | no_csnp_interval_l1_cmd, |
| 1833 | "no isis csnp-interval level-1", |
| 1834 | NO_STR |
| 1835 | "IS-IS commands\n" |
| 1836 | "Set CSNP interval in seconds\n" |
| 1837 | "Specify interval for level-1 CSNPs\n") |
| 1838 | { |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1839 | struct isis_circuit *circuit = isis_circuit_lookup (vty); |
| 1840 | if (!circuit) |
| 1841 | return CMD_ERR_NO_MATCH; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1842 | |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1843 | circuit->csnp_interval[0] = DEFAULT_CSNP_INTERVAL; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1844 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1845 | return CMD_SUCCESS; |
| 1846 | } |
| 1847 | |
| 1848 | ALIAS (no_csnp_interval_l1, |
| 1849 | no_csnp_interval_l1_arg_cmd, |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1850 | "no isis csnp-interval <1-600> level-1", |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1851 | NO_STR |
| 1852 | "IS-IS commands\n" |
| 1853 | "Set CSNP interval in seconds\n" |
| 1854 | "CSNP interval value\n" |
| 1855 | "Specify interval for level-1 CSNPs\n") |
| 1856 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1857 | DEFUN (csnp_interval_l2, |
| 1858 | csnp_interval_l2_cmd, |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1859 | "isis csnp-interval <1-600> level-2", |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1860 | "IS-IS commands\n" |
| 1861 | "Set CSNP interval in seconds\n" |
| 1862 | "CSNP interval value\n" |
| 1863 | "Specify interval for level-2 CSNPs\n") |
| 1864 | { |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1865 | unsigned long interval; |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1866 | struct isis_circuit *circuit = isis_circuit_lookup (vty); |
| 1867 | if (!circuit) |
| 1868 | return CMD_ERR_NO_MATCH; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1869 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1870 | interval = atol (argv[0]); |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1871 | if (interval < MIN_CSNP_INTERVAL || interval > MAX_CSNP_INTERVAL) |
| 1872 | { |
| 1873 | vty_out (vty, "Invalid csnp-interval %lu - should be <1-600>%s", |
| 1874 | interval, VTY_NEWLINE); |
| 1875 | return CMD_ERR_AMBIGUOUS; |
| 1876 | } |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1877 | |
| 1878 | circuit->csnp_interval[1] = (u_int16_t) interval; |
| 1879 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1880 | return CMD_SUCCESS; |
| 1881 | } |
| 1882 | |
| 1883 | DEFUN (no_csnp_interval_l2, |
| 1884 | no_csnp_interval_l2_cmd, |
| 1885 | "no isis csnp-interval level-2", |
| 1886 | NO_STR |
| 1887 | "IS-IS commands\n" |
| 1888 | "Set CSNP interval in seconds\n" |
| 1889 | "Specify interval for level-2 CSNPs\n") |
| 1890 | { |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1891 | struct isis_circuit *circuit = isis_circuit_lookup (vty); |
| 1892 | if (!circuit) |
| 1893 | return CMD_ERR_NO_MATCH; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1894 | |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1895 | circuit->csnp_interval[1] = DEFAULT_CSNP_INTERVAL; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1896 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1897 | return CMD_SUCCESS; |
| 1898 | } |
| 1899 | |
| 1900 | ALIAS (no_csnp_interval_l2, |
| 1901 | no_csnp_interval_l2_arg_cmd, |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1902 | "no isis csnp-interval <1-600> level-2", |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1903 | NO_STR |
| 1904 | "IS-IS commands\n" |
| 1905 | "Set CSNP interval in seconds\n" |
| 1906 | "CSNP interval value\n" |
| 1907 | "Specify interval for level-2 CSNPs\n") |
| 1908 | |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1909 | DEFUN (psnp_interval, |
| 1910 | psnp_interval_cmd, |
| 1911 | "isis psnp-interval <1-120>", |
| 1912 | "IS-IS commands\n" |
| 1913 | "Set PSNP interval in seconds\n" |
| 1914 | "PSNP interval value\n") |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1915 | { |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1916 | unsigned long interval; |
| 1917 | struct isis_circuit *circuit = isis_circuit_lookup (vty); |
| 1918 | if (!circuit) |
| 1919 | return CMD_ERR_NO_MATCH; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1920 | |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1921 | interval = atol (argv[0]); |
| 1922 | if (interval < MIN_PSNP_INTERVAL || interval > MAX_PSNP_INTERVAL) |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1923 | { |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1924 | vty_out (vty, "Invalid psnp-interval %lu - should be <1-120>%s", |
| 1925 | interval, VTY_NEWLINE); |
| 1926 | return CMD_ERR_AMBIGUOUS; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1927 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1928 | |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1929 | circuit->psnp_interval[0] = (u_int16_t) interval; |
| 1930 | circuit->psnp_interval[1] = (u_int16_t) interval; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1931 | |
| 1932 | return CMD_SUCCESS; |
| 1933 | } |
| 1934 | |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1935 | DEFUN (no_psnp_interval, |
| 1936 | no_psnp_interval_cmd, |
| 1937 | "no isis psnp-interval", |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1938 | NO_STR |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1939 | "IS-IS commands\n" |
| 1940 | "Set PSNP interval in seconds\n") |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1941 | { |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1942 | struct isis_circuit *circuit = isis_circuit_lookup (vty); |
| 1943 | if (!circuit) |
| 1944 | return CMD_ERR_NO_MATCH; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 1945 | |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1946 | circuit->psnp_interval[0] = DEFAULT_PSNP_INTERVAL; |
| 1947 | circuit->psnp_interval[1] = DEFAULT_PSNP_INTERVAL; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1948 | |
| 1949 | return CMD_SUCCESS; |
| 1950 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1951 | |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 1952 | ALIAS (no_psnp_interval, |
| 1953 | no_psnp_interval_arg_cmd, |
| 1954 | "no isis psnp-interval <1-120>", |
| 1955 | NO_STR |
| 1956 | "IS-IS commands\n" |
| 1957 | "Set PSNP interval in seconds\n" |
| 1958 | "PSNP interval value\n") |
| 1959 | |
| 1960 | DEFUN (psnp_interval_l1, |
| 1961 | psnp_interval_l1_cmd, |
| 1962 | "isis psnp-interval <1-120> level-1", |
| 1963 | "IS-IS commands\n" |
| 1964 | "Set PSNP interval in seconds\n" |
| 1965 | "PSNP interval value\n" |
| 1966 | "Specify interval for level-1 PSNPs\n") |
| 1967 | { |
| 1968 | unsigned long interval; |
| 1969 | struct isis_circuit *circuit = isis_circuit_lookup (vty); |
| 1970 | if (!circuit) |
| 1971 | return CMD_ERR_NO_MATCH; |
| 1972 | |
| 1973 | interval = atol (argv[0]); |
| 1974 | if (interval < MIN_PSNP_INTERVAL || interval > MAX_PSNP_INTERVAL) |
| 1975 | { |
| 1976 | vty_out (vty, "Invalid psnp-interval %lu - should be <1-120>%s", |
| 1977 | interval, VTY_NEWLINE); |
| 1978 | return CMD_ERR_AMBIGUOUS; |
| 1979 | } |
| 1980 | |
| 1981 | circuit->psnp_interval[0] = (u_int16_t) interval; |
| 1982 | |
| 1983 | return CMD_SUCCESS; |
| 1984 | } |
| 1985 | |
| 1986 | DEFUN (no_psnp_interval_l1, |
| 1987 | no_psnp_interval_l1_cmd, |
| 1988 | "no isis psnp-interval level-1", |
| 1989 | NO_STR |
| 1990 | "IS-IS commands\n" |
| 1991 | "Set PSNP interval in seconds\n" |
| 1992 | "Specify interval for level-1 PSNPs\n") |
| 1993 | { |
| 1994 | struct isis_circuit *circuit = isis_circuit_lookup (vty); |
| 1995 | if (!circuit) |
| 1996 | return CMD_ERR_NO_MATCH; |
| 1997 | |
| 1998 | circuit->psnp_interval[0] = DEFAULT_PSNP_INTERVAL; |
| 1999 | |
| 2000 | return CMD_SUCCESS; |
| 2001 | } |
| 2002 | |
| 2003 | ALIAS (no_psnp_interval_l1, |
| 2004 | no_psnp_interval_l1_arg_cmd, |
| 2005 | "no isis psnp-interval <1-120> level-1", |
| 2006 | NO_STR |
| 2007 | "IS-IS commands\n" |
| 2008 | "Set PSNP interval in seconds\n" |
| 2009 | "PSNP interval value\n" |
| 2010 | "Specify interval for level-1 PSNPs\n") |
| 2011 | |
| 2012 | DEFUN (psnp_interval_l2, |
| 2013 | psnp_interval_l2_cmd, |
| 2014 | "isis psnp-interval <1-120> level-2", |
| 2015 | "IS-IS commands\n" |
| 2016 | "Set PSNP interval in seconds\n" |
| 2017 | "PSNP interval value\n" |
| 2018 | "Specify interval for level-2 PSNPs\n") |
| 2019 | { |
| 2020 | unsigned long interval; |
| 2021 | struct isis_circuit *circuit = isis_circuit_lookup (vty); |
| 2022 | if (!circuit) |
| 2023 | return CMD_ERR_NO_MATCH; |
| 2024 | |
| 2025 | interval = atol (argv[0]); |
| 2026 | if (interval < MIN_PSNP_INTERVAL || interval > MAX_PSNP_INTERVAL) |
| 2027 | { |
| 2028 | vty_out (vty, "Invalid psnp-interval %lu - should be <1-120>%s", |
| 2029 | interval, VTY_NEWLINE); |
| 2030 | return CMD_ERR_AMBIGUOUS; |
| 2031 | } |
| 2032 | |
| 2033 | circuit->psnp_interval[1] = (u_int16_t) interval; |
| 2034 | |
| 2035 | return CMD_SUCCESS; |
| 2036 | } |
| 2037 | |
| 2038 | DEFUN (no_psnp_interval_l2, |
| 2039 | no_psnp_interval_l2_cmd, |
| 2040 | "no isis psnp-interval level-2", |
| 2041 | NO_STR |
| 2042 | "IS-IS commands\n" |
| 2043 | "Set PSNP interval in seconds\n" |
| 2044 | "Specify interval for level-2 PSNPs\n") |
| 2045 | { |
| 2046 | struct isis_circuit *circuit = isis_circuit_lookup (vty); |
| 2047 | if (!circuit) |
| 2048 | return CMD_ERR_NO_MATCH; |
| 2049 | |
| 2050 | circuit->psnp_interval[1] = DEFAULT_PSNP_INTERVAL; |
| 2051 | |
| 2052 | return CMD_SUCCESS; |
| 2053 | } |
| 2054 | |
| 2055 | ALIAS (no_psnp_interval_l2, |
| 2056 | no_psnp_interval_l2_arg_cmd, |
| 2057 | "no isis psnp-interval <1-120> level-2", |
| 2058 | NO_STR |
| 2059 | "IS-IS commands\n" |
| 2060 | "Set PSNP interval in seconds\n" |
| 2061 | "PSNP interval value\n" |
| 2062 | "Specify interval for level-2 PSNPs\n") |
| 2063 | |
| 2064 | struct cmd_node interface_node = { |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2065 | INTERFACE_NODE, |
| 2066 | "%s(config-if)# ", |
| 2067 | 1, |
| 2068 | }; |
| 2069 | |
David Lamparter | 3732cba | 2016-07-29 16:19:40 +0200 | [diff] [blame] | 2070 | int |
| 2071 | isis_circuit_circ_type_set(struct isis_circuit *circuit, int circ_type) |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 2072 | { |
David Lamparter | 3732cba | 2016-07-29 16:19:40 +0200 | [diff] [blame] | 2073 | /* Changing the network type to/of loopback or unknown interfaces |
| 2074 | * is not supported. */ |
| 2075 | if (circ_type == CIRCUIT_T_UNKNOWN |
| 2076 | || circ_type == CIRCUIT_T_LOOPBACK |
| 2077 | || circuit->circ_type == CIRCUIT_T_UNKNOWN |
| 2078 | || circuit->circ_type == CIRCUIT_T_LOOPBACK) |
| 2079 | { |
| 2080 | if (circuit->circ_type != circ_type) |
| 2081 | return -1; |
| 2082 | else |
| 2083 | return 0; |
| 2084 | } |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 2085 | |
David Lamparter | 3732cba | 2016-07-29 16:19:40 +0200 | [diff] [blame] | 2086 | if (circuit->circ_type == circ_type) |
| 2087 | return 0; |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 2088 | |
| 2089 | if (circuit->state != C_STATE_UP) |
| 2090 | { |
David Lamparter | 3732cba | 2016-07-29 16:19:40 +0200 | [diff] [blame] | 2091 | circuit->circ_type = circ_type; |
| 2092 | circuit->circ_type_config = circ_type; |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 2093 | } |
| 2094 | else |
| 2095 | { |
| 2096 | struct isis_area *area = circuit->area; |
David Lamparter | 3732cba | 2016-07-29 16:19:40 +0200 | [diff] [blame] | 2097 | if (circ_type == CIRCUIT_T_BROADCAST |
| 2098 | && !if_is_broadcast(circuit->interface)) |
| 2099 | return -1; |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 2100 | |
David Lamparter | 3732cba | 2016-07-29 16:19:40 +0200 | [diff] [blame] | 2101 | isis_csm_state_change(ISIS_DISABLE, circuit, area); |
| 2102 | circuit->circ_type = circ_type; |
| 2103 | circuit->circ_type_config = circ_type; |
| 2104 | isis_csm_state_change(ISIS_ENABLE, circuit, area); |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 2105 | } |
David Lamparter | 3732cba | 2016-07-29 16:19:40 +0200 | [diff] [blame] | 2106 | return 0; |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 2107 | } |
| 2108 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2109 | int |
| 2110 | isis_if_new_hook (struct interface *ifp) |
| 2111 | { |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2112 | return 0; |
| 2113 | } |
| 2114 | |
| 2115 | int |
| 2116 | isis_if_delete_hook (struct interface *ifp) |
| 2117 | { |
Subbaiah Venkata | e38e0df | 2012-03-27 23:48:05 -0700 | [diff] [blame] | 2118 | struct isis_circuit *circuit; |
| 2119 | /* Clean up the circuit data */ |
| 2120 | if (ifp && ifp->info) |
| 2121 | { |
| 2122 | circuit = ifp->info; |
| 2123 | isis_csm_state_change (IF_DOWN_FROM_Z, circuit, circuit->area); |
| 2124 | isis_csm_state_change (ISIS_DISABLE, circuit, circuit->area); |
| 2125 | } |
| 2126 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2127 | return 0; |
| 2128 | } |
| 2129 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2130 | void |
| 2131 | isis_circuit_init () |
| 2132 | { |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2133 | /* Initialize Zebra interface data structure */ |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2134 | if_add_hook (IF_NEW_HOOK, isis_if_new_hook); |
| 2135 | if_add_hook (IF_DELETE_HOOK, isis_if_delete_hook); |
| 2136 | |
| 2137 | /* Install interface node */ |
| 2138 | install_node (&interface_node, isis_interface_config_write); |
| 2139 | install_element (CONFIG_NODE, &interface_cmd); |
Subbaiah Venkata | e38e0df | 2012-03-27 23:48:05 -0700 | [diff] [blame] | 2140 | install_element (CONFIG_NODE, &no_interface_cmd); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2141 | |
| 2142 | install_default (INTERFACE_NODE); |
| 2143 | install_element (INTERFACE_NODE, &interface_desc_cmd); |
| 2144 | install_element (INTERFACE_NODE, &no_interface_desc_cmd); |
| 2145 | |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 2146 | install_element (INTERFACE_NODE, &isis_passwd_clear_cmd); |
| 2147 | install_element (INTERFACE_NODE, &isis_passwd_md5_cmd); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2148 | install_element (INTERFACE_NODE, &no_isis_passwd_cmd); |
| 2149 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2150 | install_element (INTERFACE_NODE, &isis_hello_interval_cmd); |
| 2151 | install_element (INTERFACE_NODE, &no_isis_hello_interval_cmd); |
| 2152 | install_element (INTERFACE_NODE, &no_isis_hello_interval_arg_cmd); |
| 2153 | install_element (INTERFACE_NODE, &isis_hello_interval_l1_cmd); |
| 2154 | install_element (INTERFACE_NODE, &no_isis_hello_interval_l1_cmd); |
| 2155 | install_element (INTERFACE_NODE, &no_isis_hello_interval_l1_arg_cmd); |
| 2156 | install_element (INTERFACE_NODE, &isis_hello_interval_l2_cmd); |
| 2157 | install_element (INTERFACE_NODE, &no_isis_hello_interval_l2_cmd); |
| 2158 | install_element (INTERFACE_NODE, &no_isis_hello_interval_l2_arg_cmd); |
| 2159 | |
| 2160 | install_element (INTERFACE_NODE, &isis_hello_multiplier_cmd); |
| 2161 | install_element (INTERFACE_NODE, &no_isis_hello_multiplier_cmd); |
| 2162 | install_element (INTERFACE_NODE, &no_isis_hello_multiplier_arg_cmd); |
| 2163 | install_element (INTERFACE_NODE, &isis_hello_multiplier_l1_cmd); |
| 2164 | install_element (INTERFACE_NODE, &no_isis_hello_multiplier_l1_cmd); |
| 2165 | install_element (INTERFACE_NODE, &no_isis_hello_multiplier_l1_arg_cmd); |
| 2166 | install_element (INTERFACE_NODE, &isis_hello_multiplier_l2_cmd); |
| 2167 | install_element (INTERFACE_NODE, &no_isis_hello_multiplier_l2_cmd); |
| 2168 | install_element (INTERFACE_NODE, &no_isis_hello_multiplier_l2_arg_cmd); |
| 2169 | |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 2170 | install_element (INTERFACE_NODE, &isis_hello_padding_cmd); |
| 2171 | install_element (INTERFACE_NODE, &no_isis_hello_padding_cmd); |
| 2172 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2173 | install_element (INTERFACE_NODE, &csnp_interval_cmd); |
| 2174 | install_element (INTERFACE_NODE, &no_csnp_interval_cmd); |
| 2175 | install_element (INTERFACE_NODE, &no_csnp_interval_arg_cmd); |
| 2176 | install_element (INTERFACE_NODE, &csnp_interval_l1_cmd); |
| 2177 | install_element (INTERFACE_NODE, &no_csnp_interval_l1_cmd); |
| 2178 | install_element (INTERFACE_NODE, &no_csnp_interval_l1_arg_cmd); |
| 2179 | install_element (INTERFACE_NODE, &csnp_interval_l2_cmd); |
| 2180 | install_element (INTERFACE_NODE, &no_csnp_interval_l2_cmd); |
| 2181 | install_element (INTERFACE_NODE, &no_csnp_interval_l2_arg_cmd); |
| 2182 | |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 2183 | install_element (INTERFACE_NODE, &psnp_interval_cmd); |
| 2184 | install_element (INTERFACE_NODE, &no_psnp_interval_cmd); |
| 2185 | install_element (INTERFACE_NODE, &no_psnp_interval_arg_cmd); |
| 2186 | install_element (INTERFACE_NODE, &psnp_interval_l1_cmd); |
| 2187 | install_element (INTERFACE_NODE, &no_psnp_interval_l1_cmd); |
| 2188 | install_element (INTERFACE_NODE, &no_psnp_interval_l1_arg_cmd); |
| 2189 | install_element (INTERFACE_NODE, &psnp_interval_l2_cmd); |
| 2190 | install_element (INTERFACE_NODE, &no_psnp_interval_l2_cmd); |
| 2191 | install_element (INTERFACE_NODE, &no_psnp_interval_l2_arg_cmd); |
| 2192 | |
David Lamparter | 3732cba | 2016-07-29 16:19:40 +0200 | [diff] [blame] | 2193 | isis_vty_init (); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 2194 | } |