blob: 1921b7891c4f57b72313df9d4b0ad5d48009eecf [file] [log] [blame]
paul0b3acf42004-09-17 08:39:08 +000012004-09-17 Paul Jakma <paul@dishone.st>
2
3 * ripd.c: set receive buffer to a decent size, some systems have low
4 defaults. Problem noted and fix suggested by Stephan Schweizer
5 in [zebra 20967].
6
paul1a517862004-08-19 04:03:08 +000072004-08-19 Paul Jakma <paul@dishone.st>
8
9 * rip_interface.c: (rip_interface_multicast_set) get rid
10 of extraneous if_pointopoint arg. ifp is accessible via connected.
11 pass connected->ifp->ifindex to setsockopt_multicast_ipv4.
12 * ripd.c: (rip_send_packet) update call to
13 rip_interface_multicast_set
14 * ripd.h: update rip_interface_multicast_set prototype
15
paul02ff83c2004-06-11 11:27:03 +0000162004-06-11 Sowmini Varadhan <sowmini.varadhan@sun.com>
17
18 * ripd.c: (rip_distribute_update_all) distribute list hook
19 function pointer prototype requires struct prefix_list * arg.
20 (rip_distribute_update_all_wrapper) update to pass required arg,
21 NULL.
22
paulca5e5162004-06-06 22:06:33 +0000232004-06-06 Paul Jakma <paul.jakma@sun.com>
24
25 * ripd.h: Add define for the RIPv2 Authentication Data family
26 Move the auth type defines up to where other defines live.
27 Add RIP_AUTH_MD5_COMPAT_SIZE, for backwards compatible
28 md5->auth_len size. Add md5_auth_len field to struct
29 rip_interface: (rip_interface_new) Init md5_auth_len to compatible
30 size.
31 (ip_rip_authentication_mode_cmd) Extended to handle setting
32 md5 auth-length. Appropriate aliases added.
33 (no_ip_rip_authentication_mode_cmd) Reset md5_auth_len to
34 compatible size.
35 (rip_interface_config_write) Teach it about md5_auth_len.
36 _always_ write out the auth-length, so that everyone will get
37 the setting in their config file, and hence allow for a future
38 change of default for md5_auth_len to be less painful - every md5
39 user will have this setting in their config file.
40 ripd.c: (rip_packet_dump) Change nasty hard coded constants to
41 symbolic defines. Change various tests of 'ntoh.(variable) ==
42 constant' to test 'variable == ntoh.(constant)'. Clean up
43 indentation on some long lines.
44 (rip_auth_simple_password) ditto.
45 (rip_auth_md5) ditto, also add length argument and sanity check
46 md5 data offset field. Sanity check md5 auth length, accept RFC
47 or old-ripd/cisco lengths.
48 (rip_auth_md5_set) as per (rip_packet_dump), also write out
49 the configured md5 auth length for the interface (old-ripd or rfc)
50 (rip_read) as per (rip_packet_dump)
51 (rip_write_rte) ditto
52 (rip_response_process) ditto
53 (rip_write_rte) ditto
54
paulc2bfbcc2004-06-04 01:42:38 +0000552004-06-04 JJ Ludman <jacques.ludman@sun.com>
56
57 * ripd.c: Interoperability fix. Correct value for MD5 auth length
58 is 16. Accept packets with this set to >= 16, and set to 16
59 ourselves.
60
paul11dde9c2004-05-31 14:00:00 +0000612004-05-31 Sowmini Varadhan <sowmini.varadhan@sun.com>
62
63 * ripd.c: Fixup compile warnings
64 * rip_routemap.c: Ditto
65
paul0a589352004-05-08 11:48:26 +0000662004-05-08 Paul Jakma <paul@dishone.st>
67
68 * rip_zebra.c: sync with zclient changes.
69 * rip_interface.c: ditto.
70
paul239389b2004-05-05 14:09:37 +0000712004-05-05 Anthony.Golia@morganstanley.com
72
73 * ripd.c: (rip_update_jitter) Bound jitter to a more sensible
74 value, eg 1/4 of update time.
75
paula87552c2004-05-03 20:00:17 +0000762004-05-03 Paul Jakma <paul@dishone.st>
77
78 * ripd.c: (rip_rte_process) fix typo in merge of previous patch
79 and run function through indent.
80
paulb94f9db2004-05-01 20:45:38 +0000812004-03-19 Jean-Yves Simon <lethalwp@tiscali.be>
82
paula87552c2004-05-03 20:00:17 +000083 * ripd.c: (rip_rte_process) make ripd also check on
84 administrative distance of his own links to update routes.
paulb94f9db2004-05-01 20:45:38 +000085
hassoda9c9a22004-03-18 02:40:55 +0000862004-03-18 sowmini.varadhan@sun.com
87
88 * ripd.c: rip_send_packet can get null connected address when
89 called in response to a unicast rip-request. Handle correctly.
90
hassoa1455d82004-03-03 19:36:24 +0000912004-03-03 Krzysztof Oledzki <oleq@ans.pl>
92
hassocaa6f8a2004-03-03 19:48:48 +000093 * ripd.c: fix "show ip rip" and per interface rip version selection.
hassoa1455d82004-03-03 19:36:24 +000094
paul931cd542004-01-23 15:31:42 +0000952004-01-23 sowmini.varadhan@sun.com
96
97 * rip_interface.c: obsolete unbind code in
98 rip_interface_multicast_set, and instead do the more portable
99 (though slower) method of creating a socket for each outgoing packet
100 and binding the source address on the new socket.
101 * rip_interface.c, ripd.c, ripd.h: Modify rip_request_send so that
102 source address is determined by the caller of rip_request_send for
103 ripv1 packets and non-multicast interfaces (rip_request_send loops
104 over all connected address in all other cases).
105 * rip_send_packet: don't send packets with source set to
106 ZEBRA_IFA_SECONDARY connected addresses; improved debug messages;
107
paulf38a4712003-06-07 01:10:00 +00001082003-06-07 Andrew J. Schorr <aschorr@telemetry-investments.com>
109
110 * Allow ripd to receive RIPv1
111 * add default as valid param to passive-interface command
112
hasso16705132003-05-25 14:49:19 +00001132003-05-25 Vincent Jardin <vjardin@wanadoo.fr>
114
paulf38a4712003-06-07 01:10:00 +0000115 * 6Wind patch merge.
hasso16705132003-05-25 14:49:19 +0000116
paul445f1432003-05-16 19:00:31 +00001172003-04-19 Hasso Tepper <hasso@estpak.ee>
118
119 * rip_routemap.c: sync daemon's route-map commands to have same
120 syntax
121
paul718e3742002-12-13 20:15:29 +00001222002-07-07 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
123
124 * zebra-0.93 released.
125
1262002-06-30 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
127
128 * ripd.c (rip_output_process): When outgoing interface is same as
129 next hop interface, announce RIPv2 next hop otherwise set next hop
130 to 0. Revert previous change then take 6WIND way.
131
1322001-09-14 Akihiro Mizutani <mizutani@dml.com>
133
134 * ripd.c: RIP enabled interface's route is advertised by default.
135
1362001-08-28 NOGUCHI Kay <kay@v6.access.co.jp>
137
138 * rip_snmp.c (rip_ifaddr_delete): Add route_node_lookup() return
139 value check.
140
141 * rip_interface.c (rip_multicast_leave): Fix bug of multiple IP
142 address on one interface multicast join/leave bug.
143
1442001-08-26 NOGUCHI Kay <kay@v6.access.co.jp>
145
146 * rip_interface.c (no_rip_passive_interface): Add NO_STR.
147
1482001-08-19 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
149
150 * zebra-0.92a released.
151
1522001-08-15 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
153
154 * zebra-0.92 released.
155
1562001-06-17 Kunihiro Ishiguro <kunihiro@zebra.org>
157
158 * rip_routemap.c (route_match_ip_address_prefix_list): Add match
159 ip next-hop prefix-list WORD.
160
1612001-02-18 Kunihiro Ishiguro <kunihiro@zebra.org>
162
163 * rip_interface.c (rip_passive_interface_clean): Call
164 rip_passive_interface_apply_all.
165
1662001-02-12 Kunihiro Ishiguro <kunihiro@zebra.org>
167
168 * ripd.c (rip_response_process): Multicast address nexthop check
169 is moved from rip_nexthop_check.
170
1712001-02-08 Matthew Grant <grantma@anathoth.gen.nz>
172
173 * rip_interface.c (ipv4_multicast_join): Use
174 setsockopt_multicast_ipv4.
175 (ipv4_multicast_leave): Likewise.
176 (rip_if_ipv4_address_check): Interface which has IPv4 address can
177 be enabled.
178
1792001-02-08 Kunihiro Ishiguro <kunihiro@zebra.org>
180
181 * rip_interface.c (rip_interface_delete): To support pseudo
182 interface do not free interface structure.
183 * ripd.c (rip_output_process): If output interface is in simple
184 password authentication mode, we need space for authentication
185 data.
186
1872001-02-01 Kunihiro Ishiguro <kunihiro@zebra.org>
188
189 * ripd.c (rip_nexthop_check): Fix multicast address nexthop check.
190
191 * zebra-0.91 is released.
192
1932001-01-27 Kunihiro Ishiguro <kunihiro@zebra.org>
194
195 * ripd.c (show_ip_rip): Show metric infinity route's timeout.
196 (rip_rte_process): If current route is metric infinity, route is
197 replaced with received rte.
198 (rip_redistribute_delete): When redistribute route is deleted,
199 perform poisoned reverse.
200 (rip_redistribute_withdraw): Likewise.
201
2022001-01-25 Kunihiro Ishiguro <kunihiro@zebra.org>
203
204 * ripd.c (rip_response_process): RIPv2 routing table entry with
205 non directly reachable nexthop was dropped. The code is changed
206 to treat it as 0.0.0.0 nexthop.
207 (rip_destination_check): Check net 0 address destination.
208 (rip_nexthop_check): New function for checking nexthop address
209 validity.
210
2112001-01-15 Kunihiro Ishiguro <kunihiro@zebra.org>
212
213 * ripd.c (rip_request_process): Triggered update only send changed
214 route.
215
216 * rip_interface.c: Delete RIP_API part until new implementation
217 comes out.
218
219 * rip_snmp.: Likewise.
220
221 * rip_zebra.c: Likewise.
222
223 * ripd.c: Likewise.
224
2252001-01-11 Kunihiro Ishiguro <kunihiro@zebra.org>
226
227 * rip_interface.c (rip_if_init): Remove HAVE_IF_PSEUDO part.
228
2292001-01-09 Kunihiro Ishiguro <kunihiro@zebra.org>
230
231 * zebra-0.90 is released.
232
2332001-01-01 Kunihiro Ishiguro <kunihiro@zebra.org>
234
235 * ripd.h (RIP_VTYSH_PATH): Change "/tmp/ripd" to "/tmp/.ripd".
236
2372000-12-25 David Lipovkov <davidl@nbase.co.il>
238
239 * ripd.c (rip_rte_process): When a route is in garbage collection
240 process (invalid with metric 16) and a router receives the same
241 route with valid metric then route was not installed into zebra
242 rib, but only into ripd rib. Moreover , it will never get into
243 zebra rib, because ripd wrongly assumes it's already there.
244 (rip_redistribute_add): When doing redistribute into rip other
245 route (e.g. connected) and the same route exists in ripd rib we
246 changed it in place - bug. Now we don't forget to remove old route
247 from zebra.
248 (rip_timeout): When removing routes from zebra I made sure that we
249 remove route with the metric we have in zebra and not the new
250 one. It doesn't make a difference now,but could be significant
251 when multipath support is done.
252
2532000-12-25 David Lipovkov <davidl@nbase.co.il>
254
255 * rip_zebra.c (rip_metric_unset): Fix bug of metric value unset.
256
2572000-11-25 Frank van Maarseveen <F.vanMaarseveen@inter.NL.net>
258
259 * ripd.c (rip_request_process): Check passive flag of the
260 interface.
261
2622000-11-23 Frank van Maarseveen <F.vanMaarseveen@inter.NL.net>
263
264 * rip_interface.c (rip_multicast_join): When IP_ADD_MEMBERSHIP
265 failed do not set runnning flag to the interface.
266
2672000-11-16 Kunihiro Ishiguro <kunihiro@zebra.org>
268
269 * ripd.c (rip_output_process): Memory leak related classfull
270 network generation is fixed.
271
2722000-11-16 Frank van Maarseveen <F.vanMaarseveen@inter.NL.net>
273
274 * rip_interface.c (if_check_address): Obsolete pointopoint address
275 check is removed.
276
2772000-11-02 Frank van Maarseveen <F.vanMaarseveen@inter.NL.net>
278
279 * rip_interface.c (if_check_address): Add pointopoint address
280 check.
281 (rip_interface_up): Add check for passive interface when interface
282 goes up.
283
2842000-10-23 Jochen Friedrich <jochen@scram.de>
285
286 * rip_snmp.c: rip_oid and ripd_oid are used in smux_open after it
287 is registered. So those variables must be static.
288
2892000-10-19 Kunihiro Ishiguro <kunihiro@zebra.org>
290
291 * rip_interface.c: Change to "no ip rip (send|receive)" command
292 accept version number argument.
293
2942000-10-17 Akihiro Mizutani <mizutani@dml.com>
295
296 * rip_routemap.c (route_set_ip_nexthop_compile): Change "match ip
297 next-hop" from IP address to access-list name.
298
2992000-10-17 Kunihiro Ishiguro <kunihiro@zebra.org>
300
301 * rip_peer.c: Change ot use linklist.c instaed of newlist.c.
302
3032000-10-16 Kunihiro Ishiguro <kunihiro@zebra.org>
304
305 * rip_offset.c: Change to use linklist.c instead of newlist.c.
306
3072000-10-02 Kunihiro Ishiguro <kunihiro@zebra.org>
308
309 * zebra-0.89 is released.
310
3112000-09-26 Akihiro Mizutani <mizutani@dml.com>
312
313 * rip_routemap.c (match_ip_nexthop): Add next-hop format check.
314
3152000-09-18 David Lipovkov <dlipovkov@OpticalAccess.com>
316
317 * rip_interface.c (ripd_api_get_if_rx_version): Corrects rip SNMP
318 and rip API functions dealing with rip version.
319
320 * rip_snmp.c (Status_Valid): SNMPv2-TC TEXTUAL-CONVENTION.
321
3222000-09-10 Kunihiro Ishiguro <kunihiro@zebra.org>
323
324 * rip_snmp.c (rip2IfLookup): Use rip_ifaddr_lookup_next() instead
325 of rip_if_lookup_next().
326
327 * rip_interface.c (rip_enable_network_lookup): Interface enable
328 check by interface's address with /32 prefix.
329
330 * ripd.c (rip_read): When RIP is configured with authentication
331 and no authentication in incoming packet, drop the packet.
332
333 * rip_interface.c (rip_interface_reset): RIP_AUTH_SIMPLE_PASSWORD
334 is default mode of authentication.
335 (rip_interface_new): Likewise.
336 (no_ip_rip_authentication_mode): Likewise.
337
338 * ripd.c (rip_read): Likewise.
339
3402000-09-10 David Lipovkov <davidl@nbase.co.il>
341
342 * rip_snmp.c: Set ASN_INTEGER v->type where it is needed.
343
3442000-09-08 Kunihiro Ishiguro <kunihiro@zebra.org>
345
346 * ripd.c (rip_auth_simple_password): Simple password
347 authentication using key-chain.
348 (rip_write_rte): Likewise.
349
350 * rip_interface.c (ip_rip_authentication_key_chain): Add check for
351 authentication string configuration.
352
3532000-09-08 Akihiro Mizutani <mizutani@dml.com>
354
355 * ripd.c (rip_write_rte): Add check for ri->auth_str.
356
3572000-09-07 Kunihiro Ishiguro <kunihiro@zebra.org>
358
359 * ripd_api.h: New file is added.
360
3612000-08-22 Kunihiro Ishiguro <kunihiro@zebra.org>
362
363 * ripd.c (rip_rte_process): rip_route_process() is renamed to
364 rip_rte_process() to clarify meanings of the function.
365 rip_route_process() is newly added to process RIP route selection.
366
3672000-08-18 Kunihiro Ishiguro <kunihiro@zebra.org>
368
369 * ripd.c (rip_incoming_filter): Extract incoming filter code to
370 function from rip_route_process(). Add check for all interface
371 filter.
372 (rip_outgoing_filter): Extract incoming filter code to function
373 from rip_output_process(). Add check for all interface filter.
374
375 * rip_zebra.c (rip_redistribute_clean): Reset redistribute status
376 when "no router rip" is performed.
377
378 * rip_interface.c (rip_interface_clean): Reset interface's RIP
379 enable status.
380
3812000-08-17 Kunihiro Ishiguro <kunihiro@zebra.org>
382
383 * ripd.c (rip_route_process): When metric infinity is received the
384 route is removed from service immediately.
385 (rip_timeout): Likewise.
386 (rip_garbage_collect): Do not delete route in garbage collection.
387 (rip_output_process): Check metric_out exceed metric infinity.
388
389 * zebra-0.88 is released.
390
3912000-08-15 Kunihiro Ishiguro <kunihiro@zebra.org>
392
393 * ripd.c (rip_distance_apply): Unlock node when there is matched
394 node.
395
3962000-08-13 Akihiro Mizutani <mizutani@dml.com>
397
398 * rip_routemap.c (match_ip_nexthop): Add check for IP address
399 validness.
400 (no_set_metric): Add new ALIAS.
401
4022000-08-07 Kunihiro Ishiguro <kunihiro@zebra.org>
403
404 * ripd.h (struct rip ): Add distance.
405
4062000-08-05 Kunihiro Ishiguro <kunihiro@zebra.org>
407
408 * rip_zebra.c (rip_zebra_ipv4_add): Use new Zebra api to register
409 routes. Pass RIP metric value to zebra.
410
4112000-08-02 Kunihiro Ishiguro <kunihiro@zebra.org>
412
413 * rip_main.c (main): Make struct thread thread from global
414 variable to local variable in main.
415
4162000-08-06 Kunihiro Ishiguro <kunihiro@zebra.org>
417
418 * ripd.c (rip_packet_dump): Add MD5 authentication dump function.
419 (rip_auth_md5): RIP MD5 authentication packet receive works.
420
4212000-08-02 David Lipovkov <davidl@nbase.co.il>
422
423 * rip_interface.c (rip_if_init): Install interface "pseudo"
424 commands.
425 (rip_interface_delete): Do not call if_delete() when interface is
426 pseudo interface.
427
4282000-07-31 Kunihiro Ishiguro <kunihiro@zebra.org>
429
430 * rip_interface.c (ip_rip_authentication_mode): "ip rip
431 authentication mode (md5|text)" is added.
432 (ip_rip_authentication_key_chain): "ip rip authentication
433 key-chain KEY-CHAIN" is added.
434 (rip_interface_clean): Clean all interface configuration.
435 (rip_interface_reset): Reset all interface configuration.
436 (rip_clean_network): Clean rip_enable_network.
437
438 * ripd.h (struct rip_interface): Add key_chain member.
439
440 * ripd.c: Include md5-gnu.h.
441
4422000-07-30 Kunihiro Ishiguro <kunihiro@zebra.org>
443
444 * ripd.h (RIP_NO_AUTH): Change RIP_NO_AUTH value from 1 to 0.
445
446 * ripd.c (rip_authentication): Use RIP_AUTH_SIMPLE_PASSWORD
447 instead of raw value 2.
448 (rip_write_rte): Likewise.
449 (rip_write_rte): Check ri->auth_type instead of ri->auth_str.
450
4512000-07-30 David Lipovkov <davidl@nbase.co.il>
452
453 * rip_interface.c (rip_if_down): Do not delete ZEBRA_ROUTE_KERNEL
454 route.
455
4562000-07-27 Kunihiro Ishiguro <kunihiro@zebra.org>
457
458 * ripd.c (rip_update_process): Add "passive-interface" command.
459
460 * ripd.h (struct rip_interface): Add passive member to struct
461 rip_interface.
462
4632000-07-24 Kunihiro Ishiguro <kunihiro@zebra.org>
464
465 * rip_interface.c (rip_if_init): Multiple RIP routes for one
466 prefix change. The codes are enclosed by #ifdef NEW_RIP_TABLE.
467
4682000-07-24 Akihiro Mizutani <mizutani@dml.com>
469
470 * rip_interface.c (rip_if_init): Use install_default() for
471 INTERFACE_NODE.
472
4732000-07-24 Kunihiro Ishiguro <kunihiro@zebra.org>
474
475 * ripd.c: First update timer will be invoked in two seconds.
476
4772000-07-09 Jochen Friedrich <jochen@scram.de>
478
479 * rip_snmp.c: Local function definitions to static. Add INTEGER
480 ASN_INTEGER and TIMETICKS ASN_TIMETICKS definition.
481 (rip2PeerLookup): Peer with domain lookup implemented.
482 (rip2PeerTable): Temporary disable RIP2PEERLASTUPDATE value
483 support due to unknown SNMP agent startup time.
484
4852000-07-05 Kunihiro Ishiguro <kunihiro@zebra.org>
486
487 * ripd.h: Sweep obsolete definitions.
488
489 * rip_interface.c (rip_split_horizon): Add "ip split-horizon"
490 command.
491
492 * ripd.c (rip_output_process): Remove split_horizon argument.
493 (rip_update_process): Likewise.
494
495 * ripd.h (struct rip_interface): Add split_horizon flag to struct
496 rip_interface.
497
4982000-07-04 Akihiro Mizutani <mizutani@dml.com>
499
500 * ripd.c (rip_version): Change VERSION to <1-2>.
501 Add "no version" command.
502
5032000-07-03 Kunihiro Ishiguro <kunihiro@zebra.org>
504
505 * rip_zebra.c (rip_redistribute_type_metric): "redistribute TYPE
506 metric <0-16>" command is added.
507
508 * rip_routemap.c (route_set_metric): Set metric_set when metric is
509 modified.
510
511 * ripd.h (struct rip_info): To check route-map set metric or not,
512 new member metric_set is added to struct rip_info.
513
514 * ripd.c (rip_route_process): Move metric handling code from
515 rip_response_process() to rip_route_process().
516 (rip_output_process): Set output offset-list metric.
517
5182000-07-02 Kunihiro Ishiguro <kunihiro@zebra.org>
519
520 * rip_offset.c (rip_offset_list): New file for offset-list.
521
5222000-07-02 Akihiro Mizutani <mizutani@dml.com>
523
524 * ripd.h (struct rip ): Add default_metric.
525
526 * ripd.c (rip_default_metric): "default-metric <1-16>" command is
527 added.
528 (config_write_rip): Change configuration order.
529
530 * rip_zebra.c: Fix help strings.
531
5322000-07-02 David Lipovkov <davidl@nbase.co.il>
533
534 * rip_interface.c (rip_if_init): Add IF_DELETE_HOOK.
535
5362000-07-01 Kunihiro Ishiguro <kunihiro@zebra.org>
537
538 * ripd.c (rip_output_process): If specified route-map does not
539 exist, it treated as deny all.
540
5412000-06-30 Kunihiro Ishiguro <kunihiro@zebra.org>
542
543 * rip_routemap.c (rip_route_map_init): Call rip_route_map_update
544 when route-map is deleted.
545
5462000-06-28 Kunihiro Ishiguro <kunihiro@zebra.org>
547
548 * rip_routemap.c (set_metric): For consistency with bgpd's set
549 metric, value range is set to <0-4294967295>.
550
5512000-06-28 David Lipovkov <davidl@nbase.co.il>
552
553 * rip_routemap.c (rip_route_map_update): Add check for rip is
554 enabled or not for avoid core dump.
555
556 * rip_debug.c (debug_rip_packet_direct): Fix bug of setting
557 rip_debug_packet flag.
558
5592000-06-13 David Lipovkov <davidl@nbase.co.il>
560
561 * rip_interface.c (rip_interface_delete): All work is done in
562 rip_if_down().
563
5642000-06-06 Kunihiro Ishiguro <kunihiro@zebra.org>
565
566 * ripd.c (rip_redistribute_delete): Fix bug of missing
567 route_unlock_node() when redistribute route is not found.
568
5692000-06-05 Akihirof Mizutani <mizutani@dml.com>
570
571 * rip_debug.c (rip_debug_init): Disable show debugging in
572 VIEW_NODE like other protocol daemon.
573
574 * rip_routemap.c: Change command argument to more comprehensive.
575
576 METRIC -> <0-16>
577 IFNAME -> WORD
578 IP_ADDR -> A.B.C.D
579 ACCSESS_LIST -> WORD
580
5812000-06-05 David Lipovkov <davidl@nbase.co.il>
582
583 * rip_interface.c (rip_interface_delete): Delete all routes
584 include static and kernel through the interface , because even if
585 the interface is added again there is no guarantee that it will
586 get the same ifindex as before.
587
5882000-05-31 Akihirof Mizutani <mizutani@dml.com>
589
590 * rip_debug.c: Fix rip debug help string.
591
5922000-04-27 Mirko Karanovic <mkaranov@torsel.alcatel.com>
593
594 * rip_interface.c (rip_interface_down): Remove interface from
595 multicast group when interface goes down.
596
5972000-04-03 David Lipovkov <davidl@nbase.co.il>
598
599 * rip_interface.c (rip_interface_down): Implemented rip functions
600 for interface up/down events: rip_interface_up() and
601 rip_interface_down()
602
6032000-03-16 David Lipovkov <davidl@nbase.co.il>
604
605 * rip_zebra.c (rip_zclient_init): Added rip functions for
606 interface up/down events.
607
6082000-02-15 Hidetoshi Shimokawa <simokawa@sat.t.u-tokyo.ac.jp>
609
610 * ripd.c (rip_write_rte): "set metic" in route-map has no effect
611 for RIPv1 in ripd. It worked fine for RIPv2.
612
6132000-01-17 Kunihiro Ishiguro <kunihiro@zebra.org>
614
615 * ripd.c (show_ip_protocols_rip): Fix bug of "show ip protocls"
616 mis-display RIP version.
617
618 * ripd.h (struct rip_peer): Add timeout thread to rip_peer
619 structure.
620
6212000-01-16 Kunihiro Ishiguro <kunihiro@zebra.org>
622
623 * rip_peer.c: Add new file for supporting RIP peer.
624
6251999-12-26 David Lipovkov <davidl@nbase.co.il>
626
627 * ripd.c (rip_authentication): RIP authantication string is 16
628 bytes long.
629
6301999-12-10 Kunihiro Ishiguro <kunihiro@zebra.org>
631
632 * ripd.c (rip_read): Add check for minimum packet length.
633 Authentication check is moved from rip_process_response() to
634 rip_read(). Patch from David Lipovkov <davidl@nbase.co.il> is
635 applied then add rte number check by Kunihiro Ishiguro
636 <kunihiro@zebra.org>.
637
6381999-12-07 Kunihiro Ishiguro <kunihiro@zebra.org>
639
640 * ripd.c (rip_response_process): In case of packet is RIPv2 and
641 network is non zero and netmask is zero, apply netmask rule as
642 same as RIPv1.
643
6441999-11-06 Kunihiro Ishiguro <kunihiro@zebra.org>
645
646 * ripd.c (rip_timers): Fix bug of timers basic argument format.
647
6481999-11-03 Kunihiro Ishiguro <kunihiro@zebra.org>
649
650 * rip_snmp.c (rip2IfConfAddress): Forgot to include
651 RIP2IFCONFDOMAIN.
652
6531999-10-28 Kunihiro Ishiguro <kunihiro@zebra.org>
654
655 * ripd.h (struct rip_peer): New structure added.
656
6571999-10-26 Kunihiro Ishiguro <kunihiro@zebra.org>
658
659 * rip_zebra.c (rip_zebra_ipv4_add): Increment
660 rip_global_route_changes when route change occur.
661 (rip_zebra_ipv4_delete): Likewise.
662
663 * ripd.c (rip_request_process): Increment rip_global_queries when
664 reply to the query is sent.
665
6661999-10-25 Kunihiro Ishiguro <kunihiro@zebra.org>
667
668 * rip_debug.c (rip_debug_reset): Reset function added.
669
670 * ripd.c (rip_update_process): Logging bug is fixed.
671
6721999-10-10 Marc Boucher <marc@mbsi.ca>
673
674 * ripd.c (config_write_rip): Add config_write_distribute() call.
675
6761999-09-29 Kunihiro Ishiguro <kunihiro@zebra.org>
677
678 * ripd.c (rip_distribute_update): Fix bug of access-list
679 prefix-list updates.
680
6811999-09-10 VOP <vop@unity.net>
682
683 * rip_zebra.c: Add redistribute route-map feature.
684
6851999-09-10 Kunihiro Ishiguro <kunihiro@zebra.org>
686
687 * ripd.c (rip_response_process): Add check for given prefix is
688 given mask applied one.
689
6901999-09-03 VOP <vop@unity.net>
691
692 * rip_interface.c (rip_interface_multicast_set): Bug fix about
693 setting multicast interface.
694
6951999-09-02 VOP <vop@unity.net>
696
697 * rip_routemap.c: New file added.
698
6991999-09-02 Kunihiro Ishiguro <kunihiro@zebra.org>
700
701 * ripd.c (show_ip_protocols_rip): Show next update time.
702 (show_ip_protocols_rip): Show redistribute information.
703
7041999-08-25 Kunihiro Ishiguro <kunihiro@zebra.org>
705
706 * RIPv2-MIB.txt: New file added.
707
708 * rip_snmp.c: New file added.
709
7101999-08-24 Kunihiro Ishiguro <kunihiro@zebra.org>
711
712 * rip_interface.c (ip_rip_authentication_string): RIPv2
713 authentication command is added.
714
7151999-08-23 Kunihiro Ishiguro <kunihiro@zebra.org>
716
717 * rip_interface.c (rip_interface_multicast_set): Process of
718 setting IP_MULTICAST_IF on specific interface.
719
720 * ripd.c (rip_read): Add packet size check.
721
7221999-08-16 Kunihiro Ishiguro <kunihiro@zebra.org>
723
724 * ripd.c (rip_request_process): Fill in RIP_METRIC_INFINITY with
725 network byte order using htonl ().
726 (rip_response_process): Pass host byte order address to IN_CLASSC
727 and IN_CLASSB macro.
728
7291999-08-08 davidm@nbase.co.il (David Mozes)
730
731 * rip_zebra.c (rip_zebra_read_ipv4): Fix split horizon problem.
732
7331999-07-03 Kunihiro Ishiguro <kunihiro@zebra.org>
734
735 * ripd.c (rip_timer_set): Function added.
736
7371999-07-01 Kunihiro Ishiguro <kunihiro@zebra.org>
738
739 * rip_debug.c: New file added.
740 rip_debug.h: New file added.
741
7421999-07-01 Rick Payne <rickp@rossfell.co.uk>
743
744 * rip_zebra.c (zebra_init): Install standard commands to
745 ZEBRA_NODE.
746
7471999-06-01 David Luyer <luyer@ucs.uwa.edu.au>
748
749 * ripd.c (rip_process_route): Add support for RIP version 1.
750
7511999-05-29 Kunihiro Ishiguro <kunihiro@zebra.org>
752
753 * rip_zebra.c: Change to use lib/zclient.[ch].
754
7551999-05-20 Carlos Alberto Barcenilla <barce@frlp.utn.edu.ar>
756
757 * ripd.c (rip_add_route): Change the existance route's metric check
758 to the condition specified by RFC2453.
759
7601999-05-17 Carlos Alberto Barcenilla <barce@frlp.utn.edu.ar>
761
762 * ripd.c (rip_process_route): Add the if metric to the route metric.
763
764 * ripd.c (rip_add_route): Deleted add if metric to the route.
765
7661999-05-16 Carlos Alberto Barcenilla <barce@frlp.utn.edu.ar>
767
768 * rip_interface.c (if_valid_neighbor): New function.
769
770 * ripd.c (rip_process_route): Added check whether the datagram
771 is from a valid neighbor.
772
7731999-05-15 Kunihiro Ishiguro <kunihiro@zebra.org>
774
775 * ripd.c (rip_process_route): Set interface pointer to rinfo.
776
7771999-05-15 Carlos Alberto Barcenilla <barce@frlp.utn.edu.ar>
778
779 * ripd.c (rip_check_address): Unicast and not net 0 or 127 check
780 added.
781
7821999-05-14 Stephen R. van den Berg <srb@cuci.nl>
783
784 * rip_main.c (signal_init): SIGTERM call sigint.
785 (sigint): Loggging more better message.
786
7871999-05-10 Kunihiro Ishiguro <kunihiro@zebra.org>
788
789 * ripd.c (rip_add_route): Fix previous route_unlock_node() chenge.
790
791 * rip_main.c (main): Change default zlog output to ZLOG_STDOUT for
792 debugging.
793
7941999-05-09 Patrick Koppen <koppen@rhrk.uni-kl.de>
795
796 * rip_interface.c (rip_request): Fix old semantics for fetching
797 connected address.
798
799 * ripd.c (rip_add_route): Update timer when the route is updated.
800
8011999-05-09 Carlos Alberto Barcenilla <barce@frlp.utn.edu.ar>
802
803 * rip_zebra.c (struct zebra): Add ridist_static, ridist_connect,
804 redist_rip, redist_ripng.
805
806 * rip_zebra.c (zebra_create): Updated for current zebra method.
807
808 * ripd.c (rip_add_route): Add missing route_unlock_node().
809
8101999-05-03 Kunihiro Ishiguro <kunihiro@zebra.org>
811
812 * ripd.c (rip_add_route): Add metric check. Reported by Carlos
813 Alberto Barcenilla <barce@frlp.utn.edu.ar>.
814
8151999-02-18 Peter Galbavy <Peter.Galbavy@knowledge.com>
816
817 * syslog support added
818
8191998-12-13 Kunihiro Ishiguro <kunihiro@zebra.org>
820
821 * ripd.c (rip_announce_func): Apply new lib functions.
822
8231998-12-09 Kunihiro Ishiguro <kunihiro@zebra.org>
824
825 * ripd.c (config_write_rip): Delete vector v argument.
826 * rip_zebra.c (config_write_zebra): Likewise.
827 * rip_interface.c (interface_config_write): Likewise.
828
8291998-09-07 Kunihiro Ishiguro <kunihiro@zebra.org>
830
831 * rip_announce.c (rip_rib_close): When ripd terminates delete all
832 added route.
833
8341998-09-01 Kunihiro Ishiguro <kunihiro@zebra.org>
835
836 * rip_interface.c: return read packet size.
837
8381998-05-18 Yamshita TAKAO <jargon@lares.dti.ne.jp>
839
840 * ripd.h: Modify for compile on Solaris.
841
8421998-05-07 Kunihiro Ishiguro <kunihiro@zebra.org>
843
844 * ripd.c: DEFUN function return CMD_SUCCESS.
845 change xmalloc to XMALLOC macro.
846
8471998-05-03 Kunihiro Ishiguro <kunihiro@zebra.org>
848
849 * rip_main.c: change CONFDIR to SYSCONFDIR.
850
8511998-05-01 Kunihiro Ishiguro <kunihiro@zebra.org>
852
853 * .cvsignore: added.
854
8551998-02-04 Kunihiro Ishiguro <kunihiro@zebra.org>
856
857 * rip_interface.c (config_write_interface): correct ADVERTISE spell.
858
859 * rip_main.c (main): add usage() and make cleanup.
860
8611998-01-05 Kunihiro Ishiguro <kunihiro@zebra.org>
862
863 * ripd.c (rip_version): add rip version command.
864
8651998-01-04 Kunihiro Ishiguro <kunihiro@zebra.org>
866
867 * rip_interface.c (zebra_get_interface): added to get
868 interface's information.
869
870 * ChangeLog: create.