blob: 1d0f1754893d8de69fb211e69d59a4fdcf29b973 [file] [log] [blame]
ajsd2fc8892005-04-02 18:38:43 +000012005-04-02 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
2
ajs08dbfb62005-04-03 03:40:52 +00003 * if_ioctl.c: (interface_list_ioctl) Use if_get_by_name_len.
4 * if_proc.c: (ifaddr_proc_ipv6) Increase size of ifname buffer to
5 avoid overflow.
6 * kernel_socket.c: (ifan_read) Use if_get_by_name_len.
7
82005-04-02 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
9
ajsa3491982005-04-02 22:50:38 +000010 * kernel_socket.c: (ifm_read) Use new if_lookup_by_name_len function
11 to save a memcpy.
12 * if_ioctl_solaris.c: (interface_list_ioctl) Fix subtle bug with new
13 if_get_by_name_len function.
14
152005-04-02 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
16
ajsd2fc8892005-04-02 18:38:43 +000017 * interface.c: (if_new_intern_ifindex) Remove obsolete function.
18 (if_delete_update) After distributing the interface deletion message,
19 set ifp->ifindex to IFINDEX_INTERNAL.
20 (if_dump_vty) Detect pseudo interface by checking if ifp->ifindex is
21 IFINDEX_INTERNAL.
22 (zebra_interface) Check return code from interface_cmd.func.
23 Do not set internal ifindex values to if_new_intern_ifindex(),
24 since we now use IFINDEX_INTERNAL for all pseudo interfaces.
25 * kernel_socket.c: (ifm_read) Fix code and comments to reflect that
26 all internal interfaces now have ifp->ifindex set to IFINDEX_INTERNAL.
27 * rt_netlink.c: (set_ifindex) New function used to update ifp->ifindex.
28 Detects interface rename events by checking if that ifindex is already
29 being used. If it is, delete the old interface before assigning
30 the ifindex to the new interface.
31 (netlink_interface, netlink_link_change) Call set_ifindex to update
32 the ifindex.
33
hassob7ed1ec2005-03-31 20:13:49 +0000342005-03-31 Hasso Tepper <hasso at quagga.net>
35
36 * rt_netlink.c (netlink_talk_filter): Show always warning message,
37 it's not for debug.
38 * rt_netlink.c (netlink_talk): Don't assume we use netlink_cmd
39 although we do now actually.
40 * rt_netlink.c (netlink_route, netlink_route_multipath): Always use
41 netlink_cmd to send messages to the kernel.
42
ajs2da40f42005-03-30 16:33:13 +0000432005-03-30 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
44
45 * irdp.h: Add prototype for irdp_sock_init, and fix protos for
46 other irdp_* functions.
47 * irdp_interface.c: (irdp_if_start) If irdp_sock is negative,
48 call irdp_sock_init to create the IRDP socket.
49 (irdp_if_init) Rename to irdp_init().
50 (get_iflist_ifp) Remove function that is a duplicate of
51 if_lookup_by_index.
52 (*) Make many functions static. And remove superfluous "\n" from
53 several zlog messages.
54 * irdp_main.c: (irdp_init) Remove function that used to call
55 irdp_if_init() and irdp_sock_init(), since we will now create
56 the socket only upon first use.
57 (irdp_sock_init) Do not update global irdp_sock variable, just
58 return the fd and assume that the caller will do so. If setsockopt
59 calls fail, close the socket before returning -1.
60 (*) Make many functions static.
61 * irdp_packet.c: Initialize irdp_sock to -1.
62 (irdp_read_raw) Call standard library function if_lookup_by_index
63 instead of get_iflist_ifp.
64 (irdp_recvmsg) Should be static, not global.
65
ajsa608bbf2005-03-29 17:03:49 +0000662005-03-29 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
67
68 * rt_netlink.c: (netlink_link_change) If the status of an
69 operative interface changes (e.g. MTU changes), the client
70 daemons should be notified by calling zebra_interface_up_update.
71 Previously, the information was being updated in zebra's
72 interface structure, but the clients were not notified of
73 changes to an operative interface.
74
vincent7cee1bb2005-03-25 13:08:53 +0000752005-03-25 Jean-Mickael Guerin <jean-mickael.guerin@6wind.com>
76 * interface.c, interface.h, rtadv.c, rtadv.h: modifications to
77 IPv6 Neighbor Discovery according to RFC3775, section 7:
78 o 1-bit Home Agent flag management in Router Advertisement (7.1).
79 o 1-bit Router Address flag management in Prefix Information
80 Option (7.2).
81 o Advertisement Interval Option (7.3)
82 o Home Agent Information Option (7.4)
83 o Changes to Sending Router Advertisements more frequently (7.5)
84
hassoed9bb6d2005-03-13 19:17:21 +0000852005-03-13 Hasso Tepper <hasso at quagga.net>
86
87 * zebra/interaface.c: "show interface description" command
88 implemented.
89
paulc1f01f32005-03-12 06:33:14 +0000902005-03-12 Paul Jakma <paul@dishone.st>
91
92 * rt_netlink.c: (netlink_route_multipath) dont set equalise flag.
93 No stock Linux kernel has ever supported it, and even if it had
94 it's not generally a good idea.
95
hasso42a66d72005-03-07 08:19:44 +0000962005-03-07 Michael Sandee <voidptr@voidptr.sboost.org>
97
98 * if_proc.c, ipforward_proc.c, rtread_proc.c: Fix fd leaks.
99
hasso3452d472005-03-06 13:42:05 +00001002005-03-06 Hasso Tepper <hasso at quagga.net>
101
102 * interface.c: Fix CRC and frame errors statistics in Linux.
103
ajs719e9742005-02-28 20:52:15 +00001042005-02-28 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
105
106 * zserv.c: Must include network.h and buffer.h for non-blocking I/O.
107 Remove global message_queue and t_write (need separate buffering for
108 each client).
109 (zebra_server_dequeue,zebra_server_enqueue) Remove functions
110 related to old buggy buffering code.
111 (zserv_delayed_close) New thread callback function to delete a client.
112 (zserv_flush_data) New thread callback function to flush buffered
113 data to client.
114 (zebra_server_send_message) Rewritten to use buffer_write (so
115 buffering of writes and non-blocking I/O work properly).
116 (zsend_interface_add,zsend_interface_delete,zsend_interface_address,
117 zsend_interface_update) Return 0 instead of -1 if !client->ifinfo
118 (this is not really an error). Return value from
119 zebra_server_send_message.
120 (zsend_route_multipath,zsend_ipv4_nexthop_lookup,
121 zsend_ipv4_import_lookup) Return value from zebra_server_send_message.
122 (zsend_ipv6_nexthop_lookup) Fix scope to static, and return value
123 from zebra_server_send_message.
124 (zsend_router_id_update) Must use zebra_server_send_message instead
125 of deprecated writen function. Return 0 instead of -1 if this client
126 is not subscribed to router-id updates (since this is not really
127 an error).
128 (zread_interface_add) Change type to static int. If
129 zsend_interface_add fails or zsend_interface_address fails, return -1
130 immediately (since the client has had an I/O error).
131 (zread_interface_delete,zread_ipv4_add,zread_ipv4_delete,
132 zread_ipv6_add,zread_ipv6_delete,zread_router_id_delete) Return 0
133 to indicate success.
134 (zread_ipv4_nexthop_lookup) Return value from
135 zsend_ipv4_nexthop_lookup.
136 (zread_ipv4_import_lookup) Return value from zsend_ipv4_import_lookup.
137 (zebra_read_ipv6) Remove unused function.
138 (zread_ipv6_nexthop_lookup) Return value from
139 zsend_ipv6_nexthop_lookup.
140 (zread_router_id_add) Return value from zsend_router_id_update.
141 (zebra_client_close) Call buffer_free(client->wb) and
142 thread_cancel(client->t_suicide).
143 (zebra_client_create) Allocate client->wb using buffer_new.
144 (zebra_client_read) Support non-blocking I/O by using stream_read_try.
145 Use ZEBRA_HEADER_SIZE instead of 3.
146 (zebra_accept) Fix bug: reset accept thread at top. Make client
147 socket non-blocking using the set_nonblocking function.
148 (config_write_forwarding) Fix scope to static.
149 (zebra_init) Remove initialization code for old buggy write buffering.
150 * zserv.h: Add 2 new fields to struct zserv: struct buffer *wb
151 (to enable buffered writes with non-blocking I/), and
152 struct thread *t_suicide to support delayed close on I/O
153 errors.
154 * router-id.h: Remove prototypes for zread_router_id_add and
155 zread_router_id_delete (their scope should be static to zserv.c).
156
ajs27da3982005-02-24 16:06:33 +00001572005-02-24 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
158
159 * redistribute.c: (zebra_check_addr,is_default,
160 zebra_redistribute_default,zebra_redistribute) Fix scope to be static.
161
hassoe8274dc2005-02-20 19:09:23 +00001622005-02-20 Hasso Tepper <hasso at quagga.net>
163
164 * rt_netlink.c: Don't show messages "ignoring message type 0x001[89]"
165 if we are not debugging.
166
paule31f2292005-02-19 02:00:26 +00001672005-02-19 Paul Jakma <paul@dishone.st>
168
169 * zserv.c: (zebra_read_ipv6) replace the char * arithmetic with
170 STREAM_READABLE.
171
paul1e193152005-02-14 23:53:05 +00001722005-02-14 Paul Jakma <paul@dishone.st>
173
174 * Not all Linux netlink systems have IFLA_WIRELESS
175
ajs6a52d0d2005-01-30 18:49:28 +00001762005-01-30 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
177
178 * ioctl.c: (if_ioctl,if_ioctl_ipv6,if_get_flags) Replace perror with
179 zlog_err.
180 * ioctl_solaris.c: (if_ioctl,if_ioctl_ipv6) Replace perror with
181 zlog_err.
182
ajs4be019d2005-01-29 16:12:41 +00001832005-01-29 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
184
ajs4460e7a2005-01-29 17:07:40 +0000185 * if_ioctl_solaris.c: (interface_list_ioctl) Save errno before calling
186 zserv_privs.change.
187 * ioctl{,_solaris}.c: (if_ioctl,if_ioctl_ipv6) Save errno before calling
188 zserv_privs.change.
189 * ipforward_solaris.c: (solaris_nd) Save errno before calling
190 zserv_privs.change.
191 * irdp_main.c: (irdp_sock_init) Save errno before calling
192 zserv_privs.change.
193
1942005-01-29 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
195
ajs4be019d2005-01-29 16:12:41 +0000196 * rt_netlink.c: (netlink_socket,netlink_request,netlink_parse_info,
197 netlink_talk) Save errno before calling zserv_privs.change.
198
paulc15cb242005-01-24 09:05:27 +00001992005-01-24 Martin Pot <mpot at martybugs.net>
200
201 * zebra/rt_netlink.c: ignore wireless newlink netlink messages.
202
hasso6f2c27a2005-01-18 13:44:35 +00002032005-01-18 Hasso Tepper <hasso at quagga.net>
204
205 * interface.c: Better statistics output in "show interface" command in
206 case of /proc being used.
207
hasso583d8002005-01-16 23:34:02 +00002082005-01-17 Hasso Tepper <hasso at quagga.net>
209
210 * main.c: With --nl-bufsize argument is required.
211
paul865b8522005-01-05 08:30:35 +00002122005-01-05 Paul Jakma <paul@dishone.st>
213
214 * zserv.c: (zebra_accept) Comment out setting of socket to NONBLOCK
215 for now, as we dont actually deal with with resending.... See
216 bugzilla #122, fix from wawa@yandex-team.ru (Vladimir Ivanov).
217 * kernel_socket.c: (routing_socket) ditto.
218
ajsb99760a2005-01-04 16:24:43 +00002192005-01-04 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
220
221 * rtadv.c: (rtadv_recv_packet,rtadv_send_packet) Use ZCMSG_FIRSTHDR
222 instead of CMSG_FIRSTHDR.
223
ajs341a8f12004-12-22 16:32:16 +00002242004-12-22 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
225
226 * connected.c: (connected_add_ipv4) Limit warning about /32 addresses
227 with no peer specified to PtP interfaces only.
228
hassob8adec12004-12-18 16:03:28 +00002292004-12-18 Hasso Tepper <hasso at quagga.net>
230
231 * zebra_vty.c: Fix "show ipv6 route <proto>" command help and make it
232 work for isis routes.
233
gdt6a250b02004-12-09 14:48:12 +00002342004-12-09 Greg Troxel <gdt@fnord.ir.bbn.com>
235
236 * kernel_socket.c (rtmsg_debug): char * => const char *
237
ajs274a4a42004-12-07 15:39:31 +00002382004-12-07 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
239
ajsb6178002004-12-07 21:12:56 +0000240 * *.c: Change level of debug messages to LOG_DEBUG.
241
2422004-12-07 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
243
ajs274a4a42004-12-07 15:39:31 +0000244 * main.c: (main) The 2nd argument to openzlog has been removed.
245 So stdout logging will no longer be enabled by default.
246 * irdp_main.c: (irdp_finish) Reduce severity of shutdown message
247 from LOG_WARNING to LOG_INFO.
248
ajs887c44a2004-12-03 16:36:46 +00002492004-12-03 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
250
251 * main.c: (sigint) Use zlog_notice for termination message.
252 (main) Add a startup announcement using zlog_notice.
253
hassoaccb1562004-11-25 19:21:07 +00002542004-11-25 Hasso Tepper <hasso at quagga.net>
255
256 * irdp_interface.c: Remove comment from DEFUN, it breaks vtysh because
257 it confuses extract.pl.
hassoc0652302004-11-25 19:33:48 +0000258 * main.c: Make group to run as configurable.
hassoaccb1562004-11-25 19:21:07 +0000259
hasso6bd7c6a2004-10-28 17:32:27 +00002602004-10-28 Hasso Tepper <hasso at quagga.net>
261
262 * interface.c: Remove dead "ip tunnel" command.
263
paul06f953f2004-10-22 17:00:38 +00002642004-10-22 Paul Jakma <paul@dishone.st>
265
266 * irdp_main.c: change setsockopt_pktinfo to setsockopt_ifindex
267
hasso3fb9cd62004-10-19 19:44:43 +00002682004-10-19 Andrew J. Schorr <aschorr@telemetry-investments.com>
269
270 * rt_netlink.c: (netlink_interface_addr) For PtP interfaces, ignore
271 tb[IFA_ADDRESS] if it's the same as tb[IFA_LOCAL].
272 * interface.c: (ip_address_install) Use new ipv4_broadcast_addr
273 function.
274 * connected.c: (connected_up_ipv4) Use CONNECTED_POINTOPOINT_HOST
275 macro.
276 (connected_down_ipv4) ditto.
277 (connected_add_ipv4) Validate destination address, print warnings
278 if it does not make sense.
279
hassoc1eaa442004-10-19 06:26:01 +00002802004-10-19 Hasso Tepper <hasso at quagga.net>
281
282 * zserv.c: Fix regression introduced with zserv cleanup.
283
hassoc75105a2004-10-13 10:33:26 +00002842004-10-13 Hasso Tepper <hasso at quagga.net>
285
286 * zebra_snmp.c: Remove defaults used to initialize smux connection to
287 snmpd. Connection is initialized only if smux peer is configured.
hassob71f00f2004-10-13 12:20:35 +0000288 * zserv.c: Remove useless warnings "forwarding is already on".
hassoc75105a2004-10-13 10:33:26 +0000289
hasso39ff11d2004-10-12 15:55:19 +00002902004-10-12 Hasso Tepper <hasso at quagga.net>
291
292 * zebra_vty.c: Unbreak "show ip route" command help and make it work
293 for isis routes.
hasso39db97e2004-10-12 20:50:58 +0000294 * interface.c(if_dump_vty): Show IPv6 addresses in "show interface"
295 output. Fixes Bugzilla #119.
296 * *.c: Make some strings const and some (unsigned) casts to fix
297 compiler warnings.
hasso39ff11d2004-10-12 15:55:19 +0000298
hassofce954f2004-10-07 20:29:24 +00002992004-10-07 Hasso Tepper <hasso at quagga.net>
300
301 * connected.c, main.c, rt_netlink.c, rtadv.c, zebra_rib.c, zserv.c:
302 Fix warnings: make strings const, signed -> unsigned.
303
paul72164662004-10-05 14:39:43 +00003042004-10-05 Paul Jakma <paul@dishone.st>
305
306 * irdp_packet.c: (parse_irdp_packet) style issues.
307 Use sockopt_iphdrincl_swab_systoh.
308 Try unbork the code. Checksum the ICMP data and actually
309 compare it to received checksum. Check data length against
310 claimed length in header.
311 Always use ntoh.. when accessing addresses, even when the
312 comparison happens to be endian-safe.
313 (send_packet) minor style isues. Use
314 sockopt_iphdrincl_swab_htosys.
315 (irdp_iph_hton/ntoh) IP header to/from network/host order.
316
hassoeef1fe12004-10-03 18:46:08 +00003172004-10-03 Gilad Arnold <gilad.arnold at terayon.com>
318
319 * interface.c, interface.h: A new prefix tree of connected subnets is
320 associated with each interface structure in zebra, in which each
321 live (ie, non-synthetic) node holds a list of installed addresses
322 that belong to that prefix. Remove secondary address logic from cli.
323 See [quagga-dev 872] for detailed explanation.
324 * connected.c: Use if_subnet_add() and if_subnet_delete().
325
hasso18a6dce2004-10-03 18:18:34 +00003262004-10-03 James R. Leu <jleu at mindspring.com>
327
328 * router-id.c, router-id.h: New files. Router id selection process. If
329 there is non 127.x.x.x address in loopack interface, lowest of them
330 is chosen. If there isn't, lowest from other interfaces addresses
331 are chosen. "router-id x.x.x.x" vty command to manual override.
332 * Makefile.am: Compile new files.
333 * main.c: Initialize router id.
334 * redistribute.c: Add interface addresses into router id selection
335 lists as they (dis)appear.
336 * zserv.c, zserv.h: Sending router id related messages to daemons.
337
hassoc9e52be2004-09-26 16:09:34 +00003382004-09-26 Hasso Tepper <hasso at quagga.net>
339
340 * irdp_interface.c, irdp_main.c, irdp_packet.c, rt_netlink.c,
341 rtadv.c, zebra_vty.c: Fix compiler warnings.
342
paul0c0f9112004-09-24 08:24:42 +00003432004-09-24 Paul Jakma <paul@dishone.st>
344
paul26f7a242004-09-24 08:45:10 +0000345 * irdp_interface.c: (no_ip_irdp_address_preference_cmd)
346 add missing listnode declaration.
347
3482004-09-24 Paul Jakma <paul@dishone.st>
349
paul0c0f9112004-09-24 08:24:42 +0000350 * irdp_{interface,main}.c: lists typedef removal cleanup.
351 update some list loops to LIST_LOOP. some miscellaneous style
352 and indent fixups.
353 (no_ip_irdp_address_preference_cmd) Fix delete of referenced node
paul26f7a242004-09-24 08:45:10 +0000354 in loop.
paul0c0f9112004-09-24 08:24:42 +0000355 * irdp_packet.c: (irdp_recvmsg) Fix buggy assignment of integer
356 to pointer.
357 * if_ioctl{,_solaris}.c: lists typedef removal cleanup.
358 update some list loops to LIST_LOOP.
359
hasso52dc7ee2004-09-23 19:18:23 +00003602004-09-23 Hasso Tepper <hasso at quagga.net>
361
362 * *.[c|h]: list -> struct list *, listnode -> struct listnode *.
363
paul44983cf2004-09-22 13:15:58 +00003642004-09-22 Paul Jakma <paul.jakma@sun.com>
365
366 * zserv.c: (zsend_route_multipath) fix nasty bad memset of struct
367 in_addr to sizeof(struct in6_addr), causing odd and hard to debug
368 crash.
369
hassoc34b6b52004-08-31 13:41:49 +00003702004-08-31 Hasso Tepper <hasso at quagga.net>
371
372 * main.c, rt_netlink.c: Added -s command line switch for tuning
373 netlink receive buffer size in Linux to avoid buffer overruns.
374
gdta5ea6872004-08-26 13:24:00 +00003752004-08-26 Miles Nordin <carton@Ivy.NET>
376
377 * ipforward_sysctl.c (mib_ipv6): Use size_t for len, per
378 sysctl(3), rather than int. (Needed on NetBSD/alpha to display
379 forwarding status correctly.)
380
paul3e0b3a52004-08-23 18:58:32 +00003812004-08-23 Paul Jakma <paul@dishone.st>
382
383 * zserv.c: (zebra_init) remove implicit ip forward enabling
384
paul0de1cde2004-08-19 04:45:33 +00003852004-08-19 Paul Jakma <paul@dishone.st>
386
387 * irdp_main.c: update to match sockopt renames.
388 * irdp_packet.c: include sockopt.h and update to match sockopt
389 renames.
390
gdt57492d52004-08-11 18:06:38 +00003912004-08-11 Greg Troxel <gdt@fnord.ir.bbn.com>
392
393 * rtadv.c (rtadv_send_packet): Allocate space for control messages
394 more carefully; it was wrong on NetBSD/sparc where CMSG alignment
395 is to 8 bytes instead of 4, and overwriting the address. Use the
396 provided macros for determining lengths.
397
paul5b73a672004-07-23 15:26:14 +00003982004-07-23 Sowmini Varadhan <Sowmini.Varadhan@Sun.COM>
399
400 * if_ioctl_solaris.c: HAVE_IPV6 ifdef fixups
401 * zserv.c: ditto
402 * ioctl_solaris.c: ditto.
403 * interface.c: cast for LLADDR
404 * interface.h: Add guards, include redistribute.h and remove
405 extraneous definitions of zebra_interface_{up,down}_update
406 * ioctl.h: Add AF_IOCTL define for non SOLARIS_IPV6
407 * redistribute.h: include dependent header, zserv.h
408 * zserv.h: include dependent header, rib.h
409
paul1470baf2004-07-23 15:25:01 +00004102004-07-23 Paul Jakma <paul@dishone.st>
411
412 * irdp_main.c: use setsockopt_pktinfo_ipv4
413 * irdp_packet.c: use SOPT_SIZE_CMSG_PKTINFO_IPV4 and
414 getsockopt_pktinfo_ifindex()
415
gdtcced60d2004-07-13 16:45:54 +00004162004-07-13 David Wiggins <dwiggins@bbn.com
417
418 * kernel_socket.c (rtm_flag_dump): terminate buffer with '\0', not '0'.
419
hasso25dac852004-07-13 03:06:51 +00004202004-07-13 Hasso Tepper <hasso@estpak.ee>
421
422 * irdp_main.c: Add privilege change.
423
hasso996933f2004-07-12 16:32:56 +00004242004-07-12 Hasso Tepper <hasso@estpak.ee>
425
426 * irdp_interface.c: follow common style while naming vty command
427 functions. Avoids confusion in extract.pl.
428
gdt87efd642004-06-30 17:36:11 +00004292004-06-30 Greg Troxel <gdt@poblano.ir.bbn.com>
430
431 * main.c: define thread_master variable so that linking with
432 libzebra.so doesn't fail. Arguably zclient.o should be in a
433 separate library, but this is far less disruptive.
434
hassoca776982004-06-12 14:33:05 +00004352004-06-12 Robert Olsson <Robert.Olsson at data.slu.se>
436
437 * Added IRDP support.
438
hasso3e31cde2004-05-18 11:58:59 +00004392004-05-18 Hasso Tepper <hasso@estpak.ee>
440
441 * rtadv.c: Removed "[no] ipv6 nd send-ra" command. Replaced "ipv6 nd
442 prefix-advertisement" with "ipv6 nd prefix". Rewrite syntax of
443 "ipv6 nd prefix" command to allow various combinations of parameters
444 and flags. No defaults in configuration. Replaced on-link and
445 autoconfig with off-link and no-autoconfig flags in command syntax.
446 Cosmetic fixes in all commands. Documentation to reflect all changes.
447
paul19877dd2004-05-11 10:49:35 +00004482004-05-11 Paul Jakma <paul@dishone.st>
449
450 * Makefile.am: support for IOCTL_METHOD, as per Sowmini's patch.
paul48a46fa2004-05-11 10:55:22 +0000451 * if_ioctl_solaris.c: Fixup some erroneous privilege changes and
452 add privs.h header.
453 * ioctl_solaris.c: ditto
paulc50ae8b2004-05-11 11:31:07 +0000454 * ioctl.h: Add if_ioctl_ipv6 prototype and AF_IOCTL for SOLARIS_IPV6
455 * kernel_socket.c: Fix SAROUNDUP, compiler doesnt like do..while
456 RHS in assignments :)
457 * redistribute.c: (zebra_interface_delete_update) only used
458 if RTM_IFANNOUNCE and NETLINK is available.
459
paulb9df2d22004-05-09 09:09:59 +00004602004-05-09 Paul Jakma <paul@dishone.st>
461
462 * zserv.c: (zsend_route_multipath) Set the nexthop_num
463 field correctly. Add NEXTHOP_TYPE_IPV6_IFNAME for v6.
464 Conditionally set ZAPI_MESSAGE_METRIC flag - only for adds.
465 (zsend_ipv4_add) cruft, deleted.
466 (zsend_ipv4_delete) ditto.
467 (zsend_ipv6_add) ditto.
468 (zsend_ipv6_delete) ditto.
paul44145db2004-05-09 11:00:23 +0000469 * ioctl.c: (if_get_mtu) set mtu6 to mtu
470 * mtu_kvm.c: (if_kvm_get_mtu) set mtu6 to mtu
471 * rt_netlink.c: (netlink_interface) set mtu6 to mtu
472 (netlink_link_change) ditto
paul66e94882004-05-09 17:19:24 +0000473 * ipforward_solaris.c: fix typo of ND variable.
paul88424682004-05-09 18:21:35 +0000474 * if_ioctl_solaris.c: Add zprivs support.
475 * ioctl_solaris.c: ditto.
paul66e94882004-05-09 17:19:24 +0000476
paulb9df2d22004-05-09 09:09:59 +00004772004-05-09 Sowmini Varadhan <sowmini.varadhan@sun.com>
478
479 * zserv.c: (zsend_ipv{4,6}_{add,delete}_multipath) collapsed
480 into single zsend_route_multipath function.
481 (zsend_interface_{up,down}) collapsed into zsend_interface_update.
482 (zsend_interface_address_{add,delete}) collapsed into
483 zsend_interface_address.
484 (zsend_interface_add) send mtu6.
485 (zsend_interface_delete) ditto.
486 (zebra_write) remove unused function.
487 (various) Apply static qualifier. Add comments.
488 * zserv.h: Definitions changed as per above.
489 * redistribute.c: Changes as per zserv.c.
paul44145db2004-05-09 11:00:23 +0000490 * interface.c: (if_delete_update) only used with HAVE_NETLINK
491 and RTM_IFANNOUNCE.
492 (if_flag_dump_vty) Solaris IFF_IPV4 and IFF_IPV6 if flags
493 (if_dump_vty) print mtu6 if not same as mtu
paul88424682004-05-09 18:21:35 +0000494 * if_ioctl_solaris.c: New file, Solaris interface ioctl methods.
495 * ioctl_solaris.c: New file, Common solaris ioctl methods.
496
hasso34195bf2004-04-06 12:07:06 +00004972004-04-06 Krzysztof Oledzki <oleq@ans.pl>
498
499 * rt_netlink.c: Do not ignore metric when reading kernel routing
500 table on Linux with rt_netlink interface.
501
5022004-03-18 Hasso Tepper <hasso@estpak.ee>
hassof1d92e12004-03-18 15:40:33 +0000503
504 * interface.c: Temporary fix for handling secondary addresses
505 with label.
506
hasso55906722004-02-11 22:42:16 +00005072004-02-12 Hasso Tepper <hasso@estpak.ee>
hassof1d92e12004-03-18 15:40:33 +0000508
hasso55906722004-02-11 22:42:16 +0000509 * zserv.c: Added "ipv6 forwarding" command.
510
gdtb27900b2004-01-08 15:44:29 +00005112004-01-08 Greg Troxel <gdt@fnord.ir.bbn.com>
512
513 * kernel_socket.c (kernel_read): Use sockaddr_storage in buffer
514 for reading kernel messages to ensure enough space (necessary on
515 Solaris due to sockaddr_dl being large). Thanks to Sowmini
516 Varadhan for help with this change.
517
gdt9ccabd12004-01-06 18:23:02 +00005182004-01-06 Greg Troxel <gdt@t1.ir.bbn.com>
519
520 * rtadv.c (rtadv_send_packet): Change perror to zlog_err.
521
gdtdbee01f2004-01-06 00:36:51 +00005222004-01-05 Greg Troxel <gdt@fnord.ir.bbn.com>
gdt4bfbea82004-01-06 01:13:05 +0000523 * kernel_socket.c (ifm_read): Major cleanup. Use Sowmini's code
524 to find the sockaddr_dl in all cases, narrowing the Solaris ifdef
525 to just the accomodation of broken kernels. Check sockaddr_dl
526 carefully up front, and later assume any non-NULL sdl pointer is
527 valid. Clean up types and variable declarations, and rename
528 WRAPUP to SAROUNDUP to make the name fit the behavior.
529
5302004-01-05 Greg Troxel <gdt@fnord.ir.bbn.com>
gdtdbee01f2004-01-06 00:36:51 +0000531
532 * kernel_socket.c (kernel_read): Add a sockaddr_dl to the ifmsg
533 structure, because on Solaris sockaddr_dl is far larger than the
534 base sockaddr structure. (The code had previously been failing to
535 read all the data.)
gdt4bfbea82004-01-06 01:13:05 +0000536
gdtda26e3b2004-01-05 17:20:59 +00005372004-01-05 Greg Troxel <gdt@ahi.ir.bbn.com>
538
539 * kernel_socket.c (kernel_read): Look up interfaces by index
540 first, so that state changes which do not include a sockaddr_dl
541 now work. Add many sanity checks. In
542 particular, do not assume that a sockaddr_dl follows a message
543 without checking the ifm_addrs flags, and do not trust the length
544 in a sockaddr_dl. Add/clarify many comments.
545
gdt4b5e1352003-12-03 17:54:34 +00005462003-12-03 Greg Troxel <gdt@poblano.ir.bbn.com>
547
548 * rtadv.c: reorder includes to avoid compiler warning (define
549 structs before using them in prototypes)
550
hasso647e4f12003-05-25 11:43:52 +00005512003-05-25 Jim Crumpler <Jim.Crumpler@edion.com>
552
553 * zserv.c: Add "ip forwarding" command.
554
paul445f1432003-05-16 19:00:31 +00005552003-05-16 Gilad Arnold <gilad.arnold@terayon.com>
556
557 * zebra_rib.c: Fix memory leaks for ifname nexthops
558
5592003-04-19 Israel Keys <ikeys@agile.tv>
560
561 * rt_netlink.c: BLOCK on netlink while initialising
562
5632003-02-06 Francois Deppierraz <francois@ctrlaltdel.ch>
564
565 * rt_netlink.c (netlink_route_multipath): Set RTM_F_EQUALIZE when
566 it exists.
567
paul718e3742002-12-13 20:15:29 +00005682002-09-28 Akihiro Mizutani <mizutani@net-chef.net>
569
570 * zebra_rib.c (static_add_ipv4): Null0 static route is added.
571
5722002-09-10 Jochen Friedrich <chris+zebra@scram.de>
573
574 * rt_netlink.c: Add check for EAGAIN.
575 * kernel_socket.c: Likewise
576
5772002-06-12 Israel Keys <ikeys@oz.agile.tv>
578
579 * rt_netlink.c: Setting the NLM_F_ACK flag on the netlink command
580 message so that we get an ACK for successful netlink commands.
581 Change the netlink socket to BLOCKING while we wait for a
582 response; be it an ACK or an NLMSG_ERROR. Change
583 netlink_parse_info to deal with ACK messages.
584
5852001-11-01 Jun-ichiro itojun Hagino <itojun@iijlab.net>
586
587 * rtadv.c (rtadv_make_socket): setsockopt(IPV6_CHECKSUM) does not
588 work for ICMPv6 socket.
589
5902001-10-24 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
591
592 * rib.c (rib_process): Select connected route any case.
593
5942001-10-23 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
595
596 * interface.c (no_ip_address_secondary): Add "no" to command.
597
5982001-10-18 NOGUCHI Kay <kay@v6.access.co.jp>
599
600 * ioctl.c (if_prefix_add_ipv6): Set the prefered and valid lifetime
601 to infinity as the freebsd4.4 workaroud.
602
6032001-08-26 mihail.balikov@interbgc.com
604
605 * zebra_snmp.c: Fix snmpwalk problem such as IPv4 address
606 A.B.C.255.
607
6082001-08-22 NOGUCHI Kay <kay@v6.access.co.jp>
609
610 * rtadv.c: Do not send RA to loopback interface.
611
6122001-08-20 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
613
614 * ioctl.c (if_set_prefix): Remove Linux 2.0 specific connected
615 route treatment.
616
6172001-08-19 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
618
619 * zebra-0.92a released.
620
6212001-08-17 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
622
623 * rib.c: Kernel route is treated as EGP routes in nexthop active
624 check.
625
6262001-08-15 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
627
628 * zebra-0.92 released.
629
6302001-08-08 "Akihiro Mizutani" <mizutani@dml.com>
631
632 * rib.c (show_ip_route_prefix_longer): Add longer-prefix option to
633 show route commands.
634
6352001-07-29 Yon Uriarte <havanna_moon@gmx.net>
636
637 * zserv.c (zsend_ipv4_add_multipath): Add
638 NEXTHOP_TYPE_IPV4_IFINDEX check.
639
6402001-07-29 NOGUCHI Kay <kay@v6.access.co.jp>
641
642 * rtadv.c: Apply valid lifetime, preferred lifetime, onilnk flag,
643 autonomous address-configuration flag patch.
644 (no_ipv6_nd_suppress_ra): Change "ipv6 nd send-ra" to "no ipv6 nd
645 suppress-ra".
646
6472001-07-24 NOGUCHI Kay <kay@v6.access.co.jp>
648
649 * rtadv.c (ipv6_nd_ra_interval): Add "ipv6 nd ra-interval SECONDS"
650 command.
651
6522001-07-24 Jun-ichiro itojun Hagino <itojun@iijlab.net>
653
654 * rt_socket.c (kernel_rtm_ipv4): Add KAME/NetBSD151 equal cost
655 multicast FIB support both IPv4 and IPv6.
656
6572001-07-24 Hal Snyder <hal@vailsys.com>
658
659 * if_ioctl.c (interface_list_ioctl): Fix bug of failing to get the
660 full list of interfaces on some configurations of OpenBSD.
661
6622001-07-23 NOGUCHI Kay <kay@v6.access.co.jp>
663
664 * rtadv.c (ipv6_nd_send_ra): Apply [zebra 9320] to fix "ipv6 nd
665 send-ra" bug.
666 (ipv6_nd_ra_lifetime): "ipv6 nd ra-lifetime 0" for default router
667 availability.
668 (ipv6_nd_managed_config_flag): "ipv6 nd managed-config-flag" is
669 added.
670 (ipv6_nd_other_config_flag): "ipv6 nd other-config-flag" is added.
671
6722001-07-23 Jun-ichiro itojun Hagino <itojun@iijlab.net>
673
674 * ioctl.c (if_ioctl): Change ioctl argument from int to u_long.
675
676 * rt_ioctl.c: Likewise.
677
6782001-07-23 Jun-ichiro itojun Hagino <itojun@iijlab.net>
679
680 * kernel_socket.c (rtm_write): Only set RTF_CLONING when the
681 interface is not p2p.
682
6832001-04-23 Kunihiro Ishiguro <kunihiro@zebra.org>
684
685 * ioctl.c (if_prefix_add_ipv6): Fix argument type.
686
6872001-04-06 Toshiaki Takada <takada@zebra.org>
688
689 * zserv.c (zsend_interface_delete): Use client->obuf instead of
690 allocating new stream.
691
6922001-03-10 Kunihiro Ishiguro <kunihiro@zebra.org>
693
694 * rt_netlink.c: Revert RTPROT_BOOT change.
695
6962001-03-08 Kunihiro Ishiguro <kunihiro@zebra.org>
697
698 * rt_netlink.c (netlink_route_change): Skip RTPROT_BOOT route.
699 (netlink_routing_table): Likewise.
700
7012001-03-07 "Akihiro Mizutani" <mizutani@dml.com>
702
703 * zserv.c (zsend_ipv4_add_multipath): Send metric value to
704 protocol daemons.
705
7062001-02-18 Kunihiro Ishiguro <kunihiro@zebra.org>
707
708 * rt_netlink.c (netlink_routing_table): Do not return
709 tb[RTA_GATEWAY] is NULL. Reported by: "Michael O'Keefe"
710 <mokeefe@qualcomm.com>.
711
7122001-02-08 Kunihiro Ishiguro <kunihiro@zebra.org>
713
714 * if_ioctl.c (interface_list_ioctl): Call if_add_update().
715 Suggested by: Chris Dunlop <chris@onthe.net.au>.
716
7172001-02-01 Kunihiro Ishiguro <kunihiro@zebra.org>
718
719 * rib.c (nexthop_active_ipv4): When nexthop type is
720 NEXTHOP_TYPE_IPV4_IFINDEX, propery set the ifindex to rifindex.
721
722 * zserv.c: Initialize rtm_table_default with 0.
723
724 * zebra-0.91 is released.
725
7262001-01-31 Kunihiro Ishiguro <kunihiro@zebra.org>
727
728 * kernel_socket.c (rtm_read): Filter cloned route. Suggested by:
729 Jun-ichiro itojun Hagino <itojun@iijlab.net>
730
7312001-01-30 Kunihiro Ishiguro <kunihiro@zebra.org>
732
733 * connected.c (connected_up_ipv6): When point-to-point destination
734 address is ::, use local address for connected network.
735 (connected_down_ipv6): Likewise.
736
7372001-01-25 Kunihiro Ishiguro <kunihiro@zebra.org>
738
739 * zserv.c (zebra_serv): Add missing close() call. Reported by:
740 David Waitzman <djw@vineyard.net>.
741
7422001-01-24 Kunihiro Ishiguro <kunihiro@zebra.org>
743
744 * rib.c (rib_lookup_ipv4): New function for checking exact match
745 IGP route.
746
7472001-01-23 Kunihiro Ishiguro <kunihiro@zebra.org>
748
749 * rib.c (show_ipv6_route_protocol): Fix bug of "show ip route
750 route-type".
751
7522001-01-22 Kunihiro Ishiguro <kunihiro@zebra.org>
753
754 * interface.c (zebra_interface): Do not call
755 zebra_interface_add_update for inactive interface.
756
757 * zserv.c (zsend_interface_address_add): Send interface address
758 flag.
759 (zsend_interface_address_delete): Likewise.
760
7612001-01-19 Kunihiro Ishiguro <kunihiro@zebra.org>
762
763 * interface.c (if_addr_add): Add flags.
764
765 * connected.c (ifa_add_ipv4): Add new function for interface
766 address handling.
767 (ifa_delete_ipv4): Likewise.
768
7692001-01-16 Kunihiro Ishiguro <kunihiro@zebra.org>
770
771 * rib.c (rib_update): Update IPv6 RIB.
772
773 * kernel_socket.c (ifam_read): Call if_refresh() for update
774 interface flag status. This is for implicit interface up on *BSD.
775
776 * interface.c (if_refresh): Add interface flag refresh function.
777
778 * kernel_socket.c (rtm_read): Fetch link-local address interface
779 index.
780 (ifan_read): We need to fetch interface information. Suggested
781 by: Yasuhiro Ohara <yasu@sfc.wide.ad.jp>.
782
783 * rib.c (static_ipv6_nexthop_same): Add check for
784 NEXTHOP_TYPE_IPV6_IFNAME.
785
7862001-01-15 Kunihiro Ishiguro <kunihiro@zebra.org>
787
788 * rib.h (NEW_RIB): Turn on NEW_RIB flag. IPv6 new RIB code are
789 taken into place.
790
7912001-01-14 Kunihiro Ishiguro <kunihiro@zebra.org>
792
793 * rib.c (static_ipv6_write): Display STATIC_IPV6_GATEWAY_IFNAME
794 configuration.
795 (rib_delete_ipv6): Handle same route conter for IPv6 connected
796 route.
797 (show_ipv6_route_protocol): New command.
798 (show_ipv6_route_addr): Likewise.
799 (show_ipv6_route_prefix): Likewise.
800 (rib_update): Sweep kernel route when it is cleaned up.
801
802 * rt_socket.c (kernel_add_ipv6): Add NEXTHOP_IPV6_IFNAME
803 treatmenet.
804
805 * rt_netlink.c (kernel_init): Likewise.
806
807 * rt_ioctl.c (kernel_ioctl_ipv6_multipath): Likewise.
808
809 * rib.c (rib_add_ipv4): Cope with same connected route on a
810 interface. Suggested by: Matthew Grant <grantma@anathoth.gen.nz>.
811 (nexthop_ipv6_ifname_add): Add NEXTHOP_IPV6_IFNAME treatmenet.
812
813 * rib.h (struct new_rib): Add refcnt to keep track on the
814 reference of same connected route.
815
816 * ioctl.c (if_set_prefix): Add check for GNU_LINUX.
817
8182001-01-13 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
819
820 * kernel_socket.c (ifan_read, rtm_type_str): Add RTM_OIFINFO check.
821 (rtm_type_str): Add RTM_IFANNOUNCE check.
822 (ifan_read): New function.
823 (kernel_read): Add case for RTM_IFANNOUNCE.
824
8252001-01-13 Kunihiro Ishiguro <kunihiro@zebra.org>
826
827 * rt_ioctl.c (kernel_ioctl_ipv6_multipath): New function.
828
829 * rt_netlink.c (netlink_route_multipath): IPv6 address ifindex
830 treatment.
831
832 * connected.c (connected_up_ipv6): Add dest value check.
833
834 * rib.c (nexthop_active_ipv6): Do not touch IPv6 nexthop's
835 ifindex.
836 (rib_add_ipv4): Import rib_add_ipv6() same route check code.
837 (nexthop_active_check): NEXTHOP_TYPE_IPV6_IFINDEX activity is only
838 checked by ifindex.
839
840 * rt_socket.c (kernel_rtm_ipv6_multipath): New function.
841
842 * redistribute.c (redistribute_add): Use
843 zsend_ipv6_add_multipath().
844 (redistribute_delete_multipath): Use
845 zsend_ipv6_delete_multipath().
846
847 * interface.c (ip_address): Check current IP address to avoid
848 duplicate.
849
850 * rib.c (rib_delete_ipv4): When deleted route is connected route,
851 check ifindex.
852 (rib_add_ipv4): When connected route is added do not perform
853 implicit withdraw.
854 (rib_delete_ipv4): Check ifindex for connected route.
855
856 * kernel_socket.c (rtm_read): When route has RTF_STATIC, set
857 ZEBRA_FLAG_STATIC for indicate as persistent route.
858 (ifam_read): Unset interface index from link-local address when
859 IPv6 stack is KAME.
860
861 * rib.c (rib_update): Do not delete persistent kernel route.
862
863 * rib.h (struct new_rib): Integrate RIB_FLAG_* to ZEBRA_FLAG_*.
864
865 * rt_socket.c (kernel_add_ipv6_multipath): Add placeholder.
866 (kernel_delete_ipv6_multipath): Likewise.
867
868 * rt_netlink.c (netlink_talk): Give struct nlsock to netlink_talk.
869
8702001-01-12 Kunihiro Ishiguro <kunihiro@zebra.org>
871
872 * rib.c (rib_update): Revert Matthew Grant's patch
873 zebra_cvs_newribfix.patch. Use struct rib->ifindex for kernel
874 interface index. Introduce NEXTHOP_TYPE_IPV4_IFINDEX to support
875 that. Add support for address deletion situation.
876
8772001-01-11 Kunihiro Ishiguro <kunihiro@zebra.org>
878
879 * interface.c: Remove HAVE_IF_PSEUDO part.
880
881 * rib.h: Likewise.
882
883 * rt_netlink.c (netlink_link_change): Likewise.
884
8852001-01-10 Kunihiro Ishiguro <kunihiro@zebra.org>
886
887 * zserv.c: Remove OLD_RIB codes.
888
8892001-01-09 Kunihiro Ishiguro <kunihiro@zebra.org>
890
891 * zebra-0.90 is released.
892
8932001-01-09 Matthew Grant <grantma@anathoth.gen.nz>
894
895 * interface.c (if_new_intern_ifindex): Allocate a new internal
896 interface index.
897 (if_addr_refresh): Fix up ip addresses configured via zebra.
898 (if_add_update): Handle an interface addition.
899 (if_delete_update): Handle an interface delete event.
900
901 * rib.c (nexthop_ipv4_add): Add kernel route deletion process when
902 interface goes down.
903
9042001-01-08 Kunihiro Ishiguro <kunihiro@zebra.org>
905
906 * interface.c (if_dump_vty): When HAVE_NET_RT_IFLIST is defined,
907 NetBSD also use this function. Suggested by Jasper Wallace
908 <jasper@ivision.co.uk>.
909
9102001-01-07 Kunihiro Ishiguro <kunihiro@zebra.org>
911
912 * rib.c (nexthop_active_ipv4): Move back to set methodo to old
913 one.
914
9152001-01-05 Kunihiro Ishiguro <kunihiro@zebra.org>
916
917 * rib.c (rib_add_ipv4): EBGP multihop set ZEBRA_FLAG_INTERNAL
918 flag, so treat it.
919
9202001-01-04 Kunihiro Ishiguro <kunihiro@zebra.org>
921
922 * rt_netlink.c (netlink_talk_ipv6): When IPv6 route message is
923 sent from netlink_cmd, the same message comes from netlink. To
924 avoid confusion, temporary netlink_talk_ipv6 use netlink.sock
925 instead of netlink_cmd.sock.
926
9272001-01-01 Kunihiro Ishiguro <kunihiro@zebra.org>
928
929 * zserv.h (ZEBRA_SERV_PATH): Change "/tmp/zebra" to "/tmp/.zebra".
930 Change "/tmp/zserv" to "/tmp/.zserv".
931
9322000-12-29 Frank van Maarseveen <F.vanMaarseveen@inter.NL.net>
933
934 * rt_netlink.c (struct nlsock): Divide kernel message into listen
935 socket and command socket.
936 (netlink_talk): Remove socket listen code. Use netlink_parse_info
937 for read kernel response.
938
9392000-12-29 Kunihiro Ishiguro <kunihiro@zebra.org>
940
941 * rib.c (vty_show_ip_route): Show uptime of the RIP,OSPF,BGP
942 routes.
943
9442000-12-27 Kunihiro Ishiguro <kunihiro@zebra.org>
945
946 * rt_netlink.c (netlink_route_multipath): Metric value is
947 reflected to kernel routing table.
948
949 * rt_ioctl.c (kernel_ioctl_ipv4_multipath): Likewise.
950
951 * kernel_socket.c (rtm_write): Likewise.
952
953 * rib.c (nexthop_active_ipv4): Only iBGP route perform recursive
954 nexthop lookup.
955
956 * rt_ioctl.c (kernel_ioctl_ipv4_multipath): Add ioctl version of
957 new RIB implementation.
958
9592000-12-26 Kunihiro Ishiguro <kunihiro@zebra.org>
960
961 * rib.h: Remove MULTIPATH_NUM. It is defined by configure script.
962
9632000-12-25 Michael Rozhavsky <mrozhavsky@opticalaccess.com>
964
965 * rib.c (rib_if_up): Call rib_fib_set instead of RIB_FIB_SET for
966 proper redistribution.
967
9682000-12-19 Kunihiro Ishiguro <kunihiro@zebra.org>
969
970 * rib.c (nexthop_active_ipv4): Add self lookup nexthop check.
971 (show_ip_route_protocol): Support new RIB.
972
973 * rt_netlink.c (netlink_route_change): Do not return when gate is
974 NULL.
975
9762000-12-18 Kunihiro Ishiguro <kunihiro@zebra.org>
977
978 * rib.c (rib_lookup_ipv4_nexthop): IBGP nexthop check function is
979 updated.
980 (rib_add_ipv4): Free implicit withdraw route's RIB.
981
9822000-12-15 Kunihiro Ishiguro <kunihiro@zebra.org>
983
984 * rib.c (nexthop_active_ipv4): Check indirect nexthop.
985
986 * redistribute.c (redistribute_add_multipath): Redistribution
987 works with new rib code.
988
9892000-12-14 Kunihiro Ishiguro <kunihiro@zebra.org>
990
991 * rt_netlink.c (netlink_route_multipath): Check useful nexthop
992 number.
993 (netlink_route_multipath): Clear rtnh_flags and rtnh_hops.
994
995 * rib.c (nexthop_active_update): Set flag for the rib's nexthop
996 activity is changed.
997 (nexthop_active_check): Before checking interface is up, make it
998 sure the interface exist.
999
10002000-11-20 Kunihiro Ishiguro <kunihiro@zebra.org>
1001
1002 * rib.c (ip_route): New RIB prototype.
1003
10042000-11-16 Yon Uriarte <ukl2@rz.uni-karlsruhe.de>
1005
1006 * zserv.c (zsend_interface_add): Send hardware address when
1007 hw_addr_len is greater than 0.
1008
10092000-11-07 Kunihiro Ishiguro <kunihiro@zebra.org>
1010
1011 * connected.c (connected_up_ipv4): Fix ptop bug. The destination
1012 network should be installed into routing table.
1013 (connected_down_ipv4): Likewise.
1014 (connected_add_ipv4): Change to use connected_up_ipv4.
1015 (connected_delete_ipv4): Likewise.
1016
10172000-11-06 Kunihiro Ishiguro <kunihiro@zebra.org>
1018
1019 * rt_netlink.c (netlink_interface_addr): Revert Harald Welte
1020 <laforge@gnumonks.org>'s ptop patch then back to original code to
1021 avoid duplicated connected route problem. Suggested by Frank van
1022 Maarseveen <F.vanMaarseveen@inter.NL.net>.
1023
1024 * kernel_socket.c (rtm_read): Make behavior consistent even #ifdef
1025 DEBUG is defined. Reported by Jun-ichiro itojun Hagino
1026 <itojun@iijlab.net>.
1027
10282000-10-23 Jochen Friedrich <jochen@scram.de>
1029
1030 * main.c (main): Call zebra_snmp_init() when it is enabled.
1031
10322000-10-23 Kunihiro Ishiguro <kunihiro@zebra.org>
1033
1034 * zserv.c (zebra_serv_un): UNIX domain socket server of zebra
1035 protocol.
1036
10372000-10-19 Kunihiro Ishiguro <kunihiro@zebra.org>
1038
1039 * rib.c (rib_add_ipv4): Same check bug is fixed.
1040
10412000-10-03 Kunihiro Ishiguro <kunihiro@zebra.org>
1042
1043 * rib.c (rib_if_down): Remove kernel route when the interface goes
1044 down.
1045
1046 * debug.c: New command "debug zebra kernel" is added.
1047
10482000-10-02 Kunihiro Ishiguro <kunihiro@zebra.org>
1049
1050 * zebra-0.89 is released.
1051
10522000-09-24 Harald Welte <laforge@gnumonks.org>
1053
1054 * rt_netlink.c (netlink_interface_addr): Fix point-to-point address
1055 treatment in netlink interface.
1056
10572000-09-21 David Lipovkov <dlipovkov@OpticalAccess.com>
1058
1059 * rib.c (rib_if_down): Pull static route only. Protocol daemon
1060 must withdraw routes when interface goes down.
1061 (rib_add_ipv4): Check nexthop when replace route.
1062
10632000-09-21 Kunihiro Ishiguro <kunihiro@zebra.org>
1064
1065 * if_ioctl.c (if_getaddrs): New function for looking up
1066 interface's address by getifaddrs().
1067
10682000-09-10 Kunihiro Ishiguro <kunihiro@zebra.org>
1069
1070 * connected.c (connected_delete_ipv4): Add check for connected
1071 address is found or not.
1072 (connected_add_ipv6): Reflect IPv6 connected address change to
1073 protocol daemons.
1074 (connected_delete_ipv6): Likewise.
1075
10762000-09-07 David Lipovkov <davidl@nbase.co.il>
1077
1078 * rib.c (rib_delete_ipv4): Reverted the change from pseudo
1079 interface patch to original. Because ospfd deletes routes using
1080 zero ifindex.
1081
10822000-08-17 Kunihiro Ishiguro <kunihiro@zebra.org>
1083
1084 * zebra-0.88 is released.
1085
10862000-08-15 "Akihiro Mizutani" <mizutani@dml.com>
1087
1088 * rib.c (show_ip_route_protocol): Help string correction.
1089 (show_ip_route_prefix): Check prefix mask.
1090 (show_ip_route_vty_detail): Display distance and metric.
1091
10922000-08-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1093
1094 * zserv.c (zsend_interface_add): Change ifindex store size from
1095 two octet to four.
1096 (zsend_interface_delete): Likewise.
1097 (zsend_interface_address_add): Likewise.
1098 (zsend_interface_address_delete): Likewise.
1099 (zsend_interface_up): Likewise.
1100 (zsend_interface_down): Likewise.
1101
11022000-08-13 Kunihiro Ishiguro <kunihiro@zebra.org>
1103
1104 * rib.c (rib_add_ipv4): Do not install distance 255 route.
1105
11062000-08-10 Toshiaki Takada <takada@zebra.org>
1107
1108 * interface.c (bandwidth_if), (no_bandwidth_if): Call
1109 zebra_interface_up_update () instead of using if_up() and if_down().
1110
11112000-08-07 "Akihiro Mizutani" <mizutani@dml.com>
1112
1113 * interface.c (bandwidth_if): Fix help string.
1114
11152000-08-07 Matthew Grant <grantma@anathoth.gen.nz>
1116
1117 * interface.c (if_dump_vty): Display bandwidth value.
1118 (bandwidth_if): New command "bandwidth <1-10000000>" is added.
1119 When interface is up, force protocol daemons to recalculate routes
1120 due to cost change.
1121 (no_bandwidth_if): Likewise.
1122 (if_config_write): Output bandwidth configuration.
1123
1124 * zserv.c (zsend_interface_add): Send bandwidth value.
1125 (zsend_interface_up): Likewise.
1126 (zsend_interface_down): Likewise.
1127
1128
11292000-08-07 Michael Rozhavsky <mike@nbase.co.il>
1130
1131 * rib.c (show_ip_route_protocol): "show ip route
1132 (bgp|connected|kernel|ospf|rip|static)" is added.
1133
11342000-08-07 Kunihiro Ishiguro <kunihiro@zebra.org>
1135
1136 * rib.c (rib_lookup_ipv4_nexthop): Check parent node until IGP
1137 nexthop is found.
1138 (rib_add_ipv4_internal): Set fib ifindex to rib ifindex.
1139
11402000-08-06 Kunihiro Ishiguro <kunihiro@zebra.org>
1141
1142 * redistribute.c (redistribute_delete): Fix bug of default route
1143 redistribute treatment.
1144
11452000-08-05 Kunihiro Ishiguro <kunihiro@zebra.org>
1146
1147 * rib.c (rib_init): Install ip_node in rib.c instead of zserv.c.
1148 Change default distance value.
1149
1150 Old New
1151 ------------------------------------------
1152 system 10 0
1153 kernel 20 0
1154 connected 30 0
1155 static 40 1
1156 rip 50 120
1157 ripng 50 120
1158 ospf 60 110
1159 ospf6 49 110
1160 bgp 70 200(iBGP) 20(eBGP)
1161 ------------------------------------------
1162
1163 * zserv.c (client_lookup): Function removed.
1164 (zsend_interface_add): Use client's output buffer. Check ifinfo
1165 flag.
1166 (zsend_interface_delete): Likewise.
1167 Delete ipv4_static_radix and ipv6_static_radix.
1168
11692000-08-02 Kunihiro Ishiguro <kunihiro@zebra.org>
1170
1171 * zserv.h (struct zebra_client): When client request interface
1172 information, ifinfo is set.
1173
1174 * rib.c: Temporary Revert changes for pseudo interface.
1175
1176 * rib.h: Likewise.
1177
1178 * zserv.c: Likewise.
1179
1180 * interface.c: Likewise.
1181
11822000-08-02 David Lipovkov <davidl@nbase.co.il>
1183
1184 * interface.c (zebra_if_init): Install interface "pseudo"
1185 commands.
1186
1187 * rib.c (rib_create): ifname argument is added.
1188 (rib_add_ipv4_pseudo): New function is added.
1189 (rib_delete_ipv4_pseudo): Likewise.
1190
1191 * rib.h : Delete INTERFACE_UNKNOWN definition. Add prototype for
1192 pseudo interface functions.
1193
1194 * rt_netlink.c (netlink_link_change): Check for pseudo interface.
1195
1196 * zserv.c (ip_route): When destination is pseudo interface, call
1197 rib_add_ipv4_pseudo().
1198
1199 * zserv.c (no_ip_route): Trim "unknown" argument.
1200
12012000-07-26 kunitake@dti.ad.jp
1202
1203 * if_ioctl.c (if_get_hwaddr): Fix hardware address length from 8
1204 to 6.
1205
1206 * rtadv.c (rtadv_send_packet): Fix shift bug for hardware address.
1207
12082000-07-24 Akihiro Mizutani <mizutani@dml.com>
1209
1210 * interface.c: Use install_default() for common VTY commands.
1211
12122000-07-23 Kunihiro Ishiguro <kunihiro@zebra.org>
1213
1214 * if_ioctl.c (interface_list_ioctl): A interface list size is
1215 calculated from ifreq->if_addr.sa_len. This is for OpenBSD.
1216
1217 * ioctl.c (if_get_mtu): Remove codes for SIOCGIFDATA.
1218
12192000-07-09 Chris Dunlop <chris@onthe.net.au>
1220
1221 * if_ioctl.c (if_get_index): Add check for HAVE_BROKEN_ALIASES.
1222
12232000-07-04 Kunihiro Ishiguro <kunihiro@zebra.org>
1224
1225 * zserv.c (zebra_client_read): Add ZEBRA_REDISTRIBUTE_{ADD,DELETE}
1226 message handling.
1227
12282000-07-02 David Lipovkov <davidl@nbase.co.il>
1229
1230 * zserv.c: "ip route A.B.C.D/M unknown" command is added.
1231
12322000-06-28 Michael Rozhavsky <mike@nbase.co.il>
1233
1234 * rib.c: Remove old kernel route when new route comes in.
1235
12362000-06-13 David Lipovkov <davidl@nbase.co.il>
1237
1238 * rib.c (rib_if_up): Add check for unknown interface.
1239
12402000-06-13 Kunihiro Ishiguro <kunihiro@zebra.org>
1241
1242 * rib.h: Define INTERFACE_UNKNOWN.
1243
12442000-06-08 Kunihiro Ishiguro <kunihiro@zebra.org>
1245
1246 * Makefile.am (EXTRA_DIST): Move irdp.c until implementation is
1247 finished.
1248
12492000-06-05 David Lipovkov <davidl@nbase.co.il>
1250
1251 * interface.c (if_zebra_delete_hook): Call rib_if_delete().
1252
1253 * redistribute.c (zebra_interface_delete_update): New function.
1254
1255 * redistribute.h (zebra_interface_delete_update): New function
1256 prototype.
1257
1258 * rib.c (rib_if_delete): New function. Walk down all routes and
1259 delete all on the interface.
1260
1261 * rib.h: New function prototype.
1262
1263 * rt_netlink.c (netlink_link_change): Call
1264 zebra_interface_delete_update ().
1265
12662000-05-10 Kunihiro Ishiguro <kunihiro@zebra.org>
1267
1268 * if_ioctl.c (interface_info_ioctl): Check interface's flag before
1269 checking interface's address.
1270
12712000-04-26 Jochen Friedrich <jochen@nwe.de>
1272
1273 * GNOME-PRODUCT-ZEBRA-MIB: New file.
1274
1275 * GNOME-SMI: New file.
1276
12772000-04-23 Kunihiro Ishiguro <kunihiro@zebra.org>
1278
1279 * irdp.c: New file from 1997 development code.
1280 * irdp.h: Likewise.
1281
12822000-04-19 Kunihiro Ishiguro <kunihiro@zebra.org>
1283
1284 * rtadv.c (rtadv_send_packet): Enclose router advertisement
1285 logging with IS_ZEBRA_DEBUG_PACKET.
1286
12872000-04-17 Kunihiro Ishiguro <kunihiro@zebra.org>
1288
1289 * zserv.c (zebra_client_close): Remove client structure from
1290 client_list when connection is terminated.
1291
12922000-03-21 David Lipovkov <davidl@nbase.co.il>
1293
1294 * connected.c (connected_add_ipv4): Allows all necessary structure
1295 updates for connected route, but doesn't insert it into rib if
1296 it's interface is down.
1297
12982000-01-21 Hideto Yamakawa <hideto.yamakawa@soliton.co.jp>
1299
1300 * rtread_getmsg.c: Set some definition for Solaris 2.5 and Solaris
1301 2.5.1.
1302
13032000-01-21 Kunihiro Ishiguro <kunihiro@zebra.org>
1304
1305 * rib.c (no_ipv6_route_ifname): Fix buf of cheking return value
1306 from str2prefix_ipv6().
1307
13082000-01-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1309
1310 * rt_socket.c: Revert to use RTF_HOST for IPv4 with /32 route and
1311 IPv6 with /128 routes.
1312 (kernel_rtm_ipv4): In case of /32 route's gateway is interface. It
1313 should have mask for cloning.
1314
13151999-12-26 Jochen.Friedrich@genorz.de
1316
1317 * interface.c (if_dump_vty): Fix a bug of missing VTY_NEWLINE.
1318
13191999-12-23 Alex Zinin <zinin@amt.ru>
1320 * interface.*: dynamic int up/down support
1321
13221999-12-09 Kunihiro Ishiguro <kunihiro@zebra.org>
1323
1324 * ipforward_proc.c (dropline): Move dropline() from lib/dropline.c
1325
1326 * rtread_proc.c (proc_route_read): Don't use dropline().
1327
13281999-12-08 Kunihiro Ishiguro <kunihiro@zebra.org>
1329
1330 * kernel_socket.c (rtm_read): When message is RTM_GET, it has own
1331 process's pid.
1332
13331999-12-04 Kunihiro Ishiguro <kunihiro@zebra.org>
1334
1335 * main.c (main): Change to default log output to ZLOG_STDOUT.
1336
1337 * zserv.c (zebra_serv): More detailed error print.
1338
13391999-11-30 Kunihiro Ishiguro <kunihiro@zebra.org>
1340
1341 * kernel_socket.c (rtm_read): Check old pid for static route
1342 insertion check.
1343
13441999-11-30 Kunihiro Ishiguro <kunihiro@zebra.org>
1345
1346 * interface.c (if_dump_vty): BSDI/OS uses 64bit for interface
1347 statistics counter.
1348
1349 * mtu_kvm.c: New file added.
1350
13511999-11-27 Vladimir B. Grebenschikov <vova@express.ru>
1352
1353 * kernel_socket.c (rtm_write): Set RTF_CLONING flag for
1354 route to the directly connected interface.
1355
13561999-11-27 Kunihiro Ishiguro <kunihiro@zebra.org>
1357
1358 * rt_socket.c: Delete USE_HOST_BIT definition.
1359
13601999-11-21 Michael Handler <handler@sub-rosa.com>
1361
1362 * rtread_getmsg.c: Undef some definition to resolve conflict.
1363
13641999-11-27 Kunihiro Ishiguro <kunihiro@zebra.org>
1365
1366 * kernel_socket.c (rtm_write): Change to use pre stored struct_dl
1367 value for gateway specification.
1368
13691999-11-25 Kunihiro Ishiguro <kunihiro@zebra.org>
1370
1371 * rt_socket.c (kernel_rtm_ipv4): Even mask is 32 under IPv4 or
1372 128 under IPv6, don't use RTF_HOST.
1373
13741999-11-21 Kunihiro Ishiguro <kunihiro@zebra.org>
1375
1376 * Makefile.am (EXTRA_DIST): Add rtread_getmsg.c.
1377
13781999-11-21 Michael Handler <handler@sub-rosa.com>
1379
1380 * rtread_getmsg.c: Added for Solaris 2.6 support.
1381
13821999-11-18 Kunihiro Ishiguro <kunihiro@zebra.org>
1383
1384 * rtread_sysctl.c (rtm_read_route): RTM_DELETE handling added.
1385
1386 * rt_socket.c (kernel_read): Better BSD routing socket support.
1387
13881999-10-19 Kunihiro Ishiguro <kunihiro@zebra.org>
1389
1390 * client_main.c: Disable making obsolete zebra test `client'
1391 command.
1392
13931999-10-18 Kunihiro Ishiguro <kunihiro@zebra.org>
1394
1395 * zebra.c: Renamed to zserv.c.
1396
1397 * zebra.h: Global definitions are moved to lib/zebra.h. Then
1398 renamed to zserv.h.
1399
14001999-10-15 Jordan Mendelson <jordy@wserv.com>
1401
1402 * if_ioctl.c: Add Linux 2.2.X's alias support and dynamic
1403 interface. Remove ugly MAX_INTERFACE handling codes.
1404
14051999-09-17 Satosi KOBAYASI <kobayasi@north.ad.jp>
1406
1407 * Fix serious bug of IPv6 route deletion.
1408
14091999-09-11 Kunihiro Ishiguro <kunihiro@zebra.org>
1410
1411 * ioctl.c (if_set_prefix): Properly set broadcast address.
1412
14131999-09-04 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1414
1415 * rib.c (rib_add_ipv6, rib_delete_ipv6): now protocol daemons
1416 can install connected route to kernel via zebra
1417
14181999-08-24 VOP <vop@unity.net>
1419
1420 * rib.c: Include "sockunion.h"
1421
14221999-08-22 Kunihiro Ishiguro <kunihiro@zebra.org>
1423
1424 * ipforward.h: New file.
1425
1426 * zebra.h: Obsolete message ZEBRA_GET_ALL_INTERFACE,
1427 ZEBRA_GET_ONE_INTERFACE, ZEBRA_GET_HOSTINFO are deleted.
1428
14291999-08-18 Kunihiro Ishiguro <kunihiro@zebra.org>
1430
1431 * zebra.h (ZEBRA_INTERFACE_ADDRESS_ADD):
1432 ZEBRA_INTERFACE_{ADD,DELETE} added.
1433
14341999-08-15 Kunihiro Ishiguro <kunihiro@zebra.org>
1435
1436 * rib.c: show ip route A.B.C.D works.
1437
1438 * zebra.c (zebra_read_ipv4): Add ifindex to zebra messages.
1439
14401999-08-12 Kunihiro Ishiguro <kunihiro@zebra.org>
1441
1442 * zebra.h: New Zebra message ZEBRA_INTERFACE_{ADD,DELETE} added.
1443
14441999-08-09 Kunihiro Ishiguro <kunihiro@zebra.org>
1445
1446 * interface.h: New file.
1447 * Makefile.am: Add interface.h
1448
14491999-08-04 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1450
1451 * redistribute.c (zebra_redistribute): give ifindex to client.
1452
14531999-08-02 Kunihiro Ishiguro <kunihiro@zebra.org>
1454
1455 * main.c (longopts): -k, --keep_kernel option added.
1456
14571999-07-18 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1458
1459 * rt_socket.c (rtm_write): forgot closing socket bug fixed.
1460
14611999-07-17 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1462
1463 * rib.c (show_ipv6_cmd): if rib is link show interface name.
1464
14651999-07-17 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1466
1467 * rt_socket.c (rtm_write): use sockaddr_dl when null gateway.
1468
14691999-07-16 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1470
1471 * rt_socket.c (rtm_write): ipv6 route table bug fixed.
1472
14731999-07-15 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1474
1475 * zebra.c (zebra_read_ipv6): read link prefix from ospf6 support
1476
14771999-07-15 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1478
1479 * rt_socket.c (kernel_rtm_ipv6): gate treatment bug fixed.
1480
14811999-07-15 Kunihiro Ishiguro <kunihiro@zebra.org>
1482
1483 * if_sysctl.c (ifm_read): Clear sockunion argument before fetching
1484 data. Suggested by "Chris P. Ross" <cross@eng.us.uu.net>
1485
14861999-07-08 HEO SeonMeyong <seirios@Matrix.IRI.Co.Jp>
1487
1488 * interface.c (if_tun_add): Add KAME's gif tunnel setting codes.
1489
14901999-06-26 Kunihiro Ishiguro <kunihiro@zebra.org>
1491
1492 * zebra.c (zebra_serv): Only accept loopback address connection.
1493
14941999-06-25 Kunihiro Ishiguro <kunihiro@zebra.org>
1495
1496 * zebra.h (ZEBRA_ROUTE_EXTERNAL): Add zebra messages flags
1497
14981999-06-17 Kunihiro Ishiguro <kunihiro@zebra.org>
1499
1500 * ipforward_proc.c: ipforward_on () and ipforward_off () added.
1501
15021999-06-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1503
1504 * ipforward_proc.c (ipforward_ipv6): Check for IPv6 forwarding
1505 using /proc file system is added.
1506
15071999-06-06 Kunihiro Ishiguro <kunihiro@zebra.org>
1508
1509 * if_ioctl.c (if_get_index): Interface index set bug is fixed by
1510 adding #else at the middle of function. Suggested by David Luyer
1511 <luyer@ucs.uwa.edu.au>.
1512
15131999-05-29 <kunihiro@zebra.org>
1514
1515 * rt_ioctl.c: Comment out #include <linux/ipv6_route.h>.
1516
15171999-05-26 Kunihiro Ishiguro <kunihiro@zebra.org>
1518
1519 * zebra.h (ZEBRA_ROUTE_MAX): Add new define for the max value of
1520 the sort of routes.
1521
15221999-05-25 Patrick Koppen <koppen@rhrk.uni-kl.de>
1523
1524 * rt_netlink.c (netlink_socket): Make netlink socket non-blocking.
1525 (netlink_parse_info): If errno is EWOULDBLOCK then continue to
1526 parse the message.
1527 (netlink_talk): Likewise
1528
15291999-05-17 <kunihiro@zebra.org>
1530
1531 * redistribute.c (zebra_check_addr): Added for loopback address
1532 check.
1533
15341999-05-15 Kunihiro Ishiguro <kunihiro@zebra.org>
1535
1536 * rt_netlink.c (netlink_route_change): Tempolary bypass ipv6 route
1537 change treatment.
1538
1539 * Makefile.am (noinst_HEADERS): redistribute.h added.
1540
1541 * redistribute.h: New file.
1542
15431999-05-14 Stephen R. van den Berg <srb@cuci.nl>
1544
1545 * zebra.c (show_table): Show all table configuration DEFUN.
1546 (config_table): Config table number DEFUN.
1547
1548 * rt_netlink.c: Add support for multiple routing table.
1549
1550 * rib.c (rib_weed_table): New function added for delete all
1551 routes from specified routing table.
1552
1553 * main.c (signal_init): SIGTERM call sigint.
1554 (sigint): Loggging more better message.
1555
15561999-05-09 Kunihiro Ishiguro <kunihiro@zebra.org>
1557
1558 * rt_netlink.c: Change log () to zlog ().
1559
15601999-05-07 <kunihiro@zebra.org>
1561
1562 * zebra.h (ZEBRA_ROUTE_OSPF6): Added for ospf6d route.
1563
15641999-04-20 Kunihiro Ishiguro <kunihiro@zebra.org>
1565
1566 * interface.c: Add `no ip address' command.
1567
15681999-04-10 Kunihiro Ishiguro <kunihiro@zebra.org>
1569
1570 * rt_netlink.c (kernel_read): Function added for asynchronous
1571 zebra between kernel communication.
1572
15731999-03-25 Kunihiro Ishiguro <kunihiro@zebra.org>
1574
1575 * rtread_sysctl.c (rtm_read): Fix address memcopy overrun bug.
1576 Reported by Achim Patzner <ap@bnc.net>.
1577
15781999-03-03 Kunihiro Ishiguro <kunihiro@zebra.org>
1579
1580 * Makefile.am: Install configuration sample with 600 permission.
1581
15821999-03-02 Kunihiro Ishiguro <kunihiro@zebra.org>
1583
1584 * Makefile.am: Add -I.. to INCLUDES.
1585
15861999-02-18 Peter Galbavy <Peter.Galbavy@knowledge.com>
1587
1588 * syslog support added
1589
15901999-02-17 Peter Galbavy <Peter.Galbavy@knowledge.com>
1591
1592 * if_sysctl.c (interface_list): allocated memory free when unknown
1593 ifm_type is returned.
1594
1595 * ioctl.c (if_get_mtu): added SIOCGIFDATA treatment.
1596
15971998-12-15 Magnus Ahltorp <map@stacken.kth.se>
1598
1599 * interface.c: Header include added.
1600
16011998-12-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1602
1603 * rt.h (kernel_delete_ipv6): change int index to unsigned int index.
1604
16051998-12-13 Kunihiro Ishiguro <kunihiro@zebra.org>
1606
1607 * if_ioctl.c (interface_list_ioctl): interface flag must be
1608 checked before check addresses of the interface.
1609
16101998-12-07 Kunihiro Ishiguro <kunihiro@zebra.org>
1611
1612 * Makefile.am (INCLUDES): add @INCLUDES@ for Linux IPv6.
1613
16141998-10-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1615
1616 * ioctl.c: Linux version before 2.1.0 need interface route setup.
1617
16181998-09-15 HEO SeonMeyong <seirios@matrix.iri.co.jp>
1619
1620 * change HYDRANGEA to KAME
1621
16221998-09-01 Kunihiro Ishiguro <kunihiro@zebra.org>
1623
1624 * if_ioctl.c (if_addr_ioctl): set address family for getting
1625 interface's address.
1626 (if_get_index): silently return when can't get interface's index.
1627
16281998-08-17 Kunihiro Ishiguro <kunihiro@zebra.org>
1629
1630 * main.c (main): batch mode option '-b' added.
1631
16321998-08-16 Kunihiro Ishiguro <kunihiro@zebra.org>
1633
1634 * ioctl.c (if_set_prefix): add `ip address IPV4ADDR' command.
1635 * interface.c (shutdown_if): add interface shutdown and no
1636 shutdown command.
1637
16381998-08-12 Kunihiro Ishiguro <kunihiro@zebra.org>
1639
1640 * rib.c (rib_add_ipv6): delete rib_add_in6.
1641
16421998-07-27 Kunihiro Ishiguro <kunihiro@zebra.org>
1643
1644 * main.c: retain flag is added.
1645
16461998-07-08 Kunihiro Ishiguro <kunihiro@zebra.org>
1647
1648 * rtable.[ch]: merged with rib.[ch]
1649
16501998-07-07 Kunihiro Ishiguro <kunihiro@zebra.org>
1651
1652 * connected.h: renamed from ifa.h.
1653
16541998-06-09 Kunihiro Ishiguro <kunihiro@zebra.org>
1655
1656 * rename if.c to interface.c
1657 * rename ifa.c to connected.c
1658
1659 * Porting to Debian GNU/Linux 2.0 (hamm).
1660
16611998-06-08 Kunihiro Ishiguro <kunihiro@zebra.org>
1662
1663 * rt_netlink.c: renamed from krt_netlink.c
1664
1665 * fib.c: deleted.
1666 * rt_kvm.c: deleted.
1667 * rtread_getmsg.c: deleted.
1668
16691998-06-07 Kunihiro Ishiguro <kunihiro@zebra.org>
1670
1671 * if.c (multicast): add multicast flag [un]set fucntion.
1672
16731998-05-19 Yamshita TAKAO <jargon@lares.dti.ne.jp>
1674
1675 * rt_socket.c: Modify for compile on Solaris, but dont't work it.
1676 rt_socket.c have some undefined function, so add directive "IMPLEMENT"
1677
16781998-05-18 Yamshita TAKAO <jargon@lares.dti.ne.jp>
1679
1680 * zebra.c: Modify for compile on Solaris.
1681
16821998-05-03 Kunihiro Ishiguro <kunihiro@zebra.org>
1683
1684 * main.c: change CONFDIR to SYSCONFDIR.
1685
16861998-05-01 Kunihiro Ishiguro <kunihiro@zebra.org>
1687
1688 * .cvsignore: added.
1689
16901998-04-02 Kunihiro Ishiguro <kunihiro@zebra.org>
1691
1692 * client.c: moves to ../lib.
1693
16941998-03-30 Kunihiro Ishiguro <kunihiro@zebra.org>
1695
1696 * if_ioctl.c (if_get_addr): Change address copy from memcopy() to
1697 structure assignment.
1698
16991998-03-30 URA Hiroshi <ura@yamato.ibm.co.jp>
1700
1701 * if_sysctl.c (ifm_interface_add): sdl->sdl_data copy bug fixed.
1702
17031998-02-23 "Hannes R. Boehm" <hannes@boehm.org>
1704
1705 * if.c (if_init): add config_exit_cmd and config_help_cmd.
1706
17071998-01-24 Kunihiro Ishiguro <kunihiro@zebra.org>
1708
1709 * rt_ioctl.c (route_ioctl): EPERM treatment added.
1710
17111998-01-05 Kunihiro Ishiguro <kunihiro@zebra.org>
1712
1713 * rt_socket.c (kernel_read): communication port zebra between
1714 kernel is now handled by kernel_read.
1715
17161998-01-02 Kunihiro Ishiguro <kunihiro@zebra.org>
1717
1718 * main.c (main): zebra [-P port] can specify vty port number.
1719
17201997-12-25 Kunihiro Ishiguro <kunihiro@zebra.org>
1721
1722 * zebra.c: change select will be block.
1723
17241997-12-04 Kunihiro Ishiguro <kunihiro@zebra.org>
1725
1726 * add static route treatment.
1727
17281997-11-25 Kunihiro Ishiguro <kunihiro@zebra.org>
1729
1730 * rt_netlink.c: add netlink support over GNU/Linux system.
1731
17321997-11-23 Kunihiro Ishiguro <kunihiro@zebra.org>
1733
1734 * all inet_addr is changed to inet_aton.
1735
1736 * zebra.c (ip_route): add ip route command for static routes.
1737
17381997-11-20 Kunihiro Ishiguro <kunihiro@zebra.org>
1739
1740 * if.c (if_flag_dump): Linux port of if_flag_dump and _vty.
1741
17421997-11-19 Kunihiro Ishiguro <kunihiro@zebra.org>
1743
1744 * if.c: add interface command.
1745
17461997-11-18 Kunihiro Ishiguro <kunihiro@zebra.org>
1747
1748 * ipforward_proc.c : Now works on Linux.
1749
17501997-10-25 Kunihiro Ishiguro <kunihiro@zebra.org>
1751
1752 * command.c : add completion feature.
1753
17541997-10-18 Kunihiro Ishiguro <kunihiro@zebra.org>
1755
1756 * vty.c (vty_command): add vty interface.
1757
17581997-10-13 Kunihiro Ishiguro <kunihiro@zebra.org>
1759
1760 * zebra.c: add verbose mode.
1761
17621997-10-12 SonMyong Ho <s-ho@Matrix.IRI.Co.Jp>
1763
1764 * Hydrangea for FreeBSD supported
1765 * in.h: add some prototype.
1766
17671997-10-11 Kunihiro Ishiguro <kunihiro@zebra.org>
1768
1769 * rt_socket.c and rtread.c completely rewritten.
1770
17711997-10-05 Kunihiro Ishiguro <kunihiro@zebra.org>
1772
1773 * rt_socket.c: rename kernel_sock to routing_socket
1774
17751997-10-04 Kunihiro Ishiguro <kunihiro@zebra.org>
1776
1777 * if.c (if_new): interface structure change from linklist to vector.
1778
17791997-10-03 Kunihiro Ishiguro <kunihiro@zebra.org>
1780
1781 * vector.c (vector_init): create vector related function
1782
17831997-09-25 Kunihiro Ishiguro <kunihiro@zebra.org>
1784
1785 * Makefile.in: add tags target
1786
1787 * start IPv6 support for INRIA FreeBSD.
1788