blob: 924f0f0a6638f430abb9b9a5a156e8a5f0365bc8 [file] [log] [blame]
ajsd2fc8892005-04-02 18:38:43 +000012005-04-02 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
2
ajsa3491982005-04-02 22:50:38 +00003 * kernel_socket.c: (ifm_read) Use new if_lookup_by_name_len function
4 to save a memcpy.
5 * if_ioctl_solaris.c: (interface_list_ioctl) Fix subtle bug with new
6 if_get_by_name_len function.
7
82005-04-02 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
9
ajsd2fc8892005-04-02 18:38:43 +000010 * interface.c: (if_new_intern_ifindex) Remove obsolete function.
11 (if_delete_update) After distributing the interface deletion message,
12 set ifp->ifindex to IFINDEX_INTERNAL.
13 (if_dump_vty) Detect pseudo interface by checking if ifp->ifindex is
14 IFINDEX_INTERNAL.
15 (zebra_interface) Check return code from interface_cmd.func.
16 Do not set internal ifindex values to if_new_intern_ifindex(),
17 since we now use IFINDEX_INTERNAL for all pseudo interfaces.
18 * kernel_socket.c: (ifm_read) Fix code and comments to reflect that
19 all internal interfaces now have ifp->ifindex set to IFINDEX_INTERNAL.
20 * rt_netlink.c: (set_ifindex) New function used to update ifp->ifindex.
21 Detects interface rename events by checking if that ifindex is already
22 being used. If it is, delete the old interface before assigning
23 the ifindex to the new interface.
24 (netlink_interface, netlink_link_change) Call set_ifindex to update
25 the ifindex.
26
hassob7ed1ec2005-03-31 20:13:49 +0000272005-03-31 Hasso Tepper <hasso at quagga.net>
28
29 * rt_netlink.c (netlink_talk_filter): Show always warning message,
30 it's not for debug.
31 * rt_netlink.c (netlink_talk): Don't assume we use netlink_cmd
32 although we do now actually.
33 * rt_netlink.c (netlink_route, netlink_route_multipath): Always use
34 netlink_cmd to send messages to the kernel.
35
ajs2da40f42005-03-30 16:33:13 +0000362005-03-30 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
37
38 * irdp.h: Add prototype for irdp_sock_init, and fix protos for
39 other irdp_* functions.
40 * irdp_interface.c: (irdp_if_start) If irdp_sock is negative,
41 call irdp_sock_init to create the IRDP socket.
42 (irdp_if_init) Rename to irdp_init().
43 (get_iflist_ifp) Remove function that is a duplicate of
44 if_lookup_by_index.
45 (*) Make many functions static. And remove superfluous "\n" from
46 several zlog messages.
47 * irdp_main.c: (irdp_init) Remove function that used to call
48 irdp_if_init() and irdp_sock_init(), since we will now create
49 the socket only upon first use.
50 (irdp_sock_init) Do not update global irdp_sock variable, just
51 return the fd and assume that the caller will do so. If setsockopt
52 calls fail, close the socket before returning -1.
53 (*) Make many functions static.
54 * irdp_packet.c: Initialize irdp_sock to -1.
55 (irdp_read_raw) Call standard library function if_lookup_by_index
56 instead of get_iflist_ifp.
57 (irdp_recvmsg) Should be static, not global.
58
ajsa608bbf2005-03-29 17:03:49 +0000592005-03-29 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
60
61 * rt_netlink.c: (netlink_link_change) If the status of an
62 operative interface changes (e.g. MTU changes), the client
63 daemons should be notified by calling zebra_interface_up_update.
64 Previously, the information was being updated in zebra's
65 interface structure, but the clients were not notified of
66 changes to an operative interface.
67
vincent7cee1bb2005-03-25 13:08:53 +0000682005-03-25 Jean-Mickael Guerin <jean-mickael.guerin@6wind.com>
69 * interface.c, interface.h, rtadv.c, rtadv.h: modifications to
70 IPv6 Neighbor Discovery according to RFC3775, section 7:
71 o 1-bit Home Agent flag management in Router Advertisement (7.1).
72 o 1-bit Router Address flag management in Prefix Information
73 Option (7.2).
74 o Advertisement Interval Option (7.3)
75 o Home Agent Information Option (7.4)
76 o Changes to Sending Router Advertisements more frequently (7.5)
77
hassoed9bb6d2005-03-13 19:17:21 +0000782005-03-13 Hasso Tepper <hasso at quagga.net>
79
80 * zebra/interaface.c: "show interface description" command
81 implemented.
82
paulc1f01f32005-03-12 06:33:14 +0000832005-03-12 Paul Jakma <paul@dishone.st>
84
85 * rt_netlink.c: (netlink_route_multipath) dont set equalise flag.
86 No stock Linux kernel has ever supported it, and even if it had
87 it's not generally a good idea.
88
hasso42a66d72005-03-07 08:19:44 +0000892005-03-07 Michael Sandee <voidptr@voidptr.sboost.org>
90
91 * if_proc.c, ipforward_proc.c, rtread_proc.c: Fix fd leaks.
92
hasso3452d472005-03-06 13:42:05 +0000932005-03-06 Hasso Tepper <hasso at quagga.net>
94
95 * interface.c: Fix CRC and frame errors statistics in Linux.
96
ajs719e9742005-02-28 20:52:15 +0000972005-02-28 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
98
99 * zserv.c: Must include network.h and buffer.h for non-blocking I/O.
100 Remove global message_queue and t_write (need separate buffering for
101 each client).
102 (zebra_server_dequeue,zebra_server_enqueue) Remove functions
103 related to old buggy buffering code.
104 (zserv_delayed_close) New thread callback function to delete a client.
105 (zserv_flush_data) New thread callback function to flush buffered
106 data to client.
107 (zebra_server_send_message) Rewritten to use buffer_write (so
108 buffering of writes and non-blocking I/O work properly).
109 (zsend_interface_add,zsend_interface_delete,zsend_interface_address,
110 zsend_interface_update) Return 0 instead of -1 if !client->ifinfo
111 (this is not really an error). Return value from
112 zebra_server_send_message.
113 (zsend_route_multipath,zsend_ipv4_nexthop_lookup,
114 zsend_ipv4_import_lookup) Return value from zebra_server_send_message.
115 (zsend_ipv6_nexthop_lookup) Fix scope to static, and return value
116 from zebra_server_send_message.
117 (zsend_router_id_update) Must use zebra_server_send_message instead
118 of deprecated writen function. Return 0 instead of -1 if this client
119 is not subscribed to router-id updates (since this is not really
120 an error).
121 (zread_interface_add) Change type to static int. If
122 zsend_interface_add fails or zsend_interface_address fails, return -1
123 immediately (since the client has had an I/O error).
124 (zread_interface_delete,zread_ipv4_add,zread_ipv4_delete,
125 zread_ipv6_add,zread_ipv6_delete,zread_router_id_delete) Return 0
126 to indicate success.
127 (zread_ipv4_nexthop_lookup) Return value from
128 zsend_ipv4_nexthop_lookup.
129 (zread_ipv4_import_lookup) Return value from zsend_ipv4_import_lookup.
130 (zebra_read_ipv6) Remove unused function.
131 (zread_ipv6_nexthop_lookup) Return value from
132 zsend_ipv6_nexthop_lookup.
133 (zread_router_id_add) Return value from zsend_router_id_update.
134 (zebra_client_close) Call buffer_free(client->wb) and
135 thread_cancel(client->t_suicide).
136 (zebra_client_create) Allocate client->wb using buffer_new.
137 (zebra_client_read) Support non-blocking I/O by using stream_read_try.
138 Use ZEBRA_HEADER_SIZE instead of 3.
139 (zebra_accept) Fix bug: reset accept thread at top. Make client
140 socket non-blocking using the set_nonblocking function.
141 (config_write_forwarding) Fix scope to static.
142 (zebra_init) Remove initialization code for old buggy write buffering.
143 * zserv.h: Add 2 new fields to struct zserv: struct buffer *wb
144 (to enable buffered writes with non-blocking I/), and
145 struct thread *t_suicide to support delayed close on I/O
146 errors.
147 * router-id.h: Remove prototypes for zread_router_id_add and
148 zread_router_id_delete (their scope should be static to zserv.c).
149
ajs27da3982005-02-24 16:06:33 +00001502005-02-24 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
151
152 * redistribute.c: (zebra_check_addr,is_default,
153 zebra_redistribute_default,zebra_redistribute) Fix scope to be static.
154
hassoe8274dc2005-02-20 19:09:23 +00001552005-02-20 Hasso Tepper <hasso at quagga.net>
156
157 * rt_netlink.c: Don't show messages "ignoring message type 0x001[89]"
158 if we are not debugging.
159
paule31f2292005-02-19 02:00:26 +00001602005-02-19 Paul Jakma <paul@dishone.st>
161
162 * zserv.c: (zebra_read_ipv6) replace the char * arithmetic with
163 STREAM_READABLE.
164
paul1e193152005-02-14 23:53:05 +00001652005-02-14 Paul Jakma <paul@dishone.st>
166
167 * Not all Linux netlink systems have IFLA_WIRELESS
168
ajs6a52d0d2005-01-30 18:49:28 +00001692005-01-30 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
170
171 * ioctl.c: (if_ioctl,if_ioctl_ipv6,if_get_flags) Replace perror with
172 zlog_err.
173 * ioctl_solaris.c: (if_ioctl,if_ioctl_ipv6) Replace perror with
174 zlog_err.
175
ajs4be019d2005-01-29 16:12:41 +00001762005-01-29 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
177
ajs4460e7a2005-01-29 17:07:40 +0000178 * if_ioctl_solaris.c: (interface_list_ioctl) Save errno before calling
179 zserv_privs.change.
180 * ioctl{,_solaris}.c: (if_ioctl,if_ioctl_ipv6) Save errno before calling
181 zserv_privs.change.
182 * ipforward_solaris.c: (solaris_nd) Save errno before calling
183 zserv_privs.change.
184 * irdp_main.c: (irdp_sock_init) Save errno before calling
185 zserv_privs.change.
186
1872005-01-29 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
188
ajs4be019d2005-01-29 16:12:41 +0000189 * rt_netlink.c: (netlink_socket,netlink_request,netlink_parse_info,
190 netlink_talk) Save errno before calling zserv_privs.change.
191
paulc15cb242005-01-24 09:05:27 +00001922005-01-24 Martin Pot <mpot at martybugs.net>
193
194 * zebra/rt_netlink.c: ignore wireless newlink netlink messages.
195
hasso6f2c27a2005-01-18 13:44:35 +00001962005-01-18 Hasso Tepper <hasso at quagga.net>
197
198 * interface.c: Better statistics output in "show interface" command in
199 case of /proc being used.
200
hasso583d8002005-01-16 23:34:02 +00002012005-01-17 Hasso Tepper <hasso at quagga.net>
202
203 * main.c: With --nl-bufsize argument is required.
204
paul865b8522005-01-05 08:30:35 +00002052005-01-05 Paul Jakma <paul@dishone.st>
206
207 * zserv.c: (zebra_accept) Comment out setting of socket to NONBLOCK
208 for now, as we dont actually deal with with resending.... See
209 bugzilla #122, fix from wawa@yandex-team.ru (Vladimir Ivanov).
210 * kernel_socket.c: (routing_socket) ditto.
211
ajsb99760a2005-01-04 16:24:43 +00002122005-01-04 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
213
214 * rtadv.c: (rtadv_recv_packet,rtadv_send_packet) Use ZCMSG_FIRSTHDR
215 instead of CMSG_FIRSTHDR.
216
ajs341a8f12004-12-22 16:32:16 +00002172004-12-22 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
218
219 * connected.c: (connected_add_ipv4) Limit warning about /32 addresses
220 with no peer specified to PtP interfaces only.
221
hassob8adec12004-12-18 16:03:28 +00002222004-12-18 Hasso Tepper <hasso at quagga.net>
223
224 * zebra_vty.c: Fix "show ipv6 route <proto>" command help and make it
225 work for isis routes.
226
gdt6a250b02004-12-09 14:48:12 +00002272004-12-09 Greg Troxel <gdt@fnord.ir.bbn.com>
228
229 * kernel_socket.c (rtmsg_debug): char * => const char *
230
ajs274a4a42004-12-07 15:39:31 +00002312004-12-07 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
232
ajsb6178002004-12-07 21:12:56 +0000233 * *.c: Change level of debug messages to LOG_DEBUG.
234
2352004-12-07 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
236
ajs274a4a42004-12-07 15:39:31 +0000237 * main.c: (main) The 2nd argument to openzlog has been removed.
238 So stdout logging will no longer be enabled by default.
239 * irdp_main.c: (irdp_finish) Reduce severity of shutdown message
240 from LOG_WARNING to LOG_INFO.
241
ajs887c44a2004-12-03 16:36:46 +00002422004-12-03 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
243
244 * main.c: (sigint) Use zlog_notice for termination message.
245 (main) Add a startup announcement using zlog_notice.
246
hassoaccb1562004-11-25 19:21:07 +00002472004-11-25 Hasso Tepper <hasso at quagga.net>
248
249 * irdp_interface.c: Remove comment from DEFUN, it breaks vtysh because
250 it confuses extract.pl.
hassoc0652302004-11-25 19:33:48 +0000251 * main.c: Make group to run as configurable.
hassoaccb1562004-11-25 19:21:07 +0000252
hasso6bd7c6a2004-10-28 17:32:27 +00002532004-10-28 Hasso Tepper <hasso at quagga.net>
254
255 * interface.c: Remove dead "ip tunnel" command.
256
paul06f953f2004-10-22 17:00:38 +00002572004-10-22 Paul Jakma <paul@dishone.st>
258
259 * irdp_main.c: change setsockopt_pktinfo to setsockopt_ifindex
260
hasso3fb9cd62004-10-19 19:44:43 +00002612004-10-19 Andrew J. Schorr <aschorr@telemetry-investments.com>
262
263 * rt_netlink.c: (netlink_interface_addr) For PtP interfaces, ignore
264 tb[IFA_ADDRESS] if it's the same as tb[IFA_LOCAL].
265 * interface.c: (ip_address_install) Use new ipv4_broadcast_addr
266 function.
267 * connected.c: (connected_up_ipv4) Use CONNECTED_POINTOPOINT_HOST
268 macro.
269 (connected_down_ipv4) ditto.
270 (connected_add_ipv4) Validate destination address, print warnings
271 if it does not make sense.
272
hassoc1eaa442004-10-19 06:26:01 +00002732004-10-19 Hasso Tepper <hasso at quagga.net>
274
275 * zserv.c: Fix regression introduced with zserv cleanup.
276
hassoc75105a2004-10-13 10:33:26 +00002772004-10-13 Hasso Tepper <hasso at quagga.net>
278
279 * zebra_snmp.c: Remove defaults used to initialize smux connection to
280 snmpd. Connection is initialized only if smux peer is configured.
hassob71f00f2004-10-13 12:20:35 +0000281 * zserv.c: Remove useless warnings "forwarding is already on".
hassoc75105a2004-10-13 10:33:26 +0000282
hasso39ff11d2004-10-12 15:55:19 +00002832004-10-12 Hasso Tepper <hasso at quagga.net>
284
285 * zebra_vty.c: Unbreak "show ip route" command help and make it work
286 for isis routes.
hasso39db97e2004-10-12 20:50:58 +0000287 * interface.c(if_dump_vty): Show IPv6 addresses in "show interface"
288 output. Fixes Bugzilla #119.
289 * *.c: Make some strings const and some (unsigned) casts to fix
290 compiler warnings.
hasso39ff11d2004-10-12 15:55:19 +0000291
hassofce954f2004-10-07 20:29:24 +00002922004-10-07 Hasso Tepper <hasso at quagga.net>
293
294 * connected.c, main.c, rt_netlink.c, rtadv.c, zebra_rib.c, zserv.c:
295 Fix warnings: make strings const, signed -> unsigned.
296
paul72164662004-10-05 14:39:43 +00002972004-10-05 Paul Jakma <paul@dishone.st>
298
299 * irdp_packet.c: (parse_irdp_packet) style issues.
300 Use sockopt_iphdrincl_swab_systoh.
301 Try unbork the code. Checksum the ICMP data and actually
302 compare it to received checksum. Check data length against
303 claimed length in header.
304 Always use ntoh.. when accessing addresses, even when the
305 comparison happens to be endian-safe.
306 (send_packet) minor style isues. Use
307 sockopt_iphdrincl_swab_htosys.
308 (irdp_iph_hton/ntoh) IP header to/from network/host order.
309
hassoeef1fe12004-10-03 18:46:08 +00003102004-10-03 Gilad Arnold <gilad.arnold at terayon.com>
311
312 * interface.c, interface.h: A new prefix tree of connected subnets is
313 associated with each interface structure in zebra, in which each
314 live (ie, non-synthetic) node holds a list of installed addresses
315 that belong to that prefix. Remove secondary address logic from cli.
316 See [quagga-dev 872] for detailed explanation.
317 * connected.c: Use if_subnet_add() and if_subnet_delete().
318
hasso18a6dce2004-10-03 18:18:34 +00003192004-10-03 James R. Leu <jleu at mindspring.com>
320
321 * router-id.c, router-id.h: New files. Router id selection process. If
322 there is non 127.x.x.x address in loopack interface, lowest of them
323 is chosen. If there isn't, lowest from other interfaces addresses
324 are chosen. "router-id x.x.x.x" vty command to manual override.
325 * Makefile.am: Compile new files.
326 * main.c: Initialize router id.
327 * redistribute.c: Add interface addresses into router id selection
328 lists as they (dis)appear.
329 * zserv.c, zserv.h: Sending router id related messages to daemons.
330
hassoc9e52be2004-09-26 16:09:34 +00003312004-09-26 Hasso Tepper <hasso at quagga.net>
332
333 * irdp_interface.c, irdp_main.c, irdp_packet.c, rt_netlink.c,
334 rtadv.c, zebra_vty.c: Fix compiler warnings.
335
paul0c0f9112004-09-24 08:24:42 +00003362004-09-24 Paul Jakma <paul@dishone.st>
337
paul26f7a242004-09-24 08:45:10 +0000338 * irdp_interface.c: (no_ip_irdp_address_preference_cmd)
339 add missing listnode declaration.
340
3412004-09-24 Paul Jakma <paul@dishone.st>
342
paul0c0f9112004-09-24 08:24:42 +0000343 * irdp_{interface,main}.c: lists typedef removal cleanup.
344 update some list loops to LIST_LOOP. some miscellaneous style
345 and indent fixups.
346 (no_ip_irdp_address_preference_cmd) Fix delete of referenced node
paul26f7a242004-09-24 08:45:10 +0000347 in loop.
paul0c0f9112004-09-24 08:24:42 +0000348 * irdp_packet.c: (irdp_recvmsg) Fix buggy assignment of integer
349 to pointer.
350 * if_ioctl{,_solaris}.c: lists typedef removal cleanup.
351 update some list loops to LIST_LOOP.
352
hasso52dc7ee2004-09-23 19:18:23 +00003532004-09-23 Hasso Tepper <hasso at quagga.net>
354
355 * *.[c|h]: list -> struct list *, listnode -> struct listnode *.
356
paul44983cf2004-09-22 13:15:58 +00003572004-09-22 Paul Jakma <paul.jakma@sun.com>
358
359 * zserv.c: (zsend_route_multipath) fix nasty bad memset of struct
360 in_addr to sizeof(struct in6_addr), causing odd and hard to debug
361 crash.
362
hassoc34b6b52004-08-31 13:41:49 +00003632004-08-31 Hasso Tepper <hasso at quagga.net>
364
365 * main.c, rt_netlink.c: Added -s command line switch for tuning
366 netlink receive buffer size in Linux to avoid buffer overruns.
367
gdta5ea6872004-08-26 13:24:00 +00003682004-08-26 Miles Nordin <carton@Ivy.NET>
369
370 * ipforward_sysctl.c (mib_ipv6): Use size_t for len, per
371 sysctl(3), rather than int. (Needed on NetBSD/alpha to display
372 forwarding status correctly.)
373
paul3e0b3a52004-08-23 18:58:32 +00003742004-08-23 Paul Jakma <paul@dishone.st>
375
376 * zserv.c: (zebra_init) remove implicit ip forward enabling
377
paul0de1cde2004-08-19 04:45:33 +00003782004-08-19 Paul Jakma <paul@dishone.st>
379
380 * irdp_main.c: update to match sockopt renames.
381 * irdp_packet.c: include sockopt.h and update to match sockopt
382 renames.
383
gdt57492d52004-08-11 18:06:38 +00003842004-08-11 Greg Troxel <gdt@fnord.ir.bbn.com>
385
386 * rtadv.c (rtadv_send_packet): Allocate space for control messages
387 more carefully; it was wrong on NetBSD/sparc where CMSG alignment
388 is to 8 bytes instead of 4, and overwriting the address. Use the
389 provided macros for determining lengths.
390
paul5b73a672004-07-23 15:26:14 +00003912004-07-23 Sowmini Varadhan <Sowmini.Varadhan@Sun.COM>
392
393 * if_ioctl_solaris.c: HAVE_IPV6 ifdef fixups
394 * zserv.c: ditto
395 * ioctl_solaris.c: ditto.
396 * interface.c: cast for LLADDR
397 * interface.h: Add guards, include redistribute.h and remove
398 extraneous definitions of zebra_interface_{up,down}_update
399 * ioctl.h: Add AF_IOCTL define for non SOLARIS_IPV6
400 * redistribute.h: include dependent header, zserv.h
401 * zserv.h: include dependent header, rib.h
402
paul1470baf2004-07-23 15:25:01 +00004032004-07-23 Paul Jakma <paul@dishone.st>
404
405 * irdp_main.c: use setsockopt_pktinfo_ipv4
406 * irdp_packet.c: use SOPT_SIZE_CMSG_PKTINFO_IPV4 and
407 getsockopt_pktinfo_ifindex()
408
gdtcced60d2004-07-13 16:45:54 +00004092004-07-13 David Wiggins <dwiggins@bbn.com
410
411 * kernel_socket.c (rtm_flag_dump): terminate buffer with '\0', not '0'.
412
hasso25dac852004-07-13 03:06:51 +00004132004-07-13 Hasso Tepper <hasso@estpak.ee>
414
415 * irdp_main.c: Add privilege change.
416
hasso996933f2004-07-12 16:32:56 +00004172004-07-12 Hasso Tepper <hasso@estpak.ee>
418
419 * irdp_interface.c: follow common style while naming vty command
420 functions. Avoids confusion in extract.pl.
421
gdt87efd642004-06-30 17:36:11 +00004222004-06-30 Greg Troxel <gdt@poblano.ir.bbn.com>
423
424 * main.c: define thread_master variable so that linking with
425 libzebra.so doesn't fail. Arguably zclient.o should be in a
426 separate library, but this is far less disruptive.
427
hassoca776982004-06-12 14:33:05 +00004282004-06-12 Robert Olsson <Robert.Olsson at data.slu.se>
429
430 * Added IRDP support.
431
hasso3e31cde2004-05-18 11:58:59 +00004322004-05-18 Hasso Tepper <hasso@estpak.ee>
433
434 * rtadv.c: Removed "[no] ipv6 nd send-ra" command. Replaced "ipv6 nd
435 prefix-advertisement" with "ipv6 nd prefix". Rewrite syntax of
436 "ipv6 nd prefix" command to allow various combinations of parameters
437 and flags. No defaults in configuration. Replaced on-link and
438 autoconfig with off-link and no-autoconfig flags in command syntax.
439 Cosmetic fixes in all commands. Documentation to reflect all changes.
440
paul19877dd2004-05-11 10:49:35 +00004412004-05-11 Paul Jakma <paul@dishone.st>
442
443 * Makefile.am: support for IOCTL_METHOD, as per Sowmini's patch.
paul48a46fa2004-05-11 10:55:22 +0000444 * if_ioctl_solaris.c: Fixup some erroneous privilege changes and
445 add privs.h header.
446 * ioctl_solaris.c: ditto
paulc50ae8b2004-05-11 11:31:07 +0000447 * ioctl.h: Add if_ioctl_ipv6 prototype and AF_IOCTL for SOLARIS_IPV6
448 * kernel_socket.c: Fix SAROUNDUP, compiler doesnt like do..while
449 RHS in assignments :)
450 * redistribute.c: (zebra_interface_delete_update) only used
451 if RTM_IFANNOUNCE and NETLINK is available.
452
paulb9df2d22004-05-09 09:09:59 +00004532004-05-09 Paul Jakma <paul@dishone.st>
454
455 * zserv.c: (zsend_route_multipath) Set the nexthop_num
456 field correctly. Add NEXTHOP_TYPE_IPV6_IFNAME for v6.
457 Conditionally set ZAPI_MESSAGE_METRIC flag - only for adds.
458 (zsend_ipv4_add) cruft, deleted.
459 (zsend_ipv4_delete) ditto.
460 (zsend_ipv6_add) ditto.
461 (zsend_ipv6_delete) ditto.
paul44145db2004-05-09 11:00:23 +0000462 * ioctl.c: (if_get_mtu) set mtu6 to mtu
463 * mtu_kvm.c: (if_kvm_get_mtu) set mtu6 to mtu
464 * rt_netlink.c: (netlink_interface) set mtu6 to mtu
465 (netlink_link_change) ditto
paul66e94882004-05-09 17:19:24 +0000466 * ipforward_solaris.c: fix typo of ND variable.
paul88424682004-05-09 18:21:35 +0000467 * if_ioctl_solaris.c: Add zprivs support.
468 * ioctl_solaris.c: ditto.
paul66e94882004-05-09 17:19:24 +0000469
paulb9df2d22004-05-09 09:09:59 +00004702004-05-09 Sowmini Varadhan <sowmini.varadhan@sun.com>
471
472 * zserv.c: (zsend_ipv{4,6}_{add,delete}_multipath) collapsed
473 into single zsend_route_multipath function.
474 (zsend_interface_{up,down}) collapsed into zsend_interface_update.
475 (zsend_interface_address_{add,delete}) collapsed into
476 zsend_interface_address.
477 (zsend_interface_add) send mtu6.
478 (zsend_interface_delete) ditto.
479 (zebra_write) remove unused function.
480 (various) Apply static qualifier. Add comments.
481 * zserv.h: Definitions changed as per above.
482 * redistribute.c: Changes as per zserv.c.
paul44145db2004-05-09 11:00:23 +0000483 * interface.c: (if_delete_update) only used with HAVE_NETLINK
484 and RTM_IFANNOUNCE.
485 (if_flag_dump_vty) Solaris IFF_IPV4 and IFF_IPV6 if flags
486 (if_dump_vty) print mtu6 if not same as mtu
paul88424682004-05-09 18:21:35 +0000487 * if_ioctl_solaris.c: New file, Solaris interface ioctl methods.
488 * ioctl_solaris.c: New file, Common solaris ioctl methods.
489
hasso34195bf2004-04-06 12:07:06 +00004902004-04-06 Krzysztof Oledzki <oleq@ans.pl>
491
492 * rt_netlink.c: Do not ignore metric when reading kernel routing
493 table on Linux with rt_netlink interface.
494
4952004-03-18 Hasso Tepper <hasso@estpak.ee>
hassof1d92e12004-03-18 15:40:33 +0000496
497 * interface.c: Temporary fix for handling secondary addresses
498 with label.
499
hasso55906722004-02-11 22:42:16 +00005002004-02-12 Hasso Tepper <hasso@estpak.ee>
hassof1d92e12004-03-18 15:40:33 +0000501
hasso55906722004-02-11 22:42:16 +0000502 * zserv.c: Added "ipv6 forwarding" command.
503
gdtb27900b2004-01-08 15:44:29 +00005042004-01-08 Greg Troxel <gdt@fnord.ir.bbn.com>
505
506 * kernel_socket.c (kernel_read): Use sockaddr_storage in buffer
507 for reading kernel messages to ensure enough space (necessary on
508 Solaris due to sockaddr_dl being large). Thanks to Sowmini
509 Varadhan for help with this change.
510
gdt9ccabd12004-01-06 18:23:02 +00005112004-01-06 Greg Troxel <gdt@t1.ir.bbn.com>
512
513 * rtadv.c (rtadv_send_packet): Change perror to zlog_err.
514
gdtdbee01f2004-01-06 00:36:51 +00005152004-01-05 Greg Troxel <gdt@fnord.ir.bbn.com>
gdt4bfbea82004-01-06 01:13:05 +0000516 * kernel_socket.c (ifm_read): Major cleanup. Use Sowmini's code
517 to find the sockaddr_dl in all cases, narrowing the Solaris ifdef
518 to just the accomodation of broken kernels. Check sockaddr_dl
519 carefully up front, and later assume any non-NULL sdl pointer is
520 valid. Clean up types and variable declarations, and rename
521 WRAPUP to SAROUNDUP to make the name fit the behavior.
522
5232004-01-05 Greg Troxel <gdt@fnord.ir.bbn.com>
gdtdbee01f2004-01-06 00:36:51 +0000524
525 * kernel_socket.c (kernel_read): Add a sockaddr_dl to the ifmsg
526 structure, because on Solaris sockaddr_dl is far larger than the
527 base sockaddr structure. (The code had previously been failing to
528 read all the data.)
gdt4bfbea82004-01-06 01:13:05 +0000529
gdtda26e3b2004-01-05 17:20:59 +00005302004-01-05 Greg Troxel <gdt@ahi.ir.bbn.com>
531
532 * kernel_socket.c (kernel_read): Look up interfaces by index
533 first, so that state changes which do not include a sockaddr_dl
534 now work. Add many sanity checks. In
535 particular, do not assume that a sockaddr_dl follows a message
536 without checking the ifm_addrs flags, and do not trust the length
537 in a sockaddr_dl. Add/clarify many comments.
538
gdt4b5e1352003-12-03 17:54:34 +00005392003-12-03 Greg Troxel <gdt@poblano.ir.bbn.com>
540
541 * rtadv.c: reorder includes to avoid compiler warning (define
542 structs before using them in prototypes)
543
hasso647e4f12003-05-25 11:43:52 +00005442003-05-25 Jim Crumpler <Jim.Crumpler@edion.com>
545
546 * zserv.c: Add "ip forwarding" command.
547
paul445f1432003-05-16 19:00:31 +00005482003-05-16 Gilad Arnold <gilad.arnold@terayon.com>
549
550 * zebra_rib.c: Fix memory leaks for ifname nexthops
551
5522003-04-19 Israel Keys <ikeys@agile.tv>
553
554 * rt_netlink.c: BLOCK on netlink while initialising
555
5562003-02-06 Francois Deppierraz <francois@ctrlaltdel.ch>
557
558 * rt_netlink.c (netlink_route_multipath): Set RTM_F_EQUALIZE when
559 it exists.
560
paul718e3742002-12-13 20:15:29 +00005612002-09-28 Akihiro Mizutani <mizutani@net-chef.net>
562
563 * zebra_rib.c (static_add_ipv4): Null0 static route is added.
564
5652002-09-10 Jochen Friedrich <chris+zebra@scram.de>
566
567 * rt_netlink.c: Add check for EAGAIN.
568 * kernel_socket.c: Likewise
569
5702002-06-12 Israel Keys <ikeys@oz.agile.tv>
571
572 * rt_netlink.c: Setting the NLM_F_ACK flag on the netlink command
573 message so that we get an ACK for successful netlink commands.
574 Change the netlink socket to BLOCKING while we wait for a
575 response; be it an ACK or an NLMSG_ERROR. Change
576 netlink_parse_info to deal with ACK messages.
577
5782001-11-01 Jun-ichiro itojun Hagino <itojun@iijlab.net>
579
580 * rtadv.c (rtadv_make_socket): setsockopt(IPV6_CHECKSUM) does not
581 work for ICMPv6 socket.
582
5832001-10-24 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
584
585 * rib.c (rib_process): Select connected route any case.
586
5872001-10-23 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
588
589 * interface.c (no_ip_address_secondary): Add "no" to command.
590
5912001-10-18 NOGUCHI Kay <kay@v6.access.co.jp>
592
593 * ioctl.c (if_prefix_add_ipv6): Set the prefered and valid lifetime
594 to infinity as the freebsd4.4 workaroud.
595
5962001-08-26 mihail.balikov@interbgc.com
597
598 * zebra_snmp.c: Fix snmpwalk problem such as IPv4 address
599 A.B.C.255.
600
6012001-08-22 NOGUCHI Kay <kay@v6.access.co.jp>
602
603 * rtadv.c: Do not send RA to loopback interface.
604
6052001-08-20 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
606
607 * ioctl.c (if_set_prefix): Remove Linux 2.0 specific connected
608 route treatment.
609
6102001-08-19 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
611
612 * zebra-0.92a released.
613
6142001-08-17 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
615
616 * rib.c: Kernel route is treated as EGP routes in nexthop active
617 check.
618
6192001-08-15 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
620
621 * zebra-0.92 released.
622
6232001-08-08 "Akihiro Mizutani" <mizutani@dml.com>
624
625 * rib.c (show_ip_route_prefix_longer): Add longer-prefix option to
626 show route commands.
627
6282001-07-29 Yon Uriarte <havanna_moon@gmx.net>
629
630 * zserv.c (zsend_ipv4_add_multipath): Add
631 NEXTHOP_TYPE_IPV4_IFINDEX check.
632
6332001-07-29 NOGUCHI Kay <kay@v6.access.co.jp>
634
635 * rtadv.c: Apply valid lifetime, preferred lifetime, onilnk flag,
636 autonomous address-configuration flag patch.
637 (no_ipv6_nd_suppress_ra): Change "ipv6 nd send-ra" to "no ipv6 nd
638 suppress-ra".
639
6402001-07-24 NOGUCHI Kay <kay@v6.access.co.jp>
641
642 * rtadv.c (ipv6_nd_ra_interval): Add "ipv6 nd ra-interval SECONDS"
643 command.
644
6452001-07-24 Jun-ichiro itojun Hagino <itojun@iijlab.net>
646
647 * rt_socket.c (kernel_rtm_ipv4): Add KAME/NetBSD151 equal cost
648 multicast FIB support both IPv4 and IPv6.
649
6502001-07-24 Hal Snyder <hal@vailsys.com>
651
652 * if_ioctl.c (interface_list_ioctl): Fix bug of failing to get the
653 full list of interfaces on some configurations of OpenBSD.
654
6552001-07-23 NOGUCHI Kay <kay@v6.access.co.jp>
656
657 * rtadv.c (ipv6_nd_send_ra): Apply [zebra 9320] to fix "ipv6 nd
658 send-ra" bug.
659 (ipv6_nd_ra_lifetime): "ipv6 nd ra-lifetime 0" for default router
660 availability.
661 (ipv6_nd_managed_config_flag): "ipv6 nd managed-config-flag" is
662 added.
663 (ipv6_nd_other_config_flag): "ipv6 nd other-config-flag" is added.
664
6652001-07-23 Jun-ichiro itojun Hagino <itojun@iijlab.net>
666
667 * ioctl.c (if_ioctl): Change ioctl argument from int to u_long.
668
669 * rt_ioctl.c: Likewise.
670
6712001-07-23 Jun-ichiro itojun Hagino <itojun@iijlab.net>
672
673 * kernel_socket.c (rtm_write): Only set RTF_CLONING when the
674 interface is not p2p.
675
6762001-04-23 Kunihiro Ishiguro <kunihiro@zebra.org>
677
678 * ioctl.c (if_prefix_add_ipv6): Fix argument type.
679
6802001-04-06 Toshiaki Takada <takada@zebra.org>
681
682 * zserv.c (zsend_interface_delete): Use client->obuf instead of
683 allocating new stream.
684
6852001-03-10 Kunihiro Ishiguro <kunihiro@zebra.org>
686
687 * rt_netlink.c: Revert RTPROT_BOOT change.
688
6892001-03-08 Kunihiro Ishiguro <kunihiro@zebra.org>
690
691 * rt_netlink.c (netlink_route_change): Skip RTPROT_BOOT route.
692 (netlink_routing_table): Likewise.
693
6942001-03-07 "Akihiro Mizutani" <mizutani@dml.com>
695
696 * zserv.c (zsend_ipv4_add_multipath): Send metric value to
697 protocol daemons.
698
6992001-02-18 Kunihiro Ishiguro <kunihiro@zebra.org>
700
701 * rt_netlink.c (netlink_routing_table): Do not return
702 tb[RTA_GATEWAY] is NULL. Reported by: "Michael O'Keefe"
703 <mokeefe@qualcomm.com>.
704
7052001-02-08 Kunihiro Ishiguro <kunihiro@zebra.org>
706
707 * if_ioctl.c (interface_list_ioctl): Call if_add_update().
708 Suggested by: Chris Dunlop <chris@onthe.net.au>.
709
7102001-02-01 Kunihiro Ishiguro <kunihiro@zebra.org>
711
712 * rib.c (nexthop_active_ipv4): When nexthop type is
713 NEXTHOP_TYPE_IPV4_IFINDEX, propery set the ifindex to rifindex.
714
715 * zserv.c: Initialize rtm_table_default with 0.
716
717 * zebra-0.91 is released.
718
7192001-01-31 Kunihiro Ishiguro <kunihiro@zebra.org>
720
721 * kernel_socket.c (rtm_read): Filter cloned route. Suggested by:
722 Jun-ichiro itojun Hagino <itojun@iijlab.net>
723
7242001-01-30 Kunihiro Ishiguro <kunihiro@zebra.org>
725
726 * connected.c (connected_up_ipv6): When point-to-point destination
727 address is ::, use local address for connected network.
728 (connected_down_ipv6): Likewise.
729
7302001-01-25 Kunihiro Ishiguro <kunihiro@zebra.org>
731
732 * zserv.c (zebra_serv): Add missing close() call. Reported by:
733 David Waitzman <djw@vineyard.net>.
734
7352001-01-24 Kunihiro Ishiguro <kunihiro@zebra.org>
736
737 * rib.c (rib_lookup_ipv4): New function for checking exact match
738 IGP route.
739
7402001-01-23 Kunihiro Ishiguro <kunihiro@zebra.org>
741
742 * rib.c (show_ipv6_route_protocol): Fix bug of "show ip route
743 route-type".
744
7452001-01-22 Kunihiro Ishiguro <kunihiro@zebra.org>
746
747 * interface.c (zebra_interface): Do not call
748 zebra_interface_add_update for inactive interface.
749
750 * zserv.c (zsend_interface_address_add): Send interface address
751 flag.
752 (zsend_interface_address_delete): Likewise.
753
7542001-01-19 Kunihiro Ishiguro <kunihiro@zebra.org>
755
756 * interface.c (if_addr_add): Add flags.
757
758 * connected.c (ifa_add_ipv4): Add new function for interface
759 address handling.
760 (ifa_delete_ipv4): Likewise.
761
7622001-01-16 Kunihiro Ishiguro <kunihiro@zebra.org>
763
764 * rib.c (rib_update): Update IPv6 RIB.
765
766 * kernel_socket.c (ifam_read): Call if_refresh() for update
767 interface flag status. This is for implicit interface up on *BSD.
768
769 * interface.c (if_refresh): Add interface flag refresh function.
770
771 * kernel_socket.c (rtm_read): Fetch link-local address interface
772 index.
773 (ifan_read): We need to fetch interface information. Suggested
774 by: Yasuhiro Ohara <yasu@sfc.wide.ad.jp>.
775
776 * rib.c (static_ipv6_nexthop_same): Add check for
777 NEXTHOP_TYPE_IPV6_IFNAME.
778
7792001-01-15 Kunihiro Ishiguro <kunihiro@zebra.org>
780
781 * rib.h (NEW_RIB): Turn on NEW_RIB flag. IPv6 new RIB code are
782 taken into place.
783
7842001-01-14 Kunihiro Ishiguro <kunihiro@zebra.org>
785
786 * rib.c (static_ipv6_write): Display STATIC_IPV6_GATEWAY_IFNAME
787 configuration.
788 (rib_delete_ipv6): Handle same route conter for IPv6 connected
789 route.
790 (show_ipv6_route_protocol): New command.
791 (show_ipv6_route_addr): Likewise.
792 (show_ipv6_route_prefix): Likewise.
793 (rib_update): Sweep kernel route when it is cleaned up.
794
795 * rt_socket.c (kernel_add_ipv6): Add NEXTHOP_IPV6_IFNAME
796 treatmenet.
797
798 * rt_netlink.c (kernel_init): Likewise.
799
800 * rt_ioctl.c (kernel_ioctl_ipv6_multipath): Likewise.
801
802 * rib.c (rib_add_ipv4): Cope with same connected route on a
803 interface. Suggested by: Matthew Grant <grantma@anathoth.gen.nz>.
804 (nexthop_ipv6_ifname_add): Add NEXTHOP_IPV6_IFNAME treatmenet.
805
806 * rib.h (struct new_rib): Add refcnt to keep track on the
807 reference of same connected route.
808
809 * ioctl.c (if_set_prefix): Add check for GNU_LINUX.
810
8112001-01-13 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
812
813 * kernel_socket.c (ifan_read, rtm_type_str): Add RTM_OIFINFO check.
814 (rtm_type_str): Add RTM_IFANNOUNCE check.
815 (ifan_read): New function.
816 (kernel_read): Add case for RTM_IFANNOUNCE.
817
8182001-01-13 Kunihiro Ishiguro <kunihiro@zebra.org>
819
820 * rt_ioctl.c (kernel_ioctl_ipv6_multipath): New function.
821
822 * rt_netlink.c (netlink_route_multipath): IPv6 address ifindex
823 treatment.
824
825 * connected.c (connected_up_ipv6): Add dest value check.
826
827 * rib.c (nexthop_active_ipv6): Do not touch IPv6 nexthop's
828 ifindex.
829 (rib_add_ipv4): Import rib_add_ipv6() same route check code.
830 (nexthop_active_check): NEXTHOP_TYPE_IPV6_IFINDEX activity is only
831 checked by ifindex.
832
833 * rt_socket.c (kernel_rtm_ipv6_multipath): New function.
834
835 * redistribute.c (redistribute_add): Use
836 zsend_ipv6_add_multipath().
837 (redistribute_delete_multipath): Use
838 zsend_ipv6_delete_multipath().
839
840 * interface.c (ip_address): Check current IP address to avoid
841 duplicate.
842
843 * rib.c (rib_delete_ipv4): When deleted route is connected route,
844 check ifindex.
845 (rib_add_ipv4): When connected route is added do not perform
846 implicit withdraw.
847 (rib_delete_ipv4): Check ifindex for connected route.
848
849 * kernel_socket.c (rtm_read): When route has RTF_STATIC, set
850 ZEBRA_FLAG_STATIC for indicate as persistent route.
851 (ifam_read): Unset interface index from link-local address when
852 IPv6 stack is KAME.
853
854 * rib.c (rib_update): Do not delete persistent kernel route.
855
856 * rib.h (struct new_rib): Integrate RIB_FLAG_* to ZEBRA_FLAG_*.
857
858 * rt_socket.c (kernel_add_ipv6_multipath): Add placeholder.
859 (kernel_delete_ipv6_multipath): Likewise.
860
861 * rt_netlink.c (netlink_talk): Give struct nlsock to netlink_talk.
862
8632001-01-12 Kunihiro Ishiguro <kunihiro@zebra.org>
864
865 * rib.c (rib_update): Revert Matthew Grant's patch
866 zebra_cvs_newribfix.patch. Use struct rib->ifindex for kernel
867 interface index. Introduce NEXTHOP_TYPE_IPV4_IFINDEX to support
868 that. Add support for address deletion situation.
869
8702001-01-11 Kunihiro Ishiguro <kunihiro@zebra.org>
871
872 * interface.c: Remove HAVE_IF_PSEUDO part.
873
874 * rib.h: Likewise.
875
876 * rt_netlink.c (netlink_link_change): Likewise.
877
8782001-01-10 Kunihiro Ishiguro <kunihiro@zebra.org>
879
880 * zserv.c: Remove OLD_RIB codes.
881
8822001-01-09 Kunihiro Ishiguro <kunihiro@zebra.org>
883
884 * zebra-0.90 is released.
885
8862001-01-09 Matthew Grant <grantma@anathoth.gen.nz>
887
888 * interface.c (if_new_intern_ifindex): Allocate a new internal
889 interface index.
890 (if_addr_refresh): Fix up ip addresses configured via zebra.
891 (if_add_update): Handle an interface addition.
892 (if_delete_update): Handle an interface delete event.
893
894 * rib.c (nexthop_ipv4_add): Add kernel route deletion process when
895 interface goes down.
896
8972001-01-08 Kunihiro Ishiguro <kunihiro@zebra.org>
898
899 * interface.c (if_dump_vty): When HAVE_NET_RT_IFLIST is defined,
900 NetBSD also use this function. Suggested by Jasper Wallace
901 <jasper@ivision.co.uk>.
902
9032001-01-07 Kunihiro Ishiguro <kunihiro@zebra.org>
904
905 * rib.c (nexthop_active_ipv4): Move back to set methodo to old
906 one.
907
9082001-01-05 Kunihiro Ishiguro <kunihiro@zebra.org>
909
910 * rib.c (rib_add_ipv4): EBGP multihop set ZEBRA_FLAG_INTERNAL
911 flag, so treat it.
912
9132001-01-04 Kunihiro Ishiguro <kunihiro@zebra.org>
914
915 * rt_netlink.c (netlink_talk_ipv6): When IPv6 route message is
916 sent from netlink_cmd, the same message comes from netlink. To
917 avoid confusion, temporary netlink_talk_ipv6 use netlink.sock
918 instead of netlink_cmd.sock.
919
9202001-01-01 Kunihiro Ishiguro <kunihiro@zebra.org>
921
922 * zserv.h (ZEBRA_SERV_PATH): Change "/tmp/zebra" to "/tmp/.zebra".
923 Change "/tmp/zserv" to "/tmp/.zserv".
924
9252000-12-29 Frank van Maarseveen <F.vanMaarseveen@inter.NL.net>
926
927 * rt_netlink.c (struct nlsock): Divide kernel message into listen
928 socket and command socket.
929 (netlink_talk): Remove socket listen code. Use netlink_parse_info
930 for read kernel response.
931
9322000-12-29 Kunihiro Ishiguro <kunihiro@zebra.org>
933
934 * rib.c (vty_show_ip_route): Show uptime of the RIP,OSPF,BGP
935 routes.
936
9372000-12-27 Kunihiro Ishiguro <kunihiro@zebra.org>
938
939 * rt_netlink.c (netlink_route_multipath): Metric value is
940 reflected to kernel routing table.
941
942 * rt_ioctl.c (kernel_ioctl_ipv4_multipath): Likewise.
943
944 * kernel_socket.c (rtm_write): Likewise.
945
946 * rib.c (nexthop_active_ipv4): Only iBGP route perform recursive
947 nexthop lookup.
948
949 * rt_ioctl.c (kernel_ioctl_ipv4_multipath): Add ioctl version of
950 new RIB implementation.
951
9522000-12-26 Kunihiro Ishiguro <kunihiro@zebra.org>
953
954 * rib.h: Remove MULTIPATH_NUM. It is defined by configure script.
955
9562000-12-25 Michael Rozhavsky <mrozhavsky@opticalaccess.com>
957
958 * rib.c (rib_if_up): Call rib_fib_set instead of RIB_FIB_SET for
959 proper redistribution.
960
9612000-12-19 Kunihiro Ishiguro <kunihiro@zebra.org>
962
963 * rib.c (nexthop_active_ipv4): Add self lookup nexthop check.
964 (show_ip_route_protocol): Support new RIB.
965
966 * rt_netlink.c (netlink_route_change): Do not return when gate is
967 NULL.
968
9692000-12-18 Kunihiro Ishiguro <kunihiro@zebra.org>
970
971 * rib.c (rib_lookup_ipv4_nexthop): IBGP nexthop check function is
972 updated.
973 (rib_add_ipv4): Free implicit withdraw route's RIB.
974
9752000-12-15 Kunihiro Ishiguro <kunihiro@zebra.org>
976
977 * rib.c (nexthop_active_ipv4): Check indirect nexthop.
978
979 * redistribute.c (redistribute_add_multipath): Redistribution
980 works with new rib code.
981
9822000-12-14 Kunihiro Ishiguro <kunihiro@zebra.org>
983
984 * rt_netlink.c (netlink_route_multipath): Check useful nexthop
985 number.
986 (netlink_route_multipath): Clear rtnh_flags and rtnh_hops.
987
988 * rib.c (nexthop_active_update): Set flag for the rib's nexthop
989 activity is changed.
990 (nexthop_active_check): Before checking interface is up, make it
991 sure the interface exist.
992
9932000-11-20 Kunihiro Ishiguro <kunihiro@zebra.org>
994
995 * rib.c (ip_route): New RIB prototype.
996
9972000-11-16 Yon Uriarte <ukl2@rz.uni-karlsruhe.de>
998
999 * zserv.c (zsend_interface_add): Send hardware address when
1000 hw_addr_len is greater than 0.
1001
10022000-11-07 Kunihiro Ishiguro <kunihiro@zebra.org>
1003
1004 * connected.c (connected_up_ipv4): Fix ptop bug. The destination
1005 network should be installed into routing table.
1006 (connected_down_ipv4): Likewise.
1007 (connected_add_ipv4): Change to use connected_up_ipv4.
1008 (connected_delete_ipv4): Likewise.
1009
10102000-11-06 Kunihiro Ishiguro <kunihiro@zebra.org>
1011
1012 * rt_netlink.c (netlink_interface_addr): Revert Harald Welte
1013 <laforge@gnumonks.org>'s ptop patch then back to original code to
1014 avoid duplicated connected route problem. Suggested by Frank van
1015 Maarseveen <F.vanMaarseveen@inter.NL.net>.
1016
1017 * kernel_socket.c (rtm_read): Make behavior consistent even #ifdef
1018 DEBUG is defined. Reported by Jun-ichiro itojun Hagino
1019 <itojun@iijlab.net>.
1020
10212000-10-23 Jochen Friedrich <jochen@scram.de>
1022
1023 * main.c (main): Call zebra_snmp_init() when it is enabled.
1024
10252000-10-23 Kunihiro Ishiguro <kunihiro@zebra.org>
1026
1027 * zserv.c (zebra_serv_un): UNIX domain socket server of zebra
1028 protocol.
1029
10302000-10-19 Kunihiro Ishiguro <kunihiro@zebra.org>
1031
1032 * rib.c (rib_add_ipv4): Same check bug is fixed.
1033
10342000-10-03 Kunihiro Ishiguro <kunihiro@zebra.org>
1035
1036 * rib.c (rib_if_down): Remove kernel route when the interface goes
1037 down.
1038
1039 * debug.c: New command "debug zebra kernel" is added.
1040
10412000-10-02 Kunihiro Ishiguro <kunihiro@zebra.org>
1042
1043 * zebra-0.89 is released.
1044
10452000-09-24 Harald Welte <laforge@gnumonks.org>
1046
1047 * rt_netlink.c (netlink_interface_addr): Fix point-to-point address
1048 treatment in netlink interface.
1049
10502000-09-21 David Lipovkov <dlipovkov@OpticalAccess.com>
1051
1052 * rib.c (rib_if_down): Pull static route only. Protocol daemon
1053 must withdraw routes when interface goes down.
1054 (rib_add_ipv4): Check nexthop when replace route.
1055
10562000-09-21 Kunihiro Ishiguro <kunihiro@zebra.org>
1057
1058 * if_ioctl.c (if_getaddrs): New function for looking up
1059 interface's address by getifaddrs().
1060
10612000-09-10 Kunihiro Ishiguro <kunihiro@zebra.org>
1062
1063 * connected.c (connected_delete_ipv4): Add check for connected
1064 address is found or not.
1065 (connected_add_ipv6): Reflect IPv6 connected address change to
1066 protocol daemons.
1067 (connected_delete_ipv6): Likewise.
1068
10692000-09-07 David Lipovkov <davidl@nbase.co.il>
1070
1071 * rib.c (rib_delete_ipv4): Reverted the change from pseudo
1072 interface patch to original. Because ospfd deletes routes using
1073 zero ifindex.
1074
10752000-08-17 Kunihiro Ishiguro <kunihiro@zebra.org>
1076
1077 * zebra-0.88 is released.
1078
10792000-08-15 "Akihiro Mizutani" <mizutani@dml.com>
1080
1081 * rib.c (show_ip_route_protocol): Help string correction.
1082 (show_ip_route_prefix): Check prefix mask.
1083 (show_ip_route_vty_detail): Display distance and metric.
1084
10852000-08-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1086
1087 * zserv.c (zsend_interface_add): Change ifindex store size from
1088 two octet to four.
1089 (zsend_interface_delete): Likewise.
1090 (zsend_interface_address_add): Likewise.
1091 (zsend_interface_address_delete): Likewise.
1092 (zsend_interface_up): Likewise.
1093 (zsend_interface_down): Likewise.
1094
10952000-08-13 Kunihiro Ishiguro <kunihiro@zebra.org>
1096
1097 * rib.c (rib_add_ipv4): Do not install distance 255 route.
1098
10992000-08-10 Toshiaki Takada <takada@zebra.org>
1100
1101 * interface.c (bandwidth_if), (no_bandwidth_if): Call
1102 zebra_interface_up_update () instead of using if_up() and if_down().
1103
11042000-08-07 "Akihiro Mizutani" <mizutani@dml.com>
1105
1106 * interface.c (bandwidth_if): Fix help string.
1107
11082000-08-07 Matthew Grant <grantma@anathoth.gen.nz>
1109
1110 * interface.c (if_dump_vty): Display bandwidth value.
1111 (bandwidth_if): New command "bandwidth <1-10000000>" is added.
1112 When interface is up, force protocol daemons to recalculate routes
1113 due to cost change.
1114 (no_bandwidth_if): Likewise.
1115 (if_config_write): Output bandwidth configuration.
1116
1117 * zserv.c (zsend_interface_add): Send bandwidth value.
1118 (zsend_interface_up): Likewise.
1119 (zsend_interface_down): Likewise.
1120
1121
11222000-08-07 Michael Rozhavsky <mike@nbase.co.il>
1123
1124 * rib.c (show_ip_route_protocol): "show ip route
1125 (bgp|connected|kernel|ospf|rip|static)" is added.
1126
11272000-08-07 Kunihiro Ishiguro <kunihiro@zebra.org>
1128
1129 * rib.c (rib_lookup_ipv4_nexthop): Check parent node until IGP
1130 nexthop is found.
1131 (rib_add_ipv4_internal): Set fib ifindex to rib ifindex.
1132
11332000-08-06 Kunihiro Ishiguro <kunihiro@zebra.org>
1134
1135 * redistribute.c (redistribute_delete): Fix bug of default route
1136 redistribute treatment.
1137
11382000-08-05 Kunihiro Ishiguro <kunihiro@zebra.org>
1139
1140 * rib.c (rib_init): Install ip_node in rib.c instead of zserv.c.
1141 Change default distance value.
1142
1143 Old New
1144 ------------------------------------------
1145 system 10 0
1146 kernel 20 0
1147 connected 30 0
1148 static 40 1
1149 rip 50 120
1150 ripng 50 120
1151 ospf 60 110
1152 ospf6 49 110
1153 bgp 70 200(iBGP) 20(eBGP)
1154 ------------------------------------------
1155
1156 * zserv.c (client_lookup): Function removed.
1157 (zsend_interface_add): Use client's output buffer. Check ifinfo
1158 flag.
1159 (zsend_interface_delete): Likewise.
1160 Delete ipv4_static_radix and ipv6_static_radix.
1161
11622000-08-02 Kunihiro Ishiguro <kunihiro@zebra.org>
1163
1164 * zserv.h (struct zebra_client): When client request interface
1165 information, ifinfo is set.
1166
1167 * rib.c: Temporary Revert changes for pseudo interface.
1168
1169 * rib.h: Likewise.
1170
1171 * zserv.c: Likewise.
1172
1173 * interface.c: Likewise.
1174
11752000-08-02 David Lipovkov <davidl@nbase.co.il>
1176
1177 * interface.c (zebra_if_init): Install interface "pseudo"
1178 commands.
1179
1180 * rib.c (rib_create): ifname argument is added.
1181 (rib_add_ipv4_pseudo): New function is added.
1182 (rib_delete_ipv4_pseudo): Likewise.
1183
1184 * rib.h : Delete INTERFACE_UNKNOWN definition. Add prototype for
1185 pseudo interface functions.
1186
1187 * rt_netlink.c (netlink_link_change): Check for pseudo interface.
1188
1189 * zserv.c (ip_route): When destination is pseudo interface, call
1190 rib_add_ipv4_pseudo().
1191
1192 * zserv.c (no_ip_route): Trim "unknown" argument.
1193
11942000-07-26 kunitake@dti.ad.jp
1195
1196 * if_ioctl.c (if_get_hwaddr): Fix hardware address length from 8
1197 to 6.
1198
1199 * rtadv.c (rtadv_send_packet): Fix shift bug for hardware address.
1200
12012000-07-24 Akihiro Mizutani <mizutani@dml.com>
1202
1203 * interface.c: Use install_default() for common VTY commands.
1204
12052000-07-23 Kunihiro Ishiguro <kunihiro@zebra.org>
1206
1207 * if_ioctl.c (interface_list_ioctl): A interface list size is
1208 calculated from ifreq->if_addr.sa_len. This is for OpenBSD.
1209
1210 * ioctl.c (if_get_mtu): Remove codes for SIOCGIFDATA.
1211
12122000-07-09 Chris Dunlop <chris@onthe.net.au>
1213
1214 * if_ioctl.c (if_get_index): Add check for HAVE_BROKEN_ALIASES.
1215
12162000-07-04 Kunihiro Ishiguro <kunihiro@zebra.org>
1217
1218 * zserv.c (zebra_client_read): Add ZEBRA_REDISTRIBUTE_{ADD,DELETE}
1219 message handling.
1220
12212000-07-02 David Lipovkov <davidl@nbase.co.il>
1222
1223 * zserv.c: "ip route A.B.C.D/M unknown" command is added.
1224
12252000-06-28 Michael Rozhavsky <mike@nbase.co.il>
1226
1227 * rib.c: Remove old kernel route when new route comes in.
1228
12292000-06-13 David Lipovkov <davidl@nbase.co.il>
1230
1231 * rib.c (rib_if_up): Add check for unknown interface.
1232
12332000-06-13 Kunihiro Ishiguro <kunihiro@zebra.org>
1234
1235 * rib.h: Define INTERFACE_UNKNOWN.
1236
12372000-06-08 Kunihiro Ishiguro <kunihiro@zebra.org>
1238
1239 * Makefile.am (EXTRA_DIST): Move irdp.c until implementation is
1240 finished.
1241
12422000-06-05 David Lipovkov <davidl@nbase.co.il>
1243
1244 * interface.c (if_zebra_delete_hook): Call rib_if_delete().
1245
1246 * redistribute.c (zebra_interface_delete_update): New function.
1247
1248 * redistribute.h (zebra_interface_delete_update): New function
1249 prototype.
1250
1251 * rib.c (rib_if_delete): New function. Walk down all routes and
1252 delete all on the interface.
1253
1254 * rib.h: New function prototype.
1255
1256 * rt_netlink.c (netlink_link_change): Call
1257 zebra_interface_delete_update ().
1258
12592000-05-10 Kunihiro Ishiguro <kunihiro@zebra.org>
1260
1261 * if_ioctl.c (interface_info_ioctl): Check interface's flag before
1262 checking interface's address.
1263
12642000-04-26 Jochen Friedrich <jochen@nwe.de>
1265
1266 * GNOME-PRODUCT-ZEBRA-MIB: New file.
1267
1268 * GNOME-SMI: New file.
1269
12702000-04-23 Kunihiro Ishiguro <kunihiro@zebra.org>
1271
1272 * irdp.c: New file from 1997 development code.
1273 * irdp.h: Likewise.
1274
12752000-04-19 Kunihiro Ishiguro <kunihiro@zebra.org>
1276
1277 * rtadv.c (rtadv_send_packet): Enclose router advertisement
1278 logging with IS_ZEBRA_DEBUG_PACKET.
1279
12802000-04-17 Kunihiro Ishiguro <kunihiro@zebra.org>
1281
1282 * zserv.c (zebra_client_close): Remove client structure from
1283 client_list when connection is terminated.
1284
12852000-03-21 David Lipovkov <davidl@nbase.co.il>
1286
1287 * connected.c (connected_add_ipv4): Allows all necessary structure
1288 updates for connected route, but doesn't insert it into rib if
1289 it's interface is down.
1290
12912000-01-21 Hideto Yamakawa <hideto.yamakawa@soliton.co.jp>
1292
1293 * rtread_getmsg.c: Set some definition for Solaris 2.5 and Solaris
1294 2.5.1.
1295
12962000-01-21 Kunihiro Ishiguro <kunihiro@zebra.org>
1297
1298 * rib.c (no_ipv6_route_ifname): Fix buf of cheking return value
1299 from str2prefix_ipv6().
1300
13012000-01-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1302
1303 * rt_socket.c: Revert to use RTF_HOST for IPv4 with /32 route and
1304 IPv6 with /128 routes.
1305 (kernel_rtm_ipv4): In case of /32 route's gateway is interface. It
1306 should have mask for cloning.
1307
13081999-12-26 Jochen.Friedrich@genorz.de
1309
1310 * interface.c (if_dump_vty): Fix a bug of missing VTY_NEWLINE.
1311
13121999-12-23 Alex Zinin <zinin@amt.ru>
1313 * interface.*: dynamic int up/down support
1314
13151999-12-09 Kunihiro Ishiguro <kunihiro@zebra.org>
1316
1317 * ipforward_proc.c (dropline): Move dropline() from lib/dropline.c
1318
1319 * rtread_proc.c (proc_route_read): Don't use dropline().
1320
13211999-12-08 Kunihiro Ishiguro <kunihiro@zebra.org>
1322
1323 * kernel_socket.c (rtm_read): When message is RTM_GET, it has own
1324 process's pid.
1325
13261999-12-04 Kunihiro Ishiguro <kunihiro@zebra.org>
1327
1328 * main.c (main): Change to default log output to ZLOG_STDOUT.
1329
1330 * zserv.c (zebra_serv): More detailed error print.
1331
13321999-11-30 Kunihiro Ishiguro <kunihiro@zebra.org>
1333
1334 * kernel_socket.c (rtm_read): Check old pid for static route
1335 insertion check.
1336
13371999-11-30 Kunihiro Ishiguro <kunihiro@zebra.org>
1338
1339 * interface.c (if_dump_vty): BSDI/OS uses 64bit for interface
1340 statistics counter.
1341
1342 * mtu_kvm.c: New file added.
1343
13441999-11-27 Vladimir B. Grebenschikov <vova@express.ru>
1345
1346 * kernel_socket.c (rtm_write): Set RTF_CLONING flag for
1347 route to the directly connected interface.
1348
13491999-11-27 Kunihiro Ishiguro <kunihiro@zebra.org>
1350
1351 * rt_socket.c: Delete USE_HOST_BIT definition.
1352
13531999-11-21 Michael Handler <handler@sub-rosa.com>
1354
1355 * rtread_getmsg.c: Undef some definition to resolve conflict.
1356
13571999-11-27 Kunihiro Ishiguro <kunihiro@zebra.org>
1358
1359 * kernel_socket.c (rtm_write): Change to use pre stored struct_dl
1360 value for gateway specification.
1361
13621999-11-25 Kunihiro Ishiguro <kunihiro@zebra.org>
1363
1364 * rt_socket.c (kernel_rtm_ipv4): Even mask is 32 under IPv4 or
1365 128 under IPv6, don't use RTF_HOST.
1366
13671999-11-21 Kunihiro Ishiguro <kunihiro@zebra.org>
1368
1369 * Makefile.am (EXTRA_DIST): Add rtread_getmsg.c.
1370
13711999-11-21 Michael Handler <handler@sub-rosa.com>
1372
1373 * rtread_getmsg.c: Added for Solaris 2.6 support.
1374
13751999-11-18 Kunihiro Ishiguro <kunihiro@zebra.org>
1376
1377 * rtread_sysctl.c (rtm_read_route): RTM_DELETE handling added.
1378
1379 * rt_socket.c (kernel_read): Better BSD routing socket support.
1380
13811999-10-19 Kunihiro Ishiguro <kunihiro@zebra.org>
1382
1383 * client_main.c: Disable making obsolete zebra test `client'
1384 command.
1385
13861999-10-18 Kunihiro Ishiguro <kunihiro@zebra.org>
1387
1388 * zebra.c: Renamed to zserv.c.
1389
1390 * zebra.h: Global definitions are moved to lib/zebra.h. Then
1391 renamed to zserv.h.
1392
13931999-10-15 Jordan Mendelson <jordy@wserv.com>
1394
1395 * if_ioctl.c: Add Linux 2.2.X's alias support and dynamic
1396 interface. Remove ugly MAX_INTERFACE handling codes.
1397
13981999-09-17 Satosi KOBAYASI <kobayasi@north.ad.jp>
1399
1400 * Fix serious bug of IPv6 route deletion.
1401
14021999-09-11 Kunihiro Ishiguro <kunihiro@zebra.org>
1403
1404 * ioctl.c (if_set_prefix): Properly set broadcast address.
1405
14061999-09-04 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1407
1408 * rib.c (rib_add_ipv6, rib_delete_ipv6): now protocol daemons
1409 can install connected route to kernel via zebra
1410
14111999-08-24 VOP <vop@unity.net>
1412
1413 * rib.c: Include "sockunion.h"
1414
14151999-08-22 Kunihiro Ishiguro <kunihiro@zebra.org>
1416
1417 * ipforward.h: New file.
1418
1419 * zebra.h: Obsolete message ZEBRA_GET_ALL_INTERFACE,
1420 ZEBRA_GET_ONE_INTERFACE, ZEBRA_GET_HOSTINFO are deleted.
1421
14221999-08-18 Kunihiro Ishiguro <kunihiro@zebra.org>
1423
1424 * zebra.h (ZEBRA_INTERFACE_ADDRESS_ADD):
1425 ZEBRA_INTERFACE_{ADD,DELETE} added.
1426
14271999-08-15 Kunihiro Ishiguro <kunihiro@zebra.org>
1428
1429 * rib.c: show ip route A.B.C.D works.
1430
1431 * zebra.c (zebra_read_ipv4): Add ifindex to zebra messages.
1432
14331999-08-12 Kunihiro Ishiguro <kunihiro@zebra.org>
1434
1435 * zebra.h: New Zebra message ZEBRA_INTERFACE_{ADD,DELETE} added.
1436
14371999-08-09 Kunihiro Ishiguro <kunihiro@zebra.org>
1438
1439 * interface.h: New file.
1440 * Makefile.am: Add interface.h
1441
14421999-08-04 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1443
1444 * redistribute.c (zebra_redistribute): give ifindex to client.
1445
14461999-08-02 Kunihiro Ishiguro <kunihiro@zebra.org>
1447
1448 * main.c (longopts): -k, --keep_kernel option added.
1449
14501999-07-18 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1451
1452 * rt_socket.c (rtm_write): forgot closing socket bug fixed.
1453
14541999-07-17 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1455
1456 * rib.c (show_ipv6_cmd): if rib is link show interface name.
1457
14581999-07-17 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1459
1460 * rt_socket.c (rtm_write): use sockaddr_dl when null gateway.
1461
14621999-07-16 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1463
1464 * rt_socket.c (rtm_write): ipv6 route table bug fixed.
1465
14661999-07-15 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1467
1468 * zebra.c (zebra_read_ipv6): read link prefix from ospf6 support
1469
14701999-07-15 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1471
1472 * rt_socket.c (kernel_rtm_ipv6): gate treatment bug fixed.
1473
14741999-07-15 Kunihiro Ishiguro <kunihiro@zebra.org>
1475
1476 * if_sysctl.c (ifm_read): Clear sockunion argument before fetching
1477 data. Suggested by "Chris P. Ross" <cross@eng.us.uu.net>
1478
14791999-07-08 HEO SeonMeyong <seirios@Matrix.IRI.Co.Jp>
1480
1481 * interface.c (if_tun_add): Add KAME's gif tunnel setting codes.
1482
14831999-06-26 Kunihiro Ishiguro <kunihiro@zebra.org>
1484
1485 * zebra.c (zebra_serv): Only accept loopback address connection.
1486
14871999-06-25 Kunihiro Ishiguro <kunihiro@zebra.org>
1488
1489 * zebra.h (ZEBRA_ROUTE_EXTERNAL): Add zebra messages flags
1490
14911999-06-17 Kunihiro Ishiguro <kunihiro@zebra.org>
1492
1493 * ipforward_proc.c: ipforward_on () and ipforward_off () added.
1494
14951999-06-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1496
1497 * ipforward_proc.c (ipforward_ipv6): Check for IPv6 forwarding
1498 using /proc file system is added.
1499
15001999-06-06 Kunihiro Ishiguro <kunihiro@zebra.org>
1501
1502 * if_ioctl.c (if_get_index): Interface index set bug is fixed by
1503 adding #else at the middle of function. Suggested by David Luyer
1504 <luyer@ucs.uwa.edu.au>.
1505
15061999-05-29 <kunihiro@zebra.org>
1507
1508 * rt_ioctl.c: Comment out #include <linux/ipv6_route.h>.
1509
15101999-05-26 Kunihiro Ishiguro <kunihiro@zebra.org>
1511
1512 * zebra.h (ZEBRA_ROUTE_MAX): Add new define for the max value of
1513 the sort of routes.
1514
15151999-05-25 Patrick Koppen <koppen@rhrk.uni-kl.de>
1516
1517 * rt_netlink.c (netlink_socket): Make netlink socket non-blocking.
1518 (netlink_parse_info): If errno is EWOULDBLOCK then continue to
1519 parse the message.
1520 (netlink_talk): Likewise
1521
15221999-05-17 <kunihiro@zebra.org>
1523
1524 * redistribute.c (zebra_check_addr): Added for loopback address
1525 check.
1526
15271999-05-15 Kunihiro Ishiguro <kunihiro@zebra.org>
1528
1529 * rt_netlink.c (netlink_route_change): Tempolary bypass ipv6 route
1530 change treatment.
1531
1532 * Makefile.am (noinst_HEADERS): redistribute.h added.
1533
1534 * redistribute.h: New file.
1535
15361999-05-14 Stephen R. van den Berg <srb@cuci.nl>
1537
1538 * zebra.c (show_table): Show all table configuration DEFUN.
1539 (config_table): Config table number DEFUN.
1540
1541 * rt_netlink.c: Add support for multiple routing table.
1542
1543 * rib.c (rib_weed_table): New function added for delete all
1544 routes from specified routing table.
1545
1546 * main.c (signal_init): SIGTERM call sigint.
1547 (sigint): Loggging more better message.
1548
15491999-05-09 Kunihiro Ishiguro <kunihiro@zebra.org>
1550
1551 * rt_netlink.c: Change log () to zlog ().
1552
15531999-05-07 <kunihiro@zebra.org>
1554
1555 * zebra.h (ZEBRA_ROUTE_OSPF6): Added for ospf6d route.
1556
15571999-04-20 Kunihiro Ishiguro <kunihiro@zebra.org>
1558
1559 * interface.c: Add `no ip address' command.
1560
15611999-04-10 Kunihiro Ishiguro <kunihiro@zebra.org>
1562
1563 * rt_netlink.c (kernel_read): Function added for asynchronous
1564 zebra between kernel communication.
1565
15661999-03-25 Kunihiro Ishiguro <kunihiro@zebra.org>
1567
1568 * rtread_sysctl.c (rtm_read): Fix address memcopy overrun bug.
1569 Reported by Achim Patzner <ap@bnc.net>.
1570
15711999-03-03 Kunihiro Ishiguro <kunihiro@zebra.org>
1572
1573 * Makefile.am: Install configuration sample with 600 permission.
1574
15751999-03-02 Kunihiro Ishiguro <kunihiro@zebra.org>
1576
1577 * Makefile.am: Add -I.. to INCLUDES.
1578
15791999-02-18 Peter Galbavy <Peter.Galbavy@knowledge.com>
1580
1581 * syslog support added
1582
15831999-02-17 Peter Galbavy <Peter.Galbavy@knowledge.com>
1584
1585 * if_sysctl.c (interface_list): allocated memory free when unknown
1586 ifm_type is returned.
1587
1588 * ioctl.c (if_get_mtu): added SIOCGIFDATA treatment.
1589
15901998-12-15 Magnus Ahltorp <map@stacken.kth.se>
1591
1592 * interface.c: Header include added.
1593
15941998-12-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1595
1596 * rt.h (kernel_delete_ipv6): change int index to unsigned int index.
1597
15981998-12-13 Kunihiro Ishiguro <kunihiro@zebra.org>
1599
1600 * if_ioctl.c (interface_list_ioctl): interface flag must be
1601 checked before check addresses of the interface.
1602
16031998-12-07 Kunihiro Ishiguro <kunihiro@zebra.org>
1604
1605 * Makefile.am (INCLUDES): add @INCLUDES@ for Linux IPv6.
1606
16071998-10-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1608
1609 * ioctl.c: Linux version before 2.1.0 need interface route setup.
1610
16111998-09-15 HEO SeonMeyong <seirios@matrix.iri.co.jp>
1612
1613 * change HYDRANGEA to KAME
1614
16151998-09-01 Kunihiro Ishiguro <kunihiro@zebra.org>
1616
1617 * if_ioctl.c (if_addr_ioctl): set address family for getting
1618 interface's address.
1619 (if_get_index): silently return when can't get interface's index.
1620
16211998-08-17 Kunihiro Ishiguro <kunihiro@zebra.org>
1622
1623 * main.c (main): batch mode option '-b' added.
1624
16251998-08-16 Kunihiro Ishiguro <kunihiro@zebra.org>
1626
1627 * ioctl.c (if_set_prefix): add `ip address IPV4ADDR' command.
1628 * interface.c (shutdown_if): add interface shutdown and no
1629 shutdown command.
1630
16311998-08-12 Kunihiro Ishiguro <kunihiro@zebra.org>
1632
1633 * rib.c (rib_add_ipv6): delete rib_add_in6.
1634
16351998-07-27 Kunihiro Ishiguro <kunihiro@zebra.org>
1636
1637 * main.c: retain flag is added.
1638
16391998-07-08 Kunihiro Ishiguro <kunihiro@zebra.org>
1640
1641 * rtable.[ch]: merged with rib.[ch]
1642
16431998-07-07 Kunihiro Ishiguro <kunihiro@zebra.org>
1644
1645 * connected.h: renamed from ifa.h.
1646
16471998-06-09 Kunihiro Ishiguro <kunihiro@zebra.org>
1648
1649 * rename if.c to interface.c
1650 * rename ifa.c to connected.c
1651
1652 * Porting to Debian GNU/Linux 2.0 (hamm).
1653
16541998-06-08 Kunihiro Ishiguro <kunihiro@zebra.org>
1655
1656 * rt_netlink.c: renamed from krt_netlink.c
1657
1658 * fib.c: deleted.
1659 * rt_kvm.c: deleted.
1660 * rtread_getmsg.c: deleted.
1661
16621998-06-07 Kunihiro Ishiguro <kunihiro@zebra.org>
1663
1664 * if.c (multicast): add multicast flag [un]set fucntion.
1665
16661998-05-19 Yamshita TAKAO <jargon@lares.dti.ne.jp>
1667
1668 * rt_socket.c: Modify for compile on Solaris, but dont't work it.
1669 rt_socket.c have some undefined function, so add directive "IMPLEMENT"
1670
16711998-05-18 Yamshita TAKAO <jargon@lares.dti.ne.jp>
1672
1673 * zebra.c: Modify for compile on Solaris.
1674
16751998-05-03 Kunihiro Ishiguro <kunihiro@zebra.org>
1676
1677 * main.c: change CONFDIR to SYSCONFDIR.
1678
16791998-05-01 Kunihiro Ishiguro <kunihiro@zebra.org>
1680
1681 * .cvsignore: added.
1682
16831998-04-02 Kunihiro Ishiguro <kunihiro@zebra.org>
1684
1685 * client.c: moves to ../lib.
1686
16871998-03-30 Kunihiro Ishiguro <kunihiro@zebra.org>
1688
1689 * if_ioctl.c (if_get_addr): Change address copy from memcopy() to
1690 structure assignment.
1691
16921998-03-30 URA Hiroshi <ura@yamato.ibm.co.jp>
1693
1694 * if_sysctl.c (ifm_interface_add): sdl->sdl_data copy bug fixed.
1695
16961998-02-23 "Hannes R. Boehm" <hannes@boehm.org>
1697
1698 * if.c (if_init): add config_exit_cmd and config_help_cmd.
1699
17001998-01-24 Kunihiro Ishiguro <kunihiro@zebra.org>
1701
1702 * rt_ioctl.c (route_ioctl): EPERM treatment added.
1703
17041998-01-05 Kunihiro Ishiguro <kunihiro@zebra.org>
1705
1706 * rt_socket.c (kernel_read): communication port zebra between
1707 kernel is now handled by kernel_read.
1708
17091998-01-02 Kunihiro Ishiguro <kunihiro@zebra.org>
1710
1711 * main.c (main): zebra [-P port] can specify vty port number.
1712
17131997-12-25 Kunihiro Ishiguro <kunihiro@zebra.org>
1714
1715 * zebra.c: change select will be block.
1716
17171997-12-04 Kunihiro Ishiguro <kunihiro@zebra.org>
1718
1719 * add static route treatment.
1720
17211997-11-25 Kunihiro Ishiguro <kunihiro@zebra.org>
1722
1723 * rt_netlink.c: add netlink support over GNU/Linux system.
1724
17251997-11-23 Kunihiro Ishiguro <kunihiro@zebra.org>
1726
1727 * all inet_addr is changed to inet_aton.
1728
1729 * zebra.c (ip_route): add ip route command for static routes.
1730
17311997-11-20 Kunihiro Ishiguro <kunihiro@zebra.org>
1732
1733 * if.c (if_flag_dump): Linux port of if_flag_dump and _vty.
1734
17351997-11-19 Kunihiro Ishiguro <kunihiro@zebra.org>
1736
1737 * if.c: add interface command.
1738
17391997-11-18 Kunihiro Ishiguro <kunihiro@zebra.org>
1740
1741 * ipforward_proc.c : Now works on Linux.
1742
17431997-10-25 Kunihiro Ishiguro <kunihiro@zebra.org>
1744
1745 * command.c : add completion feature.
1746
17471997-10-18 Kunihiro Ishiguro <kunihiro@zebra.org>
1748
1749 * vty.c (vty_command): add vty interface.
1750
17511997-10-13 Kunihiro Ishiguro <kunihiro@zebra.org>
1752
1753 * zebra.c: add verbose mode.
1754
17551997-10-12 SonMyong Ho <s-ho@Matrix.IRI.Co.Jp>
1756
1757 * Hydrangea for FreeBSD supported
1758 * in.h: add some prototype.
1759
17601997-10-11 Kunihiro Ishiguro <kunihiro@zebra.org>
1761
1762 * rt_socket.c and rtread.c completely rewritten.
1763
17641997-10-05 Kunihiro Ishiguro <kunihiro@zebra.org>
1765
1766 * rt_socket.c: rename kernel_sock to routing_socket
1767
17681997-10-04 Kunihiro Ishiguro <kunihiro@zebra.org>
1769
1770 * if.c (if_new): interface structure change from linklist to vector.
1771
17721997-10-03 Kunihiro Ishiguro <kunihiro@zebra.org>
1773
1774 * vector.c (vector_init): create vector related function
1775
17761997-09-25 Kunihiro Ishiguro <kunihiro@zebra.org>
1777
1778 * Makefile.in: add tags target
1779
1780 * start IPv6 support for INRIA FreeBSD.
1781