blob: d83714ae059e18f40d6c349f4c19da7cf5f0dc21 [file] [log] [blame]
paulf38a4712003-06-07 01:10:00 +000012003-06-07 Andrew J. Schorr <aschorr@telemetry-investments.com>
2
3 * Allow ripd to receive RIPv1
4 * add default as valid param to passive-interface command
5
hasso16705132003-05-25 14:49:19 +000062003-05-25 Vincent Jardin <vjardin@wanadoo.fr>
7
paulf38a4712003-06-07 01:10:00 +00008 * 6Wind patch merge.
hasso16705132003-05-25 14:49:19 +00009
paul445f1432003-05-16 19:00:31 +0000102003-04-19 Hasso Tepper <hasso@estpak.ee>
11
12 * rip_routemap.c: sync daemon's route-map commands to have same
13 syntax
14
paul718e3742002-12-13 20:15:29 +0000152002-07-07 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
16
17 * zebra-0.93 released.
18
192002-06-30 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
20
21 * ripd.c (rip_output_process): When outgoing interface is same as
22 next hop interface, announce RIPv2 next hop otherwise set next hop
23 to 0. Revert previous change then take 6WIND way.
24
252001-09-14 Akihiro Mizutani <mizutani@dml.com>
26
27 * ripd.c: RIP enabled interface's route is advertised by default.
28
292001-08-28 NOGUCHI Kay <kay@v6.access.co.jp>
30
31 * rip_snmp.c (rip_ifaddr_delete): Add route_node_lookup() return
32 value check.
33
34 * rip_interface.c (rip_multicast_leave): Fix bug of multiple IP
35 address on one interface multicast join/leave bug.
36
372001-08-26 NOGUCHI Kay <kay@v6.access.co.jp>
38
39 * rip_interface.c (no_rip_passive_interface): Add NO_STR.
40
412001-08-19 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
42
43 * zebra-0.92a released.
44
452001-08-15 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
46
47 * zebra-0.92 released.
48
492001-06-17 Kunihiro Ishiguro <kunihiro@zebra.org>
50
51 * rip_routemap.c (route_match_ip_address_prefix_list): Add match
52 ip next-hop prefix-list WORD.
53
542001-02-18 Kunihiro Ishiguro <kunihiro@zebra.org>
55
56 * rip_interface.c (rip_passive_interface_clean): Call
57 rip_passive_interface_apply_all.
58
592001-02-12 Kunihiro Ishiguro <kunihiro@zebra.org>
60
61 * ripd.c (rip_response_process): Multicast address nexthop check
62 is moved from rip_nexthop_check.
63
642001-02-08 Matthew Grant <grantma@anathoth.gen.nz>
65
66 * rip_interface.c (ipv4_multicast_join): Use
67 setsockopt_multicast_ipv4.
68 (ipv4_multicast_leave): Likewise.
69 (rip_if_ipv4_address_check): Interface which has IPv4 address can
70 be enabled.
71
722001-02-08 Kunihiro Ishiguro <kunihiro@zebra.org>
73
74 * rip_interface.c (rip_interface_delete): To support pseudo
75 interface do not free interface structure.
76 * ripd.c (rip_output_process): If output interface is in simple
77 password authentication mode, we need space for authentication
78 data.
79
802001-02-01 Kunihiro Ishiguro <kunihiro@zebra.org>
81
82 * ripd.c (rip_nexthop_check): Fix multicast address nexthop check.
83
84 * zebra-0.91 is released.
85
862001-01-27 Kunihiro Ishiguro <kunihiro@zebra.org>
87
88 * ripd.c (show_ip_rip): Show metric infinity route's timeout.
89 (rip_rte_process): If current route is metric infinity, route is
90 replaced with received rte.
91 (rip_redistribute_delete): When redistribute route is deleted,
92 perform poisoned reverse.
93 (rip_redistribute_withdraw): Likewise.
94
952001-01-25 Kunihiro Ishiguro <kunihiro@zebra.org>
96
97 * ripd.c (rip_response_process): RIPv2 routing table entry with
98 non directly reachable nexthop was dropped. The code is changed
99 to treat it as 0.0.0.0 nexthop.
100 (rip_destination_check): Check net 0 address destination.
101 (rip_nexthop_check): New function for checking nexthop address
102 validity.
103
1042001-01-15 Kunihiro Ishiguro <kunihiro@zebra.org>
105
106 * ripd.c (rip_request_process): Triggered update only send changed
107 route.
108
109 * rip_interface.c: Delete RIP_API part until new implementation
110 comes out.
111
112 * rip_snmp.: Likewise.
113
114 * rip_zebra.c: Likewise.
115
116 * ripd.c: Likewise.
117
1182001-01-11 Kunihiro Ishiguro <kunihiro@zebra.org>
119
120 * rip_interface.c (rip_if_init): Remove HAVE_IF_PSEUDO part.
121
1222001-01-09 Kunihiro Ishiguro <kunihiro@zebra.org>
123
124 * zebra-0.90 is released.
125
1262001-01-01 Kunihiro Ishiguro <kunihiro@zebra.org>
127
128 * ripd.h (RIP_VTYSH_PATH): Change "/tmp/ripd" to "/tmp/.ripd".
129
1302000-12-25 David Lipovkov <davidl@nbase.co.il>
131
132 * ripd.c (rip_rte_process): When a route is in garbage collection
133 process (invalid with metric 16) and a router receives the same
134 route with valid metric then route was not installed into zebra
135 rib, but only into ripd rib. Moreover , it will never get into
136 zebra rib, because ripd wrongly assumes it's already there.
137 (rip_redistribute_add): When doing redistribute into rip other
138 route (e.g. connected) and the same route exists in ripd rib we
139 changed it in place - bug. Now we don't forget to remove old route
140 from zebra.
141 (rip_timeout): When removing routes from zebra I made sure that we
142 remove route with the metric we have in zebra and not the new
143 one. It doesn't make a difference now,but could be significant
144 when multipath support is done.
145
1462000-12-25 David Lipovkov <davidl@nbase.co.il>
147
148 * rip_zebra.c (rip_metric_unset): Fix bug of metric value unset.
149
1502000-11-25 Frank van Maarseveen <F.vanMaarseveen@inter.NL.net>
151
152 * ripd.c (rip_request_process): Check passive flag of the
153 interface.
154
1552000-11-23 Frank van Maarseveen <F.vanMaarseveen@inter.NL.net>
156
157 * rip_interface.c (rip_multicast_join): When IP_ADD_MEMBERSHIP
158 failed do not set runnning flag to the interface.
159
1602000-11-16 Kunihiro Ishiguro <kunihiro@zebra.org>
161
162 * ripd.c (rip_output_process): Memory leak related classfull
163 network generation is fixed.
164
1652000-11-16 Frank van Maarseveen <F.vanMaarseveen@inter.NL.net>
166
167 * rip_interface.c (if_check_address): Obsolete pointopoint address
168 check is removed.
169
1702000-11-02 Frank van Maarseveen <F.vanMaarseveen@inter.NL.net>
171
172 * rip_interface.c (if_check_address): Add pointopoint address
173 check.
174 (rip_interface_up): Add check for passive interface when interface
175 goes up.
176
1772000-10-23 Jochen Friedrich <jochen@scram.de>
178
179 * rip_snmp.c: rip_oid and ripd_oid are used in smux_open after it
180 is registered. So those variables must be static.
181
1822000-10-19 Kunihiro Ishiguro <kunihiro@zebra.org>
183
184 * rip_interface.c: Change to "no ip rip (send|receive)" command
185 accept version number argument.
186
1872000-10-17 Akihiro Mizutani <mizutani@dml.com>
188
189 * rip_routemap.c (route_set_ip_nexthop_compile): Change "match ip
190 next-hop" from IP address to access-list name.
191
1922000-10-17 Kunihiro Ishiguro <kunihiro@zebra.org>
193
194 * rip_peer.c: Change ot use linklist.c instaed of newlist.c.
195
1962000-10-16 Kunihiro Ishiguro <kunihiro@zebra.org>
197
198 * rip_offset.c: Change to use linklist.c instead of newlist.c.
199
2002000-10-02 Kunihiro Ishiguro <kunihiro@zebra.org>
201
202 * zebra-0.89 is released.
203
2042000-09-26 Akihiro Mizutani <mizutani@dml.com>
205
206 * rip_routemap.c (match_ip_nexthop): Add next-hop format check.
207
2082000-09-18 David Lipovkov <dlipovkov@OpticalAccess.com>
209
210 * rip_interface.c (ripd_api_get_if_rx_version): Corrects rip SNMP
211 and rip API functions dealing with rip version.
212
213 * rip_snmp.c (Status_Valid): SNMPv2-TC TEXTUAL-CONVENTION.
214
2152000-09-10 Kunihiro Ishiguro <kunihiro@zebra.org>
216
217 * rip_snmp.c (rip2IfLookup): Use rip_ifaddr_lookup_next() instead
218 of rip_if_lookup_next().
219
220 * rip_interface.c (rip_enable_network_lookup): Interface enable
221 check by interface's address with /32 prefix.
222
223 * ripd.c (rip_read): When RIP is configured with authentication
224 and no authentication in incoming packet, drop the packet.
225
226 * rip_interface.c (rip_interface_reset): RIP_AUTH_SIMPLE_PASSWORD
227 is default mode of authentication.
228 (rip_interface_new): Likewise.
229 (no_ip_rip_authentication_mode): Likewise.
230
231 * ripd.c (rip_read): Likewise.
232
2332000-09-10 David Lipovkov <davidl@nbase.co.il>
234
235 * rip_snmp.c: Set ASN_INTEGER v->type where it is needed.
236
2372000-09-08 Kunihiro Ishiguro <kunihiro@zebra.org>
238
239 * ripd.c (rip_auth_simple_password): Simple password
240 authentication using key-chain.
241 (rip_write_rte): Likewise.
242
243 * rip_interface.c (ip_rip_authentication_key_chain): Add check for
244 authentication string configuration.
245
2462000-09-08 Akihiro Mizutani <mizutani@dml.com>
247
248 * ripd.c (rip_write_rte): Add check for ri->auth_str.
249
2502000-09-07 Kunihiro Ishiguro <kunihiro@zebra.org>
251
252 * ripd_api.h: New file is added.
253
2542000-08-22 Kunihiro Ishiguro <kunihiro@zebra.org>
255
256 * ripd.c (rip_rte_process): rip_route_process() is renamed to
257 rip_rte_process() to clarify meanings of the function.
258 rip_route_process() is newly added to process RIP route selection.
259
2602000-08-18 Kunihiro Ishiguro <kunihiro@zebra.org>
261
262 * ripd.c (rip_incoming_filter): Extract incoming filter code to
263 function from rip_route_process(). Add check for all interface
264 filter.
265 (rip_outgoing_filter): Extract incoming filter code to function
266 from rip_output_process(). Add check for all interface filter.
267
268 * rip_zebra.c (rip_redistribute_clean): Reset redistribute status
269 when "no router rip" is performed.
270
271 * rip_interface.c (rip_interface_clean): Reset interface's RIP
272 enable status.
273
2742000-08-17 Kunihiro Ishiguro <kunihiro@zebra.org>
275
276 * ripd.c (rip_route_process): When metric infinity is received the
277 route is removed from service immediately.
278 (rip_timeout): Likewise.
279 (rip_garbage_collect): Do not delete route in garbage collection.
280 (rip_output_process): Check metric_out exceed metric infinity.
281
282 * zebra-0.88 is released.
283
2842000-08-15 Kunihiro Ishiguro <kunihiro@zebra.org>
285
286 * ripd.c (rip_distance_apply): Unlock node when there is matched
287 node.
288
2892000-08-13 Akihiro Mizutani <mizutani@dml.com>
290
291 * rip_routemap.c (match_ip_nexthop): Add check for IP address
292 validness.
293 (no_set_metric): Add new ALIAS.
294
2952000-08-07 Kunihiro Ishiguro <kunihiro@zebra.org>
296
297 * ripd.h (struct rip ): Add distance.
298
2992000-08-05 Kunihiro Ishiguro <kunihiro@zebra.org>
300
301 * rip_zebra.c (rip_zebra_ipv4_add): Use new Zebra api to register
302 routes. Pass RIP metric value to zebra.
303
3042000-08-02 Kunihiro Ishiguro <kunihiro@zebra.org>
305
306 * rip_main.c (main): Make struct thread thread from global
307 variable to local variable in main.
308
3092000-08-06 Kunihiro Ishiguro <kunihiro@zebra.org>
310
311 * ripd.c (rip_packet_dump): Add MD5 authentication dump function.
312 (rip_auth_md5): RIP MD5 authentication packet receive works.
313
3142000-08-02 David Lipovkov <davidl@nbase.co.il>
315
316 * rip_interface.c (rip_if_init): Install interface "pseudo"
317 commands.
318 (rip_interface_delete): Do not call if_delete() when interface is
319 pseudo interface.
320
3212000-07-31 Kunihiro Ishiguro <kunihiro@zebra.org>
322
323 * rip_interface.c (ip_rip_authentication_mode): "ip rip
324 authentication mode (md5|text)" is added.
325 (ip_rip_authentication_key_chain): "ip rip authentication
326 key-chain KEY-CHAIN" is added.
327 (rip_interface_clean): Clean all interface configuration.
328 (rip_interface_reset): Reset all interface configuration.
329 (rip_clean_network): Clean rip_enable_network.
330
331 * ripd.h (struct rip_interface): Add key_chain member.
332
333 * ripd.c: Include md5-gnu.h.
334
3352000-07-30 Kunihiro Ishiguro <kunihiro@zebra.org>
336
337 * ripd.h (RIP_NO_AUTH): Change RIP_NO_AUTH value from 1 to 0.
338
339 * ripd.c (rip_authentication): Use RIP_AUTH_SIMPLE_PASSWORD
340 instead of raw value 2.
341 (rip_write_rte): Likewise.
342 (rip_write_rte): Check ri->auth_type instead of ri->auth_str.
343
3442000-07-30 David Lipovkov <davidl@nbase.co.il>
345
346 * rip_interface.c (rip_if_down): Do not delete ZEBRA_ROUTE_KERNEL
347 route.
348
3492000-07-27 Kunihiro Ishiguro <kunihiro@zebra.org>
350
351 * ripd.c (rip_update_process): Add "passive-interface" command.
352
353 * ripd.h (struct rip_interface): Add passive member to struct
354 rip_interface.
355
3562000-07-24 Kunihiro Ishiguro <kunihiro@zebra.org>
357
358 * rip_interface.c (rip_if_init): Multiple RIP routes for one
359 prefix change. The codes are enclosed by #ifdef NEW_RIP_TABLE.
360
3612000-07-24 Akihiro Mizutani <mizutani@dml.com>
362
363 * rip_interface.c (rip_if_init): Use install_default() for
364 INTERFACE_NODE.
365
3662000-07-24 Kunihiro Ishiguro <kunihiro@zebra.org>
367
368 * ripd.c: First update timer will be invoked in two seconds.
369
3702000-07-09 Jochen Friedrich <jochen@scram.de>
371
372 * rip_snmp.c: Local function definitions to static. Add INTEGER
373 ASN_INTEGER and TIMETICKS ASN_TIMETICKS definition.
374 (rip2PeerLookup): Peer with domain lookup implemented.
375 (rip2PeerTable): Temporary disable RIP2PEERLASTUPDATE value
376 support due to unknown SNMP agent startup time.
377
3782000-07-05 Kunihiro Ishiguro <kunihiro@zebra.org>
379
380 * ripd.h: Sweep obsolete definitions.
381
382 * rip_interface.c (rip_split_horizon): Add "ip split-horizon"
383 command.
384
385 * ripd.c (rip_output_process): Remove split_horizon argument.
386 (rip_update_process): Likewise.
387
388 * ripd.h (struct rip_interface): Add split_horizon flag to struct
389 rip_interface.
390
3912000-07-04 Akihiro Mizutani <mizutani@dml.com>
392
393 * ripd.c (rip_version): Change VERSION to <1-2>.
394 Add "no version" command.
395
3962000-07-03 Kunihiro Ishiguro <kunihiro@zebra.org>
397
398 * rip_zebra.c (rip_redistribute_type_metric): "redistribute TYPE
399 metric <0-16>" command is added.
400
401 * rip_routemap.c (route_set_metric): Set metric_set when metric is
402 modified.
403
404 * ripd.h (struct rip_info): To check route-map set metric or not,
405 new member metric_set is added to struct rip_info.
406
407 * ripd.c (rip_route_process): Move metric handling code from
408 rip_response_process() to rip_route_process().
409 (rip_output_process): Set output offset-list metric.
410
4112000-07-02 Kunihiro Ishiguro <kunihiro@zebra.org>
412
413 * rip_offset.c (rip_offset_list): New file for offset-list.
414
4152000-07-02 Akihiro Mizutani <mizutani@dml.com>
416
417 * ripd.h (struct rip ): Add default_metric.
418
419 * ripd.c (rip_default_metric): "default-metric <1-16>" command is
420 added.
421 (config_write_rip): Change configuration order.
422
423 * rip_zebra.c: Fix help strings.
424
4252000-07-02 David Lipovkov <davidl@nbase.co.il>
426
427 * rip_interface.c (rip_if_init): Add IF_DELETE_HOOK.
428
4292000-07-01 Kunihiro Ishiguro <kunihiro@zebra.org>
430
431 * ripd.c (rip_output_process): If specified route-map does not
432 exist, it treated as deny all.
433
4342000-06-30 Kunihiro Ishiguro <kunihiro@zebra.org>
435
436 * rip_routemap.c (rip_route_map_init): Call rip_route_map_update
437 when route-map is deleted.
438
4392000-06-28 Kunihiro Ishiguro <kunihiro@zebra.org>
440
441 * rip_routemap.c (set_metric): For consistency with bgpd's set
442 metric, value range is set to <0-4294967295>.
443
4442000-06-28 David Lipovkov <davidl@nbase.co.il>
445
446 * rip_routemap.c (rip_route_map_update): Add check for rip is
447 enabled or not for avoid core dump.
448
449 * rip_debug.c (debug_rip_packet_direct): Fix bug of setting
450 rip_debug_packet flag.
451
4522000-06-13 David Lipovkov <davidl@nbase.co.il>
453
454 * rip_interface.c (rip_interface_delete): All work is done in
455 rip_if_down().
456
4572000-06-06 Kunihiro Ishiguro <kunihiro@zebra.org>
458
459 * ripd.c (rip_redistribute_delete): Fix bug of missing
460 route_unlock_node() when redistribute route is not found.
461
4622000-06-05 Akihirof Mizutani <mizutani@dml.com>
463
464 * rip_debug.c (rip_debug_init): Disable show debugging in
465 VIEW_NODE like other protocol daemon.
466
467 * rip_routemap.c: Change command argument to more comprehensive.
468
469 METRIC -> <0-16>
470 IFNAME -> WORD
471 IP_ADDR -> A.B.C.D
472 ACCSESS_LIST -> WORD
473
4742000-06-05 David Lipovkov <davidl@nbase.co.il>
475
476 * rip_interface.c (rip_interface_delete): Delete all routes
477 include static and kernel through the interface , because even if
478 the interface is added again there is no guarantee that it will
479 get the same ifindex as before.
480
4812000-05-31 Akihirof Mizutani <mizutani@dml.com>
482
483 * rip_debug.c: Fix rip debug help string.
484
4852000-04-27 Mirko Karanovic <mkaranov@torsel.alcatel.com>
486
487 * rip_interface.c (rip_interface_down): Remove interface from
488 multicast group when interface goes down.
489
4902000-04-03 David Lipovkov <davidl@nbase.co.il>
491
492 * rip_interface.c (rip_interface_down): Implemented rip functions
493 for interface up/down events: rip_interface_up() and
494 rip_interface_down()
495
4962000-03-16 David Lipovkov <davidl@nbase.co.il>
497
498 * rip_zebra.c (rip_zclient_init): Added rip functions for
499 interface up/down events.
500
5012000-02-15 Hidetoshi Shimokawa <simokawa@sat.t.u-tokyo.ac.jp>
502
503 * ripd.c (rip_write_rte): "set metic" in route-map has no effect
504 for RIPv1 in ripd. It worked fine for RIPv2.
505
5062000-01-17 Kunihiro Ishiguro <kunihiro@zebra.org>
507
508 * ripd.c (show_ip_protocols_rip): Fix bug of "show ip protocls"
509 mis-display RIP version.
510
511 * ripd.h (struct rip_peer): Add timeout thread to rip_peer
512 structure.
513
5142000-01-16 Kunihiro Ishiguro <kunihiro@zebra.org>
515
516 * rip_peer.c: Add new file for supporting RIP peer.
517
5181999-12-26 David Lipovkov <davidl@nbase.co.il>
519
520 * ripd.c (rip_authentication): RIP authantication string is 16
521 bytes long.
522
5231999-12-10 Kunihiro Ishiguro <kunihiro@zebra.org>
524
525 * ripd.c (rip_read): Add check for minimum packet length.
526 Authentication check is moved from rip_process_response() to
527 rip_read(). Patch from David Lipovkov <davidl@nbase.co.il> is
528 applied then add rte number check by Kunihiro Ishiguro
529 <kunihiro@zebra.org>.
530
5311999-12-07 Kunihiro Ishiguro <kunihiro@zebra.org>
532
533 * ripd.c (rip_response_process): In case of packet is RIPv2 and
534 network is non zero and netmask is zero, apply netmask rule as
535 same as RIPv1.
536
5371999-11-06 Kunihiro Ishiguro <kunihiro@zebra.org>
538
539 * ripd.c (rip_timers): Fix bug of timers basic argument format.
540
5411999-11-03 Kunihiro Ishiguro <kunihiro@zebra.org>
542
543 * rip_snmp.c (rip2IfConfAddress): Forgot to include
544 RIP2IFCONFDOMAIN.
545
5461999-10-28 Kunihiro Ishiguro <kunihiro@zebra.org>
547
548 * ripd.h (struct rip_peer): New structure added.
549
5501999-10-26 Kunihiro Ishiguro <kunihiro@zebra.org>
551
552 * rip_zebra.c (rip_zebra_ipv4_add): Increment
553 rip_global_route_changes when route change occur.
554 (rip_zebra_ipv4_delete): Likewise.
555
556 * ripd.c (rip_request_process): Increment rip_global_queries when
557 reply to the query is sent.
558
5591999-10-25 Kunihiro Ishiguro <kunihiro@zebra.org>
560
561 * rip_debug.c (rip_debug_reset): Reset function added.
562
563 * ripd.c (rip_update_process): Logging bug is fixed.
564
5651999-10-10 Marc Boucher <marc@mbsi.ca>
566
567 * ripd.c (config_write_rip): Add config_write_distribute() call.
568
5691999-09-29 Kunihiro Ishiguro <kunihiro@zebra.org>
570
571 * ripd.c (rip_distribute_update): Fix bug of access-list
572 prefix-list updates.
573
5741999-09-10 VOP <vop@unity.net>
575
576 * rip_zebra.c: Add redistribute route-map feature.
577
5781999-09-10 Kunihiro Ishiguro <kunihiro@zebra.org>
579
580 * ripd.c (rip_response_process): Add check for given prefix is
581 given mask applied one.
582
5831999-09-03 VOP <vop@unity.net>
584
585 * rip_interface.c (rip_interface_multicast_set): Bug fix about
586 setting multicast interface.
587
5881999-09-02 VOP <vop@unity.net>
589
590 * rip_routemap.c: New file added.
591
5921999-09-02 Kunihiro Ishiguro <kunihiro@zebra.org>
593
594 * ripd.c (show_ip_protocols_rip): Show next update time.
595 (show_ip_protocols_rip): Show redistribute information.
596
5971999-08-25 Kunihiro Ishiguro <kunihiro@zebra.org>
598
599 * RIPv2-MIB.txt: New file added.
600
601 * rip_snmp.c: New file added.
602
6031999-08-24 Kunihiro Ishiguro <kunihiro@zebra.org>
604
605 * rip_interface.c (ip_rip_authentication_string): RIPv2
606 authentication command is added.
607
6081999-08-23 Kunihiro Ishiguro <kunihiro@zebra.org>
609
610 * rip_interface.c (rip_interface_multicast_set): Process of
611 setting IP_MULTICAST_IF on specific interface.
612
613 * ripd.c (rip_read): Add packet size check.
614
6151999-08-16 Kunihiro Ishiguro <kunihiro@zebra.org>
616
617 * ripd.c (rip_request_process): Fill in RIP_METRIC_INFINITY with
618 network byte order using htonl ().
619 (rip_response_process): Pass host byte order address to IN_CLASSC
620 and IN_CLASSB macro.
621
6221999-08-08 davidm@nbase.co.il (David Mozes)
623
624 * rip_zebra.c (rip_zebra_read_ipv4): Fix split horizon problem.
625
6261999-07-03 Kunihiro Ishiguro <kunihiro@zebra.org>
627
628 * ripd.c (rip_timer_set): Function added.
629
6301999-07-01 Kunihiro Ishiguro <kunihiro@zebra.org>
631
632 * rip_debug.c: New file added.
633 rip_debug.h: New file added.
634
6351999-07-01 Rick Payne <rickp@rossfell.co.uk>
636
637 * rip_zebra.c (zebra_init): Install standard commands to
638 ZEBRA_NODE.
639
6401999-06-01 David Luyer <luyer@ucs.uwa.edu.au>
641
642 * ripd.c (rip_process_route): Add support for RIP version 1.
643
6441999-05-29 Kunihiro Ishiguro <kunihiro@zebra.org>
645
646 * rip_zebra.c: Change to use lib/zclient.[ch].
647
6481999-05-20 Carlos Alberto Barcenilla <barce@frlp.utn.edu.ar>
649
650 * ripd.c (rip_add_route): Change the existance route's metric check
651 to the condition specified by RFC2453.
652
6531999-05-17 Carlos Alberto Barcenilla <barce@frlp.utn.edu.ar>
654
655 * ripd.c (rip_process_route): Add the if metric to the route metric.
656
657 * ripd.c (rip_add_route): Deleted add if metric to the route.
658
6591999-05-16 Carlos Alberto Barcenilla <barce@frlp.utn.edu.ar>
660
661 * rip_interface.c (if_valid_neighbor): New function.
662
663 * ripd.c (rip_process_route): Added check whether the datagram
664 is from a valid neighbor.
665
6661999-05-15 Kunihiro Ishiguro <kunihiro@zebra.org>
667
668 * ripd.c (rip_process_route): Set interface pointer to rinfo.
669
6701999-05-15 Carlos Alberto Barcenilla <barce@frlp.utn.edu.ar>
671
672 * ripd.c (rip_check_address): Unicast and not net 0 or 127 check
673 added.
674
6751999-05-14 Stephen R. van den Berg <srb@cuci.nl>
676
677 * rip_main.c (signal_init): SIGTERM call sigint.
678 (sigint): Loggging more better message.
679
6801999-05-10 Kunihiro Ishiguro <kunihiro@zebra.org>
681
682 * ripd.c (rip_add_route): Fix previous route_unlock_node() chenge.
683
684 * rip_main.c (main): Change default zlog output to ZLOG_STDOUT for
685 debugging.
686
6871999-05-09 Patrick Koppen <koppen@rhrk.uni-kl.de>
688
689 * rip_interface.c (rip_request): Fix old semantics for fetching
690 connected address.
691
692 * ripd.c (rip_add_route): Update timer when the route is updated.
693
6941999-05-09 Carlos Alberto Barcenilla <barce@frlp.utn.edu.ar>
695
696 * rip_zebra.c (struct zebra): Add ridist_static, ridist_connect,
697 redist_rip, redist_ripng.
698
699 * rip_zebra.c (zebra_create): Updated for current zebra method.
700
701 * ripd.c (rip_add_route): Add missing route_unlock_node().
702
7031999-05-03 Kunihiro Ishiguro <kunihiro@zebra.org>
704
705 * ripd.c (rip_add_route): Add metric check. Reported by Carlos
706 Alberto Barcenilla <barce@frlp.utn.edu.ar>.
707
7081999-02-18 Peter Galbavy <Peter.Galbavy@knowledge.com>
709
710 * syslog support added
711
7121998-12-13 Kunihiro Ishiguro <kunihiro@zebra.org>
713
714 * ripd.c (rip_announce_func): Apply new lib functions.
715
7161998-12-09 Kunihiro Ishiguro <kunihiro@zebra.org>
717
718 * ripd.c (config_write_rip): Delete vector v argument.
719 * rip_zebra.c (config_write_zebra): Likewise.
720 * rip_interface.c (interface_config_write): Likewise.
721
7221998-09-07 Kunihiro Ishiguro <kunihiro@zebra.org>
723
724 * rip_announce.c (rip_rib_close): When ripd terminates delete all
725 added route.
726
7271998-09-01 Kunihiro Ishiguro <kunihiro@zebra.org>
728
729 * rip_interface.c: return read packet size.
730
7311998-05-18 Yamshita TAKAO <jargon@lares.dti.ne.jp>
732
733 * ripd.h: Modify for compile on Solaris.
734
7351998-05-07 Kunihiro Ishiguro <kunihiro@zebra.org>
736
737 * ripd.c: DEFUN function return CMD_SUCCESS.
738 change xmalloc to XMALLOC macro.
739
7401998-05-03 Kunihiro Ishiguro <kunihiro@zebra.org>
741
742 * rip_main.c: change CONFDIR to SYSCONFDIR.
743
7441998-05-01 Kunihiro Ishiguro <kunihiro@zebra.org>
745
746 * .cvsignore: added.
747
7481998-02-04 Kunihiro Ishiguro <kunihiro@zebra.org>
749
750 * rip_interface.c (config_write_interface): correct ADVERTISE spell.
751
752 * rip_main.c (main): add usage() and make cleanup.
753
7541998-01-05 Kunihiro Ishiguro <kunihiro@zebra.org>
755
756 * ripd.c (rip_version): add rip version command.
757
7581998-01-04 Kunihiro Ishiguro <kunihiro@zebra.org>
759
760 * rip_interface.c (zebra_get_interface): added to get
761 interface's information.
762
763 * ChangeLog: create.