blob: 1b1e1a992a73e36b2cc42ea22e2df9715f4b205d [file] [log] [blame]
paul19877dd2004-05-11 10:49:35 +000012004-05-11 Paul Jakma <paul@dishone.st>
2
3 * Makefile.am: support for IOCTL_METHOD, as per Sowmini's patch.
paul48a46fa2004-05-11 10:55:22 +00004 * if_ioctl_solaris.c: Fixup some erroneous privilege changes and
5 add privs.h header.
6 * ioctl_solaris.c: ditto
paulc50ae8b2004-05-11 11:31:07 +00007 * ioctl.h: Add if_ioctl_ipv6 prototype and AF_IOCTL for SOLARIS_IPV6
8 * kernel_socket.c: Fix SAROUNDUP, compiler doesnt like do..while
9 RHS in assignments :)
10 * redistribute.c: (zebra_interface_delete_update) only used
11 if RTM_IFANNOUNCE and NETLINK is available.
12
paulb9df2d22004-05-09 09:09:59 +0000132004-05-09 Paul Jakma <paul@dishone.st>
14
15 * zserv.c: (zsend_route_multipath) Set the nexthop_num
16 field correctly. Add NEXTHOP_TYPE_IPV6_IFNAME for v6.
17 Conditionally set ZAPI_MESSAGE_METRIC flag - only for adds.
18 (zsend_ipv4_add) cruft, deleted.
19 (zsend_ipv4_delete) ditto.
20 (zsend_ipv6_add) ditto.
21 (zsend_ipv6_delete) ditto.
paul44145db2004-05-09 11:00:23 +000022 * ioctl.c: (if_get_mtu) set mtu6 to mtu
23 * mtu_kvm.c: (if_kvm_get_mtu) set mtu6 to mtu
24 * rt_netlink.c: (netlink_interface) set mtu6 to mtu
25 (netlink_link_change) ditto
paul66e94882004-05-09 17:19:24 +000026 * ipforward_solaris.c: fix typo of ND variable.
paul88424682004-05-09 18:21:35 +000027 * if_ioctl_solaris.c: Add zprivs support.
28 * ioctl_solaris.c: ditto.
paul66e94882004-05-09 17:19:24 +000029
paulb9df2d22004-05-09 09:09:59 +0000302004-05-09 Sowmini Varadhan <sowmini.varadhan@sun.com>
31
32 * zserv.c: (zsend_ipv{4,6}_{add,delete}_multipath) collapsed
33 into single zsend_route_multipath function.
34 (zsend_interface_{up,down}) collapsed into zsend_interface_update.
35 (zsend_interface_address_{add,delete}) collapsed into
36 zsend_interface_address.
37 (zsend_interface_add) send mtu6.
38 (zsend_interface_delete) ditto.
39 (zebra_write) remove unused function.
40 (various) Apply static qualifier. Add comments.
41 * zserv.h: Definitions changed as per above.
42 * redistribute.c: Changes as per zserv.c.
paul44145db2004-05-09 11:00:23 +000043 * interface.c: (if_delete_update) only used with HAVE_NETLINK
44 and RTM_IFANNOUNCE.
45 (if_flag_dump_vty) Solaris IFF_IPV4 and IFF_IPV6 if flags
46 (if_dump_vty) print mtu6 if not same as mtu
paul88424682004-05-09 18:21:35 +000047 * if_ioctl_solaris.c: New file, Solaris interface ioctl methods.
48 * ioctl_solaris.c: New file, Common solaris ioctl methods.
49
hasso34195bf2004-04-06 12:07:06 +0000502004-04-06 Krzysztof Oledzki <oleq@ans.pl>
51
52 * rt_netlink.c: Do not ignore metric when reading kernel routing
53 table on Linux with rt_netlink interface.
54
552004-03-18 Hasso Tepper <hasso@estpak.ee>
hassof1d92e12004-03-18 15:40:33 +000056
57 * interface.c: Temporary fix for handling secondary addresses
58 with label.
59
hasso55906722004-02-11 22:42:16 +0000602004-02-12 Hasso Tepper <hasso@estpak.ee>
hassof1d92e12004-03-18 15:40:33 +000061
hasso55906722004-02-11 22:42:16 +000062 * zserv.c: Added "ipv6 forwarding" command.
63
gdtb27900b2004-01-08 15:44:29 +0000642004-01-08 Greg Troxel <gdt@fnord.ir.bbn.com>
65
66 * kernel_socket.c (kernel_read): Use sockaddr_storage in buffer
67 for reading kernel messages to ensure enough space (necessary on
68 Solaris due to sockaddr_dl being large). Thanks to Sowmini
69 Varadhan for help with this change.
70
gdt9ccabd12004-01-06 18:23:02 +0000712004-01-06 Greg Troxel <gdt@t1.ir.bbn.com>
72
73 * rtadv.c (rtadv_send_packet): Change perror to zlog_err.
74
gdtdbee01f2004-01-06 00:36:51 +0000752004-01-05 Greg Troxel <gdt@fnord.ir.bbn.com>
gdt4bfbea82004-01-06 01:13:05 +000076 * kernel_socket.c (ifm_read): Major cleanup. Use Sowmini's code
77 to find the sockaddr_dl in all cases, narrowing the Solaris ifdef
78 to just the accomodation of broken kernels. Check sockaddr_dl
79 carefully up front, and later assume any non-NULL sdl pointer is
80 valid. Clean up types and variable declarations, and rename
81 WRAPUP to SAROUNDUP to make the name fit the behavior.
82
832004-01-05 Greg Troxel <gdt@fnord.ir.bbn.com>
gdtdbee01f2004-01-06 00:36:51 +000084
85 * kernel_socket.c (kernel_read): Add a sockaddr_dl to the ifmsg
86 structure, because on Solaris sockaddr_dl is far larger than the
87 base sockaddr structure. (The code had previously been failing to
88 read all the data.)
gdt4bfbea82004-01-06 01:13:05 +000089
gdtda26e3b2004-01-05 17:20:59 +0000902004-01-05 Greg Troxel <gdt@ahi.ir.bbn.com>
91
92 * kernel_socket.c (kernel_read): Look up interfaces by index
93 first, so that state changes which do not include a sockaddr_dl
94 now work. Add many sanity checks. In
95 particular, do not assume that a sockaddr_dl follows a message
96 without checking the ifm_addrs flags, and do not trust the length
97 in a sockaddr_dl. Add/clarify many comments.
98
gdt4b5e1352003-12-03 17:54:34 +0000992003-12-03 Greg Troxel <gdt@poblano.ir.bbn.com>
100
101 * rtadv.c: reorder includes to avoid compiler warning (define
102 structs before using them in prototypes)
103
hasso647e4f12003-05-25 11:43:52 +00001042003-05-25 Jim Crumpler <Jim.Crumpler@edion.com>
105
106 * zserv.c: Add "ip forwarding" command.
107
paul445f1432003-05-16 19:00:31 +00001082003-05-16 Gilad Arnold <gilad.arnold@terayon.com>
109
110 * zebra_rib.c: Fix memory leaks for ifname nexthops
111
1122003-04-19 Israel Keys <ikeys@agile.tv>
113
114 * rt_netlink.c: BLOCK on netlink while initialising
115
1162003-02-06 Francois Deppierraz <francois@ctrlaltdel.ch>
117
118 * rt_netlink.c (netlink_route_multipath): Set RTM_F_EQUALIZE when
119 it exists.
120
paul718e3742002-12-13 20:15:29 +00001212002-09-28 Akihiro Mizutani <mizutani@net-chef.net>
122
123 * zebra_rib.c (static_add_ipv4): Null0 static route is added.
124
1252002-09-10 Jochen Friedrich <chris+zebra@scram.de>
126
127 * rt_netlink.c: Add check for EAGAIN.
128 * kernel_socket.c: Likewise
129
1302002-06-12 Israel Keys <ikeys@oz.agile.tv>
131
132 * rt_netlink.c: Setting the NLM_F_ACK flag on the netlink command
133 message so that we get an ACK for successful netlink commands.
134 Change the netlink socket to BLOCKING while we wait for a
135 response; be it an ACK or an NLMSG_ERROR. Change
136 netlink_parse_info to deal with ACK messages.
137
1382001-11-01 Jun-ichiro itojun Hagino <itojun@iijlab.net>
139
140 * rtadv.c (rtadv_make_socket): setsockopt(IPV6_CHECKSUM) does not
141 work for ICMPv6 socket.
142
1432001-10-24 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
144
145 * rib.c (rib_process): Select connected route any case.
146
1472001-10-23 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
148
149 * interface.c (no_ip_address_secondary): Add "no" to command.
150
1512001-10-18 NOGUCHI Kay <kay@v6.access.co.jp>
152
153 * ioctl.c (if_prefix_add_ipv6): Set the prefered and valid lifetime
154 to infinity as the freebsd4.4 workaroud.
155
1562001-08-26 mihail.balikov@interbgc.com
157
158 * zebra_snmp.c: Fix snmpwalk problem such as IPv4 address
159 A.B.C.255.
160
1612001-08-22 NOGUCHI Kay <kay@v6.access.co.jp>
162
163 * rtadv.c: Do not send RA to loopback interface.
164
1652001-08-20 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
166
167 * ioctl.c (if_set_prefix): Remove Linux 2.0 specific connected
168 route treatment.
169
1702001-08-19 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
171
172 * zebra-0.92a released.
173
1742001-08-17 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
175
176 * rib.c: Kernel route is treated as EGP routes in nexthop active
177 check.
178
1792001-08-15 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
180
181 * zebra-0.92 released.
182
1832001-08-08 "Akihiro Mizutani" <mizutani@dml.com>
184
185 * rib.c (show_ip_route_prefix_longer): Add longer-prefix option to
186 show route commands.
187
1882001-07-29 Yon Uriarte <havanna_moon@gmx.net>
189
190 * zserv.c (zsend_ipv4_add_multipath): Add
191 NEXTHOP_TYPE_IPV4_IFINDEX check.
192
1932001-07-29 NOGUCHI Kay <kay@v6.access.co.jp>
194
195 * rtadv.c: Apply valid lifetime, preferred lifetime, onilnk flag,
196 autonomous address-configuration flag patch.
197 (no_ipv6_nd_suppress_ra): Change "ipv6 nd send-ra" to "no ipv6 nd
198 suppress-ra".
199
2002001-07-24 NOGUCHI Kay <kay@v6.access.co.jp>
201
202 * rtadv.c (ipv6_nd_ra_interval): Add "ipv6 nd ra-interval SECONDS"
203 command.
204
2052001-07-24 Jun-ichiro itojun Hagino <itojun@iijlab.net>
206
207 * rt_socket.c (kernel_rtm_ipv4): Add KAME/NetBSD151 equal cost
208 multicast FIB support both IPv4 and IPv6.
209
2102001-07-24 Hal Snyder <hal@vailsys.com>
211
212 * if_ioctl.c (interface_list_ioctl): Fix bug of failing to get the
213 full list of interfaces on some configurations of OpenBSD.
214
2152001-07-23 NOGUCHI Kay <kay@v6.access.co.jp>
216
217 * rtadv.c (ipv6_nd_send_ra): Apply [zebra 9320] to fix "ipv6 nd
218 send-ra" bug.
219 (ipv6_nd_ra_lifetime): "ipv6 nd ra-lifetime 0" for default router
220 availability.
221 (ipv6_nd_managed_config_flag): "ipv6 nd managed-config-flag" is
222 added.
223 (ipv6_nd_other_config_flag): "ipv6 nd other-config-flag" is added.
224
2252001-07-23 Jun-ichiro itojun Hagino <itojun@iijlab.net>
226
227 * ioctl.c (if_ioctl): Change ioctl argument from int to u_long.
228
229 * rt_ioctl.c: Likewise.
230
2312001-07-23 Jun-ichiro itojun Hagino <itojun@iijlab.net>
232
233 * kernel_socket.c (rtm_write): Only set RTF_CLONING when the
234 interface is not p2p.
235
2362001-04-23 Kunihiro Ishiguro <kunihiro@zebra.org>
237
238 * ioctl.c (if_prefix_add_ipv6): Fix argument type.
239
2402001-04-06 Toshiaki Takada <takada@zebra.org>
241
242 * zserv.c (zsend_interface_delete): Use client->obuf instead of
243 allocating new stream.
244
2452001-03-10 Kunihiro Ishiguro <kunihiro@zebra.org>
246
247 * rt_netlink.c: Revert RTPROT_BOOT change.
248
2492001-03-08 Kunihiro Ishiguro <kunihiro@zebra.org>
250
251 * rt_netlink.c (netlink_route_change): Skip RTPROT_BOOT route.
252 (netlink_routing_table): Likewise.
253
2542001-03-07 "Akihiro Mizutani" <mizutani@dml.com>
255
256 * zserv.c (zsend_ipv4_add_multipath): Send metric value to
257 protocol daemons.
258
2592001-02-18 Kunihiro Ishiguro <kunihiro@zebra.org>
260
261 * rt_netlink.c (netlink_routing_table): Do not return
262 tb[RTA_GATEWAY] is NULL. Reported by: "Michael O'Keefe"
263 <mokeefe@qualcomm.com>.
264
2652001-02-08 Kunihiro Ishiguro <kunihiro@zebra.org>
266
267 * if_ioctl.c (interface_list_ioctl): Call if_add_update().
268 Suggested by: Chris Dunlop <chris@onthe.net.au>.
269
2702001-02-01 Kunihiro Ishiguro <kunihiro@zebra.org>
271
272 * rib.c (nexthop_active_ipv4): When nexthop type is
273 NEXTHOP_TYPE_IPV4_IFINDEX, propery set the ifindex to rifindex.
274
275 * zserv.c: Initialize rtm_table_default with 0.
276
277 * zebra-0.91 is released.
278
2792001-01-31 Kunihiro Ishiguro <kunihiro@zebra.org>
280
281 * kernel_socket.c (rtm_read): Filter cloned route. Suggested by:
282 Jun-ichiro itojun Hagino <itojun@iijlab.net>
283
2842001-01-30 Kunihiro Ishiguro <kunihiro@zebra.org>
285
286 * connected.c (connected_up_ipv6): When point-to-point destination
287 address is ::, use local address for connected network.
288 (connected_down_ipv6): Likewise.
289
2902001-01-25 Kunihiro Ishiguro <kunihiro@zebra.org>
291
292 * zserv.c (zebra_serv): Add missing close() call. Reported by:
293 David Waitzman <djw@vineyard.net>.
294
2952001-01-24 Kunihiro Ishiguro <kunihiro@zebra.org>
296
297 * rib.c (rib_lookup_ipv4): New function for checking exact match
298 IGP route.
299
3002001-01-23 Kunihiro Ishiguro <kunihiro@zebra.org>
301
302 * rib.c (show_ipv6_route_protocol): Fix bug of "show ip route
303 route-type".
304
3052001-01-22 Kunihiro Ishiguro <kunihiro@zebra.org>
306
307 * interface.c (zebra_interface): Do not call
308 zebra_interface_add_update for inactive interface.
309
310 * zserv.c (zsend_interface_address_add): Send interface address
311 flag.
312 (zsend_interface_address_delete): Likewise.
313
3142001-01-19 Kunihiro Ishiguro <kunihiro@zebra.org>
315
316 * interface.c (if_addr_add): Add flags.
317
318 * connected.c (ifa_add_ipv4): Add new function for interface
319 address handling.
320 (ifa_delete_ipv4): Likewise.
321
3222001-01-16 Kunihiro Ishiguro <kunihiro@zebra.org>
323
324 * rib.c (rib_update): Update IPv6 RIB.
325
326 * kernel_socket.c (ifam_read): Call if_refresh() for update
327 interface flag status. This is for implicit interface up on *BSD.
328
329 * interface.c (if_refresh): Add interface flag refresh function.
330
331 * kernel_socket.c (rtm_read): Fetch link-local address interface
332 index.
333 (ifan_read): We need to fetch interface information. Suggested
334 by: Yasuhiro Ohara <yasu@sfc.wide.ad.jp>.
335
336 * rib.c (static_ipv6_nexthop_same): Add check for
337 NEXTHOP_TYPE_IPV6_IFNAME.
338
3392001-01-15 Kunihiro Ishiguro <kunihiro@zebra.org>
340
341 * rib.h (NEW_RIB): Turn on NEW_RIB flag. IPv6 new RIB code are
342 taken into place.
343
3442001-01-14 Kunihiro Ishiguro <kunihiro@zebra.org>
345
346 * rib.c (static_ipv6_write): Display STATIC_IPV6_GATEWAY_IFNAME
347 configuration.
348 (rib_delete_ipv6): Handle same route conter for IPv6 connected
349 route.
350 (show_ipv6_route_protocol): New command.
351 (show_ipv6_route_addr): Likewise.
352 (show_ipv6_route_prefix): Likewise.
353 (rib_update): Sweep kernel route when it is cleaned up.
354
355 * rt_socket.c (kernel_add_ipv6): Add NEXTHOP_IPV6_IFNAME
356 treatmenet.
357
358 * rt_netlink.c (kernel_init): Likewise.
359
360 * rt_ioctl.c (kernel_ioctl_ipv6_multipath): Likewise.
361
362 * rib.c (rib_add_ipv4): Cope with same connected route on a
363 interface. Suggested by: Matthew Grant <grantma@anathoth.gen.nz>.
364 (nexthop_ipv6_ifname_add): Add NEXTHOP_IPV6_IFNAME treatmenet.
365
366 * rib.h (struct new_rib): Add refcnt to keep track on the
367 reference of same connected route.
368
369 * ioctl.c (if_set_prefix): Add check for GNU_LINUX.
370
3712001-01-13 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
372
373 * kernel_socket.c (ifan_read, rtm_type_str): Add RTM_OIFINFO check.
374 (rtm_type_str): Add RTM_IFANNOUNCE check.
375 (ifan_read): New function.
376 (kernel_read): Add case for RTM_IFANNOUNCE.
377
3782001-01-13 Kunihiro Ishiguro <kunihiro@zebra.org>
379
380 * rt_ioctl.c (kernel_ioctl_ipv6_multipath): New function.
381
382 * rt_netlink.c (netlink_route_multipath): IPv6 address ifindex
383 treatment.
384
385 * connected.c (connected_up_ipv6): Add dest value check.
386
387 * rib.c (nexthop_active_ipv6): Do not touch IPv6 nexthop's
388 ifindex.
389 (rib_add_ipv4): Import rib_add_ipv6() same route check code.
390 (nexthop_active_check): NEXTHOP_TYPE_IPV6_IFINDEX activity is only
391 checked by ifindex.
392
393 * rt_socket.c (kernel_rtm_ipv6_multipath): New function.
394
395 * redistribute.c (redistribute_add): Use
396 zsend_ipv6_add_multipath().
397 (redistribute_delete_multipath): Use
398 zsend_ipv6_delete_multipath().
399
400 * interface.c (ip_address): Check current IP address to avoid
401 duplicate.
402
403 * rib.c (rib_delete_ipv4): When deleted route is connected route,
404 check ifindex.
405 (rib_add_ipv4): When connected route is added do not perform
406 implicit withdraw.
407 (rib_delete_ipv4): Check ifindex for connected route.
408
409 * kernel_socket.c (rtm_read): When route has RTF_STATIC, set
410 ZEBRA_FLAG_STATIC for indicate as persistent route.
411 (ifam_read): Unset interface index from link-local address when
412 IPv6 stack is KAME.
413
414 * rib.c (rib_update): Do not delete persistent kernel route.
415
416 * rib.h (struct new_rib): Integrate RIB_FLAG_* to ZEBRA_FLAG_*.
417
418 * rt_socket.c (kernel_add_ipv6_multipath): Add placeholder.
419 (kernel_delete_ipv6_multipath): Likewise.
420
421 * rt_netlink.c (netlink_talk): Give struct nlsock to netlink_talk.
422
4232001-01-12 Kunihiro Ishiguro <kunihiro@zebra.org>
424
425 * rib.c (rib_update): Revert Matthew Grant's patch
426 zebra_cvs_newribfix.patch. Use struct rib->ifindex for kernel
427 interface index. Introduce NEXTHOP_TYPE_IPV4_IFINDEX to support
428 that. Add support for address deletion situation.
429
4302001-01-11 Kunihiro Ishiguro <kunihiro@zebra.org>
431
432 * interface.c: Remove HAVE_IF_PSEUDO part.
433
434 * rib.h: Likewise.
435
436 * rt_netlink.c (netlink_link_change): Likewise.
437
4382001-01-10 Kunihiro Ishiguro <kunihiro@zebra.org>
439
440 * zserv.c: Remove OLD_RIB codes.
441
4422001-01-09 Kunihiro Ishiguro <kunihiro@zebra.org>
443
444 * zebra-0.90 is released.
445
4462001-01-09 Matthew Grant <grantma@anathoth.gen.nz>
447
448 * interface.c (if_new_intern_ifindex): Allocate a new internal
449 interface index.
450 (if_addr_refresh): Fix up ip addresses configured via zebra.
451 (if_add_update): Handle an interface addition.
452 (if_delete_update): Handle an interface delete event.
453
454 * rib.c (nexthop_ipv4_add): Add kernel route deletion process when
455 interface goes down.
456
4572001-01-08 Kunihiro Ishiguro <kunihiro@zebra.org>
458
459 * interface.c (if_dump_vty): When HAVE_NET_RT_IFLIST is defined,
460 NetBSD also use this function. Suggested by Jasper Wallace
461 <jasper@ivision.co.uk>.
462
4632001-01-07 Kunihiro Ishiguro <kunihiro@zebra.org>
464
465 * rib.c (nexthop_active_ipv4): Move back to set methodo to old
466 one.
467
4682001-01-05 Kunihiro Ishiguro <kunihiro@zebra.org>
469
470 * rib.c (rib_add_ipv4): EBGP multihop set ZEBRA_FLAG_INTERNAL
471 flag, so treat it.
472
4732001-01-04 Kunihiro Ishiguro <kunihiro@zebra.org>
474
475 * rt_netlink.c (netlink_talk_ipv6): When IPv6 route message is
476 sent from netlink_cmd, the same message comes from netlink. To
477 avoid confusion, temporary netlink_talk_ipv6 use netlink.sock
478 instead of netlink_cmd.sock.
479
4802001-01-01 Kunihiro Ishiguro <kunihiro@zebra.org>
481
482 * zserv.h (ZEBRA_SERV_PATH): Change "/tmp/zebra" to "/tmp/.zebra".
483 Change "/tmp/zserv" to "/tmp/.zserv".
484
4852000-12-29 Frank van Maarseveen <F.vanMaarseveen@inter.NL.net>
486
487 * rt_netlink.c (struct nlsock): Divide kernel message into listen
488 socket and command socket.
489 (netlink_talk): Remove socket listen code. Use netlink_parse_info
490 for read kernel response.
491
4922000-12-29 Kunihiro Ishiguro <kunihiro@zebra.org>
493
494 * rib.c (vty_show_ip_route): Show uptime of the RIP,OSPF,BGP
495 routes.
496
4972000-12-27 Kunihiro Ishiguro <kunihiro@zebra.org>
498
499 * rt_netlink.c (netlink_route_multipath): Metric value is
500 reflected to kernel routing table.
501
502 * rt_ioctl.c (kernel_ioctl_ipv4_multipath): Likewise.
503
504 * kernel_socket.c (rtm_write): Likewise.
505
506 * rib.c (nexthop_active_ipv4): Only iBGP route perform recursive
507 nexthop lookup.
508
509 * rt_ioctl.c (kernel_ioctl_ipv4_multipath): Add ioctl version of
510 new RIB implementation.
511
5122000-12-26 Kunihiro Ishiguro <kunihiro@zebra.org>
513
514 * rib.h: Remove MULTIPATH_NUM. It is defined by configure script.
515
5162000-12-25 Michael Rozhavsky <mrozhavsky@opticalaccess.com>
517
518 * rib.c (rib_if_up): Call rib_fib_set instead of RIB_FIB_SET for
519 proper redistribution.
520
5212000-12-19 Kunihiro Ishiguro <kunihiro@zebra.org>
522
523 * rib.c (nexthop_active_ipv4): Add self lookup nexthop check.
524 (show_ip_route_protocol): Support new RIB.
525
526 * rt_netlink.c (netlink_route_change): Do not return when gate is
527 NULL.
528
5292000-12-18 Kunihiro Ishiguro <kunihiro@zebra.org>
530
531 * rib.c (rib_lookup_ipv4_nexthop): IBGP nexthop check function is
532 updated.
533 (rib_add_ipv4): Free implicit withdraw route's RIB.
534
5352000-12-15 Kunihiro Ishiguro <kunihiro@zebra.org>
536
537 * rib.c (nexthop_active_ipv4): Check indirect nexthop.
538
539 * redistribute.c (redistribute_add_multipath): Redistribution
540 works with new rib code.
541
5422000-12-14 Kunihiro Ishiguro <kunihiro@zebra.org>
543
544 * rt_netlink.c (netlink_route_multipath): Check useful nexthop
545 number.
546 (netlink_route_multipath): Clear rtnh_flags and rtnh_hops.
547
548 * rib.c (nexthop_active_update): Set flag for the rib's nexthop
549 activity is changed.
550 (nexthop_active_check): Before checking interface is up, make it
551 sure the interface exist.
552
5532000-11-20 Kunihiro Ishiguro <kunihiro@zebra.org>
554
555 * rib.c (ip_route): New RIB prototype.
556
5572000-11-16 Yon Uriarte <ukl2@rz.uni-karlsruhe.de>
558
559 * zserv.c (zsend_interface_add): Send hardware address when
560 hw_addr_len is greater than 0.
561
5622000-11-07 Kunihiro Ishiguro <kunihiro@zebra.org>
563
564 * connected.c (connected_up_ipv4): Fix ptop bug. The destination
565 network should be installed into routing table.
566 (connected_down_ipv4): Likewise.
567 (connected_add_ipv4): Change to use connected_up_ipv4.
568 (connected_delete_ipv4): Likewise.
569
5702000-11-06 Kunihiro Ishiguro <kunihiro@zebra.org>
571
572 * rt_netlink.c (netlink_interface_addr): Revert Harald Welte
573 <laforge@gnumonks.org>'s ptop patch then back to original code to
574 avoid duplicated connected route problem. Suggested by Frank van
575 Maarseveen <F.vanMaarseveen@inter.NL.net>.
576
577 * kernel_socket.c (rtm_read): Make behavior consistent even #ifdef
578 DEBUG is defined. Reported by Jun-ichiro itojun Hagino
579 <itojun@iijlab.net>.
580
5812000-10-23 Jochen Friedrich <jochen@scram.de>
582
583 * main.c (main): Call zebra_snmp_init() when it is enabled.
584
5852000-10-23 Kunihiro Ishiguro <kunihiro@zebra.org>
586
587 * zserv.c (zebra_serv_un): UNIX domain socket server of zebra
588 protocol.
589
5902000-10-19 Kunihiro Ishiguro <kunihiro@zebra.org>
591
592 * rib.c (rib_add_ipv4): Same check bug is fixed.
593
5942000-10-03 Kunihiro Ishiguro <kunihiro@zebra.org>
595
596 * rib.c (rib_if_down): Remove kernel route when the interface goes
597 down.
598
599 * debug.c: New command "debug zebra kernel" is added.
600
6012000-10-02 Kunihiro Ishiguro <kunihiro@zebra.org>
602
603 * zebra-0.89 is released.
604
6052000-09-24 Harald Welte <laforge@gnumonks.org>
606
607 * rt_netlink.c (netlink_interface_addr): Fix point-to-point address
608 treatment in netlink interface.
609
6102000-09-21 David Lipovkov <dlipovkov@OpticalAccess.com>
611
612 * rib.c (rib_if_down): Pull static route only. Protocol daemon
613 must withdraw routes when interface goes down.
614 (rib_add_ipv4): Check nexthop when replace route.
615
6162000-09-21 Kunihiro Ishiguro <kunihiro@zebra.org>
617
618 * if_ioctl.c (if_getaddrs): New function for looking up
619 interface's address by getifaddrs().
620
6212000-09-10 Kunihiro Ishiguro <kunihiro@zebra.org>
622
623 * connected.c (connected_delete_ipv4): Add check for connected
624 address is found or not.
625 (connected_add_ipv6): Reflect IPv6 connected address change to
626 protocol daemons.
627 (connected_delete_ipv6): Likewise.
628
6292000-09-07 David Lipovkov <davidl@nbase.co.il>
630
631 * rib.c (rib_delete_ipv4): Reverted the change from pseudo
632 interface patch to original. Because ospfd deletes routes using
633 zero ifindex.
634
6352000-08-17 Kunihiro Ishiguro <kunihiro@zebra.org>
636
637 * zebra-0.88 is released.
638
6392000-08-15 "Akihiro Mizutani" <mizutani@dml.com>
640
641 * rib.c (show_ip_route_protocol): Help string correction.
642 (show_ip_route_prefix): Check prefix mask.
643 (show_ip_route_vty_detail): Display distance and metric.
644
6452000-08-14 Kunihiro Ishiguro <kunihiro@zebra.org>
646
647 * zserv.c (zsend_interface_add): Change ifindex store size from
648 two octet to four.
649 (zsend_interface_delete): Likewise.
650 (zsend_interface_address_add): Likewise.
651 (zsend_interface_address_delete): Likewise.
652 (zsend_interface_up): Likewise.
653 (zsend_interface_down): Likewise.
654
6552000-08-13 Kunihiro Ishiguro <kunihiro@zebra.org>
656
657 * rib.c (rib_add_ipv4): Do not install distance 255 route.
658
6592000-08-10 Toshiaki Takada <takada@zebra.org>
660
661 * interface.c (bandwidth_if), (no_bandwidth_if): Call
662 zebra_interface_up_update () instead of using if_up() and if_down().
663
6642000-08-07 "Akihiro Mizutani" <mizutani@dml.com>
665
666 * interface.c (bandwidth_if): Fix help string.
667
6682000-08-07 Matthew Grant <grantma@anathoth.gen.nz>
669
670 * interface.c (if_dump_vty): Display bandwidth value.
671 (bandwidth_if): New command "bandwidth <1-10000000>" is added.
672 When interface is up, force protocol daemons to recalculate routes
673 due to cost change.
674 (no_bandwidth_if): Likewise.
675 (if_config_write): Output bandwidth configuration.
676
677 * zserv.c (zsend_interface_add): Send bandwidth value.
678 (zsend_interface_up): Likewise.
679 (zsend_interface_down): Likewise.
680
681
6822000-08-07 Michael Rozhavsky <mike@nbase.co.il>
683
684 * rib.c (show_ip_route_protocol): "show ip route
685 (bgp|connected|kernel|ospf|rip|static)" is added.
686
6872000-08-07 Kunihiro Ishiguro <kunihiro@zebra.org>
688
689 * rib.c (rib_lookup_ipv4_nexthop): Check parent node until IGP
690 nexthop is found.
691 (rib_add_ipv4_internal): Set fib ifindex to rib ifindex.
692
6932000-08-06 Kunihiro Ishiguro <kunihiro@zebra.org>
694
695 * redistribute.c (redistribute_delete): Fix bug of default route
696 redistribute treatment.
697
6982000-08-05 Kunihiro Ishiguro <kunihiro@zebra.org>
699
700 * rib.c (rib_init): Install ip_node in rib.c instead of zserv.c.
701 Change default distance value.
702
703 Old New
704 ------------------------------------------
705 system 10 0
706 kernel 20 0
707 connected 30 0
708 static 40 1
709 rip 50 120
710 ripng 50 120
711 ospf 60 110
712 ospf6 49 110
713 bgp 70 200(iBGP) 20(eBGP)
714 ------------------------------------------
715
716 * zserv.c (client_lookup): Function removed.
717 (zsend_interface_add): Use client's output buffer. Check ifinfo
718 flag.
719 (zsend_interface_delete): Likewise.
720 Delete ipv4_static_radix and ipv6_static_radix.
721
7222000-08-02 Kunihiro Ishiguro <kunihiro@zebra.org>
723
724 * zserv.h (struct zebra_client): When client request interface
725 information, ifinfo is set.
726
727 * rib.c: Temporary Revert changes for pseudo interface.
728
729 * rib.h: Likewise.
730
731 * zserv.c: Likewise.
732
733 * interface.c: Likewise.
734
7352000-08-02 David Lipovkov <davidl@nbase.co.il>
736
737 * interface.c (zebra_if_init): Install interface "pseudo"
738 commands.
739
740 * rib.c (rib_create): ifname argument is added.
741 (rib_add_ipv4_pseudo): New function is added.
742 (rib_delete_ipv4_pseudo): Likewise.
743
744 * rib.h : Delete INTERFACE_UNKNOWN definition. Add prototype for
745 pseudo interface functions.
746
747 * rt_netlink.c (netlink_link_change): Check for pseudo interface.
748
749 * zserv.c (ip_route): When destination is pseudo interface, call
750 rib_add_ipv4_pseudo().
751
752 * zserv.c (no_ip_route): Trim "unknown" argument.
753
7542000-07-26 kunitake@dti.ad.jp
755
756 * if_ioctl.c (if_get_hwaddr): Fix hardware address length from 8
757 to 6.
758
759 * rtadv.c (rtadv_send_packet): Fix shift bug for hardware address.
760
7612000-07-24 Akihiro Mizutani <mizutani@dml.com>
762
763 * interface.c: Use install_default() for common VTY commands.
764
7652000-07-23 Kunihiro Ishiguro <kunihiro@zebra.org>
766
767 * if_ioctl.c (interface_list_ioctl): A interface list size is
768 calculated from ifreq->if_addr.sa_len. This is for OpenBSD.
769
770 * ioctl.c (if_get_mtu): Remove codes for SIOCGIFDATA.
771
7722000-07-09 Chris Dunlop <chris@onthe.net.au>
773
774 * if_ioctl.c (if_get_index): Add check for HAVE_BROKEN_ALIASES.
775
7762000-07-04 Kunihiro Ishiguro <kunihiro@zebra.org>
777
778 * zserv.c (zebra_client_read): Add ZEBRA_REDISTRIBUTE_{ADD,DELETE}
779 message handling.
780
7812000-07-02 David Lipovkov <davidl@nbase.co.il>
782
783 * zserv.c: "ip route A.B.C.D/M unknown" command is added.
784
7852000-06-28 Michael Rozhavsky <mike@nbase.co.il>
786
787 * rib.c: Remove old kernel route when new route comes in.
788
7892000-06-13 David Lipovkov <davidl@nbase.co.il>
790
791 * rib.c (rib_if_up): Add check for unknown interface.
792
7932000-06-13 Kunihiro Ishiguro <kunihiro@zebra.org>
794
795 * rib.h: Define INTERFACE_UNKNOWN.
796
7972000-06-08 Kunihiro Ishiguro <kunihiro@zebra.org>
798
799 * Makefile.am (EXTRA_DIST): Move irdp.c until implementation is
800 finished.
801
8022000-06-05 David Lipovkov <davidl@nbase.co.il>
803
804 * interface.c (if_zebra_delete_hook): Call rib_if_delete().
805
806 * redistribute.c (zebra_interface_delete_update): New function.
807
808 * redistribute.h (zebra_interface_delete_update): New function
809 prototype.
810
811 * rib.c (rib_if_delete): New function. Walk down all routes and
812 delete all on the interface.
813
814 * rib.h: New function prototype.
815
816 * rt_netlink.c (netlink_link_change): Call
817 zebra_interface_delete_update ().
818
8192000-05-10 Kunihiro Ishiguro <kunihiro@zebra.org>
820
821 * if_ioctl.c (interface_info_ioctl): Check interface's flag before
822 checking interface's address.
823
8242000-04-26 Jochen Friedrich <jochen@nwe.de>
825
826 * GNOME-PRODUCT-ZEBRA-MIB: New file.
827
828 * GNOME-SMI: New file.
829
8302000-04-23 Kunihiro Ishiguro <kunihiro@zebra.org>
831
832 * irdp.c: New file from 1997 development code.
833 * irdp.h: Likewise.
834
8352000-04-19 Kunihiro Ishiguro <kunihiro@zebra.org>
836
837 * rtadv.c (rtadv_send_packet): Enclose router advertisement
838 logging with IS_ZEBRA_DEBUG_PACKET.
839
8402000-04-17 Kunihiro Ishiguro <kunihiro@zebra.org>
841
842 * zserv.c (zebra_client_close): Remove client structure from
843 client_list when connection is terminated.
844
8452000-03-21 David Lipovkov <davidl@nbase.co.il>
846
847 * connected.c (connected_add_ipv4): Allows all necessary structure
848 updates for connected route, but doesn't insert it into rib if
849 it's interface is down.
850
8512000-01-21 Hideto Yamakawa <hideto.yamakawa@soliton.co.jp>
852
853 * rtread_getmsg.c: Set some definition for Solaris 2.5 and Solaris
854 2.5.1.
855
8562000-01-21 Kunihiro Ishiguro <kunihiro@zebra.org>
857
858 * rib.c (no_ipv6_route_ifname): Fix buf of cheking return value
859 from str2prefix_ipv6().
860
8612000-01-14 Kunihiro Ishiguro <kunihiro@zebra.org>
862
863 * rt_socket.c: Revert to use RTF_HOST for IPv4 with /32 route and
864 IPv6 with /128 routes.
865 (kernel_rtm_ipv4): In case of /32 route's gateway is interface. It
866 should have mask for cloning.
867
8681999-12-26 Jochen.Friedrich@genorz.de
869
870 * interface.c (if_dump_vty): Fix a bug of missing VTY_NEWLINE.
871
8721999-12-23 Alex Zinin <zinin@amt.ru>
873 * interface.*: dynamic int up/down support
874
8751999-12-09 Kunihiro Ishiguro <kunihiro@zebra.org>
876
877 * ipforward_proc.c (dropline): Move dropline() from lib/dropline.c
878
879 * rtread_proc.c (proc_route_read): Don't use dropline().
880
8811999-12-08 Kunihiro Ishiguro <kunihiro@zebra.org>
882
883 * kernel_socket.c (rtm_read): When message is RTM_GET, it has own
884 process's pid.
885
8861999-12-04 Kunihiro Ishiguro <kunihiro@zebra.org>
887
888 * main.c (main): Change to default log output to ZLOG_STDOUT.
889
890 * zserv.c (zebra_serv): More detailed error print.
891
8921999-11-30 Kunihiro Ishiguro <kunihiro@zebra.org>
893
894 * kernel_socket.c (rtm_read): Check old pid for static route
895 insertion check.
896
8971999-11-30 Kunihiro Ishiguro <kunihiro@zebra.org>
898
899 * interface.c (if_dump_vty): BSDI/OS uses 64bit for interface
900 statistics counter.
901
902 * mtu_kvm.c: New file added.
903
9041999-11-27 Vladimir B. Grebenschikov <vova@express.ru>
905
906 * kernel_socket.c (rtm_write): Set RTF_CLONING flag for
907 route to the directly connected interface.
908
9091999-11-27 Kunihiro Ishiguro <kunihiro@zebra.org>
910
911 * rt_socket.c: Delete USE_HOST_BIT definition.
912
9131999-11-21 Michael Handler <handler@sub-rosa.com>
914
915 * rtread_getmsg.c: Undef some definition to resolve conflict.
916
9171999-11-27 Kunihiro Ishiguro <kunihiro@zebra.org>
918
919 * kernel_socket.c (rtm_write): Change to use pre stored struct_dl
920 value for gateway specification.
921
9221999-11-25 Kunihiro Ishiguro <kunihiro@zebra.org>
923
924 * rt_socket.c (kernel_rtm_ipv4): Even mask is 32 under IPv4 or
925 128 under IPv6, don't use RTF_HOST.
926
9271999-11-21 Kunihiro Ishiguro <kunihiro@zebra.org>
928
929 * Makefile.am (EXTRA_DIST): Add rtread_getmsg.c.
930
9311999-11-21 Michael Handler <handler@sub-rosa.com>
932
933 * rtread_getmsg.c: Added for Solaris 2.6 support.
934
9351999-11-18 Kunihiro Ishiguro <kunihiro@zebra.org>
936
937 * rtread_sysctl.c (rtm_read_route): RTM_DELETE handling added.
938
939 * rt_socket.c (kernel_read): Better BSD routing socket support.
940
9411999-10-19 Kunihiro Ishiguro <kunihiro@zebra.org>
942
943 * client_main.c: Disable making obsolete zebra test `client'
944 command.
945
9461999-10-18 Kunihiro Ishiguro <kunihiro@zebra.org>
947
948 * zebra.c: Renamed to zserv.c.
949
950 * zebra.h: Global definitions are moved to lib/zebra.h. Then
951 renamed to zserv.h.
952
9531999-10-15 Jordan Mendelson <jordy@wserv.com>
954
955 * if_ioctl.c: Add Linux 2.2.X's alias support and dynamic
956 interface. Remove ugly MAX_INTERFACE handling codes.
957
9581999-09-17 Satosi KOBAYASI <kobayasi@north.ad.jp>
959
960 * Fix serious bug of IPv6 route deletion.
961
9621999-09-11 Kunihiro Ishiguro <kunihiro@zebra.org>
963
964 * ioctl.c (if_set_prefix): Properly set broadcast address.
965
9661999-09-04 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
967
968 * rib.c (rib_add_ipv6, rib_delete_ipv6): now protocol daemons
969 can install connected route to kernel via zebra
970
9711999-08-24 VOP <vop@unity.net>
972
973 * rib.c: Include "sockunion.h"
974
9751999-08-22 Kunihiro Ishiguro <kunihiro@zebra.org>
976
977 * ipforward.h: New file.
978
979 * zebra.h: Obsolete message ZEBRA_GET_ALL_INTERFACE,
980 ZEBRA_GET_ONE_INTERFACE, ZEBRA_GET_HOSTINFO are deleted.
981
9821999-08-18 Kunihiro Ishiguro <kunihiro@zebra.org>
983
984 * zebra.h (ZEBRA_INTERFACE_ADDRESS_ADD):
985 ZEBRA_INTERFACE_{ADD,DELETE} added.
986
9871999-08-15 Kunihiro Ishiguro <kunihiro@zebra.org>
988
989 * rib.c: show ip route A.B.C.D works.
990
991 * zebra.c (zebra_read_ipv4): Add ifindex to zebra messages.
992
9931999-08-12 Kunihiro Ishiguro <kunihiro@zebra.org>
994
995 * zebra.h: New Zebra message ZEBRA_INTERFACE_{ADD,DELETE} added.
996
9971999-08-09 Kunihiro Ishiguro <kunihiro@zebra.org>
998
999 * interface.h: New file.
1000 * Makefile.am: Add interface.h
1001
10021999-08-04 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1003
1004 * redistribute.c (zebra_redistribute): give ifindex to client.
1005
10061999-08-02 Kunihiro Ishiguro <kunihiro@zebra.org>
1007
1008 * main.c (longopts): -k, --keep_kernel option added.
1009
10101999-07-18 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1011
1012 * rt_socket.c (rtm_write): forgot closing socket bug fixed.
1013
10141999-07-17 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1015
1016 * rib.c (show_ipv6_cmd): if rib is link show interface name.
1017
10181999-07-17 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1019
1020 * rt_socket.c (rtm_write): use sockaddr_dl when null gateway.
1021
10221999-07-16 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1023
1024 * rt_socket.c (rtm_write): ipv6 route table bug fixed.
1025
10261999-07-15 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1027
1028 * zebra.c (zebra_read_ipv6): read link prefix from ospf6 support
1029
10301999-07-15 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1031
1032 * rt_socket.c (kernel_rtm_ipv6): gate treatment bug fixed.
1033
10341999-07-15 Kunihiro Ishiguro <kunihiro@zebra.org>
1035
1036 * if_sysctl.c (ifm_read): Clear sockunion argument before fetching
1037 data. Suggested by "Chris P. Ross" <cross@eng.us.uu.net>
1038
10391999-07-08 HEO SeonMeyong <seirios@Matrix.IRI.Co.Jp>
1040
1041 * interface.c (if_tun_add): Add KAME's gif tunnel setting codes.
1042
10431999-06-26 Kunihiro Ishiguro <kunihiro@zebra.org>
1044
1045 * zebra.c (zebra_serv): Only accept loopback address connection.
1046
10471999-06-25 Kunihiro Ishiguro <kunihiro@zebra.org>
1048
1049 * zebra.h (ZEBRA_ROUTE_EXTERNAL): Add zebra messages flags
1050
10511999-06-17 Kunihiro Ishiguro <kunihiro@zebra.org>
1052
1053 * ipforward_proc.c: ipforward_on () and ipforward_off () added.
1054
10551999-06-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1056
1057 * ipforward_proc.c (ipforward_ipv6): Check for IPv6 forwarding
1058 using /proc file system is added.
1059
10601999-06-06 Kunihiro Ishiguro <kunihiro@zebra.org>
1061
1062 * if_ioctl.c (if_get_index): Interface index set bug is fixed by
1063 adding #else at the middle of function. Suggested by David Luyer
1064 <luyer@ucs.uwa.edu.au>.
1065
10661999-05-29 <kunihiro@zebra.org>
1067
1068 * rt_ioctl.c: Comment out #include <linux/ipv6_route.h>.
1069
10701999-05-26 Kunihiro Ishiguro <kunihiro@zebra.org>
1071
1072 * zebra.h (ZEBRA_ROUTE_MAX): Add new define for the max value of
1073 the sort of routes.
1074
10751999-05-25 Patrick Koppen <koppen@rhrk.uni-kl.de>
1076
1077 * rt_netlink.c (netlink_socket): Make netlink socket non-blocking.
1078 (netlink_parse_info): If errno is EWOULDBLOCK then continue to
1079 parse the message.
1080 (netlink_talk): Likewise
1081
10821999-05-17 <kunihiro@zebra.org>
1083
1084 * redistribute.c (zebra_check_addr): Added for loopback address
1085 check.
1086
10871999-05-15 Kunihiro Ishiguro <kunihiro@zebra.org>
1088
1089 * rt_netlink.c (netlink_route_change): Tempolary bypass ipv6 route
1090 change treatment.
1091
1092 * Makefile.am (noinst_HEADERS): redistribute.h added.
1093
1094 * redistribute.h: New file.
1095
10961999-05-14 Stephen R. van den Berg <srb@cuci.nl>
1097
1098 * zebra.c (show_table): Show all table configuration DEFUN.
1099 (config_table): Config table number DEFUN.
1100
1101 * rt_netlink.c: Add support for multiple routing table.
1102
1103 * rib.c (rib_weed_table): New function added for delete all
1104 routes from specified routing table.
1105
1106 * main.c (signal_init): SIGTERM call sigint.
1107 (sigint): Loggging more better message.
1108
11091999-05-09 Kunihiro Ishiguro <kunihiro@zebra.org>
1110
1111 * rt_netlink.c: Change log () to zlog ().
1112
11131999-05-07 <kunihiro@zebra.org>
1114
1115 * zebra.h (ZEBRA_ROUTE_OSPF6): Added for ospf6d route.
1116
11171999-04-20 Kunihiro Ishiguro <kunihiro@zebra.org>
1118
1119 * interface.c: Add `no ip address' command.
1120
11211999-04-10 Kunihiro Ishiguro <kunihiro@zebra.org>
1122
1123 * rt_netlink.c (kernel_read): Function added for asynchronous
1124 zebra between kernel communication.
1125
11261999-03-25 Kunihiro Ishiguro <kunihiro@zebra.org>
1127
1128 * rtread_sysctl.c (rtm_read): Fix address memcopy overrun bug.
1129 Reported by Achim Patzner <ap@bnc.net>.
1130
11311999-03-03 Kunihiro Ishiguro <kunihiro@zebra.org>
1132
1133 * Makefile.am: Install configuration sample with 600 permission.
1134
11351999-03-02 Kunihiro Ishiguro <kunihiro@zebra.org>
1136
1137 * Makefile.am: Add -I.. to INCLUDES.
1138
11391999-02-18 Peter Galbavy <Peter.Galbavy@knowledge.com>
1140
1141 * syslog support added
1142
11431999-02-17 Peter Galbavy <Peter.Galbavy@knowledge.com>
1144
1145 * if_sysctl.c (interface_list): allocated memory free when unknown
1146 ifm_type is returned.
1147
1148 * ioctl.c (if_get_mtu): added SIOCGIFDATA treatment.
1149
11501998-12-15 Magnus Ahltorp <map@stacken.kth.se>
1151
1152 * interface.c: Header include added.
1153
11541998-12-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1155
1156 * rt.h (kernel_delete_ipv6): change int index to unsigned int index.
1157
11581998-12-13 Kunihiro Ishiguro <kunihiro@zebra.org>
1159
1160 * if_ioctl.c (interface_list_ioctl): interface flag must be
1161 checked before check addresses of the interface.
1162
11631998-12-07 Kunihiro Ishiguro <kunihiro@zebra.org>
1164
1165 * Makefile.am (INCLUDES): add @INCLUDES@ for Linux IPv6.
1166
11671998-10-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1168
1169 * ioctl.c: Linux version before 2.1.0 need interface route setup.
1170
11711998-09-15 HEO SeonMeyong <seirios@matrix.iri.co.jp>
1172
1173 * change HYDRANGEA to KAME
1174
11751998-09-01 Kunihiro Ishiguro <kunihiro@zebra.org>
1176
1177 * if_ioctl.c (if_addr_ioctl): set address family for getting
1178 interface's address.
1179 (if_get_index): silently return when can't get interface's index.
1180
11811998-08-17 Kunihiro Ishiguro <kunihiro@zebra.org>
1182
1183 * main.c (main): batch mode option '-b' added.
1184
11851998-08-16 Kunihiro Ishiguro <kunihiro@zebra.org>
1186
1187 * ioctl.c (if_set_prefix): add `ip address IPV4ADDR' command.
1188 * interface.c (shutdown_if): add interface shutdown and no
1189 shutdown command.
1190
11911998-08-12 Kunihiro Ishiguro <kunihiro@zebra.org>
1192
1193 * rib.c (rib_add_ipv6): delete rib_add_in6.
1194
11951998-07-27 Kunihiro Ishiguro <kunihiro@zebra.org>
1196
1197 * main.c: retain flag is added.
1198
11991998-07-08 Kunihiro Ishiguro <kunihiro@zebra.org>
1200
1201 * rtable.[ch]: merged with rib.[ch]
1202
12031998-07-07 Kunihiro Ishiguro <kunihiro@zebra.org>
1204
1205 * connected.h: renamed from ifa.h.
1206
12071998-06-09 Kunihiro Ishiguro <kunihiro@zebra.org>
1208
1209 * rename if.c to interface.c
1210 * rename ifa.c to connected.c
1211
1212 * Porting to Debian GNU/Linux 2.0 (hamm).
1213
12141998-06-08 Kunihiro Ishiguro <kunihiro@zebra.org>
1215
1216 * rt_netlink.c: renamed from krt_netlink.c
1217
1218 * fib.c: deleted.
1219 * rt_kvm.c: deleted.
1220 * rtread_getmsg.c: deleted.
1221
12221998-06-07 Kunihiro Ishiguro <kunihiro@zebra.org>
1223
1224 * if.c (multicast): add multicast flag [un]set fucntion.
1225
12261998-05-19 Yamshita TAKAO <jargon@lares.dti.ne.jp>
1227
1228 * rt_socket.c: Modify for compile on Solaris, but dont't work it.
1229 rt_socket.c have some undefined function, so add directive "IMPLEMENT"
1230
12311998-05-18 Yamshita TAKAO <jargon@lares.dti.ne.jp>
1232
1233 * zebra.c: Modify for compile on Solaris.
1234
12351998-05-03 Kunihiro Ishiguro <kunihiro@zebra.org>
1236
1237 * main.c: change CONFDIR to SYSCONFDIR.
1238
12391998-05-01 Kunihiro Ishiguro <kunihiro@zebra.org>
1240
1241 * .cvsignore: added.
1242
12431998-04-02 Kunihiro Ishiguro <kunihiro@zebra.org>
1244
1245 * client.c: moves to ../lib.
1246
12471998-03-30 Kunihiro Ishiguro <kunihiro@zebra.org>
1248
1249 * if_ioctl.c (if_get_addr): Change address copy from memcopy() to
1250 structure assignment.
1251
12521998-03-30 URA Hiroshi <ura@yamato.ibm.co.jp>
1253
1254 * if_sysctl.c (ifm_interface_add): sdl->sdl_data copy bug fixed.
1255
12561998-02-23 "Hannes R. Boehm" <hannes@boehm.org>
1257
1258 * if.c (if_init): add config_exit_cmd and config_help_cmd.
1259
12601998-01-24 Kunihiro Ishiguro <kunihiro@zebra.org>
1261
1262 * rt_ioctl.c (route_ioctl): EPERM treatment added.
1263
12641998-01-05 Kunihiro Ishiguro <kunihiro@zebra.org>
1265
1266 * rt_socket.c (kernel_read): communication port zebra between
1267 kernel is now handled by kernel_read.
1268
12691998-01-02 Kunihiro Ishiguro <kunihiro@zebra.org>
1270
1271 * main.c (main): zebra [-P port] can specify vty port number.
1272
12731997-12-25 Kunihiro Ishiguro <kunihiro@zebra.org>
1274
1275 * zebra.c: change select will be block.
1276
12771997-12-04 Kunihiro Ishiguro <kunihiro@zebra.org>
1278
1279 * add static route treatment.
1280
12811997-11-25 Kunihiro Ishiguro <kunihiro@zebra.org>
1282
1283 * rt_netlink.c: add netlink support over GNU/Linux system.
1284
12851997-11-23 Kunihiro Ishiguro <kunihiro@zebra.org>
1286
1287 * all inet_addr is changed to inet_aton.
1288
1289 * zebra.c (ip_route): add ip route command for static routes.
1290
12911997-11-20 Kunihiro Ishiguro <kunihiro@zebra.org>
1292
1293 * if.c (if_flag_dump): Linux port of if_flag_dump and _vty.
1294
12951997-11-19 Kunihiro Ishiguro <kunihiro@zebra.org>
1296
1297 * if.c: add interface command.
1298
12991997-11-18 Kunihiro Ishiguro <kunihiro@zebra.org>
1300
1301 * ipforward_proc.c : Now works on Linux.
1302
13031997-10-25 Kunihiro Ishiguro <kunihiro@zebra.org>
1304
1305 * command.c : add completion feature.
1306
13071997-10-18 Kunihiro Ishiguro <kunihiro@zebra.org>
1308
1309 * vty.c (vty_command): add vty interface.
1310
13111997-10-13 Kunihiro Ishiguro <kunihiro@zebra.org>
1312
1313 * zebra.c: add verbose mode.
1314
13151997-10-12 SonMyong Ho <s-ho@Matrix.IRI.Co.Jp>
1316
1317 * Hydrangea for FreeBSD supported
1318 * in.h: add some prototype.
1319
13201997-10-11 Kunihiro Ishiguro <kunihiro@zebra.org>
1321
1322 * rt_socket.c and rtread.c completely rewritten.
1323
13241997-10-05 Kunihiro Ishiguro <kunihiro@zebra.org>
1325
1326 * rt_socket.c: rename kernel_sock to routing_socket
1327
13281997-10-04 Kunihiro Ishiguro <kunihiro@zebra.org>
1329
1330 * if.c (if_new): interface structure change from linklist to vector.
1331
13321997-10-03 Kunihiro Ishiguro <kunihiro@zebra.org>
1333
1334 * vector.c (vector_init): create vector related function
1335
13361997-09-25 Kunihiro Ishiguro <kunihiro@zebra.org>
1337
1338 * Makefile.in: add tags target
1339
1340 * start IPv6 support for INRIA FreeBSD.
1341