blob: 8ab8a10310be0916ce0c338fb894b7c88a0b46e5 [file] [log] [blame]
paul1a517862004-08-19 04:03:08 +000012004-08-19 Paul Jakma <paul@dishone.st>
2
3 * rip_interface.c: (rip_interface_multicast_set) get rid
4 of extraneous if_pointopoint arg. ifp is accessible via connected.
5 pass connected->ifp->ifindex to setsockopt_multicast_ipv4.
6 * ripd.c: (rip_send_packet) update call to
7 rip_interface_multicast_set
8 * ripd.h: update rip_interface_multicast_set prototype
9
paul02ff83c2004-06-11 11:27:03 +0000102004-06-11 Sowmini Varadhan <sowmini.varadhan@sun.com>
11
12 * ripd.c: (rip_distribute_update_all) distribute list hook
13 function pointer prototype requires struct prefix_list * arg.
14 (rip_distribute_update_all_wrapper) update to pass required arg,
15 NULL.
16
paulca5e5162004-06-06 22:06:33 +0000172004-06-06 Paul Jakma <paul.jakma@sun.com>
18
19 * ripd.h: Add define for the RIPv2 Authentication Data family
20 Move the auth type defines up to where other defines live.
21 Add RIP_AUTH_MD5_COMPAT_SIZE, for backwards compatible
22 md5->auth_len size. Add md5_auth_len field to struct
23 rip_interface: (rip_interface_new) Init md5_auth_len to compatible
24 size.
25 (ip_rip_authentication_mode_cmd) Extended to handle setting
26 md5 auth-length. Appropriate aliases added.
27 (no_ip_rip_authentication_mode_cmd) Reset md5_auth_len to
28 compatible size.
29 (rip_interface_config_write) Teach it about md5_auth_len.
30 _always_ write out the auth-length, so that everyone will get
31 the setting in their config file, and hence allow for a future
32 change of default for md5_auth_len to be less painful - every md5
33 user will have this setting in their config file.
34 ripd.c: (rip_packet_dump) Change nasty hard coded constants to
35 symbolic defines. Change various tests of 'ntoh.(variable) ==
36 constant' to test 'variable == ntoh.(constant)'. Clean up
37 indentation on some long lines.
38 (rip_auth_simple_password) ditto.
39 (rip_auth_md5) ditto, also add length argument and sanity check
40 md5 data offset field. Sanity check md5 auth length, accept RFC
41 or old-ripd/cisco lengths.
42 (rip_auth_md5_set) as per (rip_packet_dump), also write out
43 the configured md5 auth length for the interface (old-ripd or rfc)
44 (rip_read) as per (rip_packet_dump)
45 (rip_write_rte) ditto
46 (rip_response_process) ditto
47 (rip_write_rte) ditto
48
paulc2bfbcc2004-06-04 01:42:38 +0000492004-06-04 JJ Ludman <jacques.ludman@sun.com>
50
51 * ripd.c: Interoperability fix. Correct value for MD5 auth length
52 is 16. Accept packets with this set to >= 16, and set to 16
53 ourselves.
54
paul11dde9c2004-05-31 14:00:00 +0000552004-05-31 Sowmini Varadhan <sowmini.varadhan@sun.com>
56
57 * ripd.c: Fixup compile warnings
58 * rip_routemap.c: Ditto
59
paul0a589352004-05-08 11:48:26 +0000602004-05-08 Paul Jakma <paul@dishone.st>
61
62 * rip_zebra.c: sync with zclient changes.
63 * rip_interface.c: ditto.
64
paul239389b2004-05-05 14:09:37 +0000652004-05-05 Anthony.Golia@morganstanley.com
66
67 * ripd.c: (rip_update_jitter) Bound jitter to a more sensible
68 value, eg 1/4 of update time.
69
paula87552c2004-05-03 20:00:17 +0000702004-05-03 Paul Jakma <paul@dishone.st>
71
72 * ripd.c: (rip_rte_process) fix typo in merge of previous patch
73 and run function through indent.
74
paulb94f9db2004-05-01 20:45:38 +0000752004-03-19 Jean-Yves Simon <lethalwp@tiscali.be>
76
paula87552c2004-05-03 20:00:17 +000077 * ripd.c: (rip_rte_process) make ripd also check on
78 administrative distance of his own links to update routes.
paulb94f9db2004-05-01 20:45:38 +000079
hassoda9c9a22004-03-18 02:40:55 +0000802004-03-18 sowmini.varadhan@sun.com
81
82 * ripd.c: rip_send_packet can get null connected address when
83 called in response to a unicast rip-request. Handle correctly.
84
hassoa1455d82004-03-03 19:36:24 +0000852004-03-03 Krzysztof Oledzki <oleq@ans.pl>
86
hassocaa6f8a2004-03-03 19:48:48 +000087 * ripd.c: fix "show ip rip" and per interface rip version selection.
hassoa1455d82004-03-03 19:36:24 +000088
paul931cd542004-01-23 15:31:42 +0000892004-01-23 sowmini.varadhan@sun.com
90
91 * rip_interface.c: obsolete unbind code in
92 rip_interface_multicast_set, and instead do the more portable
93 (though slower) method of creating a socket for each outgoing packet
94 and binding the source address on the new socket.
95 * rip_interface.c, ripd.c, ripd.h: Modify rip_request_send so that
96 source address is determined by the caller of rip_request_send for
97 ripv1 packets and non-multicast interfaces (rip_request_send loops
98 over all connected address in all other cases).
99 * rip_send_packet: don't send packets with source set to
100 ZEBRA_IFA_SECONDARY connected addresses; improved debug messages;
101
paulf38a4712003-06-07 01:10:00 +00001022003-06-07 Andrew J. Schorr <aschorr@telemetry-investments.com>
103
104 * Allow ripd to receive RIPv1
105 * add default as valid param to passive-interface command
106
hasso16705132003-05-25 14:49:19 +00001072003-05-25 Vincent Jardin <vjardin@wanadoo.fr>
108
paulf38a4712003-06-07 01:10:00 +0000109 * 6Wind patch merge.
hasso16705132003-05-25 14:49:19 +0000110
paul445f1432003-05-16 19:00:31 +00001112003-04-19 Hasso Tepper <hasso@estpak.ee>
112
113 * rip_routemap.c: sync daemon's route-map commands to have same
114 syntax
115
paul718e3742002-12-13 20:15:29 +00001162002-07-07 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
117
118 * zebra-0.93 released.
119
1202002-06-30 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
121
122 * ripd.c (rip_output_process): When outgoing interface is same as
123 next hop interface, announce RIPv2 next hop otherwise set next hop
124 to 0. Revert previous change then take 6WIND way.
125
1262001-09-14 Akihiro Mizutani <mizutani@dml.com>
127
128 * ripd.c: RIP enabled interface's route is advertised by default.
129
1302001-08-28 NOGUCHI Kay <kay@v6.access.co.jp>
131
132 * rip_snmp.c (rip_ifaddr_delete): Add route_node_lookup() return
133 value check.
134
135 * rip_interface.c (rip_multicast_leave): Fix bug of multiple IP
136 address on one interface multicast join/leave bug.
137
1382001-08-26 NOGUCHI Kay <kay@v6.access.co.jp>
139
140 * rip_interface.c (no_rip_passive_interface): Add NO_STR.
141
1422001-08-19 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
143
144 * zebra-0.92a released.
145
1462001-08-15 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
147
148 * zebra-0.92 released.
149
1502001-06-17 Kunihiro Ishiguro <kunihiro@zebra.org>
151
152 * rip_routemap.c (route_match_ip_address_prefix_list): Add match
153 ip next-hop prefix-list WORD.
154
1552001-02-18 Kunihiro Ishiguro <kunihiro@zebra.org>
156
157 * rip_interface.c (rip_passive_interface_clean): Call
158 rip_passive_interface_apply_all.
159
1602001-02-12 Kunihiro Ishiguro <kunihiro@zebra.org>
161
162 * ripd.c (rip_response_process): Multicast address nexthop check
163 is moved from rip_nexthop_check.
164
1652001-02-08 Matthew Grant <grantma@anathoth.gen.nz>
166
167 * rip_interface.c (ipv4_multicast_join): Use
168 setsockopt_multicast_ipv4.
169 (ipv4_multicast_leave): Likewise.
170 (rip_if_ipv4_address_check): Interface which has IPv4 address can
171 be enabled.
172
1732001-02-08 Kunihiro Ishiguro <kunihiro@zebra.org>
174
175 * rip_interface.c (rip_interface_delete): To support pseudo
176 interface do not free interface structure.
177 * ripd.c (rip_output_process): If output interface is in simple
178 password authentication mode, we need space for authentication
179 data.
180
1812001-02-01 Kunihiro Ishiguro <kunihiro@zebra.org>
182
183 * ripd.c (rip_nexthop_check): Fix multicast address nexthop check.
184
185 * zebra-0.91 is released.
186
1872001-01-27 Kunihiro Ishiguro <kunihiro@zebra.org>
188
189 * ripd.c (show_ip_rip): Show metric infinity route's timeout.
190 (rip_rte_process): If current route is metric infinity, route is
191 replaced with received rte.
192 (rip_redistribute_delete): When redistribute route is deleted,
193 perform poisoned reverse.
194 (rip_redistribute_withdraw): Likewise.
195
1962001-01-25 Kunihiro Ishiguro <kunihiro@zebra.org>
197
198 * ripd.c (rip_response_process): RIPv2 routing table entry with
199 non directly reachable nexthop was dropped. The code is changed
200 to treat it as 0.0.0.0 nexthop.
201 (rip_destination_check): Check net 0 address destination.
202 (rip_nexthop_check): New function for checking nexthop address
203 validity.
204
2052001-01-15 Kunihiro Ishiguro <kunihiro@zebra.org>
206
207 * ripd.c (rip_request_process): Triggered update only send changed
208 route.
209
210 * rip_interface.c: Delete RIP_API part until new implementation
211 comes out.
212
213 * rip_snmp.: Likewise.
214
215 * rip_zebra.c: Likewise.
216
217 * ripd.c: Likewise.
218
2192001-01-11 Kunihiro Ishiguro <kunihiro@zebra.org>
220
221 * rip_interface.c (rip_if_init): Remove HAVE_IF_PSEUDO part.
222
2232001-01-09 Kunihiro Ishiguro <kunihiro@zebra.org>
224
225 * zebra-0.90 is released.
226
2272001-01-01 Kunihiro Ishiguro <kunihiro@zebra.org>
228
229 * ripd.h (RIP_VTYSH_PATH): Change "/tmp/ripd" to "/tmp/.ripd".
230
2312000-12-25 David Lipovkov <davidl@nbase.co.il>
232
233 * ripd.c (rip_rte_process): When a route is in garbage collection
234 process (invalid with metric 16) and a router receives the same
235 route with valid metric then route was not installed into zebra
236 rib, but only into ripd rib. Moreover , it will never get into
237 zebra rib, because ripd wrongly assumes it's already there.
238 (rip_redistribute_add): When doing redistribute into rip other
239 route (e.g. connected) and the same route exists in ripd rib we
240 changed it in place - bug. Now we don't forget to remove old route
241 from zebra.
242 (rip_timeout): When removing routes from zebra I made sure that we
243 remove route with the metric we have in zebra and not the new
244 one. It doesn't make a difference now,but could be significant
245 when multipath support is done.
246
2472000-12-25 David Lipovkov <davidl@nbase.co.il>
248
249 * rip_zebra.c (rip_metric_unset): Fix bug of metric value unset.
250
2512000-11-25 Frank van Maarseveen <F.vanMaarseveen@inter.NL.net>
252
253 * ripd.c (rip_request_process): Check passive flag of the
254 interface.
255
2562000-11-23 Frank van Maarseveen <F.vanMaarseveen@inter.NL.net>
257
258 * rip_interface.c (rip_multicast_join): When IP_ADD_MEMBERSHIP
259 failed do not set runnning flag to the interface.
260
2612000-11-16 Kunihiro Ishiguro <kunihiro@zebra.org>
262
263 * ripd.c (rip_output_process): Memory leak related classfull
264 network generation is fixed.
265
2662000-11-16 Frank van Maarseveen <F.vanMaarseveen@inter.NL.net>
267
268 * rip_interface.c (if_check_address): Obsolete pointopoint address
269 check is removed.
270
2712000-11-02 Frank van Maarseveen <F.vanMaarseveen@inter.NL.net>
272
273 * rip_interface.c (if_check_address): Add pointopoint address
274 check.
275 (rip_interface_up): Add check for passive interface when interface
276 goes up.
277
2782000-10-23 Jochen Friedrich <jochen@scram.de>
279
280 * rip_snmp.c: rip_oid and ripd_oid are used in smux_open after it
281 is registered. So those variables must be static.
282
2832000-10-19 Kunihiro Ishiguro <kunihiro@zebra.org>
284
285 * rip_interface.c: Change to "no ip rip (send|receive)" command
286 accept version number argument.
287
2882000-10-17 Akihiro Mizutani <mizutani@dml.com>
289
290 * rip_routemap.c (route_set_ip_nexthop_compile): Change "match ip
291 next-hop" from IP address to access-list name.
292
2932000-10-17 Kunihiro Ishiguro <kunihiro@zebra.org>
294
295 * rip_peer.c: Change ot use linklist.c instaed of newlist.c.
296
2972000-10-16 Kunihiro Ishiguro <kunihiro@zebra.org>
298
299 * rip_offset.c: Change to use linklist.c instead of newlist.c.
300
3012000-10-02 Kunihiro Ishiguro <kunihiro@zebra.org>
302
303 * zebra-0.89 is released.
304
3052000-09-26 Akihiro Mizutani <mizutani@dml.com>
306
307 * rip_routemap.c (match_ip_nexthop): Add next-hop format check.
308
3092000-09-18 David Lipovkov <dlipovkov@OpticalAccess.com>
310
311 * rip_interface.c (ripd_api_get_if_rx_version): Corrects rip SNMP
312 and rip API functions dealing with rip version.
313
314 * rip_snmp.c (Status_Valid): SNMPv2-TC TEXTUAL-CONVENTION.
315
3162000-09-10 Kunihiro Ishiguro <kunihiro@zebra.org>
317
318 * rip_snmp.c (rip2IfLookup): Use rip_ifaddr_lookup_next() instead
319 of rip_if_lookup_next().
320
321 * rip_interface.c (rip_enable_network_lookup): Interface enable
322 check by interface's address with /32 prefix.
323
324 * ripd.c (rip_read): When RIP is configured with authentication
325 and no authentication in incoming packet, drop the packet.
326
327 * rip_interface.c (rip_interface_reset): RIP_AUTH_SIMPLE_PASSWORD
328 is default mode of authentication.
329 (rip_interface_new): Likewise.
330 (no_ip_rip_authentication_mode): Likewise.
331
332 * ripd.c (rip_read): Likewise.
333
3342000-09-10 David Lipovkov <davidl@nbase.co.il>
335
336 * rip_snmp.c: Set ASN_INTEGER v->type where it is needed.
337
3382000-09-08 Kunihiro Ishiguro <kunihiro@zebra.org>
339
340 * ripd.c (rip_auth_simple_password): Simple password
341 authentication using key-chain.
342 (rip_write_rte): Likewise.
343
344 * rip_interface.c (ip_rip_authentication_key_chain): Add check for
345 authentication string configuration.
346
3472000-09-08 Akihiro Mizutani <mizutani@dml.com>
348
349 * ripd.c (rip_write_rte): Add check for ri->auth_str.
350
3512000-09-07 Kunihiro Ishiguro <kunihiro@zebra.org>
352
353 * ripd_api.h: New file is added.
354
3552000-08-22 Kunihiro Ishiguro <kunihiro@zebra.org>
356
357 * ripd.c (rip_rte_process): rip_route_process() is renamed to
358 rip_rte_process() to clarify meanings of the function.
359 rip_route_process() is newly added to process RIP route selection.
360
3612000-08-18 Kunihiro Ishiguro <kunihiro@zebra.org>
362
363 * ripd.c (rip_incoming_filter): Extract incoming filter code to
364 function from rip_route_process(). Add check for all interface
365 filter.
366 (rip_outgoing_filter): Extract incoming filter code to function
367 from rip_output_process(). Add check for all interface filter.
368
369 * rip_zebra.c (rip_redistribute_clean): Reset redistribute status
370 when "no router rip" is performed.
371
372 * rip_interface.c (rip_interface_clean): Reset interface's RIP
373 enable status.
374
3752000-08-17 Kunihiro Ishiguro <kunihiro@zebra.org>
376
377 * ripd.c (rip_route_process): When metric infinity is received the
378 route is removed from service immediately.
379 (rip_timeout): Likewise.
380 (rip_garbage_collect): Do not delete route in garbage collection.
381 (rip_output_process): Check metric_out exceed metric infinity.
382
383 * zebra-0.88 is released.
384
3852000-08-15 Kunihiro Ishiguro <kunihiro@zebra.org>
386
387 * ripd.c (rip_distance_apply): Unlock node when there is matched
388 node.
389
3902000-08-13 Akihiro Mizutani <mizutani@dml.com>
391
392 * rip_routemap.c (match_ip_nexthop): Add check for IP address
393 validness.
394 (no_set_metric): Add new ALIAS.
395
3962000-08-07 Kunihiro Ishiguro <kunihiro@zebra.org>
397
398 * ripd.h (struct rip ): Add distance.
399
4002000-08-05 Kunihiro Ishiguro <kunihiro@zebra.org>
401
402 * rip_zebra.c (rip_zebra_ipv4_add): Use new Zebra api to register
403 routes. Pass RIP metric value to zebra.
404
4052000-08-02 Kunihiro Ishiguro <kunihiro@zebra.org>
406
407 * rip_main.c (main): Make struct thread thread from global
408 variable to local variable in main.
409
4102000-08-06 Kunihiro Ishiguro <kunihiro@zebra.org>
411
412 * ripd.c (rip_packet_dump): Add MD5 authentication dump function.
413 (rip_auth_md5): RIP MD5 authentication packet receive works.
414
4152000-08-02 David Lipovkov <davidl@nbase.co.il>
416
417 * rip_interface.c (rip_if_init): Install interface "pseudo"
418 commands.
419 (rip_interface_delete): Do not call if_delete() when interface is
420 pseudo interface.
421
4222000-07-31 Kunihiro Ishiguro <kunihiro@zebra.org>
423
424 * rip_interface.c (ip_rip_authentication_mode): "ip rip
425 authentication mode (md5|text)" is added.
426 (ip_rip_authentication_key_chain): "ip rip authentication
427 key-chain KEY-CHAIN" is added.
428 (rip_interface_clean): Clean all interface configuration.
429 (rip_interface_reset): Reset all interface configuration.
430 (rip_clean_network): Clean rip_enable_network.
431
432 * ripd.h (struct rip_interface): Add key_chain member.
433
434 * ripd.c: Include md5-gnu.h.
435
4362000-07-30 Kunihiro Ishiguro <kunihiro@zebra.org>
437
438 * ripd.h (RIP_NO_AUTH): Change RIP_NO_AUTH value from 1 to 0.
439
440 * ripd.c (rip_authentication): Use RIP_AUTH_SIMPLE_PASSWORD
441 instead of raw value 2.
442 (rip_write_rte): Likewise.
443 (rip_write_rte): Check ri->auth_type instead of ri->auth_str.
444
4452000-07-30 David Lipovkov <davidl@nbase.co.il>
446
447 * rip_interface.c (rip_if_down): Do not delete ZEBRA_ROUTE_KERNEL
448 route.
449
4502000-07-27 Kunihiro Ishiguro <kunihiro@zebra.org>
451
452 * ripd.c (rip_update_process): Add "passive-interface" command.
453
454 * ripd.h (struct rip_interface): Add passive member to struct
455 rip_interface.
456
4572000-07-24 Kunihiro Ishiguro <kunihiro@zebra.org>
458
459 * rip_interface.c (rip_if_init): Multiple RIP routes for one
460 prefix change. The codes are enclosed by #ifdef NEW_RIP_TABLE.
461
4622000-07-24 Akihiro Mizutani <mizutani@dml.com>
463
464 * rip_interface.c (rip_if_init): Use install_default() for
465 INTERFACE_NODE.
466
4672000-07-24 Kunihiro Ishiguro <kunihiro@zebra.org>
468
469 * ripd.c: First update timer will be invoked in two seconds.
470
4712000-07-09 Jochen Friedrich <jochen@scram.de>
472
473 * rip_snmp.c: Local function definitions to static. Add INTEGER
474 ASN_INTEGER and TIMETICKS ASN_TIMETICKS definition.
475 (rip2PeerLookup): Peer with domain lookup implemented.
476 (rip2PeerTable): Temporary disable RIP2PEERLASTUPDATE value
477 support due to unknown SNMP agent startup time.
478
4792000-07-05 Kunihiro Ishiguro <kunihiro@zebra.org>
480
481 * ripd.h: Sweep obsolete definitions.
482
483 * rip_interface.c (rip_split_horizon): Add "ip split-horizon"
484 command.
485
486 * ripd.c (rip_output_process): Remove split_horizon argument.
487 (rip_update_process): Likewise.
488
489 * ripd.h (struct rip_interface): Add split_horizon flag to struct
490 rip_interface.
491
4922000-07-04 Akihiro Mizutani <mizutani@dml.com>
493
494 * ripd.c (rip_version): Change VERSION to <1-2>.
495 Add "no version" command.
496
4972000-07-03 Kunihiro Ishiguro <kunihiro@zebra.org>
498
499 * rip_zebra.c (rip_redistribute_type_metric): "redistribute TYPE
500 metric <0-16>" command is added.
501
502 * rip_routemap.c (route_set_metric): Set metric_set when metric is
503 modified.
504
505 * ripd.h (struct rip_info): To check route-map set metric or not,
506 new member metric_set is added to struct rip_info.
507
508 * ripd.c (rip_route_process): Move metric handling code from
509 rip_response_process() to rip_route_process().
510 (rip_output_process): Set output offset-list metric.
511
5122000-07-02 Kunihiro Ishiguro <kunihiro@zebra.org>
513
514 * rip_offset.c (rip_offset_list): New file for offset-list.
515
5162000-07-02 Akihiro Mizutani <mizutani@dml.com>
517
518 * ripd.h (struct rip ): Add default_metric.
519
520 * ripd.c (rip_default_metric): "default-metric <1-16>" command is
521 added.
522 (config_write_rip): Change configuration order.
523
524 * rip_zebra.c: Fix help strings.
525
5262000-07-02 David Lipovkov <davidl@nbase.co.il>
527
528 * rip_interface.c (rip_if_init): Add IF_DELETE_HOOK.
529
5302000-07-01 Kunihiro Ishiguro <kunihiro@zebra.org>
531
532 * ripd.c (rip_output_process): If specified route-map does not
533 exist, it treated as deny all.
534
5352000-06-30 Kunihiro Ishiguro <kunihiro@zebra.org>
536
537 * rip_routemap.c (rip_route_map_init): Call rip_route_map_update
538 when route-map is deleted.
539
5402000-06-28 Kunihiro Ishiguro <kunihiro@zebra.org>
541
542 * rip_routemap.c (set_metric): For consistency with bgpd's set
543 metric, value range is set to <0-4294967295>.
544
5452000-06-28 David Lipovkov <davidl@nbase.co.il>
546
547 * rip_routemap.c (rip_route_map_update): Add check for rip is
548 enabled or not for avoid core dump.
549
550 * rip_debug.c (debug_rip_packet_direct): Fix bug of setting
551 rip_debug_packet flag.
552
5532000-06-13 David Lipovkov <davidl@nbase.co.il>
554
555 * rip_interface.c (rip_interface_delete): All work is done in
556 rip_if_down().
557
5582000-06-06 Kunihiro Ishiguro <kunihiro@zebra.org>
559
560 * ripd.c (rip_redistribute_delete): Fix bug of missing
561 route_unlock_node() when redistribute route is not found.
562
5632000-06-05 Akihirof Mizutani <mizutani@dml.com>
564
565 * rip_debug.c (rip_debug_init): Disable show debugging in
566 VIEW_NODE like other protocol daemon.
567
568 * rip_routemap.c: Change command argument to more comprehensive.
569
570 METRIC -> <0-16>
571 IFNAME -> WORD
572 IP_ADDR -> A.B.C.D
573 ACCSESS_LIST -> WORD
574
5752000-06-05 David Lipovkov <davidl@nbase.co.il>
576
577 * rip_interface.c (rip_interface_delete): Delete all routes
578 include static and kernel through the interface , because even if
579 the interface is added again there is no guarantee that it will
580 get the same ifindex as before.
581
5822000-05-31 Akihirof Mizutani <mizutani@dml.com>
583
584 * rip_debug.c: Fix rip debug help string.
585
5862000-04-27 Mirko Karanovic <mkaranov@torsel.alcatel.com>
587
588 * rip_interface.c (rip_interface_down): Remove interface from
589 multicast group when interface goes down.
590
5912000-04-03 David Lipovkov <davidl@nbase.co.il>
592
593 * rip_interface.c (rip_interface_down): Implemented rip functions
594 for interface up/down events: rip_interface_up() and
595 rip_interface_down()
596
5972000-03-16 David Lipovkov <davidl@nbase.co.il>
598
599 * rip_zebra.c (rip_zclient_init): Added rip functions for
600 interface up/down events.
601
6022000-02-15 Hidetoshi Shimokawa <simokawa@sat.t.u-tokyo.ac.jp>
603
604 * ripd.c (rip_write_rte): "set metic" in route-map has no effect
605 for RIPv1 in ripd. It worked fine for RIPv2.
606
6072000-01-17 Kunihiro Ishiguro <kunihiro@zebra.org>
608
609 * ripd.c (show_ip_protocols_rip): Fix bug of "show ip protocls"
610 mis-display RIP version.
611
612 * ripd.h (struct rip_peer): Add timeout thread to rip_peer
613 structure.
614
6152000-01-16 Kunihiro Ishiguro <kunihiro@zebra.org>
616
617 * rip_peer.c: Add new file for supporting RIP peer.
618
6191999-12-26 David Lipovkov <davidl@nbase.co.il>
620
621 * ripd.c (rip_authentication): RIP authantication string is 16
622 bytes long.
623
6241999-12-10 Kunihiro Ishiguro <kunihiro@zebra.org>
625
626 * ripd.c (rip_read): Add check for minimum packet length.
627 Authentication check is moved from rip_process_response() to
628 rip_read(). Patch from David Lipovkov <davidl@nbase.co.il> is
629 applied then add rte number check by Kunihiro Ishiguro
630 <kunihiro@zebra.org>.
631
6321999-12-07 Kunihiro Ishiguro <kunihiro@zebra.org>
633
634 * ripd.c (rip_response_process): In case of packet is RIPv2 and
635 network is non zero and netmask is zero, apply netmask rule as
636 same as RIPv1.
637
6381999-11-06 Kunihiro Ishiguro <kunihiro@zebra.org>
639
640 * ripd.c (rip_timers): Fix bug of timers basic argument format.
641
6421999-11-03 Kunihiro Ishiguro <kunihiro@zebra.org>
643
644 * rip_snmp.c (rip2IfConfAddress): Forgot to include
645 RIP2IFCONFDOMAIN.
646
6471999-10-28 Kunihiro Ishiguro <kunihiro@zebra.org>
648
649 * ripd.h (struct rip_peer): New structure added.
650
6511999-10-26 Kunihiro Ishiguro <kunihiro@zebra.org>
652
653 * rip_zebra.c (rip_zebra_ipv4_add): Increment
654 rip_global_route_changes when route change occur.
655 (rip_zebra_ipv4_delete): Likewise.
656
657 * ripd.c (rip_request_process): Increment rip_global_queries when
658 reply to the query is sent.
659
6601999-10-25 Kunihiro Ishiguro <kunihiro@zebra.org>
661
662 * rip_debug.c (rip_debug_reset): Reset function added.
663
664 * ripd.c (rip_update_process): Logging bug is fixed.
665
6661999-10-10 Marc Boucher <marc@mbsi.ca>
667
668 * ripd.c (config_write_rip): Add config_write_distribute() call.
669
6701999-09-29 Kunihiro Ishiguro <kunihiro@zebra.org>
671
672 * ripd.c (rip_distribute_update): Fix bug of access-list
673 prefix-list updates.
674
6751999-09-10 VOP <vop@unity.net>
676
677 * rip_zebra.c: Add redistribute route-map feature.
678
6791999-09-10 Kunihiro Ishiguro <kunihiro@zebra.org>
680
681 * ripd.c (rip_response_process): Add check for given prefix is
682 given mask applied one.
683
6841999-09-03 VOP <vop@unity.net>
685
686 * rip_interface.c (rip_interface_multicast_set): Bug fix about
687 setting multicast interface.
688
6891999-09-02 VOP <vop@unity.net>
690
691 * rip_routemap.c: New file added.
692
6931999-09-02 Kunihiro Ishiguro <kunihiro@zebra.org>
694
695 * ripd.c (show_ip_protocols_rip): Show next update time.
696 (show_ip_protocols_rip): Show redistribute information.
697
6981999-08-25 Kunihiro Ishiguro <kunihiro@zebra.org>
699
700 * RIPv2-MIB.txt: New file added.
701
702 * rip_snmp.c: New file added.
703
7041999-08-24 Kunihiro Ishiguro <kunihiro@zebra.org>
705
706 * rip_interface.c (ip_rip_authentication_string): RIPv2
707 authentication command is added.
708
7091999-08-23 Kunihiro Ishiguro <kunihiro@zebra.org>
710
711 * rip_interface.c (rip_interface_multicast_set): Process of
712 setting IP_MULTICAST_IF on specific interface.
713
714 * ripd.c (rip_read): Add packet size check.
715
7161999-08-16 Kunihiro Ishiguro <kunihiro@zebra.org>
717
718 * ripd.c (rip_request_process): Fill in RIP_METRIC_INFINITY with
719 network byte order using htonl ().
720 (rip_response_process): Pass host byte order address to IN_CLASSC
721 and IN_CLASSB macro.
722
7231999-08-08 davidm@nbase.co.il (David Mozes)
724
725 * rip_zebra.c (rip_zebra_read_ipv4): Fix split horizon problem.
726
7271999-07-03 Kunihiro Ishiguro <kunihiro@zebra.org>
728
729 * ripd.c (rip_timer_set): Function added.
730
7311999-07-01 Kunihiro Ishiguro <kunihiro@zebra.org>
732
733 * rip_debug.c: New file added.
734 rip_debug.h: New file added.
735
7361999-07-01 Rick Payne <rickp@rossfell.co.uk>
737
738 * rip_zebra.c (zebra_init): Install standard commands to
739 ZEBRA_NODE.
740
7411999-06-01 David Luyer <luyer@ucs.uwa.edu.au>
742
743 * ripd.c (rip_process_route): Add support for RIP version 1.
744
7451999-05-29 Kunihiro Ishiguro <kunihiro@zebra.org>
746
747 * rip_zebra.c: Change to use lib/zclient.[ch].
748
7491999-05-20 Carlos Alberto Barcenilla <barce@frlp.utn.edu.ar>
750
751 * ripd.c (rip_add_route): Change the existance route's metric check
752 to the condition specified by RFC2453.
753
7541999-05-17 Carlos Alberto Barcenilla <barce@frlp.utn.edu.ar>
755
756 * ripd.c (rip_process_route): Add the if metric to the route metric.
757
758 * ripd.c (rip_add_route): Deleted add if metric to the route.
759
7601999-05-16 Carlos Alberto Barcenilla <barce@frlp.utn.edu.ar>
761
762 * rip_interface.c (if_valid_neighbor): New function.
763
764 * ripd.c (rip_process_route): Added check whether the datagram
765 is from a valid neighbor.
766
7671999-05-15 Kunihiro Ishiguro <kunihiro@zebra.org>
768
769 * ripd.c (rip_process_route): Set interface pointer to rinfo.
770
7711999-05-15 Carlos Alberto Barcenilla <barce@frlp.utn.edu.ar>
772
773 * ripd.c (rip_check_address): Unicast and not net 0 or 127 check
774 added.
775
7761999-05-14 Stephen R. van den Berg <srb@cuci.nl>
777
778 * rip_main.c (signal_init): SIGTERM call sigint.
779 (sigint): Loggging more better message.
780
7811999-05-10 Kunihiro Ishiguro <kunihiro@zebra.org>
782
783 * ripd.c (rip_add_route): Fix previous route_unlock_node() chenge.
784
785 * rip_main.c (main): Change default zlog output to ZLOG_STDOUT for
786 debugging.
787
7881999-05-09 Patrick Koppen <koppen@rhrk.uni-kl.de>
789
790 * rip_interface.c (rip_request): Fix old semantics for fetching
791 connected address.
792
793 * ripd.c (rip_add_route): Update timer when the route is updated.
794
7951999-05-09 Carlos Alberto Barcenilla <barce@frlp.utn.edu.ar>
796
797 * rip_zebra.c (struct zebra): Add ridist_static, ridist_connect,
798 redist_rip, redist_ripng.
799
800 * rip_zebra.c (zebra_create): Updated for current zebra method.
801
802 * ripd.c (rip_add_route): Add missing route_unlock_node().
803
8041999-05-03 Kunihiro Ishiguro <kunihiro@zebra.org>
805
806 * ripd.c (rip_add_route): Add metric check. Reported by Carlos
807 Alberto Barcenilla <barce@frlp.utn.edu.ar>.
808
8091999-02-18 Peter Galbavy <Peter.Galbavy@knowledge.com>
810
811 * syslog support added
812
8131998-12-13 Kunihiro Ishiguro <kunihiro@zebra.org>
814
815 * ripd.c (rip_announce_func): Apply new lib functions.
816
8171998-12-09 Kunihiro Ishiguro <kunihiro@zebra.org>
818
819 * ripd.c (config_write_rip): Delete vector v argument.
820 * rip_zebra.c (config_write_zebra): Likewise.
821 * rip_interface.c (interface_config_write): Likewise.
822
8231998-09-07 Kunihiro Ishiguro <kunihiro@zebra.org>
824
825 * rip_announce.c (rip_rib_close): When ripd terminates delete all
826 added route.
827
8281998-09-01 Kunihiro Ishiguro <kunihiro@zebra.org>
829
830 * rip_interface.c: return read packet size.
831
8321998-05-18 Yamshita TAKAO <jargon@lares.dti.ne.jp>
833
834 * ripd.h: Modify for compile on Solaris.
835
8361998-05-07 Kunihiro Ishiguro <kunihiro@zebra.org>
837
838 * ripd.c: DEFUN function return CMD_SUCCESS.
839 change xmalloc to XMALLOC macro.
840
8411998-05-03 Kunihiro Ishiguro <kunihiro@zebra.org>
842
843 * rip_main.c: change CONFDIR to SYSCONFDIR.
844
8451998-05-01 Kunihiro Ishiguro <kunihiro@zebra.org>
846
847 * .cvsignore: added.
848
8491998-02-04 Kunihiro Ishiguro <kunihiro@zebra.org>
850
851 * rip_interface.c (config_write_interface): correct ADVERTISE spell.
852
853 * rip_main.c (main): add usage() and make cleanup.
854
8551998-01-05 Kunihiro Ishiguro <kunihiro@zebra.org>
856
857 * ripd.c (rip_version): add rip version command.
858
8591998-01-04 Kunihiro Ishiguro <kunihiro@zebra.org>
860
861 * rip_interface.c (zebra_get_interface): added to get
862 interface's information.
863
864 * ChangeLog: create.