blob: 1b018ee61babe9b66012197d04897fe23cd6df61 [file] [log] [blame]
hasso52dc7ee2004-09-23 19:18:23 +000012004-09-23 Hasso Tepper <hasso at quagga.net>
2
3 * *.[c|h]: list -> struct list *, listnode -> struct listnode *.
4
paul0b3acf42004-09-17 08:39:08 +000052004-09-17 Paul Jakma <paul@dishone.st>
6
7 * ripd.c: set receive buffer to a decent size, some systems have low
8 defaults. Problem noted and fix suggested by Stephan Schweizer
9 in [zebra 20967].
10
paul1a517862004-08-19 04:03:08 +0000112004-08-19 Paul Jakma <paul@dishone.st>
12
13 * rip_interface.c: (rip_interface_multicast_set) get rid
14 of extraneous if_pointopoint arg. ifp is accessible via connected.
15 pass connected->ifp->ifindex to setsockopt_multicast_ipv4.
16 * ripd.c: (rip_send_packet) update call to
17 rip_interface_multicast_set
18 * ripd.h: update rip_interface_multicast_set prototype
19
paul02ff83c2004-06-11 11:27:03 +0000202004-06-11 Sowmini Varadhan <sowmini.varadhan@sun.com>
21
22 * ripd.c: (rip_distribute_update_all) distribute list hook
23 function pointer prototype requires struct prefix_list * arg.
24 (rip_distribute_update_all_wrapper) update to pass required arg,
25 NULL.
26
paulca5e5162004-06-06 22:06:33 +0000272004-06-06 Paul Jakma <paul.jakma@sun.com>
28
29 * ripd.h: Add define for the RIPv2 Authentication Data family
30 Move the auth type defines up to where other defines live.
31 Add RIP_AUTH_MD5_COMPAT_SIZE, for backwards compatible
32 md5->auth_len size. Add md5_auth_len field to struct
33 rip_interface: (rip_interface_new) Init md5_auth_len to compatible
34 size.
35 (ip_rip_authentication_mode_cmd) Extended to handle setting
36 md5 auth-length. Appropriate aliases added.
37 (no_ip_rip_authentication_mode_cmd) Reset md5_auth_len to
38 compatible size.
39 (rip_interface_config_write) Teach it about md5_auth_len.
40 _always_ write out the auth-length, so that everyone will get
41 the setting in their config file, and hence allow for a future
42 change of default for md5_auth_len to be less painful - every md5
43 user will have this setting in their config file.
44 ripd.c: (rip_packet_dump) Change nasty hard coded constants to
45 symbolic defines. Change various tests of 'ntoh.(variable) ==
46 constant' to test 'variable == ntoh.(constant)'. Clean up
47 indentation on some long lines.
48 (rip_auth_simple_password) ditto.
49 (rip_auth_md5) ditto, also add length argument and sanity check
50 md5 data offset field. Sanity check md5 auth length, accept RFC
51 or old-ripd/cisco lengths.
52 (rip_auth_md5_set) as per (rip_packet_dump), also write out
53 the configured md5 auth length for the interface (old-ripd or rfc)
54 (rip_read) as per (rip_packet_dump)
55 (rip_write_rte) ditto
56 (rip_response_process) ditto
57 (rip_write_rte) ditto
58
paulc2bfbcc2004-06-04 01:42:38 +0000592004-06-04 JJ Ludman <jacques.ludman@sun.com>
60
61 * ripd.c: Interoperability fix. Correct value for MD5 auth length
62 is 16. Accept packets with this set to >= 16, and set to 16
63 ourselves.
64
paul11dde9c2004-05-31 14:00:00 +0000652004-05-31 Sowmini Varadhan <sowmini.varadhan@sun.com>
66
67 * ripd.c: Fixup compile warnings
68 * rip_routemap.c: Ditto
69
paul0a589352004-05-08 11:48:26 +0000702004-05-08 Paul Jakma <paul@dishone.st>
71
72 * rip_zebra.c: sync with zclient changes.
73 * rip_interface.c: ditto.
74
paul239389b2004-05-05 14:09:37 +0000752004-05-05 Anthony.Golia@morganstanley.com
76
77 * ripd.c: (rip_update_jitter) Bound jitter to a more sensible
78 value, eg 1/4 of update time.
79
paula87552c2004-05-03 20:00:17 +0000802004-05-03 Paul Jakma <paul@dishone.st>
81
82 * ripd.c: (rip_rte_process) fix typo in merge of previous patch
83 and run function through indent.
84
paulb94f9db2004-05-01 20:45:38 +0000852004-03-19 Jean-Yves Simon <lethalwp@tiscali.be>
86
paula87552c2004-05-03 20:00:17 +000087 * ripd.c: (rip_rte_process) make ripd also check on
88 administrative distance of his own links to update routes.
paulb94f9db2004-05-01 20:45:38 +000089
hassoda9c9a22004-03-18 02:40:55 +0000902004-03-18 sowmini.varadhan@sun.com
91
92 * ripd.c: rip_send_packet can get null connected address when
93 called in response to a unicast rip-request. Handle correctly.
94
hassoa1455d82004-03-03 19:36:24 +0000952004-03-03 Krzysztof Oledzki <oleq@ans.pl>
96
hassocaa6f8a2004-03-03 19:48:48 +000097 * ripd.c: fix "show ip rip" and per interface rip version selection.
hassoa1455d82004-03-03 19:36:24 +000098
paul931cd542004-01-23 15:31:42 +0000992004-01-23 sowmini.varadhan@sun.com
100
101 * rip_interface.c: obsolete unbind code in
102 rip_interface_multicast_set, and instead do the more portable
103 (though slower) method of creating a socket for each outgoing packet
104 and binding the source address on the new socket.
105 * rip_interface.c, ripd.c, ripd.h: Modify rip_request_send so that
106 source address is determined by the caller of rip_request_send for
107 ripv1 packets and non-multicast interfaces (rip_request_send loops
108 over all connected address in all other cases).
109 * rip_send_packet: don't send packets with source set to
110 ZEBRA_IFA_SECONDARY connected addresses; improved debug messages;
111
paulf38a4712003-06-07 01:10:00 +00001122003-06-07 Andrew J. Schorr <aschorr@telemetry-investments.com>
113
114 * Allow ripd to receive RIPv1
115 * add default as valid param to passive-interface command
116
hasso16705132003-05-25 14:49:19 +00001172003-05-25 Vincent Jardin <vjardin@wanadoo.fr>
118
paulf38a4712003-06-07 01:10:00 +0000119 * 6Wind patch merge.
hasso16705132003-05-25 14:49:19 +0000120
paul445f1432003-05-16 19:00:31 +00001212003-04-19 Hasso Tepper <hasso@estpak.ee>
122
123 * rip_routemap.c: sync daemon's route-map commands to have same
124 syntax
125
paul718e3742002-12-13 20:15:29 +00001262002-07-07 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
127
128 * zebra-0.93 released.
129
1302002-06-30 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
131
132 * ripd.c (rip_output_process): When outgoing interface is same as
133 next hop interface, announce RIPv2 next hop otherwise set next hop
134 to 0. Revert previous change then take 6WIND way.
135
1362001-09-14 Akihiro Mizutani <mizutani@dml.com>
137
138 * ripd.c: RIP enabled interface's route is advertised by default.
139
1402001-08-28 NOGUCHI Kay <kay@v6.access.co.jp>
141
142 * rip_snmp.c (rip_ifaddr_delete): Add route_node_lookup() return
143 value check.
144
145 * rip_interface.c (rip_multicast_leave): Fix bug of multiple IP
146 address on one interface multicast join/leave bug.
147
1482001-08-26 NOGUCHI Kay <kay@v6.access.co.jp>
149
150 * rip_interface.c (no_rip_passive_interface): Add NO_STR.
151
1522001-08-19 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
153
154 * zebra-0.92a released.
155
1562001-08-15 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
157
158 * zebra-0.92 released.
159
1602001-06-17 Kunihiro Ishiguro <kunihiro@zebra.org>
161
162 * rip_routemap.c (route_match_ip_address_prefix_list): Add match
163 ip next-hop prefix-list WORD.
164
1652001-02-18 Kunihiro Ishiguro <kunihiro@zebra.org>
166
167 * rip_interface.c (rip_passive_interface_clean): Call
168 rip_passive_interface_apply_all.
169
1702001-02-12 Kunihiro Ishiguro <kunihiro@zebra.org>
171
172 * ripd.c (rip_response_process): Multicast address nexthop check
173 is moved from rip_nexthop_check.
174
1752001-02-08 Matthew Grant <grantma@anathoth.gen.nz>
176
177 * rip_interface.c (ipv4_multicast_join): Use
178 setsockopt_multicast_ipv4.
179 (ipv4_multicast_leave): Likewise.
180 (rip_if_ipv4_address_check): Interface which has IPv4 address can
181 be enabled.
182
1832001-02-08 Kunihiro Ishiguro <kunihiro@zebra.org>
184
185 * rip_interface.c (rip_interface_delete): To support pseudo
186 interface do not free interface structure.
187 * ripd.c (rip_output_process): If output interface is in simple
188 password authentication mode, we need space for authentication
189 data.
190
1912001-02-01 Kunihiro Ishiguro <kunihiro@zebra.org>
192
193 * ripd.c (rip_nexthop_check): Fix multicast address nexthop check.
194
195 * zebra-0.91 is released.
196
1972001-01-27 Kunihiro Ishiguro <kunihiro@zebra.org>
198
199 * ripd.c (show_ip_rip): Show metric infinity route's timeout.
200 (rip_rte_process): If current route is metric infinity, route is
201 replaced with received rte.
202 (rip_redistribute_delete): When redistribute route is deleted,
203 perform poisoned reverse.
204 (rip_redistribute_withdraw): Likewise.
205
2062001-01-25 Kunihiro Ishiguro <kunihiro@zebra.org>
207
208 * ripd.c (rip_response_process): RIPv2 routing table entry with
209 non directly reachable nexthop was dropped. The code is changed
210 to treat it as 0.0.0.0 nexthop.
211 (rip_destination_check): Check net 0 address destination.
212 (rip_nexthop_check): New function for checking nexthop address
213 validity.
214
2152001-01-15 Kunihiro Ishiguro <kunihiro@zebra.org>
216
217 * ripd.c (rip_request_process): Triggered update only send changed
218 route.
219
220 * rip_interface.c: Delete RIP_API part until new implementation
221 comes out.
222
223 * rip_snmp.: Likewise.
224
225 * rip_zebra.c: Likewise.
226
227 * ripd.c: Likewise.
228
2292001-01-11 Kunihiro Ishiguro <kunihiro@zebra.org>
230
231 * rip_interface.c (rip_if_init): Remove HAVE_IF_PSEUDO part.
232
2332001-01-09 Kunihiro Ishiguro <kunihiro@zebra.org>
234
235 * zebra-0.90 is released.
236
2372001-01-01 Kunihiro Ishiguro <kunihiro@zebra.org>
238
239 * ripd.h (RIP_VTYSH_PATH): Change "/tmp/ripd" to "/tmp/.ripd".
240
2412000-12-25 David Lipovkov <davidl@nbase.co.il>
242
243 * ripd.c (rip_rte_process): When a route is in garbage collection
244 process (invalid with metric 16) and a router receives the same
245 route with valid metric then route was not installed into zebra
246 rib, but only into ripd rib. Moreover , it will never get into
247 zebra rib, because ripd wrongly assumes it's already there.
248 (rip_redistribute_add): When doing redistribute into rip other
249 route (e.g. connected) and the same route exists in ripd rib we
250 changed it in place - bug. Now we don't forget to remove old route
251 from zebra.
252 (rip_timeout): When removing routes from zebra I made sure that we
253 remove route with the metric we have in zebra and not the new
254 one. It doesn't make a difference now,but could be significant
255 when multipath support is done.
256
2572000-12-25 David Lipovkov <davidl@nbase.co.il>
258
259 * rip_zebra.c (rip_metric_unset): Fix bug of metric value unset.
260
2612000-11-25 Frank van Maarseveen <F.vanMaarseveen@inter.NL.net>
262
263 * ripd.c (rip_request_process): Check passive flag of the
264 interface.
265
2662000-11-23 Frank van Maarseveen <F.vanMaarseveen@inter.NL.net>
267
268 * rip_interface.c (rip_multicast_join): When IP_ADD_MEMBERSHIP
269 failed do not set runnning flag to the interface.
270
2712000-11-16 Kunihiro Ishiguro <kunihiro@zebra.org>
272
273 * ripd.c (rip_output_process): Memory leak related classfull
274 network generation is fixed.
275
2762000-11-16 Frank van Maarseveen <F.vanMaarseveen@inter.NL.net>
277
278 * rip_interface.c (if_check_address): Obsolete pointopoint address
279 check is removed.
280
2812000-11-02 Frank van Maarseveen <F.vanMaarseveen@inter.NL.net>
282
283 * rip_interface.c (if_check_address): Add pointopoint address
284 check.
285 (rip_interface_up): Add check for passive interface when interface
286 goes up.
287
2882000-10-23 Jochen Friedrich <jochen@scram.de>
289
290 * rip_snmp.c: rip_oid and ripd_oid are used in smux_open after it
291 is registered. So those variables must be static.
292
2932000-10-19 Kunihiro Ishiguro <kunihiro@zebra.org>
294
295 * rip_interface.c: Change to "no ip rip (send|receive)" command
296 accept version number argument.
297
2982000-10-17 Akihiro Mizutani <mizutani@dml.com>
299
300 * rip_routemap.c (route_set_ip_nexthop_compile): Change "match ip
301 next-hop" from IP address to access-list name.
302
3032000-10-17 Kunihiro Ishiguro <kunihiro@zebra.org>
304
305 * rip_peer.c: Change ot use linklist.c instaed of newlist.c.
306
3072000-10-16 Kunihiro Ishiguro <kunihiro@zebra.org>
308
309 * rip_offset.c: Change to use linklist.c instead of newlist.c.
310
3112000-10-02 Kunihiro Ishiguro <kunihiro@zebra.org>
312
313 * zebra-0.89 is released.
314
3152000-09-26 Akihiro Mizutani <mizutani@dml.com>
316
317 * rip_routemap.c (match_ip_nexthop): Add next-hop format check.
318
3192000-09-18 David Lipovkov <dlipovkov@OpticalAccess.com>
320
321 * rip_interface.c (ripd_api_get_if_rx_version): Corrects rip SNMP
322 and rip API functions dealing with rip version.
323
324 * rip_snmp.c (Status_Valid): SNMPv2-TC TEXTUAL-CONVENTION.
325
3262000-09-10 Kunihiro Ishiguro <kunihiro@zebra.org>
327
328 * rip_snmp.c (rip2IfLookup): Use rip_ifaddr_lookup_next() instead
329 of rip_if_lookup_next().
330
331 * rip_interface.c (rip_enable_network_lookup): Interface enable
332 check by interface's address with /32 prefix.
333
334 * ripd.c (rip_read): When RIP is configured with authentication
335 and no authentication in incoming packet, drop the packet.
336
337 * rip_interface.c (rip_interface_reset): RIP_AUTH_SIMPLE_PASSWORD
338 is default mode of authentication.
339 (rip_interface_new): Likewise.
340 (no_ip_rip_authentication_mode): Likewise.
341
342 * ripd.c (rip_read): Likewise.
343
3442000-09-10 David Lipovkov <davidl@nbase.co.il>
345
346 * rip_snmp.c: Set ASN_INTEGER v->type where it is needed.
347
3482000-09-08 Kunihiro Ishiguro <kunihiro@zebra.org>
349
350 * ripd.c (rip_auth_simple_password): Simple password
351 authentication using key-chain.
352 (rip_write_rte): Likewise.
353
354 * rip_interface.c (ip_rip_authentication_key_chain): Add check for
355 authentication string configuration.
356
3572000-09-08 Akihiro Mizutani <mizutani@dml.com>
358
359 * ripd.c (rip_write_rte): Add check for ri->auth_str.
360
3612000-09-07 Kunihiro Ishiguro <kunihiro@zebra.org>
362
363 * ripd_api.h: New file is added.
364
3652000-08-22 Kunihiro Ishiguro <kunihiro@zebra.org>
366
367 * ripd.c (rip_rte_process): rip_route_process() is renamed to
368 rip_rte_process() to clarify meanings of the function.
369 rip_route_process() is newly added to process RIP route selection.
370
3712000-08-18 Kunihiro Ishiguro <kunihiro@zebra.org>
372
373 * ripd.c (rip_incoming_filter): Extract incoming filter code to
374 function from rip_route_process(). Add check for all interface
375 filter.
376 (rip_outgoing_filter): Extract incoming filter code to function
377 from rip_output_process(). Add check for all interface filter.
378
379 * rip_zebra.c (rip_redistribute_clean): Reset redistribute status
380 when "no router rip" is performed.
381
382 * rip_interface.c (rip_interface_clean): Reset interface's RIP
383 enable status.
384
3852000-08-17 Kunihiro Ishiguro <kunihiro@zebra.org>
386
387 * ripd.c (rip_route_process): When metric infinity is received the
388 route is removed from service immediately.
389 (rip_timeout): Likewise.
390 (rip_garbage_collect): Do not delete route in garbage collection.
391 (rip_output_process): Check metric_out exceed metric infinity.
392
393 * zebra-0.88 is released.
394
3952000-08-15 Kunihiro Ishiguro <kunihiro@zebra.org>
396
397 * ripd.c (rip_distance_apply): Unlock node when there is matched
398 node.
399
4002000-08-13 Akihiro Mizutani <mizutani@dml.com>
401
402 * rip_routemap.c (match_ip_nexthop): Add check for IP address
403 validness.
404 (no_set_metric): Add new ALIAS.
405
4062000-08-07 Kunihiro Ishiguro <kunihiro@zebra.org>
407
408 * ripd.h (struct rip ): Add distance.
409
4102000-08-05 Kunihiro Ishiguro <kunihiro@zebra.org>
411
412 * rip_zebra.c (rip_zebra_ipv4_add): Use new Zebra api to register
413 routes. Pass RIP metric value to zebra.
414
4152000-08-02 Kunihiro Ishiguro <kunihiro@zebra.org>
416
417 * rip_main.c (main): Make struct thread thread from global
418 variable to local variable in main.
419
4202000-08-06 Kunihiro Ishiguro <kunihiro@zebra.org>
421
422 * ripd.c (rip_packet_dump): Add MD5 authentication dump function.
423 (rip_auth_md5): RIP MD5 authentication packet receive works.
424
4252000-08-02 David Lipovkov <davidl@nbase.co.il>
426
427 * rip_interface.c (rip_if_init): Install interface "pseudo"
428 commands.
429 (rip_interface_delete): Do not call if_delete() when interface is
430 pseudo interface.
431
4322000-07-31 Kunihiro Ishiguro <kunihiro@zebra.org>
433
434 * rip_interface.c (ip_rip_authentication_mode): "ip rip
435 authentication mode (md5|text)" is added.
436 (ip_rip_authentication_key_chain): "ip rip authentication
437 key-chain KEY-CHAIN" is added.
438 (rip_interface_clean): Clean all interface configuration.
439 (rip_interface_reset): Reset all interface configuration.
440 (rip_clean_network): Clean rip_enable_network.
441
442 * ripd.h (struct rip_interface): Add key_chain member.
443
444 * ripd.c: Include md5-gnu.h.
445
4462000-07-30 Kunihiro Ishiguro <kunihiro@zebra.org>
447
448 * ripd.h (RIP_NO_AUTH): Change RIP_NO_AUTH value from 1 to 0.
449
450 * ripd.c (rip_authentication): Use RIP_AUTH_SIMPLE_PASSWORD
451 instead of raw value 2.
452 (rip_write_rte): Likewise.
453 (rip_write_rte): Check ri->auth_type instead of ri->auth_str.
454
4552000-07-30 David Lipovkov <davidl@nbase.co.il>
456
457 * rip_interface.c (rip_if_down): Do not delete ZEBRA_ROUTE_KERNEL
458 route.
459
4602000-07-27 Kunihiro Ishiguro <kunihiro@zebra.org>
461
462 * ripd.c (rip_update_process): Add "passive-interface" command.
463
464 * ripd.h (struct rip_interface): Add passive member to struct
465 rip_interface.
466
4672000-07-24 Kunihiro Ishiguro <kunihiro@zebra.org>
468
469 * rip_interface.c (rip_if_init): Multiple RIP routes for one
470 prefix change. The codes are enclosed by #ifdef NEW_RIP_TABLE.
471
4722000-07-24 Akihiro Mizutani <mizutani@dml.com>
473
474 * rip_interface.c (rip_if_init): Use install_default() for
475 INTERFACE_NODE.
476
4772000-07-24 Kunihiro Ishiguro <kunihiro@zebra.org>
478
479 * ripd.c: First update timer will be invoked in two seconds.
480
4812000-07-09 Jochen Friedrich <jochen@scram.de>
482
483 * rip_snmp.c: Local function definitions to static. Add INTEGER
484 ASN_INTEGER and TIMETICKS ASN_TIMETICKS definition.
485 (rip2PeerLookup): Peer with domain lookup implemented.
486 (rip2PeerTable): Temporary disable RIP2PEERLASTUPDATE value
487 support due to unknown SNMP agent startup time.
488
4892000-07-05 Kunihiro Ishiguro <kunihiro@zebra.org>
490
491 * ripd.h: Sweep obsolete definitions.
492
493 * rip_interface.c (rip_split_horizon): Add "ip split-horizon"
494 command.
495
496 * ripd.c (rip_output_process): Remove split_horizon argument.
497 (rip_update_process): Likewise.
498
499 * ripd.h (struct rip_interface): Add split_horizon flag to struct
500 rip_interface.
501
5022000-07-04 Akihiro Mizutani <mizutani@dml.com>
503
504 * ripd.c (rip_version): Change VERSION to <1-2>.
505 Add "no version" command.
506
5072000-07-03 Kunihiro Ishiguro <kunihiro@zebra.org>
508
509 * rip_zebra.c (rip_redistribute_type_metric): "redistribute TYPE
510 metric <0-16>" command is added.
511
512 * rip_routemap.c (route_set_metric): Set metric_set when metric is
513 modified.
514
515 * ripd.h (struct rip_info): To check route-map set metric or not,
516 new member metric_set is added to struct rip_info.
517
518 * ripd.c (rip_route_process): Move metric handling code from
519 rip_response_process() to rip_route_process().
520 (rip_output_process): Set output offset-list metric.
521
5222000-07-02 Kunihiro Ishiguro <kunihiro@zebra.org>
523
524 * rip_offset.c (rip_offset_list): New file for offset-list.
525
5262000-07-02 Akihiro Mizutani <mizutani@dml.com>
527
528 * ripd.h (struct rip ): Add default_metric.
529
530 * ripd.c (rip_default_metric): "default-metric <1-16>" command is
531 added.
532 (config_write_rip): Change configuration order.
533
534 * rip_zebra.c: Fix help strings.
535
5362000-07-02 David Lipovkov <davidl@nbase.co.il>
537
538 * rip_interface.c (rip_if_init): Add IF_DELETE_HOOK.
539
5402000-07-01 Kunihiro Ishiguro <kunihiro@zebra.org>
541
542 * ripd.c (rip_output_process): If specified route-map does not
543 exist, it treated as deny all.
544
5452000-06-30 Kunihiro Ishiguro <kunihiro@zebra.org>
546
547 * rip_routemap.c (rip_route_map_init): Call rip_route_map_update
548 when route-map is deleted.
549
5502000-06-28 Kunihiro Ishiguro <kunihiro@zebra.org>
551
552 * rip_routemap.c (set_metric): For consistency with bgpd's set
553 metric, value range is set to <0-4294967295>.
554
5552000-06-28 David Lipovkov <davidl@nbase.co.il>
556
557 * rip_routemap.c (rip_route_map_update): Add check for rip is
558 enabled or not for avoid core dump.
559
560 * rip_debug.c (debug_rip_packet_direct): Fix bug of setting
561 rip_debug_packet flag.
562
5632000-06-13 David Lipovkov <davidl@nbase.co.il>
564
565 * rip_interface.c (rip_interface_delete): All work is done in
566 rip_if_down().
567
5682000-06-06 Kunihiro Ishiguro <kunihiro@zebra.org>
569
570 * ripd.c (rip_redistribute_delete): Fix bug of missing
571 route_unlock_node() when redistribute route is not found.
572
5732000-06-05 Akihirof Mizutani <mizutani@dml.com>
574
575 * rip_debug.c (rip_debug_init): Disable show debugging in
576 VIEW_NODE like other protocol daemon.
577
578 * rip_routemap.c: Change command argument to more comprehensive.
579
580 METRIC -> <0-16>
581 IFNAME -> WORD
582 IP_ADDR -> A.B.C.D
583 ACCSESS_LIST -> WORD
584
5852000-06-05 David Lipovkov <davidl@nbase.co.il>
586
587 * rip_interface.c (rip_interface_delete): Delete all routes
588 include static and kernel through the interface , because even if
589 the interface is added again there is no guarantee that it will
590 get the same ifindex as before.
591
5922000-05-31 Akihirof Mizutani <mizutani@dml.com>
593
594 * rip_debug.c: Fix rip debug help string.
595
5962000-04-27 Mirko Karanovic <mkaranov@torsel.alcatel.com>
597
598 * rip_interface.c (rip_interface_down): Remove interface from
599 multicast group when interface goes down.
600
6012000-04-03 David Lipovkov <davidl@nbase.co.il>
602
603 * rip_interface.c (rip_interface_down): Implemented rip functions
604 for interface up/down events: rip_interface_up() and
605 rip_interface_down()
606
6072000-03-16 David Lipovkov <davidl@nbase.co.il>
608
609 * rip_zebra.c (rip_zclient_init): Added rip functions for
610 interface up/down events.
611
6122000-02-15 Hidetoshi Shimokawa <simokawa@sat.t.u-tokyo.ac.jp>
613
614 * ripd.c (rip_write_rte): "set metic" in route-map has no effect
615 for RIPv1 in ripd. It worked fine for RIPv2.
616
6172000-01-17 Kunihiro Ishiguro <kunihiro@zebra.org>
618
619 * ripd.c (show_ip_protocols_rip): Fix bug of "show ip protocls"
620 mis-display RIP version.
621
622 * ripd.h (struct rip_peer): Add timeout thread to rip_peer
623 structure.
624
6252000-01-16 Kunihiro Ishiguro <kunihiro@zebra.org>
626
627 * rip_peer.c: Add new file for supporting RIP peer.
628
6291999-12-26 David Lipovkov <davidl@nbase.co.il>
630
631 * ripd.c (rip_authentication): RIP authantication string is 16
632 bytes long.
633
6341999-12-10 Kunihiro Ishiguro <kunihiro@zebra.org>
635
636 * ripd.c (rip_read): Add check for minimum packet length.
637 Authentication check is moved from rip_process_response() to
638 rip_read(). Patch from David Lipovkov <davidl@nbase.co.il> is
639 applied then add rte number check by Kunihiro Ishiguro
640 <kunihiro@zebra.org>.
641
6421999-12-07 Kunihiro Ishiguro <kunihiro@zebra.org>
643
644 * ripd.c (rip_response_process): In case of packet is RIPv2 and
645 network is non zero and netmask is zero, apply netmask rule as
646 same as RIPv1.
647
6481999-11-06 Kunihiro Ishiguro <kunihiro@zebra.org>
649
650 * ripd.c (rip_timers): Fix bug of timers basic argument format.
651
6521999-11-03 Kunihiro Ishiguro <kunihiro@zebra.org>
653
654 * rip_snmp.c (rip2IfConfAddress): Forgot to include
655 RIP2IFCONFDOMAIN.
656
6571999-10-28 Kunihiro Ishiguro <kunihiro@zebra.org>
658
659 * ripd.h (struct rip_peer): New structure added.
660
6611999-10-26 Kunihiro Ishiguro <kunihiro@zebra.org>
662
663 * rip_zebra.c (rip_zebra_ipv4_add): Increment
664 rip_global_route_changes when route change occur.
665 (rip_zebra_ipv4_delete): Likewise.
666
667 * ripd.c (rip_request_process): Increment rip_global_queries when
668 reply to the query is sent.
669
6701999-10-25 Kunihiro Ishiguro <kunihiro@zebra.org>
671
672 * rip_debug.c (rip_debug_reset): Reset function added.
673
674 * ripd.c (rip_update_process): Logging bug is fixed.
675
6761999-10-10 Marc Boucher <marc@mbsi.ca>
677
678 * ripd.c (config_write_rip): Add config_write_distribute() call.
679
6801999-09-29 Kunihiro Ishiguro <kunihiro@zebra.org>
681
682 * ripd.c (rip_distribute_update): Fix bug of access-list
683 prefix-list updates.
684
6851999-09-10 VOP <vop@unity.net>
686
687 * rip_zebra.c: Add redistribute route-map feature.
688
6891999-09-10 Kunihiro Ishiguro <kunihiro@zebra.org>
690
691 * ripd.c (rip_response_process): Add check for given prefix is
692 given mask applied one.
693
6941999-09-03 VOP <vop@unity.net>
695
696 * rip_interface.c (rip_interface_multicast_set): Bug fix about
697 setting multicast interface.
698
6991999-09-02 VOP <vop@unity.net>
700
701 * rip_routemap.c: New file added.
702
7031999-09-02 Kunihiro Ishiguro <kunihiro@zebra.org>
704
705 * ripd.c (show_ip_protocols_rip): Show next update time.
706 (show_ip_protocols_rip): Show redistribute information.
707
7081999-08-25 Kunihiro Ishiguro <kunihiro@zebra.org>
709
710 * RIPv2-MIB.txt: New file added.
711
712 * rip_snmp.c: New file added.
713
7141999-08-24 Kunihiro Ishiguro <kunihiro@zebra.org>
715
716 * rip_interface.c (ip_rip_authentication_string): RIPv2
717 authentication command is added.
718
7191999-08-23 Kunihiro Ishiguro <kunihiro@zebra.org>
720
721 * rip_interface.c (rip_interface_multicast_set): Process of
722 setting IP_MULTICAST_IF on specific interface.
723
724 * ripd.c (rip_read): Add packet size check.
725
7261999-08-16 Kunihiro Ishiguro <kunihiro@zebra.org>
727
728 * ripd.c (rip_request_process): Fill in RIP_METRIC_INFINITY with
729 network byte order using htonl ().
730 (rip_response_process): Pass host byte order address to IN_CLASSC
731 and IN_CLASSB macro.
732
7331999-08-08 davidm@nbase.co.il (David Mozes)
734
735 * rip_zebra.c (rip_zebra_read_ipv4): Fix split horizon problem.
736
7371999-07-03 Kunihiro Ishiguro <kunihiro@zebra.org>
738
739 * ripd.c (rip_timer_set): Function added.
740
7411999-07-01 Kunihiro Ishiguro <kunihiro@zebra.org>
742
743 * rip_debug.c: New file added.
744 rip_debug.h: New file added.
745
7461999-07-01 Rick Payne <rickp@rossfell.co.uk>
747
748 * rip_zebra.c (zebra_init): Install standard commands to
749 ZEBRA_NODE.
750
7511999-06-01 David Luyer <luyer@ucs.uwa.edu.au>
752
753 * ripd.c (rip_process_route): Add support for RIP version 1.
754
7551999-05-29 Kunihiro Ishiguro <kunihiro@zebra.org>
756
757 * rip_zebra.c: Change to use lib/zclient.[ch].
758
7591999-05-20 Carlos Alberto Barcenilla <barce@frlp.utn.edu.ar>
760
761 * ripd.c (rip_add_route): Change the existance route's metric check
762 to the condition specified by RFC2453.
763
7641999-05-17 Carlos Alberto Barcenilla <barce@frlp.utn.edu.ar>
765
766 * ripd.c (rip_process_route): Add the if metric to the route metric.
767
768 * ripd.c (rip_add_route): Deleted add if metric to the route.
769
7701999-05-16 Carlos Alberto Barcenilla <barce@frlp.utn.edu.ar>
771
772 * rip_interface.c (if_valid_neighbor): New function.
773
774 * ripd.c (rip_process_route): Added check whether the datagram
775 is from a valid neighbor.
776
7771999-05-15 Kunihiro Ishiguro <kunihiro@zebra.org>
778
779 * ripd.c (rip_process_route): Set interface pointer to rinfo.
780
7811999-05-15 Carlos Alberto Barcenilla <barce@frlp.utn.edu.ar>
782
783 * ripd.c (rip_check_address): Unicast and not net 0 or 127 check
784 added.
785
7861999-05-14 Stephen R. van den Berg <srb@cuci.nl>
787
788 * rip_main.c (signal_init): SIGTERM call sigint.
789 (sigint): Loggging more better message.
790
7911999-05-10 Kunihiro Ishiguro <kunihiro@zebra.org>
792
793 * ripd.c (rip_add_route): Fix previous route_unlock_node() chenge.
794
795 * rip_main.c (main): Change default zlog output to ZLOG_STDOUT for
796 debugging.
797
7981999-05-09 Patrick Koppen <koppen@rhrk.uni-kl.de>
799
800 * rip_interface.c (rip_request): Fix old semantics for fetching
801 connected address.
802
803 * ripd.c (rip_add_route): Update timer when the route is updated.
804
8051999-05-09 Carlos Alberto Barcenilla <barce@frlp.utn.edu.ar>
806
807 * rip_zebra.c (struct zebra): Add ridist_static, ridist_connect,
808 redist_rip, redist_ripng.
809
810 * rip_zebra.c (zebra_create): Updated for current zebra method.
811
812 * ripd.c (rip_add_route): Add missing route_unlock_node().
813
8141999-05-03 Kunihiro Ishiguro <kunihiro@zebra.org>
815
816 * ripd.c (rip_add_route): Add metric check. Reported by Carlos
817 Alberto Barcenilla <barce@frlp.utn.edu.ar>.
818
8191999-02-18 Peter Galbavy <Peter.Galbavy@knowledge.com>
820
821 * syslog support added
822
8231998-12-13 Kunihiro Ishiguro <kunihiro@zebra.org>
824
825 * ripd.c (rip_announce_func): Apply new lib functions.
826
8271998-12-09 Kunihiro Ishiguro <kunihiro@zebra.org>
828
829 * ripd.c (config_write_rip): Delete vector v argument.
830 * rip_zebra.c (config_write_zebra): Likewise.
831 * rip_interface.c (interface_config_write): Likewise.
832
8331998-09-07 Kunihiro Ishiguro <kunihiro@zebra.org>
834
835 * rip_announce.c (rip_rib_close): When ripd terminates delete all
836 added route.
837
8381998-09-01 Kunihiro Ishiguro <kunihiro@zebra.org>
839
840 * rip_interface.c: return read packet size.
841
8421998-05-18 Yamshita TAKAO <jargon@lares.dti.ne.jp>
843
844 * ripd.h: Modify for compile on Solaris.
845
8461998-05-07 Kunihiro Ishiguro <kunihiro@zebra.org>
847
848 * ripd.c: DEFUN function return CMD_SUCCESS.
849 change xmalloc to XMALLOC macro.
850
8511998-05-03 Kunihiro Ishiguro <kunihiro@zebra.org>
852
853 * rip_main.c: change CONFDIR to SYSCONFDIR.
854
8551998-05-01 Kunihiro Ishiguro <kunihiro@zebra.org>
856
857 * .cvsignore: added.
858
8591998-02-04 Kunihiro Ishiguro <kunihiro@zebra.org>
860
861 * rip_interface.c (config_write_interface): correct ADVERTISE spell.
862
863 * rip_main.c (main): add usage() and make cleanup.
864
8651998-01-05 Kunihiro Ishiguro <kunihiro@zebra.org>
866
867 * ripd.c (rip_version): add rip version command.
868
8691998-01-04 Kunihiro Ishiguro <kunihiro@zebra.org>
870
871 * rip_interface.c (zebra_get_interface): added to get
872 interface's information.
873
874 * ChangeLog: create.