blob: 49d922d8cc3e12377d0fbd6563f17482cc8e04ea [file] [log] [blame]
paul89368d92005-11-26 09:14:07 +000012005-11-26 Paul Jakma <paul.jakma@sun.com>
2
3 * connected.{c,h}: (connected_add_ipv6) label should have
4 const qualifier, fix declarations.
5
paulec1a4282005-11-24 15:15:17 +000062005-11-24 Paul Jakma <paul.jakma@sun.com>
7
8 * kernel_socket.h: New header for functions exported to sysctl
9 methods.
10 * kernel_socket.c: include previous.
11 Remove static qualifier from couple of functions which are
12 used by sysctl methods.
13 Add a workaround for a bogus gcc warning to the RTA_ macros.
14 * Makefile.am: Add kernel_socket.h to noinst_HEADERS
15 * if_sysctl.c: include rt.h and kernel_socket.h and remove
16 redundant prototypes.
17 * rtread_sysctl.c: ditto.
18 (route_read) fix mismatch of return values.
19 * {rt,zserv,rib}.h: Include lib headers depended on.
20
paul6621ca82005-11-23 13:02:08 +0000212005-11-23 Paul Jakma <paul.jakma@sun.com>
22
23 * (general) fix some small compile errors, and mark several
24 functions as static.
25 * kernel_socket.c: (ifan_read) should be static.
26 fix missing brackets.
27 (ifm_read,ifam_read,rtm_read_mesg,kernel_read) Make static
28 (ifam_read_mesg) make static. fix incorrect variable name.
29 (rtm_read) make static. Fix call to rib_delete_ipv4 which
30 should be rib_delete_ipv6.
31 (routing_socket,kernel_init) should be static. Void argument
32 should be specified as such, not left incomplete.
33 * rt_netlink.c: rt.h should be included, contains prototypes of
34 exported functions.
35 (kernel_delete_ipv6_old) fix sign of index argument.
36 * rt_socket.c: Exact same as previous. Also, make various
37 functions static.
38 * rtread_getmsg.c: Include zserv.h, which prototypes
39 route_read. Make static.
40 * rtread_sysctl.c: zserv.h and rt.h should be included.
41 fix definition of route_read.
42
paul0fb58d52005-11-14 14:31:49 +0000432005-11-14 Paul Jakma <paul.jakma@sun.com>
44
45 * zebra_rib.c: (rib_process) convert to new workqueue specs and
46 shut up gcc, which complains about cast from void via
47 function parameters, for some dumb reason. Do the cast
48 inside the function instead.
49 (rib_queue_qnode_del) ditto.
50 (rib_queue_init) no need for the casts anymore.
51
paul6fe70d12005-11-12 22:55:10 +0000522005-11-12 Alexander Gall <gall@switch.ch>
53
54 * See [quagga-dev 1815]
55 * kernel_socket.c: (rtm_write) Use SAROUNDUP when HAVE_SIN_LEN
56 is not available.
57 * rt_socket.c: (kernel_rtm_ipv6(_multipath)) set family to
58 AF_INET6 on ipv6 routes.
59
602005-11-12 Paul Jakma <paul.jakma@sun.com>
61
62 * kernel_socket.c: Add RTA_NAME_GET macro to extract name from
63 sockaddr_dl. Add some more RTF_ flags.
64 * (ifan_read) Add some debug messages.
65 * (ifm_read) Add more debug messages. More robust cross-checks
66 of index against name.
67 Fall back to by-name lookup if the index lookup fails, future
68 proofing more than anything else.
69 (ifam_read_mesg) Read RTA_IFP. Add debug messages.
70 (ifam_read) More debug. If there's an RTA_IFP and it isn't
71 the name of the interface, save it as the label.
72 (rtm_read_mesg) Read RTA_IFP.
73 (rtm_read) allow name to be retrieved.
74 (rtmsg_debug) expand on the debug message.
75
paul0994c3a2005-11-11 09:52:40 +0000762005-11-11 Paul Jakma <paul.jakma@sun.com>
77
78 * kernel_socket.c: (ifm_read) arithmetic on void pointer
79 warning.
80 (ifam_read) Fix error from connected-with-label merge,
81 something crept in from the pending Solaris kernel_socket.c
82 patch which shouldn't have.
83
paul0752ef02005-11-03 12:35:21 +0000842005-11-03 Paul Jakma <paul.jakma@sun.com>
85
86 * connected.{c,h}: Include memory.h
87 (connected_add_ipv4) Use MTYPE for ifc label.
88 (connected_add_ipv6) Also should accept label. Store it in ifp.
89 (connected_del_ipv4) Taking label as argument is pointless.
90 * rt_netlink.c: (netlink_interface_addr) update label usage
91 for connected_{add,delete} functions.
92 * if_ioctl.c: (if_getaddrs) NULL label for connected_add_ipv6.
93 * if_ioctl_solaris.c: (interface_list_ioctl) Pass LIFC_NOXMIT
94 so we also find out about NOXMIT interfaces like VNI.
95 Bit of hackery to turn interface names into the primary
96 interface name, later with routing socket messages we only
97 will about primary interfaces anyway, so we must normalise
98 the name.
99 (if_get_addr) take label as argument, so it can
100 be passed to connected_add.
101 If label is provided, then it is interface name to issue the
102 ioctl for address information on, not the ifp name.
103 (interface_list) List AF_UNSPEC too, just in case.
104 * if_proc.c: (ifaddr_proc_ipv6) label for connected_add_ipv6.
105 * interface.c: (if_addr_wakeup) Some very bogus code - sets
106 IFF_RUNNING - add comment.
107 (if_refresh)
108 (ip_address_install) Use MTYPE for ifc label.
109 * ioctl_solaris.c: (if_mangle_up) New function. Hackery to make
110 IFF_UP reflect whether any addresses are left on the
111 interface, as we get signalled for IFF_UP flags change on the
112 primary interface only. Logical interfaces dont generate
113 IFINFO, but we do get an RTM_DELADDR.
114 (if_get_flags) Call if_mangle_up before return.
115 * kernel_socket.c: (ifam_read) Fixup calls to
116 connected_{add,delete} to match above changes. Rename gate
117 variable to brd, less confusing.
118 Pass the interface name as a label, if it is not same name
119 as ifp->name.
120
pauld06b2a62005-10-11 03:53:54 +00001212005-10-11 Paul Jakma <paul.jakma@sun.com>
122
123 * connected.{c,h}: (connected_{add,delete}_ipv4) label should
124 be const qualified.
125
ajsc05612b2005-10-01 16:36:54 +00001262005-10-01 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
127
ajsf52d13c2005-10-01 17:38:06 +0000128 * zebra_vty.c: (route_type_str) Remove obsolete function: use new
129 library function zebra_route_string() instead. Note that there
130 are a few differences: for IPv6 routes, we now get "ripng" and
131 "ospf6" instead of the old behavior ("rip" and "ospf").
132 (route_type_char) Remove obsolete function: ues new library function
133 zebra_route_char() instead. Note that there is one difference:
134 the old function returned 'S' for a ZEBRA_ROUTE_SYSTEM route,
135 whereas the new one returns 'X'.
136 (vty_show_ip_route_detail,vty_show_ipv6_route_detail) Replace
137 route_type_str() with zebra_route_string().
138 (vty_show_ip_route,vty_show_ipv6_route) Replace route_type_char()
139 with zebra_route_char().
140
1412005-10-01 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
142
ajsc05612b2005-10-01 16:36:54 +0000143 * rt_netlink.c: (netlink_request) Use memset to clear structure
144 before calling sendto (eliminates a valgrind error message about
145 uninitialized data).
vincentaa2e32b2005-09-28 13:42:11 +0000146
1472005-09-28 Alain Ritoux <alain.ritoux@6wind.com>
148
vincentfbf5d032005-09-29 11:25:50 +0000149 * zserv.c: Always provied distance for route add
150
1512005-09-28 Alain Ritoux <alain.ritoux@6wind.com>
152
vincentaa2e32b2005-09-28 13:42:11 +0000153 * connected.c: flag connected_up_ipv6() and connected_down_ipv6()
154 usage with HAVE_IPV6
155
hassod24af182005-09-24 14:00:26 +00001562005-09-24 Hasso Tepper <hasso at quagga.net>
157
158 * rib.h: Add note about behaviour of rib_add_ipv[46]* functions -
159 add is treated as implicit withdraw.
160
hassoebf1ead2005-09-21 14:58:20 +00001612005-09-21 David Young <dyoung@ojctech.com>
162
163 * zebra_rib.c: Reduce the height of some staircases. Fix
164 rib_delete_ipv6() to match routes in the RIB by their gateway as
165 well as by destination.
166
paul319572c2005-09-21 12:30:08 +00001672005-09-21 Paul Jakma <paul.jakma@sun.com>
168
169 * zebra_rib.c: (static_uninstall_ipv{4,6}) Fix regression wrt
170 removal of static routes with multiple-hops introduced with
171 the workqueue conversion. We should free the relevant
172 nexthop and then get rib_process to run, otherwise we just
173 get same static route back again (with no way to unconfigure
174 it, because its already deleted from configuration).
175
paulca162182005-09-12 16:58:52 +00001762005-09-12 Paul Jakma <paul.jakma@sun.com>
177
178 * (general) RTM_CHANGE and implicit withdraw on RTM_NEWADDR
179 support.
180 * connected.c: (connected_withdraw) new function. withdraw a
181 connected subnet address set from zebra, and pass information
182 along to clients.
183 (connected_announce) similar, but to announce a new connected
184 subnet address set.
185 (connected_check_ipv4) renamed to connected_check, as its
186 AFI independent.
187 (connected_add_ipv{4,6}) Remove the connected address announce
188 stuff, use connected_announce instead.
189 If connected_check indicates address is already present,
190 treat it as an implicit withdraw of the existing address, ie
191 remove the old address details and replace with the new
192 details.
193 (connected_delete_ipv{4,6}) Use connected_withdraw.
194 (connected_check_ipv6) deleted in favour of connected_check.
195 * connected.h: Rename connected_check_ipv4 to connected_check.
196 delete connected_check_ipv6.
197 * interface.c: Use connected_check rather than the AFI specific
198 symbols.
199 * kernel_socket.c: (rtm_read) RTM_CHANGE support. Create a
200 rib delete event for the existing route, before adding route
201 again.
202 (kernel_read) we can handle RTM_CHANGE now.
203
hassobe61c4e2005-08-27 06:05:47 +00002042005-08-27 Hasso Tepper <hasso at quagga.net>
205
206 * zebra_rib.c, rib.h: Add distance and metric arguments to the
207 rib_add_ipv6() function so that IPv6 routes in RIB can have correct
208 metric. No IPv6 routing daemon uses distance yet though.
209 * zserv.c, connected.c, kernel_socket.c, rt_netlink.c,
210 rtread_proc.c,zserv.c: Pass metric and distance info to the
211 rib_add_ipv6().
212
paul6eb88272005-07-29 14:36:00 +00002132005-07-29 Paul Jakma <paul.jakma@sun.com>
214
215 * interface.c: (if_delete_update) should always be available, not
216 just on RTM_IFANNOUNCE/NETLINK systems.
217 * kernel_socket.c: (ifan_read) only call if_delete_update when
218 interface departs, dont if_delete, because we wish to retain
219 interface configuration state even when interfaces are removed.
220 (ifm_read) If we dont have RTM_IFANNOUNCE, then transitioning
221 to down state is only chance we have to clean up interface in case
222 it is deleted (eg Solaris down -> unplumb -> plumb up).
223 * redistribute.c: (zebra_interface_delete_update) should always be
224 available, we /will/ call it now on all systems, via
225 if_delete_update.
226 * zserv.c: (zsend_interface_delete) ditto
227 (zsend_interface_address) Update the call-flow diagramme, to
228 reflect that if_delete_update /is/ now called on all systems,
229 potentially.
230 * zserv.h: (zsend_interface_delete) unconditionally exported, as
231 above.
232
paula1ac18c2005-06-28 17:17:12 +00002332005-06-28 Paul Jakma <paul.jakma@sun.com>
234
235 * (global) Extern and static'ification, with related fixups
236 of declarations, ensuring files include their own headers, etc.
paulea6f82b2005-06-28 17:20:26 +0000237 * if_ioctl.c: (interface_info_ioctl) fix obvious arg mis-order in
paula1ac18c2005-06-28 17:17:12 +0000238 list loop
paulea6f82b2005-06-28 17:20:26 +0000239 * kernel_socket.c: (RTA_{ADDR,ATTR}_GET) fix mistake, NULL check
240 should be on DEST argument
paula1ac18c2005-06-28 17:17:12 +0000241
paul62debbb2005-06-14 14:07:07 +00002422005-06-14 Paul Jakma <paul.jakma@sun.com>
243
244 * kernel_socket.c: consolidate the IFAM{ADDR,MASK}GET and
245 RTM{ADDR,MASK}GET macros into generic rta_addrs macros,
246 RTA_{ADDR,ATTR}_GET.
247 (af_check) could use 'inline' attribute
248 (ifam_read_mesg) remove IFAM{ADDR,MASK}GET macro, change to
249 generic macro.
250 (rtm_read_mesg) similar
251
hasso1ada8192005-06-12 11:28:18 +00002522005-06-12 Hasso Tepper <hasso at quagga.net>
253
254 * rt_netlink.c: Remove netlink-addr socket declaration, it's not used.
255 * rt_netlink.c (netlink_parse_info): Fix debug messages - nlmsg_pid is
256 unsigned and one zlog call had swapped arguments.
257 * rt_netlink.c (netlink_route_multipath): Fix compile with disabled
258 IPv6 support.
259
paul1dcb5172005-05-31 08:38:50 +00002602005-05-31 Paul Jakma <paul.jakma@sun.com>
261
262 * zserv.c: (zsend_route_multipath) Fix bug if route is sent
263 with no NEXTHOP_FLAG_FIB nexthops. As ZAPI_MESSAGE_IFINDEX
264 and ZAPI_MESSAGE_NEXTHOP are always set, clients would try
265 read non-existent nexthop information and hit stream assert.
266 Zserv is still broken for multi-nexthop messages, but it always was.
267
paul69e10ad2005-05-06 21:27:33 +00002682005-05-06 Paul Jakma <paul.jakma@sun.com>
269
270 * zserv.h: Remove ZEBRA_PORT definition, its in lib/zebra.h now
271
paul4d38fdb2005-04-28 17:35:14 +00002722005-04-28 Paul Jakma <paul.jakma@sun.com>
273
274 * rib.h: (struct rib) Add lock field for refcounting.
275 * zserv.h: (struct zebra_t) Add a ribq workqueue to the zebra
276 'master' struct.
277 * zserv.c: (zread_ipv4_add) XMALLOC then memset should be XCALLOC.
278 * zebra_rib.c: Clean up refcounting of route_node, make struct rib
279 refcounted and convert rib_process to work-queue. In general,
280 rib's should be rib_addnode'd and delnode'd to route_nodes, and
281 these symmetrical functions will manage the locking of referenced
282 route_node and freeing of struct rib - rather than having users
283 manage each seperately - with much scope for bugs..
284 (newrib_free) removed and replaced with rib_lock
285 (rib_lock) new function, check state of lock and increment.
286 (rib_unlock) new function, check lock state and decrement. Free
287 struct rib if refcount hits 0, freeing struct nexthop's, as
288 newrib_free did.
289 (rib_addnode) Add RIB to route_node, locking both.
290 (rib_delnode) Delete RIB from route_node, unlocking each.
291 (rib_process) Converted to a work-queue work function.
292 Functional changes are minimal, just arguments, comments and
293 whitespace.
294 (rib_queue_add_qnode) Helper function to setup a ribq item.
295 (rib_queue_add) Helper function, same arguments as old
296 rib_process, to replace in callers of rib_process.
297 (rib_queue_qnode_del) ribq deconstructor.
298 (rib_queue_init) Create the ribq.
299 (rib_init) call rib_queue_init.
300 (remainder) Sanitise refcounting of route_node's. Convert to
301 rib_queue_add, rib_addnode and rib_delnode. Change XMALLOC/memset
302 to XCALLOC. Remove calls to nexthop_delete and nexthop_free.
303
paulcf460ef2005-04-10 16:54:26 +00003042005-04-10 Paul Jakma <paul@dishone.st>
305
306 * if_ioctl_solaris.c: (if_lookup_linklocal) fix order of args
307 in ALL_LIST_ELEMENTS_RO macro.
308
ajs57a14772005-04-10 15:01:56 +00003092005-04-10 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
310
311 * zserv.c (zebra_client_read): Fix bug: first read attempt should
312 read ZEBRA_HEADER_SIZE minus the number of bytes already read.
313 Improve efficiency by maintaining a calculation of the number
314 of bytes read instead of calling stream_get_endp multiple times.
315 If message length is too small, issue a warning message (not debug)
316 before closing the connection. And also check that message length
317 is not too big.
318
hasso206d8052005-04-09 16:38:51 +00003192005-04-09 Hasso Tepper <hasso at quagga.net>
320
hassofa599802005-04-09 16:59:28 +0000321 * rt_netlink.c: One tiny missing comma caused pointless debug messages
322 about IPv6 nexthops.
323
3242005-04-09 Hasso Tepper <hasso at quagga.net>
325
hasso206d8052005-04-09 16:38:51 +0000326 * rt_netlink.c (netlink_parse_info): Fix warning. It's safe to cast
327 status to unsigned here, because we already checked that it isn't
328 negative or 0.
329 * rt_netlink.c (netlink_interface_addr): Prefix length belongs to the
330 address, not to the interface.
331 * rt_netlink.c (netlink_route_multipath): Fix debug. No useless info
332 is printed out now and IPv6 info is handeled.
333
paul3d1dc852005-04-05 00:45:23 +00003342005-04-05 Paul Jakma <paul@dishone.st>
335
336 * zserv.c: print more helpful errors when we fail to successfully
337 bind and listen on zserv socket. Closes bugzilla #163.
338
ajsd2fc8892005-04-02 18:38:43 +00003392005-04-02 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
340
ajs08dbfb62005-04-03 03:40:52 +0000341 * if_ioctl.c: (interface_list_ioctl) Use if_get_by_name_len.
342 * if_proc.c: (ifaddr_proc_ipv6) Increase size of ifname buffer to
343 avoid overflow.
344 * kernel_socket.c: (ifan_read) Use if_get_by_name_len.
345
3462005-04-02 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
347
ajsa3491982005-04-02 22:50:38 +0000348 * kernel_socket.c: (ifm_read) Use new if_lookup_by_name_len function
349 to save a memcpy.
350 * if_ioctl_solaris.c: (interface_list_ioctl) Fix subtle bug with new
351 if_get_by_name_len function.
352
3532005-04-02 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
354
ajsd2fc8892005-04-02 18:38:43 +0000355 * interface.c: (if_new_intern_ifindex) Remove obsolete function.
356 (if_delete_update) After distributing the interface deletion message,
357 set ifp->ifindex to IFINDEX_INTERNAL.
358 (if_dump_vty) Detect pseudo interface by checking if ifp->ifindex is
359 IFINDEX_INTERNAL.
360 (zebra_interface) Check return code from interface_cmd.func.
361 Do not set internal ifindex values to if_new_intern_ifindex(),
362 since we now use IFINDEX_INTERNAL for all pseudo interfaces.
363 * kernel_socket.c: (ifm_read) Fix code and comments to reflect that
364 all internal interfaces now have ifp->ifindex set to IFINDEX_INTERNAL.
365 * rt_netlink.c: (set_ifindex) New function used to update ifp->ifindex.
366 Detects interface rename events by checking if that ifindex is already
367 being used. If it is, delete the old interface before assigning
368 the ifindex to the new interface.
369 (netlink_interface, netlink_link_change) Call set_ifindex to update
370 the ifindex.
371
hassob7ed1ec2005-03-31 20:13:49 +00003722005-03-31 Hasso Tepper <hasso at quagga.net>
373
374 * rt_netlink.c (netlink_talk_filter): Show always warning message,
375 it's not for debug.
376 * rt_netlink.c (netlink_talk): Don't assume we use netlink_cmd
377 although we do now actually.
378 * rt_netlink.c (netlink_route, netlink_route_multipath): Always use
379 netlink_cmd to send messages to the kernel.
380
ajs2da40f42005-03-30 16:33:13 +00003812005-03-30 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
382
383 * irdp.h: Add prototype for irdp_sock_init, and fix protos for
384 other irdp_* functions.
385 * irdp_interface.c: (irdp_if_start) If irdp_sock is negative,
386 call irdp_sock_init to create the IRDP socket.
387 (irdp_if_init) Rename to irdp_init().
388 (get_iflist_ifp) Remove function that is a duplicate of
389 if_lookup_by_index.
390 (*) Make many functions static. And remove superfluous "\n" from
391 several zlog messages.
392 * irdp_main.c: (irdp_init) Remove function that used to call
393 irdp_if_init() and irdp_sock_init(), since we will now create
394 the socket only upon first use.
395 (irdp_sock_init) Do not update global irdp_sock variable, just
396 return the fd and assume that the caller will do so. If setsockopt
397 calls fail, close the socket before returning -1.
398 (*) Make many functions static.
399 * irdp_packet.c: Initialize irdp_sock to -1.
400 (irdp_read_raw) Call standard library function if_lookup_by_index
401 instead of get_iflist_ifp.
402 (irdp_recvmsg) Should be static, not global.
403
ajsa608bbf2005-03-29 17:03:49 +00004042005-03-29 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
405
406 * rt_netlink.c: (netlink_link_change) If the status of an
407 operative interface changes (e.g. MTU changes), the client
408 daemons should be notified by calling zebra_interface_up_update.
409 Previously, the information was being updated in zebra's
410 interface structure, but the clients were not notified of
411 changes to an operative interface.
412
vincent7cee1bb2005-03-25 13:08:53 +00004132005-03-25 Jean-Mickael Guerin <jean-mickael.guerin@6wind.com>
414 * interface.c, interface.h, rtadv.c, rtadv.h: modifications to
415 IPv6 Neighbor Discovery according to RFC3775, section 7:
416 o 1-bit Home Agent flag management in Router Advertisement (7.1).
417 o 1-bit Router Address flag management in Prefix Information
418 Option (7.2).
419 o Advertisement Interval Option (7.3)
420 o Home Agent Information Option (7.4)
421 o Changes to Sending Router Advertisements more frequently (7.5)
422
hassoed9bb6d2005-03-13 19:17:21 +00004232005-03-13 Hasso Tepper <hasso at quagga.net>
424
425 * zebra/interaface.c: "show interface description" command
426 implemented.
427
paulc1f01f32005-03-12 06:33:14 +00004282005-03-12 Paul Jakma <paul@dishone.st>
429
430 * rt_netlink.c: (netlink_route_multipath) dont set equalise flag.
431 No stock Linux kernel has ever supported it, and even if it had
432 it's not generally a good idea.
433
hasso42a66d72005-03-07 08:19:44 +00004342005-03-07 Michael Sandee <voidptr@voidptr.sboost.org>
435
436 * if_proc.c, ipforward_proc.c, rtread_proc.c: Fix fd leaks.
437
hasso3452d472005-03-06 13:42:05 +00004382005-03-06 Hasso Tepper <hasso at quagga.net>
439
440 * interface.c: Fix CRC and frame errors statistics in Linux.
441
ajs719e9742005-02-28 20:52:15 +00004422005-02-28 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
443
444 * zserv.c: Must include network.h and buffer.h for non-blocking I/O.
445 Remove global message_queue and t_write (need separate buffering for
446 each client).
447 (zebra_server_dequeue,zebra_server_enqueue) Remove functions
448 related to old buggy buffering code.
449 (zserv_delayed_close) New thread callback function to delete a client.
450 (zserv_flush_data) New thread callback function to flush buffered
451 data to client.
452 (zebra_server_send_message) Rewritten to use buffer_write (so
453 buffering of writes and non-blocking I/O work properly).
454 (zsend_interface_add,zsend_interface_delete,zsend_interface_address,
455 zsend_interface_update) Return 0 instead of -1 if !client->ifinfo
456 (this is not really an error). Return value from
457 zebra_server_send_message.
458 (zsend_route_multipath,zsend_ipv4_nexthop_lookup,
459 zsend_ipv4_import_lookup) Return value from zebra_server_send_message.
460 (zsend_ipv6_nexthop_lookup) Fix scope to static, and return value
461 from zebra_server_send_message.
462 (zsend_router_id_update) Must use zebra_server_send_message instead
463 of deprecated writen function. Return 0 instead of -1 if this client
464 is not subscribed to router-id updates (since this is not really
465 an error).
466 (zread_interface_add) Change type to static int. If
467 zsend_interface_add fails or zsend_interface_address fails, return -1
468 immediately (since the client has had an I/O error).
469 (zread_interface_delete,zread_ipv4_add,zread_ipv4_delete,
470 zread_ipv6_add,zread_ipv6_delete,zread_router_id_delete) Return 0
471 to indicate success.
472 (zread_ipv4_nexthop_lookup) Return value from
473 zsend_ipv4_nexthop_lookup.
474 (zread_ipv4_import_lookup) Return value from zsend_ipv4_import_lookup.
475 (zebra_read_ipv6) Remove unused function.
476 (zread_ipv6_nexthop_lookup) Return value from
477 zsend_ipv6_nexthop_lookup.
478 (zread_router_id_add) Return value from zsend_router_id_update.
479 (zebra_client_close) Call buffer_free(client->wb) and
480 thread_cancel(client->t_suicide).
481 (zebra_client_create) Allocate client->wb using buffer_new.
482 (zebra_client_read) Support non-blocking I/O by using stream_read_try.
483 Use ZEBRA_HEADER_SIZE instead of 3.
484 (zebra_accept) Fix bug: reset accept thread at top. Make client
485 socket non-blocking using the set_nonblocking function.
486 (config_write_forwarding) Fix scope to static.
487 (zebra_init) Remove initialization code for old buggy write buffering.
488 * zserv.h: Add 2 new fields to struct zserv: struct buffer *wb
489 (to enable buffered writes with non-blocking I/), and
490 struct thread *t_suicide to support delayed close on I/O
491 errors.
492 * router-id.h: Remove prototypes for zread_router_id_add and
493 zread_router_id_delete (their scope should be static to zserv.c).
494
ajs27da3982005-02-24 16:06:33 +00004952005-02-24 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
496
497 * redistribute.c: (zebra_check_addr,is_default,
498 zebra_redistribute_default,zebra_redistribute) Fix scope to be static.
499
hassoe8274dc2005-02-20 19:09:23 +00005002005-02-20 Hasso Tepper <hasso at quagga.net>
501
502 * rt_netlink.c: Don't show messages "ignoring message type 0x001[89]"
503 if we are not debugging.
504
paule31f2292005-02-19 02:00:26 +00005052005-02-19 Paul Jakma <paul@dishone.st>
506
507 * zserv.c: (zebra_read_ipv6) replace the char * arithmetic with
508 STREAM_READABLE.
509
paul1e193152005-02-14 23:53:05 +00005102005-02-14 Paul Jakma <paul@dishone.st>
511
512 * Not all Linux netlink systems have IFLA_WIRELESS
513
ajs6a52d0d2005-01-30 18:49:28 +00005142005-01-30 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
515
516 * ioctl.c: (if_ioctl,if_ioctl_ipv6,if_get_flags) Replace perror with
517 zlog_err.
518 * ioctl_solaris.c: (if_ioctl,if_ioctl_ipv6) Replace perror with
519 zlog_err.
520
ajs4be019d2005-01-29 16:12:41 +00005212005-01-29 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
522
ajs4460e7a2005-01-29 17:07:40 +0000523 * if_ioctl_solaris.c: (interface_list_ioctl) Save errno before calling
524 zserv_privs.change.
525 * ioctl{,_solaris}.c: (if_ioctl,if_ioctl_ipv6) Save errno before calling
526 zserv_privs.change.
527 * ipforward_solaris.c: (solaris_nd) Save errno before calling
528 zserv_privs.change.
529 * irdp_main.c: (irdp_sock_init) Save errno before calling
530 zserv_privs.change.
531
5322005-01-29 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
533
ajs4be019d2005-01-29 16:12:41 +0000534 * rt_netlink.c: (netlink_socket,netlink_request,netlink_parse_info,
535 netlink_talk) Save errno before calling zserv_privs.change.
536
paulc15cb242005-01-24 09:05:27 +00005372005-01-24 Martin Pot <mpot at martybugs.net>
538
539 * zebra/rt_netlink.c: ignore wireless newlink netlink messages.
540
hasso6f2c27a2005-01-18 13:44:35 +00005412005-01-18 Hasso Tepper <hasso at quagga.net>
542
543 * interface.c: Better statistics output in "show interface" command in
544 case of /proc being used.
545
hasso583d8002005-01-16 23:34:02 +00005462005-01-17 Hasso Tepper <hasso at quagga.net>
547
548 * main.c: With --nl-bufsize argument is required.
549
paul865b8522005-01-05 08:30:35 +00005502005-01-05 Paul Jakma <paul@dishone.st>
551
552 * zserv.c: (zebra_accept) Comment out setting of socket to NONBLOCK
553 for now, as we dont actually deal with with resending.... See
554 bugzilla #122, fix from wawa@yandex-team.ru (Vladimir Ivanov).
555 * kernel_socket.c: (routing_socket) ditto.
556
ajsb99760a2005-01-04 16:24:43 +00005572005-01-04 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
558
559 * rtadv.c: (rtadv_recv_packet,rtadv_send_packet) Use ZCMSG_FIRSTHDR
560 instead of CMSG_FIRSTHDR.
561
ajs341a8f12004-12-22 16:32:16 +00005622004-12-22 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
563
564 * connected.c: (connected_add_ipv4) Limit warning about /32 addresses
565 with no peer specified to PtP interfaces only.
566
hassob8adec12004-12-18 16:03:28 +00005672004-12-18 Hasso Tepper <hasso at quagga.net>
568
569 * zebra_vty.c: Fix "show ipv6 route <proto>" command help and make it
570 work for isis routes.
571
gdt6a250b02004-12-09 14:48:12 +00005722004-12-09 Greg Troxel <gdt@fnord.ir.bbn.com>
573
574 * kernel_socket.c (rtmsg_debug): char * => const char *
575
ajs274a4a42004-12-07 15:39:31 +00005762004-12-07 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
577
ajsb6178002004-12-07 21:12:56 +0000578 * *.c: Change level of debug messages to LOG_DEBUG.
579
5802004-12-07 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
581
ajs274a4a42004-12-07 15:39:31 +0000582 * main.c: (main) The 2nd argument to openzlog has been removed.
583 So stdout logging will no longer be enabled by default.
584 * irdp_main.c: (irdp_finish) Reduce severity of shutdown message
585 from LOG_WARNING to LOG_INFO.
586
ajs887c44a2004-12-03 16:36:46 +00005872004-12-03 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
588
589 * main.c: (sigint) Use zlog_notice for termination message.
590 (main) Add a startup announcement using zlog_notice.
591
hassoaccb1562004-11-25 19:21:07 +00005922004-11-25 Hasso Tepper <hasso at quagga.net>
593
594 * irdp_interface.c: Remove comment from DEFUN, it breaks vtysh because
595 it confuses extract.pl.
hassoc0652302004-11-25 19:33:48 +0000596 * main.c: Make group to run as configurable.
hassoaccb1562004-11-25 19:21:07 +0000597
hasso6bd7c6a2004-10-28 17:32:27 +00005982004-10-28 Hasso Tepper <hasso at quagga.net>
599
600 * interface.c: Remove dead "ip tunnel" command.
601
paul06f953f2004-10-22 17:00:38 +00006022004-10-22 Paul Jakma <paul@dishone.st>
603
604 * irdp_main.c: change setsockopt_pktinfo to setsockopt_ifindex
605
hasso3fb9cd62004-10-19 19:44:43 +00006062004-10-19 Andrew J. Schorr <aschorr@telemetry-investments.com>
607
608 * rt_netlink.c: (netlink_interface_addr) For PtP interfaces, ignore
609 tb[IFA_ADDRESS] if it's the same as tb[IFA_LOCAL].
610 * interface.c: (ip_address_install) Use new ipv4_broadcast_addr
611 function.
612 * connected.c: (connected_up_ipv4) Use CONNECTED_POINTOPOINT_HOST
613 macro.
614 (connected_down_ipv4) ditto.
615 (connected_add_ipv4) Validate destination address, print warnings
616 if it does not make sense.
617
hassoc1eaa442004-10-19 06:26:01 +00006182004-10-19 Hasso Tepper <hasso at quagga.net>
619
620 * zserv.c: Fix regression introduced with zserv cleanup.
621
hassoc75105a2004-10-13 10:33:26 +00006222004-10-13 Hasso Tepper <hasso at quagga.net>
623
624 * zebra_snmp.c: Remove defaults used to initialize smux connection to
625 snmpd. Connection is initialized only if smux peer is configured.
hassob71f00f2004-10-13 12:20:35 +0000626 * zserv.c: Remove useless warnings "forwarding is already on".
hassoc75105a2004-10-13 10:33:26 +0000627
hasso39ff11d2004-10-12 15:55:19 +00006282004-10-12 Hasso Tepper <hasso at quagga.net>
629
630 * zebra_vty.c: Unbreak "show ip route" command help and make it work
631 for isis routes.
hasso39db97e2004-10-12 20:50:58 +0000632 * interface.c(if_dump_vty): Show IPv6 addresses in "show interface"
633 output. Fixes Bugzilla #119.
634 * *.c: Make some strings const and some (unsigned) casts to fix
635 compiler warnings.
hasso39ff11d2004-10-12 15:55:19 +0000636
hassofce954f2004-10-07 20:29:24 +00006372004-10-07 Hasso Tepper <hasso at quagga.net>
638
639 * connected.c, main.c, rt_netlink.c, rtadv.c, zebra_rib.c, zserv.c:
640 Fix warnings: make strings const, signed -> unsigned.
641
paul72164662004-10-05 14:39:43 +00006422004-10-05 Paul Jakma <paul@dishone.st>
643
644 * irdp_packet.c: (parse_irdp_packet) style issues.
645 Use sockopt_iphdrincl_swab_systoh.
646 Try unbork the code. Checksum the ICMP data and actually
647 compare it to received checksum. Check data length against
648 claimed length in header.
649 Always use ntoh.. when accessing addresses, even when the
650 comparison happens to be endian-safe.
651 (send_packet) minor style isues. Use
652 sockopt_iphdrincl_swab_htosys.
653 (irdp_iph_hton/ntoh) IP header to/from network/host order.
654
hassoeef1fe12004-10-03 18:46:08 +00006552004-10-03 Gilad Arnold <gilad.arnold at terayon.com>
656
657 * interface.c, interface.h: A new prefix tree of connected subnets is
658 associated with each interface structure in zebra, in which each
659 live (ie, non-synthetic) node holds a list of installed addresses
660 that belong to that prefix. Remove secondary address logic from cli.
661 See [quagga-dev 872] for detailed explanation.
662 * connected.c: Use if_subnet_add() and if_subnet_delete().
663
hasso18a6dce2004-10-03 18:18:34 +00006642004-10-03 James R. Leu <jleu at mindspring.com>
665
666 * router-id.c, router-id.h: New files. Router id selection process. If
667 there is non 127.x.x.x address in loopack interface, lowest of them
668 is chosen. If there isn't, lowest from other interfaces addresses
669 are chosen. "router-id x.x.x.x" vty command to manual override.
670 * Makefile.am: Compile new files.
671 * main.c: Initialize router id.
672 * redistribute.c: Add interface addresses into router id selection
673 lists as they (dis)appear.
674 * zserv.c, zserv.h: Sending router id related messages to daemons.
675
hassoc9e52be2004-09-26 16:09:34 +00006762004-09-26 Hasso Tepper <hasso at quagga.net>
677
678 * irdp_interface.c, irdp_main.c, irdp_packet.c, rt_netlink.c,
679 rtadv.c, zebra_vty.c: Fix compiler warnings.
680
paul0c0f9112004-09-24 08:24:42 +00006812004-09-24 Paul Jakma <paul@dishone.st>
682
paul26f7a242004-09-24 08:45:10 +0000683 * irdp_interface.c: (no_ip_irdp_address_preference_cmd)
684 add missing listnode declaration.
685
6862004-09-24 Paul Jakma <paul@dishone.st>
687
paul0c0f9112004-09-24 08:24:42 +0000688 * irdp_{interface,main}.c: lists typedef removal cleanup.
689 update some list loops to LIST_LOOP. some miscellaneous style
690 and indent fixups.
691 (no_ip_irdp_address_preference_cmd) Fix delete of referenced node
paul26f7a242004-09-24 08:45:10 +0000692 in loop.
paul0c0f9112004-09-24 08:24:42 +0000693 * irdp_packet.c: (irdp_recvmsg) Fix buggy assignment of integer
694 to pointer.
695 * if_ioctl{,_solaris}.c: lists typedef removal cleanup.
696 update some list loops to LIST_LOOP.
697
hasso52dc7ee2004-09-23 19:18:23 +00006982004-09-23 Hasso Tepper <hasso at quagga.net>
699
700 * *.[c|h]: list -> struct list *, listnode -> struct listnode *.
701
paul44983cf2004-09-22 13:15:58 +00007022004-09-22 Paul Jakma <paul.jakma@sun.com>
703
704 * zserv.c: (zsend_route_multipath) fix nasty bad memset of struct
705 in_addr to sizeof(struct in6_addr), causing odd and hard to debug
706 crash.
707
hassoc34b6b52004-08-31 13:41:49 +00007082004-08-31 Hasso Tepper <hasso at quagga.net>
709
710 * main.c, rt_netlink.c: Added -s command line switch for tuning
711 netlink receive buffer size in Linux to avoid buffer overruns.
712
gdta5ea6872004-08-26 13:24:00 +00007132004-08-26 Miles Nordin <carton@Ivy.NET>
714
715 * ipforward_sysctl.c (mib_ipv6): Use size_t for len, per
716 sysctl(3), rather than int. (Needed on NetBSD/alpha to display
717 forwarding status correctly.)
718
paul3e0b3a52004-08-23 18:58:32 +00007192004-08-23 Paul Jakma <paul@dishone.st>
720
721 * zserv.c: (zebra_init) remove implicit ip forward enabling
722
paul0de1cde2004-08-19 04:45:33 +00007232004-08-19 Paul Jakma <paul@dishone.st>
724
725 * irdp_main.c: update to match sockopt renames.
726 * irdp_packet.c: include sockopt.h and update to match sockopt
727 renames.
728
gdt57492d52004-08-11 18:06:38 +00007292004-08-11 Greg Troxel <gdt@fnord.ir.bbn.com>
730
731 * rtadv.c (rtadv_send_packet): Allocate space for control messages
732 more carefully; it was wrong on NetBSD/sparc where CMSG alignment
733 is to 8 bytes instead of 4, and overwriting the address. Use the
734 provided macros for determining lengths.
735
paul5b73a672004-07-23 15:26:14 +00007362004-07-23 Sowmini Varadhan <Sowmini.Varadhan@Sun.COM>
737
738 * if_ioctl_solaris.c: HAVE_IPV6 ifdef fixups
739 * zserv.c: ditto
740 * ioctl_solaris.c: ditto.
741 * interface.c: cast for LLADDR
742 * interface.h: Add guards, include redistribute.h and remove
743 extraneous definitions of zebra_interface_{up,down}_update
744 * ioctl.h: Add AF_IOCTL define for non SOLARIS_IPV6
745 * redistribute.h: include dependent header, zserv.h
746 * zserv.h: include dependent header, rib.h
747
paul1470baf2004-07-23 15:25:01 +00007482004-07-23 Paul Jakma <paul@dishone.st>
749
750 * irdp_main.c: use setsockopt_pktinfo_ipv4
751 * irdp_packet.c: use SOPT_SIZE_CMSG_PKTINFO_IPV4 and
752 getsockopt_pktinfo_ifindex()
753
gdtcced60d2004-07-13 16:45:54 +00007542004-07-13 David Wiggins <dwiggins@bbn.com
755
756 * kernel_socket.c (rtm_flag_dump): terminate buffer with '\0', not '0'.
757
hasso25dac852004-07-13 03:06:51 +00007582004-07-13 Hasso Tepper <hasso@estpak.ee>
759
760 * irdp_main.c: Add privilege change.
761
hasso996933f2004-07-12 16:32:56 +00007622004-07-12 Hasso Tepper <hasso@estpak.ee>
763
764 * irdp_interface.c: follow common style while naming vty command
765 functions. Avoids confusion in extract.pl.
766
gdt87efd642004-06-30 17:36:11 +00007672004-06-30 Greg Troxel <gdt@poblano.ir.bbn.com>
768
769 * main.c: define thread_master variable so that linking with
770 libzebra.so doesn't fail. Arguably zclient.o should be in a
771 separate library, but this is far less disruptive.
772
hassoca776982004-06-12 14:33:05 +00007732004-06-12 Robert Olsson <Robert.Olsson at data.slu.se>
774
775 * Added IRDP support.
776
hasso3e31cde2004-05-18 11:58:59 +00007772004-05-18 Hasso Tepper <hasso@estpak.ee>
778
779 * rtadv.c: Removed "[no] ipv6 nd send-ra" command. Replaced "ipv6 nd
780 prefix-advertisement" with "ipv6 nd prefix". Rewrite syntax of
781 "ipv6 nd prefix" command to allow various combinations of parameters
782 and flags. No defaults in configuration. Replaced on-link and
783 autoconfig with off-link and no-autoconfig flags in command syntax.
784 Cosmetic fixes in all commands. Documentation to reflect all changes.
785
paul19877dd2004-05-11 10:49:35 +00007862004-05-11 Paul Jakma <paul@dishone.st>
787
788 * Makefile.am: support for IOCTL_METHOD, as per Sowmini's patch.
paul48a46fa2004-05-11 10:55:22 +0000789 * if_ioctl_solaris.c: Fixup some erroneous privilege changes and
790 add privs.h header.
791 * ioctl_solaris.c: ditto
paulc50ae8b2004-05-11 11:31:07 +0000792 * ioctl.h: Add if_ioctl_ipv6 prototype and AF_IOCTL for SOLARIS_IPV6
793 * kernel_socket.c: Fix SAROUNDUP, compiler doesnt like do..while
794 RHS in assignments :)
795 * redistribute.c: (zebra_interface_delete_update) only used
796 if RTM_IFANNOUNCE and NETLINK is available.
797
paulb9df2d22004-05-09 09:09:59 +00007982004-05-09 Paul Jakma <paul@dishone.st>
799
800 * zserv.c: (zsend_route_multipath) Set the nexthop_num
801 field correctly. Add NEXTHOP_TYPE_IPV6_IFNAME for v6.
802 Conditionally set ZAPI_MESSAGE_METRIC flag - only for adds.
803 (zsend_ipv4_add) cruft, deleted.
804 (zsend_ipv4_delete) ditto.
805 (zsend_ipv6_add) ditto.
806 (zsend_ipv6_delete) ditto.
paul44145db2004-05-09 11:00:23 +0000807 * ioctl.c: (if_get_mtu) set mtu6 to mtu
808 * mtu_kvm.c: (if_kvm_get_mtu) set mtu6 to mtu
809 * rt_netlink.c: (netlink_interface) set mtu6 to mtu
810 (netlink_link_change) ditto
paul66e94882004-05-09 17:19:24 +0000811 * ipforward_solaris.c: fix typo of ND variable.
paul88424682004-05-09 18:21:35 +0000812 * if_ioctl_solaris.c: Add zprivs support.
813 * ioctl_solaris.c: ditto.
paul66e94882004-05-09 17:19:24 +0000814
paulb9df2d22004-05-09 09:09:59 +00008152004-05-09 Sowmini Varadhan <sowmini.varadhan@sun.com>
816
817 * zserv.c: (zsend_ipv{4,6}_{add,delete}_multipath) collapsed
818 into single zsend_route_multipath function.
819 (zsend_interface_{up,down}) collapsed into zsend_interface_update.
820 (zsend_interface_address_{add,delete}) collapsed into
821 zsend_interface_address.
822 (zsend_interface_add) send mtu6.
823 (zsend_interface_delete) ditto.
824 (zebra_write) remove unused function.
825 (various) Apply static qualifier. Add comments.
826 * zserv.h: Definitions changed as per above.
827 * redistribute.c: Changes as per zserv.c.
paul44145db2004-05-09 11:00:23 +0000828 * interface.c: (if_delete_update) only used with HAVE_NETLINK
829 and RTM_IFANNOUNCE.
830 (if_flag_dump_vty) Solaris IFF_IPV4 and IFF_IPV6 if flags
831 (if_dump_vty) print mtu6 if not same as mtu
paul88424682004-05-09 18:21:35 +0000832 * if_ioctl_solaris.c: New file, Solaris interface ioctl methods.
833 * ioctl_solaris.c: New file, Common solaris ioctl methods.
834
hasso34195bf2004-04-06 12:07:06 +00008352004-04-06 Krzysztof Oledzki <oleq@ans.pl>
836
837 * rt_netlink.c: Do not ignore metric when reading kernel routing
838 table on Linux with rt_netlink interface.
839
8402004-03-18 Hasso Tepper <hasso@estpak.ee>
hassof1d92e12004-03-18 15:40:33 +0000841
842 * interface.c: Temporary fix for handling secondary addresses
843 with label.
844
hasso55906722004-02-11 22:42:16 +00008452004-02-12 Hasso Tepper <hasso@estpak.ee>
hassof1d92e12004-03-18 15:40:33 +0000846
hasso55906722004-02-11 22:42:16 +0000847 * zserv.c: Added "ipv6 forwarding" command.
848
gdtb27900b2004-01-08 15:44:29 +00008492004-01-08 Greg Troxel <gdt@fnord.ir.bbn.com>
850
851 * kernel_socket.c (kernel_read): Use sockaddr_storage in buffer
852 for reading kernel messages to ensure enough space (necessary on
853 Solaris due to sockaddr_dl being large). Thanks to Sowmini
854 Varadhan for help with this change.
855
gdt9ccabd12004-01-06 18:23:02 +00008562004-01-06 Greg Troxel <gdt@t1.ir.bbn.com>
857
858 * rtadv.c (rtadv_send_packet): Change perror to zlog_err.
859
gdtdbee01f2004-01-06 00:36:51 +00008602004-01-05 Greg Troxel <gdt@fnord.ir.bbn.com>
gdt4bfbea82004-01-06 01:13:05 +0000861 * kernel_socket.c (ifm_read): Major cleanup. Use Sowmini's code
862 to find the sockaddr_dl in all cases, narrowing the Solaris ifdef
863 to just the accomodation of broken kernels. Check sockaddr_dl
864 carefully up front, and later assume any non-NULL sdl pointer is
865 valid. Clean up types and variable declarations, and rename
866 WRAPUP to SAROUNDUP to make the name fit the behavior.
867
8682004-01-05 Greg Troxel <gdt@fnord.ir.bbn.com>
gdtdbee01f2004-01-06 00:36:51 +0000869
870 * kernel_socket.c (kernel_read): Add a sockaddr_dl to the ifmsg
871 structure, because on Solaris sockaddr_dl is far larger than the
872 base sockaddr structure. (The code had previously been failing to
873 read all the data.)
gdt4bfbea82004-01-06 01:13:05 +0000874
gdtda26e3b2004-01-05 17:20:59 +00008752004-01-05 Greg Troxel <gdt@ahi.ir.bbn.com>
876
877 * kernel_socket.c (kernel_read): Look up interfaces by index
878 first, so that state changes which do not include a sockaddr_dl
879 now work. Add many sanity checks. In
880 particular, do not assume that a sockaddr_dl follows a message
881 without checking the ifm_addrs flags, and do not trust the length
882 in a sockaddr_dl. Add/clarify many comments.
883
gdt4b5e1352003-12-03 17:54:34 +00008842003-12-03 Greg Troxel <gdt@poblano.ir.bbn.com>
885
886 * rtadv.c: reorder includes to avoid compiler warning (define
887 structs before using them in prototypes)
888
hasso647e4f12003-05-25 11:43:52 +00008892003-05-25 Jim Crumpler <Jim.Crumpler@edion.com>
890
891 * zserv.c: Add "ip forwarding" command.
892
paul445f1432003-05-16 19:00:31 +00008932003-05-16 Gilad Arnold <gilad.arnold@terayon.com>
894
895 * zebra_rib.c: Fix memory leaks for ifname nexthops
896
8972003-04-19 Israel Keys <ikeys@agile.tv>
898
899 * rt_netlink.c: BLOCK on netlink while initialising
900
9012003-02-06 Francois Deppierraz <francois@ctrlaltdel.ch>
902
903 * rt_netlink.c (netlink_route_multipath): Set RTM_F_EQUALIZE when
904 it exists.
905
paul718e3742002-12-13 20:15:29 +00009062002-09-28 Akihiro Mizutani <mizutani@net-chef.net>
907
908 * zebra_rib.c (static_add_ipv4): Null0 static route is added.
909
9102002-09-10 Jochen Friedrich <chris+zebra@scram.de>
911
912 * rt_netlink.c: Add check for EAGAIN.
913 * kernel_socket.c: Likewise
914
9152002-06-12 Israel Keys <ikeys@oz.agile.tv>
916
917 * rt_netlink.c: Setting the NLM_F_ACK flag on the netlink command
918 message so that we get an ACK for successful netlink commands.
919 Change the netlink socket to BLOCKING while we wait for a
920 response; be it an ACK or an NLMSG_ERROR. Change
921 netlink_parse_info to deal with ACK messages.
922
9232001-11-01 Jun-ichiro itojun Hagino <itojun@iijlab.net>
924
925 * rtadv.c (rtadv_make_socket): setsockopt(IPV6_CHECKSUM) does not
926 work for ICMPv6 socket.
927
9282001-10-24 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
929
930 * rib.c (rib_process): Select connected route any case.
931
9322001-10-23 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
933
934 * interface.c (no_ip_address_secondary): Add "no" to command.
935
9362001-10-18 NOGUCHI Kay <kay@v6.access.co.jp>
937
938 * ioctl.c (if_prefix_add_ipv6): Set the prefered and valid lifetime
939 to infinity as the freebsd4.4 workaroud.
940
9412001-08-26 mihail.balikov@interbgc.com
942
943 * zebra_snmp.c: Fix snmpwalk problem such as IPv4 address
944 A.B.C.255.
945
9462001-08-22 NOGUCHI Kay <kay@v6.access.co.jp>
947
948 * rtadv.c: Do not send RA to loopback interface.
949
9502001-08-20 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
951
952 * ioctl.c (if_set_prefix): Remove Linux 2.0 specific connected
953 route treatment.
954
9552001-08-19 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
956
957 * zebra-0.92a released.
958
9592001-08-17 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
960
961 * rib.c: Kernel route is treated as EGP routes in nexthop active
962 check.
963
9642001-08-15 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
965
966 * zebra-0.92 released.
967
9682001-08-08 "Akihiro Mizutani" <mizutani@dml.com>
969
970 * rib.c (show_ip_route_prefix_longer): Add longer-prefix option to
971 show route commands.
972
9732001-07-29 Yon Uriarte <havanna_moon@gmx.net>
974
975 * zserv.c (zsend_ipv4_add_multipath): Add
976 NEXTHOP_TYPE_IPV4_IFINDEX check.
977
9782001-07-29 NOGUCHI Kay <kay@v6.access.co.jp>
979
980 * rtadv.c: Apply valid lifetime, preferred lifetime, onilnk flag,
981 autonomous address-configuration flag patch.
982 (no_ipv6_nd_suppress_ra): Change "ipv6 nd send-ra" to "no ipv6 nd
983 suppress-ra".
984
9852001-07-24 NOGUCHI Kay <kay@v6.access.co.jp>
986
987 * rtadv.c (ipv6_nd_ra_interval): Add "ipv6 nd ra-interval SECONDS"
988 command.
989
9902001-07-24 Jun-ichiro itojun Hagino <itojun@iijlab.net>
991
992 * rt_socket.c (kernel_rtm_ipv4): Add KAME/NetBSD151 equal cost
993 multicast FIB support both IPv4 and IPv6.
994
9952001-07-24 Hal Snyder <hal@vailsys.com>
996
997 * if_ioctl.c (interface_list_ioctl): Fix bug of failing to get the
998 full list of interfaces on some configurations of OpenBSD.
999
10002001-07-23 NOGUCHI Kay <kay@v6.access.co.jp>
1001
1002 * rtadv.c (ipv6_nd_send_ra): Apply [zebra 9320] to fix "ipv6 nd
1003 send-ra" bug.
1004 (ipv6_nd_ra_lifetime): "ipv6 nd ra-lifetime 0" for default router
1005 availability.
1006 (ipv6_nd_managed_config_flag): "ipv6 nd managed-config-flag" is
1007 added.
1008 (ipv6_nd_other_config_flag): "ipv6 nd other-config-flag" is added.
1009
10102001-07-23 Jun-ichiro itojun Hagino <itojun@iijlab.net>
1011
1012 * ioctl.c (if_ioctl): Change ioctl argument from int to u_long.
1013
1014 * rt_ioctl.c: Likewise.
1015
10162001-07-23 Jun-ichiro itojun Hagino <itojun@iijlab.net>
1017
1018 * kernel_socket.c (rtm_write): Only set RTF_CLONING when the
1019 interface is not p2p.
1020
10212001-04-23 Kunihiro Ishiguro <kunihiro@zebra.org>
1022
1023 * ioctl.c (if_prefix_add_ipv6): Fix argument type.
1024
10252001-04-06 Toshiaki Takada <takada@zebra.org>
1026
1027 * zserv.c (zsend_interface_delete): Use client->obuf instead of
1028 allocating new stream.
1029
10302001-03-10 Kunihiro Ishiguro <kunihiro@zebra.org>
1031
1032 * rt_netlink.c: Revert RTPROT_BOOT change.
1033
10342001-03-08 Kunihiro Ishiguro <kunihiro@zebra.org>
1035
1036 * rt_netlink.c (netlink_route_change): Skip RTPROT_BOOT route.
1037 (netlink_routing_table): Likewise.
1038
10392001-03-07 "Akihiro Mizutani" <mizutani@dml.com>
1040
1041 * zserv.c (zsend_ipv4_add_multipath): Send metric value to
1042 protocol daemons.
1043
10442001-02-18 Kunihiro Ishiguro <kunihiro@zebra.org>
1045
1046 * rt_netlink.c (netlink_routing_table): Do not return
1047 tb[RTA_GATEWAY] is NULL. Reported by: "Michael O'Keefe"
1048 <mokeefe@qualcomm.com>.
1049
10502001-02-08 Kunihiro Ishiguro <kunihiro@zebra.org>
1051
1052 * if_ioctl.c (interface_list_ioctl): Call if_add_update().
1053 Suggested by: Chris Dunlop <chris@onthe.net.au>.
1054
10552001-02-01 Kunihiro Ishiguro <kunihiro@zebra.org>
1056
1057 * rib.c (nexthop_active_ipv4): When nexthop type is
1058 NEXTHOP_TYPE_IPV4_IFINDEX, propery set the ifindex to rifindex.
1059
1060 * zserv.c: Initialize rtm_table_default with 0.
1061
1062 * zebra-0.91 is released.
1063
10642001-01-31 Kunihiro Ishiguro <kunihiro@zebra.org>
1065
1066 * kernel_socket.c (rtm_read): Filter cloned route. Suggested by:
1067 Jun-ichiro itojun Hagino <itojun@iijlab.net>
1068
10692001-01-30 Kunihiro Ishiguro <kunihiro@zebra.org>
1070
1071 * connected.c (connected_up_ipv6): When point-to-point destination
1072 address is ::, use local address for connected network.
1073 (connected_down_ipv6): Likewise.
1074
10752001-01-25 Kunihiro Ishiguro <kunihiro@zebra.org>
1076
1077 * zserv.c (zebra_serv): Add missing close() call. Reported by:
1078 David Waitzman <djw@vineyard.net>.
1079
10802001-01-24 Kunihiro Ishiguro <kunihiro@zebra.org>
1081
1082 * rib.c (rib_lookup_ipv4): New function for checking exact match
1083 IGP route.
1084
10852001-01-23 Kunihiro Ishiguro <kunihiro@zebra.org>
1086
1087 * rib.c (show_ipv6_route_protocol): Fix bug of "show ip route
1088 route-type".
1089
10902001-01-22 Kunihiro Ishiguro <kunihiro@zebra.org>
1091
1092 * interface.c (zebra_interface): Do not call
1093 zebra_interface_add_update for inactive interface.
1094
1095 * zserv.c (zsend_interface_address_add): Send interface address
1096 flag.
1097 (zsend_interface_address_delete): Likewise.
1098
10992001-01-19 Kunihiro Ishiguro <kunihiro@zebra.org>
1100
1101 * interface.c (if_addr_add): Add flags.
1102
1103 * connected.c (ifa_add_ipv4): Add new function for interface
1104 address handling.
1105 (ifa_delete_ipv4): Likewise.
1106
11072001-01-16 Kunihiro Ishiguro <kunihiro@zebra.org>
1108
1109 * rib.c (rib_update): Update IPv6 RIB.
1110
1111 * kernel_socket.c (ifam_read): Call if_refresh() for update
1112 interface flag status. This is for implicit interface up on *BSD.
1113
1114 * interface.c (if_refresh): Add interface flag refresh function.
1115
1116 * kernel_socket.c (rtm_read): Fetch link-local address interface
1117 index.
1118 (ifan_read): We need to fetch interface information. Suggested
1119 by: Yasuhiro Ohara <yasu@sfc.wide.ad.jp>.
1120
1121 * rib.c (static_ipv6_nexthop_same): Add check for
1122 NEXTHOP_TYPE_IPV6_IFNAME.
1123
11242001-01-15 Kunihiro Ishiguro <kunihiro@zebra.org>
1125
1126 * rib.h (NEW_RIB): Turn on NEW_RIB flag. IPv6 new RIB code are
1127 taken into place.
1128
11292001-01-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1130
1131 * rib.c (static_ipv6_write): Display STATIC_IPV6_GATEWAY_IFNAME
1132 configuration.
1133 (rib_delete_ipv6): Handle same route conter for IPv6 connected
1134 route.
1135 (show_ipv6_route_protocol): New command.
1136 (show_ipv6_route_addr): Likewise.
1137 (show_ipv6_route_prefix): Likewise.
1138 (rib_update): Sweep kernel route when it is cleaned up.
1139
1140 * rt_socket.c (kernel_add_ipv6): Add NEXTHOP_IPV6_IFNAME
1141 treatmenet.
1142
1143 * rt_netlink.c (kernel_init): Likewise.
1144
1145 * rt_ioctl.c (kernel_ioctl_ipv6_multipath): Likewise.
1146
1147 * rib.c (rib_add_ipv4): Cope with same connected route on a
1148 interface. Suggested by: Matthew Grant <grantma@anathoth.gen.nz>.
1149 (nexthop_ipv6_ifname_add): Add NEXTHOP_IPV6_IFNAME treatmenet.
1150
1151 * rib.h (struct new_rib): Add refcnt to keep track on the
1152 reference of same connected route.
1153
1154 * ioctl.c (if_set_prefix): Add check for GNU_LINUX.
1155
11562001-01-13 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1157
1158 * kernel_socket.c (ifan_read, rtm_type_str): Add RTM_OIFINFO check.
1159 (rtm_type_str): Add RTM_IFANNOUNCE check.
1160 (ifan_read): New function.
1161 (kernel_read): Add case for RTM_IFANNOUNCE.
1162
11632001-01-13 Kunihiro Ishiguro <kunihiro@zebra.org>
1164
1165 * rt_ioctl.c (kernel_ioctl_ipv6_multipath): New function.
1166
1167 * rt_netlink.c (netlink_route_multipath): IPv6 address ifindex
1168 treatment.
1169
1170 * connected.c (connected_up_ipv6): Add dest value check.
1171
1172 * rib.c (nexthop_active_ipv6): Do not touch IPv6 nexthop's
1173 ifindex.
1174 (rib_add_ipv4): Import rib_add_ipv6() same route check code.
1175 (nexthop_active_check): NEXTHOP_TYPE_IPV6_IFINDEX activity is only
1176 checked by ifindex.
1177
1178 * rt_socket.c (kernel_rtm_ipv6_multipath): New function.
1179
1180 * redistribute.c (redistribute_add): Use
1181 zsend_ipv6_add_multipath().
1182 (redistribute_delete_multipath): Use
1183 zsend_ipv6_delete_multipath().
1184
1185 * interface.c (ip_address): Check current IP address to avoid
1186 duplicate.
1187
1188 * rib.c (rib_delete_ipv4): When deleted route is connected route,
1189 check ifindex.
1190 (rib_add_ipv4): When connected route is added do not perform
1191 implicit withdraw.
1192 (rib_delete_ipv4): Check ifindex for connected route.
1193
1194 * kernel_socket.c (rtm_read): When route has RTF_STATIC, set
1195 ZEBRA_FLAG_STATIC for indicate as persistent route.
1196 (ifam_read): Unset interface index from link-local address when
1197 IPv6 stack is KAME.
1198
1199 * rib.c (rib_update): Do not delete persistent kernel route.
1200
1201 * rib.h (struct new_rib): Integrate RIB_FLAG_* to ZEBRA_FLAG_*.
1202
1203 * rt_socket.c (kernel_add_ipv6_multipath): Add placeholder.
1204 (kernel_delete_ipv6_multipath): Likewise.
1205
1206 * rt_netlink.c (netlink_talk): Give struct nlsock to netlink_talk.
1207
12082001-01-12 Kunihiro Ishiguro <kunihiro@zebra.org>
1209
1210 * rib.c (rib_update): Revert Matthew Grant's patch
1211 zebra_cvs_newribfix.patch. Use struct rib->ifindex for kernel
1212 interface index. Introduce NEXTHOP_TYPE_IPV4_IFINDEX to support
1213 that. Add support for address deletion situation.
1214
12152001-01-11 Kunihiro Ishiguro <kunihiro@zebra.org>
1216
1217 * interface.c: Remove HAVE_IF_PSEUDO part.
1218
1219 * rib.h: Likewise.
1220
1221 * rt_netlink.c (netlink_link_change): Likewise.
1222
12232001-01-10 Kunihiro Ishiguro <kunihiro@zebra.org>
1224
1225 * zserv.c: Remove OLD_RIB codes.
1226
12272001-01-09 Kunihiro Ishiguro <kunihiro@zebra.org>
1228
1229 * zebra-0.90 is released.
1230
12312001-01-09 Matthew Grant <grantma@anathoth.gen.nz>
1232
1233 * interface.c (if_new_intern_ifindex): Allocate a new internal
1234 interface index.
1235 (if_addr_refresh): Fix up ip addresses configured via zebra.
1236 (if_add_update): Handle an interface addition.
1237 (if_delete_update): Handle an interface delete event.
1238
1239 * rib.c (nexthop_ipv4_add): Add kernel route deletion process when
1240 interface goes down.
1241
12422001-01-08 Kunihiro Ishiguro <kunihiro@zebra.org>
1243
1244 * interface.c (if_dump_vty): When HAVE_NET_RT_IFLIST is defined,
1245 NetBSD also use this function. Suggested by Jasper Wallace
1246 <jasper@ivision.co.uk>.
1247
12482001-01-07 Kunihiro Ishiguro <kunihiro@zebra.org>
1249
1250 * rib.c (nexthop_active_ipv4): Move back to set methodo to old
1251 one.
1252
12532001-01-05 Kunihiro Ishiguro <kunihiro@zebra.org>
1254
1255 * rib.c (rib_add_ipv4): EBGP multihop set ZEBRA_FLAG_INTERNAL
1256 flag, so treat it.
1257
12582001-01-04 Kunihiro Ishiguro <kunihiro@zebra.org>
1259
1260 * rt_netlink.c (netlink_talk_ipv6): When IPv6 route message is
1261 sent from netlink_cmd, the same message comes from netlink. To
1262 avoid confusion, temporary netlink_talk_ipv6 use netlink.sock
1263 instead of netlink_cmd.sock.
1264
12652001-01-01 Kunihiro Ishiguro <kunihiro@zebra.org>
1266
1267 * zserv.h (ZEBRA_SERV_PATH): Change "/tmp/zebra" to "/tmp/.zebra".
1268 Change "/tmp/zserv" to "/tmp/.zserv".
1269
12702000-12-29 Frank van Maarseveen <F.vanMaarseveen@inter.NL.net>
1271
1272 * rt_netlink.c (struct nlsock): Divide kernel message into listen
1273 socket and command socket.
1274 (netlink_talk): Remove socket listen code. Use netlink_parse_info
1275 for read kernel response.
1276
12772000-12-29 Kunihiro Ishiguro <kunihiro@zebra.org>
1278
1279 * rib.c (vty_show_ip_route): Show uptime of the RIP,OSPF,BGP
1280 routes.
1281
12822000-12-27 Kunihiro Ishiguro <kunihiro@zebra.org>
1283
1284 * rt_netlink.c (netlink_route_multipath): Metric value is
1285 reflected to kernel routing table.
1286
1287 * rt_ioctl.c (kernel_ioctl_ipv4_multipath): Likewise.
1288
1289 * kernel_socket.c (rtm_write): Likewise.
1290
1291 * rib.c (nexthop_active_ipv4): Only iBGP route perform recursive
1292 nexthop lookup.
1293
1294 * rt_ioctl.c (kernel_ioctl_ipv4_multipath): Add ioctl version of
1295 new RIB implementation.
1296
12972000-12-26 Kunihiro Ishiguro <kunihiro@zebra.org>
1298
1299 * rib.h: Remove MULTIPATH_NUM. It is defined by configure script.
1300
13012000-12-25 Michael Rozhavsky <mrozhavsky@opticalaccess.com>
1302
1303 * rib.c (rib_if_up): Call rib_fib_set instead of RIB_FIB_SET for
1304 proper redistribution.
1305
13062000-12-19 Kunihiro Ishiguro <kunihiro@zebra.org>
1307
1308 * rib.c (nexthop_active_ipv4): Add self lookup nexthop check.
1309 (show_ip_route_protocol): Support new RIB.
1310
1311 * rt_netlink.c (netlink_route_change): Do not return when gate is
1312 NULL.
1313
13142000-12-18 Kunihiro Ishiguro <kunihiro@zebra.org>
1315
1316 * rib.c (rib_lookup_ipv4_nexthop): IBGP nexthop check function is
1317 updated.
1318 (rib_add_ipv4): Free implicit withdraw route's RIB.
1319
13202000-12-15 Kunihiro Ishiguro <kunihiro@zebra.org>
1321
1322 * rib.c (nexthop_active_ipv4): Check indirect nexthop.
1323
1324 * redistribute.c (redistribute_add_multipath): Redistribution
1325 works with new rib code.
1326
13272000-12-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1328
1329 * rt_netlink.c (netlink_route_multipath): Check useful nexthop
1330 number.
1331 (netlink_route_multipath): Clear rtnh_flags and rtnh_hops.
1332
1333 * rib.c (nexthop_active_update): Set flag for the rib's nexthop
1334 activity is changed.
1335 (nexthop_active_check): Before checking interface is up, make it
1336 sure the interface exist.
1337
13382000-11-20 Kunihiro Ishiguro <kunihiro@zebra.org>
1339
1340 * rib.c (ip_route): New RIB prototype.
1341
13422000-11-16 Yon Uriarte <ukl2@rz.uni-karlsruhe.de>
1343
1344 * zserv.c (zsend_interface_add): Send hardware address when
1345 hw_addr_len is greater than 0.
1346
13472000-11-07 Kunihiro Ishiguro <kunihiro@zebra.org>
1348
1349 * connected.c (connected_up_ipv4): Fix ptop bug. The destination
1350 network should be installed into routing table.
1351 (connected_down_ipv4): Likewise.
1352 (connected_add_ipv4): Change to use connected_up_ipv4.
1353 (connected_delete_ipv4): Likewise.
1354
13552000-11-06 Kunihiro Ishiguro <kunihiro@zebra.org>
1356
1357 * rt_netlink.c (netlink_interface_addr): Revert Harald Welte
1358 <laforge@gnumonks.org>'s ptop patch then back to original code to
1359 avoid duplicated connected route problem. Suggested by Frank van
1360 Maarseveen <F.vanMaarseveen@inter.NL.net>.
1361
1362 * kernel_socket.c (rtm_read): Make behavior consistent even #ifdef
1363 DEBUG is defined. Reported by Jun-ichiro itojun Hagino
1364 <itojun@iijlab.net>.
1365
13662000-10-23 Jochen Friedrich <jochen@scram.de>
1367
1368 * main.c (main): Call zebra_snmp_init() when it is enabled.
1369
13702000-10-23 Kunihiro Ishiguro <kunihiro@zebra.org>
1371
1372 * zserv.c (zebra_serv_un): UNIX domain socket server of zebra
1373 protocol.
1374
13752000-10-19 Kunihiro Ishiguro <kunihiro@zebra.org>
1376
1377 * rib.c (rib_add_ipv4): Same check bug is fixed.
1378
13792000-10-03 Kunihiro Ishiguro <kunihiro@zebra.org>
1380
1381 * rib.c (rib_if_down): Remove kernel route when the interface goes
1382 down.
1383
1384 * debug.c: New command "debug zebra kernel" is added.
1385
13862000-10-02 Kunihiro Ishiguro <kunihiro@zebra.org>
1387
1388 * zebra-0.89 is released.
1389
13902000-09-24 Harald Welte <laforge@gnumonks.org>
1391
1392 * rt_netlink.c (netlink_interface_addr): Fix point-to-point address
1393 treatment in netlink interface.
1394
13952000-09-21 David Lipovkov <dlipovkov@OpticalAccess.com>
1396
1397 * rib.c (rib_if_down): Pull static route only. Protocol daemon
1398 must withdraw routes when interface goes down.
1399 (rib_add_ipv4): Check nexthop when replace route.
1400
14012000-09-21 Kunihiro Ishiguro <kunihiro@zebra.org>
1402
1403 * if_ioctl.c (if_getaddrs): New function for looking up
1404 interface's address by getifaddrs().
1405
14062000-09-10 Kunihiro Ishiguro <kunihiro@zebra.org>
1407
1408 * connected.c (connected_delete_ipv4): Add check for connected
1409 address is found or not.
1410 (connected_add_ipv6): Reflect IPv6 connected address change to
1411 protocol daemons.
1412 (connected_delete_ipv6): Likewise.
1413
14142000-09-07 David Lipovkov <davidl@nbase.co.il>
1415
1416 * rib.c (rib_delete_ipv4): Reverted the change from pseudo
1417 interface patch to original. Because ospfd deletes routes using
1418 zero ifindex.
1419
14202000-08-17 Kunihiro Ishiguro <kunihiro@zebra.org>
1421
1422 * zebra-0.88 is released.
1423
14242000-08-15 "Akihiro Mizutani" <mizutani@dml.com>
1425
1426 * rib.c (show_ip_route_protocol): Help string correction.
1427 (show_ip_route_prefix): Check prefix mask.
1428 (show_ip_route_vty_detail): Display distance and metric.
1429
14302000-08-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1431
1432 * zserv.c (zsend_interface_add): Change ifindex store size from
1433 two octet to four.
1434 (zsend_interface_delete): Likewise.
1435 (zsend_interface_address_add): Likewise.
1436 (zsend_interface_address_delete): Likewise.
1437 (zsend_interface_up): Likewise.
1438 (zsend_interface_down): Likewise.
1439
14402000-08-13 Kunihiro Ishiguro <kunihiro@zebra.org>
1441
1442 * rib.c (rib_add_ipv4): Do not install distance 255 route.
1443
14442000-08-10 Toshiaki Takada <takada@zebra.org>
1445
1446 * interface.c (bandwidth_if), (no_bandwidth_if): Call
1447 zebra_interface_up_update () instead of using if_up() and if_down().
1448
14492000-08-07 "Akihiro Mizutani" <mizutani@dml.com>
1450
1451 * interface.c (bandwidth_if): Fix help string.
1452
14532000-08-07 Matthew Grant <grantma@anathoth.gen.nz>
1454
1455 * interface.c (if_dump_vty): Display bandwidth value.
1456 (bandwidth_if): New command "bandwidth <1-10000000>" is added.
1457 When interface is up, force protocol daemons to recalculate routes
1458 due to cost change.
1459 (no_bandwidth_if): Likewise.
1460 (if_config_write): Output bandwidth configuration.
1461
1462 * zserv.c (zsend_interface_add): Send bandwidth value.
1463 (zsend_interface_up): Likewise.
1464 (zsend_interface_down): Likewise.
1465
1466
14672000-08-07 Michael Rozhavsky <mike@nbase.co.il>
1468
1469 * rib.c (show_ip_route_protocol): "show ip route
1470 (bgp|connected|kernel|ospf|rip|static)" is added.
1471
14722000-08-07 Kunihiro Ishiguro <kunihiro@zebra.org>
1473
1474 * rib.c (rib_lookup_ipv4_nexthop): Check parent node until IGP
1475 nexthop is found.
1476 (rib_add_ipv4_internal): Set fib ifindex to rib ifindex.
1477
14782000-08-06 Kunihiro Ishiguro <kunihiro@zebra.org>
1479
1480 * redistribute.c (redistribute_delete): Fix bug of default route
1481 redistribute treatment.
1482
14832000-08-05 Kunihiro Ishiguro <kunihiro@zebra.org>
1484
1485 * rib.c (rib_init): Install ip_node in rib.c instead of zserv.c.
1486 Change default distance value.
1487
1488 Old New
1489 ------------------------------------------
1490 system 10 0
1491 kernel 20 0
1492 connected 30 0
1493 static 40 1
1494 rip 50 120
1495 ripng 50 120
1496 ospf 60 110
1497 ospf6 49 110
1498 bgp 70 200(iBGP) 20(eBGP)
1499 ------------------------------------------
1500
1501 * zserv.c (client_lookup): Function removed.
1502 (zsend_interface_add): Use client's output buffer. Check ifinfo
1503 flag.
1504 (zsend_interface_delete): Likewise.
1505 Delete ipv4_static_radix and ipv6_static_radix.
1506
15072000-08-02 Kunihiro Ishiguro <kunihiro@zebra.org>
1508
1509 * zserv.h (struct zebra_client): When client request interface
1510 information, ifinfo is set.
1511
1512 * rib.c: Temporary Revert changes for pseudo interface.
1513
1514 * rib.h: Likewise.
1515
1516 * zserv.c: Likewise.
1517
1518 * interface.c: Likewise.
1519
15202000-08-02 David Lipovkov <davidl@nbase.co.il>
1521
1522 * interface.c (zebra_if_init): Install interface "pseudo"
1523 commands.
1524
1525 * rib.c (rib_create): ifname argument is added.
1526 (rib_add_ipv4_pseudo): New function is added.
1527 (rib_delete_ipv4_pseudo): Likewise.
1528
1529 * rib.h : Delete INTERFACE_UNKNOWN definition. Add prototype for
1530 pseudo interface functions.
1531
1532 * rt_netlink.c (netlink_link_change): Check for pseudo interface.
1533
1534 * zserv.c (ip_route): When destination is pseudo interface, call
1535 rib_add_ipv4_pseudo().
1536
1537 * zserv.c (no_ip_route): Trim "unknown" argument.
1538
15392000-07-26 kunitake@dti.ad.jp
1540
1541 * if_ioctl.c (if_get_hwaddr): Fix hardware address length from 8
1542 to 6.
1543
1544 * rtadv.c (rtadv_send_packet): Fix shift bug for hardware address.
1545
15462000-07-24 Akihiro Mizutani <mizutani@dml.com>
1547
1548 * interface.c: Use install_default() for common VTY commands.
1549
15502000-07-23 Kunihiro Ishiguro <kunihiro@zebra.org>
1551
1552 * if_ioctl.c (interface_list_ioctl): A interface list size is
1553 calculated from ifreq->if_addr.sa_len. This is for OpenBSD.
1554
1555 * ioctl.c (if_get_mtu): Remove codes for SIOCGIFDATA.
1556
15572000-07-09 Chris Dunlop <chris@onthe.net.au>
1558
1559 * if_ioctl.c (if_get_index): Add check for HAVE_BROKEN_ALIASES.
1560
15612000-07-04 Kunihiro Ishiguro <kunihiro@zebra.org>
1562
1563 * zserv.c (zebra_client_read): Add ZEBRA_REDISTRIBUTE_{ADD,DELETE}
1564 message handling.
1565
15662000-07-02 David Lipovkov <davidl@nbase.co.il>
1567
1568 * zserv.c: "ip route A.B.C.D/M unknown" command is added.
1569
15702000-06-28 Michael Rozhavsky <mike@nbase.co.il>
1571
1572 * rib.c: Remove old kernel route when new route comes in.
1573
15742000-06-13 David Lipovkov <davidl@nbase.co.il>
1575
1576 * rib.c (rib_if_up): Add check for unknown interface.
1577
15782000-06-13 Kunihiro Ishiguro <kunihiro@zebra.org>
1579
1580 * rib.h: Define INTERFACE_UNKNOWN.
1581
15822000-06-08 Kunihiro Ishiguro <kunihiro@zebra.org>
1583
1584 * Makefile.am (EXTRA_DIST): Move irdp.c until implementation is
1585 finished.
1586
15872000-06-05 David Lipovkov <davidl@nbase.co.il>
1588
1589 * interface.c (if_zebra_delete_hook): Call rib_if_delete().
1590
1591 * redistribute.c (zebra_interface_delete_update): New function.
1592
1593 * redistribute.h (zebra_interface_delete_update): New function
1594 prototype.
1595
1596 * rib.c (rib_if_delete): New function. Walk down all routes and
1597 delete all on the interface.
1598
1599 * rib.h: New function prototype.
1600
1601 * rt_netlink.c (netlink_link_change): Call
1602 zebra_interface_delete_update ().
1603
16042000-05-10 Kunihiro Ishiguro <kunihiro@zebra.org>
1605
1606 * if_ioctl.c (interface_info_ioctl): Check interface's flag before
1607 checking interface's address.
1608
16092000-04-26 Jochen Friedrich <jochen@nwe.de>
1610
1611 * GNOME-PRODUCT-ZEBRA-MIB: New file.
1612
1613 * GNOME-SMI: New file.
1614
16152000-04-23 Kunihiro Ishiguro <kunihiro@zebra.org>
1616
1617 * irdp.c: New file from 1997 development code.
1618 * irdp.h: Likewise.
1619
16202000-04-19 Kunihiro Ishiguro <kunihiro@zebra.org>
1621
1622 * rtadv.c (rtadv_send_packet): Enclose router advertisement
1623 logging with IS_ZEBRA_DEBUG_PACKET.
1624
16252000-04-17 Kunihiro Ishiguro <kunihiro@zebra.org>
1626
1627 * zserv.c (zebra_client_close): Remove client structure from
1628 client_list when connection is terminated.
1629
16302000-03-21 David Lipovkov <davidl@nbase.co.il>
1631
1632 * connected.c (connected_add_ipv4): Allows all necessary structure
1633 updates for connected route, but doesn't insert it into rib if
1634 it's interface is down.
1635
16362000-01-21 Hideto Yamakawa <hideto.yamakawa@soliton.co.jp>
1637
1638 * rtread_getmsg.c: Set some definition for Solaris 2.5 and Solaris
1639 2.5.1.
1640
16412000-01-21 Kunihiro Ishiguro <kunihiro@zebra.org>
1642
1643 * rib.c (no_ipv6_route_ifname): Fix buf of cheking return value
1644 from str2prefix_ipv6().
1645
16462000-01-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1647
1648 * rt_socket.c: Revert to use RTF_HOST for IPv4 with /32 route and
1649 IPv6 with /128 routes.
1650 (kernel_rtm_ipv4): In case of /32 route's gateway is interface. It
1651 should have mask for cloning.
1652
16531999-12-26 Jochen.Friedrich@genorz.de
1654
1655 * interface.c (if_dump_vty): Fix a bug of missing VTY_NEWLINE.
1656
16571999-12-23 Alex Zinin <zinin@amt.ru>
1658 * interface.*: dynamic int up/down support
1659
16601999-12-09 Kunihiro Ishiguro <kunihiro@zebra.org>
1661
1662 * ipforward_proc.c (dropline): Move dropline() from lib/dropline.c
1663
1664 * rtread_proc.c (proc_route_read): Don't use dropline().
1665
16661999-12-08 Kunihiro Ishiguro <kunihiro@zebra.org>
1667
1668 * kernel_socket.c (rtm_read): When message is RTM_GET, it has own
1669 process's pid.
1670
16711999-12-04 Kunihiro Ishiguro <kunihiro@zebra.org>
1672
1673 * main.c (main): Change to default log output to ZLOG_STDOUT.
1674
1675 * zserv.c (zebra_serv): More detailed error print.
1676
16771999-11-30 Kunihiro Ishiguro <kunihiro@zebra.org>
1678
1679 * kernel_socket.c (rtm_read): Check old pid for static route
1680 insertion check.
1681
16821999-11-30 Kunihiro Ishiguro <kunihiro@zebra.org>
1683
1684 * interface.c (if_dump_vty): BSDI/OS uses 64bit for interface
1685 statistics counter.
1686
1687 * mtu_kvm.c: New file added.
1688
16891999-11-27 Vladimir B. Grebenschikov <vova@express.ru>
1690
1691 * kernel_socket.c (rtm_write): Set RTF_CLONING flag for
1692 route to the directly connected interface.
1693
16941999-11-27 Kunihiro Ishiguro <kunihiro@zebra.org>
1695
1696 * rt_socket.c: Delete USE_HOST_BIT definition.
1697
16981999-11-21 Michael Handler <handler@sub-rosa.com>
1699
1700 * rtread_getmsg.c: Undef some definition to resolve conflict.
1701
17021999-11-27 Kunihiro Ishiguro <kunihiro@zebra.org>
1703
1704 * kernel_socket.c (rtm_write): Change to use pre stored struct_dl
1705 value for gateway specification.
1706
17071999-11-25 Kunihiro Ishiguro <kunihiro@zebra.org>
1708
1709 * rt_socket.c (kernel_rtm_ipv4): Even mask is 32 under IPv4 or
1710 128 under IPv6, don't use RTF_HOST.
1711
17121999-11-21 Kunihiro Ishiguro <kunihiro@zebra.org>
1713
1714 * Makefile.am (EXTRA_DIST): Add rtread_getmsg.c.
1715
17161999-11-21 Michael Handler <handler@sub-rosa.com>
1717
1718 * rtread_getmsg.c: Added for Solaris 2.6 support.
1719
17201999-11-18 Kunihiro Ishiguro <kunihiro@zebra.org>
1721
1722 * rtread_sysctl.c (rtm_read_route): RTM_DELETE handling added.
1723
1724 * rt_socket.c (kernel_read): Better BSD routing socket support.
1725
17261999-10-19 Kunihiro Ishiguro <kunihiro@zebra.org>
1727
1728 * client_main.c: Disable making obsolete zebra test `client'
1729 command.
1730
17311999-10-18 Kunihiro Ishiguro <kunihiro@zebra.org>
1732
1733 * zebra.c: Renamed to zserv.c.
1734
1735 * zebra.h: Global definitions are moved to lib/zebra.h. Then
1736 renamed to zserv.h.
1737
17381999-10-15 Jordan Mendelson <jordy@wserv.com>
1739
1740 * if_ioctl.c: Add Linux 2.2.X's alias support and dynamic
1741 interface. Remove ugly MAX_INTERFACE handling codes.
1742
17431999-09-17 Satosi KOBAYASI <kobayasi@north.ad.jp>
1744
1745 * Fix serious bug of IPv6 route deletion.
1746
17471999-09-11 Kunihiro Ishiguro <kunihiro@zebra.org>
1748
1749 * ioctl.c (if_set_prefix): Properly set broadcast address.
1750
17511999-09-04 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1752
1753 * rib.c (rib_add_ipv6, rib_delete_ipv6): now protocol daemons
1754 can install connected route to kernel via zebra
1755
17561999-08-24 VOP <vop@unity.net>
1757
1758 * rib.c: Include "sockunion.h"
1759
17601999-08-22 Kunihiro Ishiguro <kunihiro@zebra.org>
1761
1762 * ipforward.h: New file.
1763
1764 * zebra.h: Obsolete message ZEBRA_GET_ALL_INTERFACE,
1765 ZEBRA_GET_ONE_INTERFACE, ZEBRA_GET_HOSTINFO are deleted.
1766
17671999-08-18 Kunihiro Ishiguro <kunihiro@zebra.org>
1768
1769 * zebra.h (ZEBRA_INTERFACE_ADDRESS_ADD):
1770 ZEBRA_INTERFACE_{ADD,DELETE} added.
1771
17721999-08-15 Kunihiro Ishiguro <kunihiro@zebra.org>
1773
1774 * rib.c: show ip route A.B.C.D works.
1775
1776 * zebra.c (zebra_read_ipv4): Add ifindex to zebra messages.
1777
17781999-08-12 Kunihiro Ishiguro <kunihiro@zebra.org>
1779
1780 * zebra.h: New Zebra message ZEBRA_INTERFACE_{ADD,DELETE} added.
1781
17821999-08-09 Kunihiro Ishiguro <kunihiro@zebra.org>
1783
1784 * interface.h: New file.
1785 * Makefile.am: Add interface.h
1786
17871999-08-04 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1788
1789 * redistribute.c (zebra_redistribute): give ifindex to client.
1790
17911999-08-02 Kunihiro Ishiguro <kunihiro@zebra.org>
1792
1793 * main.c (longopts): -k, --keep_kernel option added.
1794
17951999-07-18 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1796
1797 * rt_socket.c (rtm_write): forgot closing socket bug fixed.
1798
17991999-07-17 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1800
1801 * rib.c (show_ipv6_cmd): if rib is link show interface name.
1802
18031999-07-17 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1804
1805 * rt_socket.c (rtm_write): use sockaddr_dl when null gateway.
1806
18071999-07-16 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1808
1809 * rt_socket.c (rtm_write): ipv6 route table bug fixed.
1810
18111999-07-15 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1812
1813 * zebra.c (zebra_read_ipv6): read link prefix from ospf6 support
1814
18151999-07-15 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1816
1817 * rt_socket.c (kernel_rtm_ipv6): gate treatment bug fixed.
1818
18191999-07-15 Kunihiro Ishiguro <kunihiro@zebra.org>
1820
1821 * if_sysctl.c (ifm_read): Clear sockunion argument before fetching
1822 data. Suggested by "Chris P. Ross" <cross@eng.us.uu.net>
1823
18241999-07-08 HEO SeonMeyong <seirios@Matrix.IRI.Co.Jp>
1825
1826 * interface.c (if_tun_add): Add KAME's gif tunnel setting codes.
1827
18281999-06-26 Kunihiro Ishiguro <kunihiro@zebra.org>
1829
1830 * zebra.c (zebra_serv): Only accept loopback address connection.
1831
18321999-06-25 Kunihiro Ishiguro <kunihiro@zebra.org>
1833
1834 * zebra.h (ZEBRA_ROUTE_EXTERNAL): Add zebra messages flags
1835
18361999-06-17 Kunihiro Ishiguro <kunihiro@zebra.org>
1837
1838 * ipforward_proc.c: ipforward_on () and ipforward_off () added.
1839
18401999-06-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1841
1842 * ipforward_proc.c (ipforward_ipv6): Check for IPv6 forwarding
1843 using /proc file system is added.
1844
18451999-06-06 Kunihiro Ishiguro <kunihiro@zebra.org>
1846
1847 * if_ioctl.c (if_get_index): Interface index set bug is fixed by
1848 adding #else at the middle of function. Suggested by David Luyer
1849 <luyer@ucs.uwa.edu.au>.
1850
18511999-05-29 <kunihiro@zebra.org>
1852
1853 * rt_ioctl.c: Comment out #include <linux/ipv6_route.h>.
1854
18551999-05-26 Kunihiro Ishiguro <kunihiro@zebra.org>
1856
1857 * zebra.h (ZEBRA_ROUTE_MAX): Add new define for the max value of
1858 the sort of routes.
1859
18601999-05-25 Patrick Koppen <koppen@rhrk.uni-kl.de>
1861
1862 * rt_netlink.c (netlink_socket): Make netlink socket non-blocking.
1863 (netlink_parse_info): If errno is EWOULDBLOCK then continue to
1864 parse the message.
1865 (netlink_talk): Likewise
1866
18671999-05-17 <kunihiro@zebra.org>
1868
1869 * redistribute.c (zebra_check_addr): Added for loopback address
1870 check.
1871
18721999-05-15 Kunihiro Ishiguro <kunihiro@zebra.org>
1873
1874 * rt_netlink.c (netlink_route_change): Tempolary bypass ipv6 route
1875 change treatment.
1876
1877 * Makefile.am (noinst_HEADERS): redistribute.h added.
1878
1879 * redistribute.h: New file.
1880
18811999-05-14 Stephen R. van den Berg <srb@cuci.nl>
1882
1883 * zebra.c (show_table): Show all table configuration DEFUN.
1884 (config_table): Config table number DEFUN.
1885
1886 * rt_netlink.c: Add support for multiple routing table.
1887
1888 * rib.c (rib_weed_table): New function added for delete all
1889 routes from specified routing table.
1890
1891 * main.c (signal_init): SIGTERM call sigint.
1892 (sigint): Loggging more better message.
1893
18941999-05-09 Kunihiro Ishiguro <kunihiro@zebra.org>
1895
1896 * rt_netlink.c: Change log () to zlog ().
1897
18981999-05-07 <kunihiro@zebra.org>
1899
1900 * zebra.h (ZEBRA_ROUTE_OSPF6): Added for ospf6d route.
1901
19021999-04-20 Kunihiro Ishiguro <kunihiro@zebra.org>
1903
1904 * interface.c: Add `no ip address' command.
1905
19061999-04-10 Kunihiro Ishiguro <kunihiro@zebra.org>
1907
1908 * rt_netlink.c (kernel_read): Function added for asynchronous
1909 zebra between kernel communication.
1910
19111999-03-25 Kunihiro Ishiguro <kunihiro@zebra.org>
1912
1913 * rtread_sysctl.c (rtm_read): Fix address memcopy overrun bug.
1914 Reported by Achim Patzner <ap@bnc.net>.
1915
19161999-03-03 Kunihiro Ishiguro <kunihiro@zebra.org>
1917
1918 * Makefile.am: Install configuration sample with 600 permission.
1919
19201999-03-02 Kunihiro Ishiguro <kunihiro@zebra.org>
1921
1922 * Makefile.am: Add -I.. to INCLUDES.
1923
19241999-02-18 Peter Galbavy <Peter.Galbavy@knowledge.com>
1925
1926 * syslog support added
1927
19281999-02-17 Peter Galbavy <Peter.Galbavy@knowledge.com>
1929
1930 * if_sysctl.c (interface_list): allocated memory free when unknown
1931 ifm_type is returned.
1932
1933 * ioctl.c (if_get_mtu): added SIOCGIFDATA treatment.
1934
19351998-12-15 Magnus Ahltorp <map@stacken.kth.se>
1936
1937 * interface.c: Header include added.
1938
19391998-12-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1940
1941 * rt.h (kernel_delete_ipv6): change int index to unsigned int index.
1942
19431998-12-13 Kunihiro Ishiguro <kunihiro@zebra.org>
1944
1945 * if_ioctl.c (interface_list_ioctl): interface flag must be
1946 checked before check addresses of the interface.
1947
19481998-12-07 Kunihiro Ishiguro <kunihiro@zebra.org>
1949
1950 * Makefile.am (INCLUDES): add @INCLUDES@ for Linux IPv6.
1951
19521998-10-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1953
1954 * ioctl.c: Linux version before 2.1.0 need interface route setup.
1955
19561998-09-15 HEO SeonMeyong <seirios@matrix.iri.co.jp>
1957
1958 * change HYDRANGEA to KAME
1959
19601998-09-01 Kunihiro Ishiguro <kunihiro@zebra.org>
1961
1962 * if_ioctl.c (if_addr_ioctl): set address family for getting
1963 interface's address.
1964 (if_get_index): silently return when can't get interface's index.
1965
19661998-08-17 Kunihiro Ishiguro <kunihiro@zebra.org>
1967
1968 * main.c (main): batch mode option '-b' added.
1969
19701998-08-16 Kunihiro Ishiguro <kunihiro@zebra.org>
1971
1972 * ioctl.c (if_set_prefix): add `ip address IPV4ADDR' command.
1973 * interface.c (shutdown_if): add interface shutdown and no
1974 shutdown command.
1975
19761998-08-12 Kunihiro Ishiguro <kunihiro@zebra.org>
1977
1978 * rib.c (rib_add_ipv6): delete rib_add_in6.
1979
19801998-07-27 Kunihiro Ishiguro <kunihiro@zebra.org>
1981
1982 * main.c: retain flag is added.
1983
19841998-07-08 Kunihiro Ishiguro <kunihiro@zebra.org>
1985
1986 * rtable.[ch]: merged with rib.[ch]
1987
19881998-07-07 Kunihiro Ishiguro <kunihiro@zebra.org>
1989
1990 * connected.h: renamed from ifa.h.
1991
19921998-06-09 Kunihiro Ishiguro <kunihiro@zebra.org>
1993
1994 * rename if.c to interface.c
1995 * rename ifa.c to connected.c
1996
1997 * Porting to Debian GNU/Linux 2.0 (hamm).
1998
19991998-06-08 Kunihiro Ishiguro <kunihiro@zebra.org>
2000
2001 * rt_netlink.c: renamed from krt_netlink.c
2002
2003 * fib.c: deleted.
2004 * rt_kvm.c: deleted.
2005 * rtread_getmsg.c: deleted.
2006
20071998-06-07 Kunihiro Ishiguro <kunihiro@zebra.org>
2008
2009 * if.c (multicast): add multicast flag [un]set fucntion.
2010
20111998-05-19 Yamshita TAKAO <jargon@lares.dti.ne.jp>
2012
2013 * rt_socket.c: Modify for compile on Solaris, but dont't work it.
2014 rt_socket.c have some undefined function, so add directive "IMPLEMENT"
2015
20161998-05-18 Yamshita TAKAO <jargon@lares.dti.ne.jp>
2017
2018 * zebra.c: Modify for compile on Solaris.
2019
20201998-05-03 Kunihiro Ishiguro <kunihiro@zebra.org>
2021
2022 * main.c: change CONFDIR to SYSCONFDIR.
2023
20241998-05-01 Kunihiro Ishiguro <kunihiro@zebra.org>
2025
2026 * .cvsignore: added.
2027
20281998-04-02 Kunihiro Ishiguro <kunihiro@zebra.org>
2029
2030 * client.c: moves to ../lib.
2031
20321998-03-30 Kunihiro Ishiguro <kunihiro@zebra.org>
2033
2034 * if_ioctl.c (if_get_addr): Change address copy from memcopy() to
2035 structure assignment.
2036
20371998-03-30 URA Hiroshi <ura@yamato.ibm.co.jp>
2038
2039 * if_sysctl.c (ifm_interface_add): sdl->sdl_data copy bug fixed.
2040
20411998-02-23 "Hannes R. Boehm" <hannes@boehm.org>
2042
2043 * if.c (if_init): add config_exit_cmd and config_help_cmd.
2044
20451998-01-24 Kunihiro Ishiguro <kunihiro@zebra.org>
2046
2047 * rt_ioctl.c (route_ioctl): EPERM treatment added.
2048
20491998-01-05 Kunihiro Ishiguro <kunihiro@zebra.org>
2050
2051 * rt_socket.c (kernel_read): communication port zebra between
2052 kernel is now handled by kernel_read.
2053
20541998-01-02 Kunihiro Ishiguro <kunihiro@zebra.org>
2055
2056 * main.c (main): zebra [-P port] can specify vty port number.
2057
20581997-12-25 Kunihiro Ishiguro <kunihiro@zebra.org>
2059
2060 * zebra.c: change select will be block.
2061
20621997-12-04 Kunihiro Ishiguro <kunihiro@zebra.org>
2063
2064 * add static route treatment.
2065
20661997-11-25 Kunihiro Ishiguro <kunihiro@zebra.org>
2067
2068 * rt_netlink.c: add netlink support over GNU/Linux system.
2069
20701997-11-23 Kunihiro Ishiguro <kunihiro@zebra.org>
2071
2072 * all inet_addr is changed to inet_aton.
2073
2074 * zebra.c (ip_route): add ip route command for static routes.
2075
20761997-11-20 Kunihiro Ishiguro <kunihiro@zebra.org>
2077
2078 * if.c (if_flag_dump): Linux port of if_flag_dump and _vty.
2079
20801997-11-19 Kunihiro Ishiguro <kunihiro@zebra.org>
2081
2082 * if.c: add interface command.
2083
20841997-11-18 Kunihiro Ishiguro <kunihiro@zebra.org>
2085
2086 * ipforward_proc.c : Now works on Linux.
2087
20881997-10-25 Kunihiro Ishiguro <kunihiro@zebra.org>
2089
2090 * command.c : add completion feature.
2091
20921997-10-18 Kunihiro Ishiguro <kunihiro@zebra.org>
2093
2094 * vty.c (vty_command): add vty interface.
2095
20961997-10-13 Kunihiro Ishiguro <kunihiro@zebra.org>
2097
2098 * zebra.c: add verbose mode.
2099
21001997-10-12 SonMyong Ho <s-ho@Matrix.IRI.Co.Jp>
2101
2102 * Hydrangea for FreeBSD supported
2103 * in.h: add some prototype.
2104
21051997-10-11 Kunihiro Ishiguro <kunihiro@zebra.org>
2106
2107 * rt_socket.c and rtread.c completely rewritten.
2108
21091997-10-05 Kunihiro Ishiguro <kunihiro@zebra.org>
2110
2111 * rt_socket.c: rename kernel_sock to routing_socket
2112
21131997-10-04 Kunihiro Ishiguro <kunihiro@zebra.org>
2114
2115 * if.c (if_new): interface structure change from linklist to vector.
2116
21171997-10-03 Kunihiro Ishiguro <kunihiro@zebra.org>
2118
2119 * vector.c (vector_init): create vector related function
2120
21211997-09-25 Kunihiro Ishiguro <kunihiro@zebra.org>
2122
2123 * Makefile.in: add tags target
2124
2125 * start IPv6 support for INRIA FreeBSD.
2126