blob: 4764012c7fe0338f107c2bf66dd4b9cdc8b455e7 [file] [log] [blame]
paulec1a4282005-11-24 15:15:17 +000012005-11-24 Paul Jakma <paul.jakma@sun.com>
2
3 * kernel_socket.h: New header for functions exported to sysctl
4 methods.
5 * kernel_socket.c: include previous.
6 Remove static qualifier from couple of functions which are
7 used by sysctl methods.
8 Add a workaround for a bogus gcc warning to the RTA_ macros.
9 * Makefile.am: Add kernel_socket.h to noinst_HEADERS
10 * if_sysctl.c: include rt.h and kernel_socket.h and remove
11 redundant prototypes.
12 * rtread_sysctl.c: ditto.
13 (route_read) fix mismatch of return values.
14 * {rt,zserv,rib}.h: Include lib headers depended on.
15
paul6621ca82005-11-23 13:02:08 +0000162005-11-23 Paul Jakma <paul.jakma@sun.com>
17
18 * (general) fix some small compile errors, and mark several
19 functions as static.
20 * kernel_socket.c: (ifan_read) should be static.
21 fix missing brackets.
22 (ifm_read,ifam_read,rtm_read_mesg,kernel_read) Make static
23 (ifam_read_mesg) make static. fix incorrect variable name.
24 (rtm_read) make static. Fix call to rib_delete_ipv4 which
25 should be rib_delete_ipv6.
26 (routing_socket,kernel_init) should be static. Void argument
27 should be specified as such, not left incomplete.
28 * rt_netlink.c: rt.h should be included, contains prototypes of
29 exported functions.
30 (kernel_delete_ipv6_old) fix sign of index argument.
31 * rt_socket.c: Exact same as previous. Also, make various
32 functions static.
33 * rtread_getmsg.c: Include zserv.h, which prototypes
34 route_read. Make static.
35 * rtread_sysctl.c: zserv.h and rt.h should be included.
36 fix definition of route_read.
37
paul0fb58d52005-11-14 14:31:49 +0000382005-11-14 Paul Jakma <paul.jakma@sun.com>
39
40 * zebra_rib.c: (rib_process) convert to new workqueue specs and
41 shut up gcc, which complains about cast from void via
42 function parameters, for some dumb reason. Do the cast
43 inside the function instead.
44 (rib_queue_qnode_del) ditto.
45 (rib_queue_init) no need for the casts anymore.
46
paul6fe70d12005-11-12 22:55:10 +0000472005-11-12 Alexander Gall <gall@switch.ch>
48
49 * See [quagga-dev 1815]
50 * kernel_socket.c: (rtm_write) Use SAROUNDUP when HAVE_SIN_LEN
51 is not available.
52 * rt_socket.c: (kernel_rtm_ipv6(_multipath)) set family to
53 AF_INET6 on ipv6 routes.
54
552005-11-12 Paul Jakma <paul.jakma@sun.com>
56
57 * kernel_socket.c: Add RTA_NAME_GET macro to extract name from
58 sockaddr_dl. Add some more RTF_ flags.
59 * (ifan_read) Add some debug messages.
60 * (ifm_read) Add more debug messages. More robust cross-checks
61 of index against name.
62 Fall back to by-name lookup if the index lookup fails, future
63 proofing more than anything else.
64 (ifam_read_mesg) Read RTA_IFP. Add debug messages.
65 (ifam_read) More debug. If there's an RTA_IFP and it isn't
66 the name of the interface, save it as the label.
67 (rtm_read_mesg) Read RTA_IFP.
68 (rtm_read) allow name to be retrieved.
69 (rtmsg_debug) expand on the debug message.
70
paul0994c3a2005-11-11 09:52:40 +0000712005-11-11 Paul Jakma <paul.jakma@sun.com>
72
73 * kernel_socket.c: (ifm_read) arithmetic on void pointer
74 warning.
75 (ifam_read) Fix error from connected-with-label merge,
76 something crept in from the pending Solaris kernel_socket.c
77 patch which shouldn't have.
78
paul0752ef02005-11-03 12:35:21 +0000792005-11-03 Paul Jakma <paul.jakma@sun.com>
80
81 * connected.{c,h}: Include memory.h
82 (connected_add_ipv4) Use MTYPE for ifc label.
83 (connected_add_ipv6) Also should accept label. Store it in ifp.
84 (connected_del_ipv4) Taking label as argument is pointless.
85 * rt_netlink.c: (netlink_interface_addr) update label usage
86 for connected_{add,delete} functions.
87 * if_ioctl.c: (if_getaddrs) NULL label for connected_add_ipv6.
88 * if_ioctl_solaris.c: (interface_list_ioctl) Pass LIFC_NOXMIT
89 so we also find out about NOXMIT interfaces like VNI.
90 Bit of hackery to turn interface names into the primary
91 interface name, later with routing socket messages we only
92 will about primary interfaces anyway, so we must normalise
93 the name.
94 (if_get_addr) take label as argument, so it can
95 be passed to connected_add.
96 If label is provided, then it is interface name to issue the
97 ioctl for address information on, not the ifp name.
98 (interface_list) List AF_UNSPEC too, just in case.
99 * if_proc.c: (ifaddr_proc_ipv6) label for connected_add_ipv6.
100 * interface.c: (if_addr_wakeup) Some very bogus code - sets
101 IFF_RUNNING - add comment.
102 (if_refresh)
103 (ip_address_install) Use MTYPE for ifc label.
104 * ioctl_solaris.c: (if_mangle_up) New function. Hackery to make
105 IFF_UP reflect whether any addresses are left on the
106 interface, as we get signalled for IFF_UP flags change on the
107 primary interface only. Logical interfaces dont generate
108 IFINFO, but we do get an RTM_DELADDR.
109 (if_get_flags) Call if_mangle_up before return.
110 * kernel_socket.c: (ifam_read) Fixup calls to
111 connected_{add,delete} to match above changes. Rename gate
112 variable to brd, less confusing.
113 Pass the interface name as a label, if it is not same name
114 as ifp->name.
115
pauld06b2a62005-10-11 03:53:54 +00001162005-10-11 Paul Jakma <paul.jakma@sun.com>
117
118 * connected.{c,h}: (connected_{add,delete}_ipv4) label should
119 be const qualified.
120
ajsc05612b2005-10-01 16:36:54 +00001212005-10-01 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
122
ajsf52d13c2005-10-01 17:38:06 +0000123 * zebra_vty.c: (route_type_str) Remove obsolete function: use new
124 library function zebra_route_string() instead. Note that there
125 are a few differences: for IPv6 routes, we now get "ripng" and
126 "ospf6" instead of the old behavior ("rip" and "ospf").
127 (route_type_char) Remove obsolete function: ues new library function
128 zebra_route_char() instead. Note that there is one difference:
129 the old function returned 'S' for a ZEBRA_ROUTE_SYSTEM route,
130 whereas the new one returns 'X'.
131 (vty_show_ip_route_detail,vty_show_ipv6_route_detail) Replace
132 route_type_str() with zebra_route_string().
133 (vty_show_ip_route,vty_show_ipv6_route) Replace route_type_char()
134 with zebra_route_char().
135
1362005-10-01 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
137
ajsc05612b2005-10-01 16:36:54 +0000138 * rt_netlink.c: (netlink_request) Use memset to clear structure
139 before calling sendto (eliminates a valgrind error message about
140 uninitialized data).
vincentaa2e32b2005-09-28 13:42:11 +0000141
1422005-09-28 Alain Ritoux <alain.ritoux@6wind.com>
143
vincentfbf5d032005-09-29 11:25:50 +0000144 * zserv.c: Always provied distance for route add
145
1462005-09-28 Alain Ritoux <alain.ritoux@6wind.com>
147
vincentaa2e32b2005-09-28 13:42:11 +0000148 * connected.c: flag connected_up_ipv6() and connected_down_ipv6()
149 usage with HAVE_IPV6
150
hassod24af182005-09-24 14:00:26 +00001512005-09-24 Hasso Tepper <hasso at quagga.net>
152
153 * rib.h: Add note about behaviour of rib_add_ipv[46]* functions -
154 add is treated as implicit withdraw.
155
hassoebf1ead2005-09-21 14:58:20 +00001562005-09-21 David Young <dyoung@ojctech.com>
157
158 * zebra_rib.c: Reduce the height of some staircases. Fix
159 rib_delete_ipv6() to match routes in the RIB by their gateway as
160 well as by destination.
161
paul319572c2005-09-21 12:30:08 +00001622005-09-21 Paul Jakma <paul.jakma@sun.com>
163
164 * zebra_rib.c: (static_uninstall_ipv{4,6}) Fix regression wrt
165 removal of static routes with multiple-hops introduced with
166 the workqueue conversion. We should free the relevant
167 nexthop and then get rib_process to run, otherwise we just
168 get same static route back again (with no way to unconfigure
169 it, because its already deleted from configuration).
170
paulca162182005-09-12 16:58:52 +00001712005-09-12 Paul Jakma <paul.jakma@sun.com>
172
173 * (general) RTM_CHANGE and implicit withdraw on RTM_NEWADDR
174 support.
175 * connected.c: (connected_withdraw) new function. withdraw a
176 connected subnet address set from zebra, and pass information
177 along to clients.
178 (connected_announce) similar, but to announce a new connected
179 subnet address set.
180 (connected_check_ipv4) renamed to connected_check, as its
181 AFI independent.
182 (connected_add_ipv{4,6}) Remove the connected address announce
183 stuff, use connected_announce instead.
184 If connected_check indicates address is already present,
185 treat it as an implicit withdraw of the existing address, ie
186 remove the old address details and replace with the new
187 details.
188 (connected_delete_ipv{4,6}) Use connected_withdraw.
189 (connected_check_ipv6) deleted in favour of connected_check.
190 * connected.h: Rename connected_check_ipv4 to connected_check.
191 delete connected_check_ipv6.
192 * interface.c: Use connected_check rather than the AFI specific
193 symbols.
194 * kernel_socket.c: (rtm_read) RTM_CHANGE support. Create a
195 rib delete event for the existing route, before adding route
196 again.
197 (kernel_read) we can handle RTM_CHANGE now.
198
hassobe61c4e2005-08-27 06:05:47 +00001992005-08-27 Hasso Tepper <hasso at quagga.net>
200
201 * zebra_rib.c, rib.h: Add distance and metric arguments to the
202 rib_add_ipv6() function so that IPv6 routes in RIB can have correct
203 metric. No IPv6 routing daemon uses distance yet though.
204 * zserv.c, connected.c, kernel_socket.c, rt_netlink.c,
205 rtread_proc.c,zserv.c: Pass metric and distance info to the
206 rib_add_ipv6().
207
paul6eb88272005-07-29 14:36:00 +00002082005-07-29 Paul Jakma <paul.jakma@sun.com>
209
210 * interface.c: (if_delete_update) should always be available, not
211 just on RTM_IFANNOUNCE/NETLINK systems.
212 * kernel_socket.c: (ifan_read) only call if_delete_update when
213 interface departs, dont if_delete, because we wish to retain
214 interface configuration state even when interfaces are removed.
215 (ifm_read) If we dont have RTM_IFANNOUNCE, then transitioning
216 to down state is only chance we have to clean up interface in case
217 it is deleted (eg Solaris down -> unplumb -> plumb up).
218 * redistribute.c: (zebra_interface_delete_update) should always be
219 available, we /will/ call it now on all systems, via
220 if_delete_update.
221 * zserv.c: (zsend_interface_delete) ditto
222 (zsend_interface_address) Update the call-flow diagramme, to
223 reflect that if_delete_update /is/ now called on all systems,
224 potentially.
225 * zserv.h: (zsend_interface_delete) unconditionally exported, as
226 above.
227
paula1ac18c2005-06-28 17:17:12 +00002282005-06-28 Paul Jakma <paul.jakma@sun.com>
229
230 * (global) Extern and static'ification, with related fixups
231 of declarations, ensuring files include their own headers, etc.
paulea6f82b2005-06-28 17:20:26 +0000232 * if_ioctl.c: (interface_info_ioctl) fix obvious arg mis-order in
paula1ac18c2005-06-28 17:17:12 +0000233 list loop
paulea6f82b2005-06-28 17:20:26 +0000234 * kernel_socket.c: (RTA_{ADDR,ATTR}_GET) fix mistake, NULL check
235 should be on DEST argument
paula1ac18c2005-06-28 17:17:12 +0000236
paul62debbb2005-06-14 14:07:07 +00002372005-06-14 Paul Jakma <paul.jakma@sun.com>
238
239 * kernel_socket.c: consolidate the IFAM{ADDR,MASK}GET and
240 RTM{ADDR,MASK}GET macros into generic rta_addrs macros,
241 RTA_{ADDR,ATTR}_GET.
242 (af_check) could use 'inline' attribute
243 (ifam_read_mesg) remove IFAM{ADDR,MASK}GET macro, change to
244 generic macro.
245 (rtm_read_mesg) similar
246
hasso1ada8192005-06-12 11:28:18 +00002472005-06-12 Hasso Tepper <hasso at quagga.net>
248
249 * rt_netlink.c: Remove netlink-addr socket declaration, it's not used.
250 * rt_netlink.c (netlink_parse_info): Fix debug messages - nlmsg_pid is
251 unsigned and one zlog call had swapped arguments.
252 * rt_netlink.c (netlink_route_multipath): Fix compile with disabled
253 IPv6 support.
254
paul1dcb5172005-05-31 08:38:50 +00002552005-05-31 Paul Jakma <paul.jakma@sun.com>
256
257 * zserv.c: (zsend_route_multipath) Fix bug if route is sent
258 with no NEXTHOP_FLAG_FIB nexthops. As ZAPI_MESSAGE_IFINDEX
259 and ZAPI_MESSAGE_NEXTHOP are always set, clients would try
260 read non-existent nexthop information and hit stream assert.
261 Zserv is still broken for multi-nexthop messages, but it always was.
262
paul69e10ad2005-05-06 21:27:33 +00002632005-05-06 Paul Jakma <paul.jakma@sun.com>
264
265 * zserv.h: Remove ZEBRA_PORT definition, its in lib/zebra.h now
266
paul4d38fdb2005-04-28 17:35:14 +00002672005-04-28 Paul Jakma <paul.jakma@sun.com>
268
269 * rib.h: (struct rib) Add lock field for refcounting.
270 * zserv.h: (struct zebra_t) Add a ribq workqueue to the zebra
271 'master' struct.
272 * zserv.c: (zread_ipv4_add) XMALLOC then memset should be XCALLOC.
273 * zebra_rib.c: Clean up refcounting of route_node, make struct rib
274 refcounted and convert rib_process to work-queue. In general,
275 rib's should be rib_addnode'd and delnode'd to route_nodes, and
276 these symmetrical functions will manage the locking of referenced
277 route_node and freeing of struct rib - rather than having users
278 manage each seperately - with much scope for bugs..
279 (newrib_free) removed and replaced with rib_lock
280 (rib_lock) new function, check state of lock and increment.
281 (rib_unlock) new function, check lock state and decrement. Free
282 struct rib if refcount hits 0, freeing struct nexthop's, as
283 newrib_free did.
284 (rib_addnode) Add RIB to route_node, locking both.
285 (rib_delnode) Delete RIB from route_node, unlocking each.
286 (rib_process) Converted to a work-queue work function.
287 Functional changes are minimal, just arguments, comments and
288 whitespace.
289 (rib_queue_add_qnode) Helper function to setup a ribq item.
290 (rib_queue_add) Helper function, same arguments as old
291 rib_process, to replace in callers of rib_process.
292 (rib_queue_qnode_del) ribq deconstructor.
293 (rib_queue_init) Create the ribq.
294 (rib_init) call rib_queue_init.
295 (remainder) Sanitise refcounting of route_node's. Convert to
296 rib_queue_add, rib_addnode and rib_delnode. Change XMALLOC/memset
297 to XCALLOC. Remove calls to nexthop_delete and nexthop_free.
298
paulcf460ef2005-04-10 16:54:26 +00002992005-04-10 Paul Jakma <paul@dishone.st>
300
301 * if_ioctl_solaris.c: (if_lookup_linklocal) fix order of args
302 in ALL_LIST_ELEMENTS_RO macro.
303
ajs57a14772005-04-10 15:01:56 +00003042005-04-10 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
305
306 * zserv.c (zebra_client_read): Fix bug: first read attempt should
307 read ZEBRA_HEADER_SIZE minus the number of bytes already read.
308 Improve efficiency by maintaining a calculation of the number
309 of bytes read instead of calling stream_get_endp multiple times.
310 If message length is too small, issue a warning message (not debug)
311 before closing the connection. And also check that message length
312 is not too big.
313
hasso206d8052005-04-09 16:38:51 +00003142005-04-09 Hasso Tepper <hasso at quagga.net>
315
hassofa599802005-04-09 16:59:28 +0000316 * rt_netlink.c: One tiny missing comma caused pointless debug messages
317 about IPv6 nexthops.
318
3192005-04-09 Hasso Tepper <hasso at quagga.net>
320
hasso206d8052005-04-09 16:38:51 +0000321 * rt_netlink.c (netlink_parse_info): Fix warning. It's safe to cast
322 status to unsigned here, because we already checked that it isn't
323 negative or 0.
324 * rt_netlink.c (netlink_interface_addr): Prefix length belongs to the
325 address, not to the interface.
326 * rt_netlink.c (netlink_route_multipath): Fix debug. No useless info
327 is printed out now and IPv6 info is handeled.
328
paul3d1dc852005-04-05 00:45:23 +00003292005-04-05 Paul Jakma <paul@dishone.st>
330
331 * zserv.c: print more helpful errors when we fail to successfully
332 bind and listen on zserv socket. Closes bugzilla #163.
333
ajsd2fc8892005-04-02 18:38:43 +00003342005-04-02 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
335
ajs08dbfb62005-04-03 03:40:52 +0000336 * if_ioctl.c: (interface_list_ioctl) Use if_get_by_name_len.
337 * if_proc.c: (ifaddr_proc_ipv6) Increase size of ifname buffer to
338 avoid overflow.
339 * kernel_socket.c: (ifan_read) Use if_get_by_name_len.
340
3412005-04-02 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
342
ajsa3491982005-04-02 22:50:38 +0000343 * kernel_socket.c: (ifm_read) Use new if_lookup_by_name_len function
344 to save a memcpy.
345 * if_ioctl_solaris.c: (interface_list_ioctl) Fix subtle bug with new
346 if_get_by_name_len function.
347
3482005-04-02 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
349
ajsd2fc8892005-04-02 18:38:43 +0000350 * interface.c: (if_new_intern_ifindex) Remove obsolete function.
351 (if_delete_update) After distributing the interface deletion message,
352 set ifp->ifindex to IFINDEX_INTERNAL.
353 (if_dump_vty) Detect pseudo interface by checking if ifp->ifindex is
354 IFINDEX_INTERNAL.
355 (zebra_interface) Check return code from interface_cmd.func.
356 Do not set internal ifindex values to if_new_intern_ifindex(),
357 since we now use IFINDEX_INTERNAL for all pseudo interfaces.
358 * kernel_socket.c: (ifm_read) Fix code and comments to reflect that
359 all internal interfaces now have ifp->ifindex set to IFINDEX_INTERNAL.
360 * rt_netlink.c: (set_ifindex) New function used to update ifp->ifindex.
361 Detects interface rename events by checking if that ifindex is already
362 being used. If it is, delete the old interface before assigning
363 the ifindex to the new interface.
364 (netlink_interface, netlink_link_change) Call set_ifindex to update
365 the ifindex.
366
hassob7ed1ec2005-03-31 20:13:49 +00003672005-03-31 Hasso Tepper <hasso at quagga.net>
368
369 * rt_netlink.c (netlink_talk_filter): Show always warning message,
370 it's not for debug.
371 * rt_netlink.c (netlink_talk): Don't assume we use netlink_cmd
372 although we do now actually.
373 * rt_netlink.c (netlink_route, netlink_route_multipath): Always use
374 netlink_cmd to send messages to the kernel.
375
ajs2da40f42005-03-30 16:33:13 +00003762005-03-30 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
377
378 * irdp.h: Add prototype for irdp_sock_init, and fix protos for
379 other irdp_* functions.
380 * irdp_interface.c: (irdp_if_start) If irdp_sock is negative,
381 call irdp_sock_init to create the IRDP socket.
382 (irdp_if_init) Rename to irdp_init().
383 (get_iflist_ifp) Remove function that is a duplicate of
384 if_lookup_by_index.
385 (*) Make many functions static. And remove superfluous "\n" from
386 several zlog messages.
387 * irdp_main.c: (irdp_init) Remove function that used to call
388 irdp_if_init() and irdp_sock_init(), since we will now create
389 the socket only upon first use.
390 (irdp_sock_init) Do not update global irdp_sock variable, just
391 return the fd and assume that the caller will do so. If setsockopt
392 calls fail, close the socket before returning -1.
393 (*) Make many functions static.
394 * irdp_packet.c: Initialize irdp_sock to -1.
395 (irdp_read_raw) Call standard library function if_lookup_by_index
396 instead of get_iflist_ifp.
397 (irdp_recvmsg) Should be static, not global.
398
ajsa608bbf2005-03-29 17:03:49 +00003992005-03-29 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
400
401 * rt_netlink.c: (netlink_link_change) If the status of an
402 operative interface changes (e.g. MTU changes), the client
403 daemons should be notified by calling zebra_interface_up_update.
404 Previously, the information was being updated in zebra's
405 interface structure, but the clients were not notified of
406 changes to an operative interface.
407
vincent7cee1bb2005-03-25 13:08:53 +00004082005-03-25 Jean-Mickael Guerin <jean-mickael.guerin@6wind.com>
409 * interface.c, interface.h, rtadv.c, rtadv.h: modifications to
410 IPv6 Neighbor Discovery according to RFC3775, section 7:
411 o 1-bit Home Agent flag management in Router Advertisement (7.1).
412 o 1-bit Router Address flag management in Prefix Information
413 Option (7.2).
414 o Advertisement Interval Option (7.3)
415 o Home Agent Information Option (7.4)
416 o Changes to Sending Router Advertisements more frequently (7.5)
417
hassoed9bb6d2005-03-13 19:17:21 +00004182005-03-13 Hasso Tepper <hasso at quagga.net>
419
420 * zebra/interaface.c: "show interface description" command
421 implemented.
422
paulc1f01f32005-03-12 06:33:14 +00004232005-03-12 Paul Jakma <paul@dishone.st>
424
425 * rt_netlink.c: (netlink_route_multipath) dont set equalise flag.
426 No stock Linux kernel has ever supported it, and even if it had
427 it's not generally a good idea.
428
hasso42a66d72005-03-07 08:19:44 +00004292005-03-07 Michael Sandee <voidptr@voidptr.sboost.org>
430
431 * if_proc.c, ipforward_proc.c, rtread_proc.c: Fix fd leaks.
432
hasso3452d472005-03-06 13:42:05 +00004332005-03-06 Hasso Tepper <hasso at quagga.net>
434
435 * interface.c: Fix CRC and frame errors statistics in Linux.
436
ajs719e9742005-02-28 20:52:15 +00004372005-02-28 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
438
439 * zserv.c: Must include network.h and buffer.h for non-blocking I/O.
440 Remove global message_queue and t_write (need separate buffering for
441 each client).
442 (zebra_server_dequeue,zebra_server_enqueue) Remove functions
443 related to old buggy buffering code.
444 (zserv_delayed_close) New thread callback function to delete a client.
445 (zserv_flush_data) New thread callback function to flush buffered
446 data to client.
447 (zebra_server_send_message) Rewritten to use buffer_write (so
448 buffering of writes and non-blocking I/O work properly).
449 (zsend_interface_add,zsend_interface_delete,zsend_interface_address,
450 zsend_interface_update) Return 0 instead of -1 if !client->ifinfo
451 (this is not really an error). Return value from
452 zebra_server_send_message.
453 (zsend_route_multipath,zsend_ipv4_nexthop_lookup,
454 zsend_ipv4_import_lookup) Return value from zebra_server_send_message.
455 (zsend_ipv6_nexthop_lookup) Fix scope to static, and return value
456 from zebra_server_send_message.
457 (zsend_router_id_update) Must use zebra_server_send_message instead
458 of deprecated writen function. Return 0 instead of -1 if this client
459 is not subscribed to router-id updates (since this is not really
460 an error).
461 (zread_interface_add) Change type to static int. If
462 zsend_interface_add fails or zsend_interface_address fails, return -1
463 immediately (since the client has had an I/O error).
464 (zread_interface_delete,zread_ipv4_add,zread_ipv4_delete,
465 zread_ipv6_add,zread_ipv6_delete,zread_router_id_delete) Return 0
466 to indicate success.
467 (zread_ipv4_nexthop_lookup) Return value from
468 zsend_ipv4_nexthop_lookup.
469 (zread_ipv4_import_lookup) Return value from zsend_ipv4_import_lookup.
470 (zebra_read_ipv6) Remove unused function.
471 (zread_ipv6_nexthop_lookup) Return value from
472 zsend_ipv6_nexthop_lookup.
473 (zread_router_id_add) Return value from zsend_router_id_update.
474 (zebra_client_close) Call buffer_free(client->wb) and
475 thread_cancel(client->t_suicide).
476 (zebra_client_create) Allocate client->wb using buffer_new.
477 (zebra_client_read) Support non-blocking I/O by using stream_read_try.
478 Use ZEBRA_HEADER_SIZE instead of 3.
479 (zebra_accept) Fix bug: reset accept thread at top. Make client
480 socket non-blocking using the set_nonblocking function.
481 (config_write_forwarding) Fix scope to static.
482 (zebra_init) Remove initialization code for old buggy write buffering.
483 * zserv.h: Add 2 new fields to struct zserv: struct buffer *wb
484 (to enable buffered writes with non-blocking I/), and
485 struct thread *t_suicide to support delayed close on I/O
486 errors.
487 * router-id.h: Remove prototypes for zread_router_id_add and
488 zread_router_id_delete (their scope should be static to zserv.c).
489
ajs27da3982005-02-24 16:06:33 +00004902005-02-24 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
491
492 * redistribute.c: (zebra_check_addr,is_default,
493 zebra_redistribute_default,zebra_redistribute) Fix scope to be static.
494
hassoe8274dc2005-02-20 19:09:23 +00004952005-02-20 Hasso Tepper <hasso at quagga.net>
496
497 * rt_netlink.c: Don't show messages "ignoring message type 0x001[89]"
498 if we are not debugging.
499
paule31f2292005-02-19 02:00:26 +00005002005-02-19 Paul Jakma <paul@dishone.st>
501
502 * zserv.c: (zebra_read_ipv6) replace the char * arithmetic with
503 STREAM_READABLE.
504
paul1e193152005-02-14 23:53:05 +00005052005-02-14 Paul Jakma <paul@dishone.st>
506
507 * Not all Linux netlink systems have IFLA_WIRELESS
508
ajs6a52d0d2005-01-30 18:49:28 +00005092005-01-30 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
510
511 * ioctl.c: (if_ioctl,if_ioctl_ipv6,if_get_flags) Replace perror with
512 zlog_err.
513 * ioctl_solaris.c: (if_ioctl,if_ioctl_ipv6) Replace perror with
514 zlog_err.
515
ajs4be019d2005-01-29 16:12:41 +00005162005-01-29 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
517
ajs4460e7a2005-01-29 17:07:40 +0000518 * if_ioctl_solaris.c: (interface_list_ioctl) Save errno before calling
519 zserv_privs.change.
520 * ioctl{,_solaris}.c: (if_ioctl,if_ioctl_ipv6) Save errno before calling
521 zserv_privs.change.
522 * ipforward_solaris.c: (solaris_nd) Save errno before calling
523 zserv_privs.change.
524 * irdp_main.c: (irdp_sock_init) Save errno before calling
525 zserv_privs.change.
526
5272005-01-29 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
528
ajs4be019d2005-01-29 16:12:41 +0000529 * rt_netlink.c: (netlink_socket,netlink_request,netlink_parse_info,
530 netlink_talk) Save errno before calling zserv_privs.change.
531
paulc15cb242005-01-24 09:05:27 +00005322005-01-24 Martin Pot <mpot at martybugs.net>
533
534 * zebra/rt_netlink.c: ignore wireless newlink netlink messages.
535
hasso6f2c27a2005-01-18 13:44:35 +00005362005-01-18 Hasso Tepper <hasso at quagga.net>
537
538 * interface.c: Better statistics output in "show interface" command in
539 case of /proc being used.
540
hasso583d8002005-01-16 23:34:02 +00005412005-01-17 Hasso Tepper <hasso at quagga.net>
542
543 * main.c: With --nl-bufsize argument is required.
544
paul865b8522005-01-05 08:30:35 +00005452005-01-05 Paul Jakma <paul@dishone.st>
546
547 * zserv.c: (zebra_accept) Comment out setting of socket to NONBLOCK
548 for now, as we dont actually deal with with resending.... See
549 bugzilla #122, fix from wawa@yandex-team.ru (Vladimir Ivanov).
550 * kernel_socket.c: (routing_socket) ditto.
551
ajsb99760a2005-01-04 16:24:43 +00005522005-01-04 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
553
554 * rtadv.c: (rtadv_recv_packet,rtadv_send_packet) Use ZCMSG_FIRSTHDR
555 instead of CMSG_FIRSTHDR.
556
ajs341a8f12004-12-22 16:32:16 +00005572004-12-22 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
558
559 * connected.c: (connected_add_ipv4) Limit warning about /32 addresses
560 with no peer specified to PtP interfaces only.
561
hassob8adec12004-12-18 16:03:28 +00005622004-12-18 Hasso Tepper <hasso at quagga.net>
563
564 * zebra_vty.c: Fix "show ipv6 route <proto>" command help and make it
565 work for isis routes.
566
gdt6a250b02004-12-09 14:48:12 +00005672004-12-09 Greg Troxel <gdt@fnord.ir.bbn.com>
568
569 * kernel_socket.c (rtmsg_debug): char * => const char *
570
ajs274a4a42004-12-07 15:39:31 +00005712004-12-07 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
572
ajsb6178002004-12-07 21:12:56 +0000573 * *.c: Change level of debug messages to LOG_DEBUG.
574
5752004-12-07 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
576
ajs274a4a42004-12-07 15:39:31 +0000577 * main.c: (main) The 2nd argument to openzlog has been removed.
578 So stdout logging will no longer be enabled by default.
579 * irdp_main.c: (irdp_finish) Reduce severity of shutdown message
580 from LOG_WARNING to LOG_INFO.
581
ajs887c44a2004-12-03 16:36:46 +00005822004-12-03 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
583
584 * main.c: (sigint) Use zlog_notice for termination message.
585 (main) Add a startup announcement using zlog_notice.
586
hassoaccb1562004-11-25 19:21:07 +00005872004-11-25 Hasso Tepper <hasso at quagga.net>
588
589 * irdp_interface.c: Remove comment from DEFUN, it breaks vtysh because
590 it confuses extract.pl.
hassoc0652302004-11-25 19:33:48 +0000591 * main.c: Make group to run as configurable.
hassoaccb1562004-11-25 19:21:07 +0000592
hasso6bd7c6a2004-10-28 17:32:27 +00005932004-10-28 Hasso Tepper <hasso at quagga.net>
594
595 * interface.c: Remove dead "ip tunnel" command.
596
paul06f953f2004-10-22 17:00:38 +00005972004-10-22 Paul Jakma <paul@dishone.st>
598
599 * irdp_main.c: change setsockopt_pktinfo to setsockopt_ifindex
600
hasso3fb9cd62004-10-19 19:44:43 +00006012004-10-19 Andrew J. Schorr <aschorr@telemetry-investments.com>
602
603 * rt_netlink.c: (netlink_interface_addr) For PtP interfaces, ignore
604 tb[IFA_ADDRESS] if it's the same as tb[IFA_LOCAL].
605 * interface.c: (ip_address_install) Use new ipv4_broadcast_addr
606 function.
607 * connected.c: (connected_up_ipv4) Use CONNECTED_POINTOPOINT_HOST
608 macro.
609 (connected_down_ipv4) ditto.
610 (connected_add_ipv4) Validate destination address, print warnings
611 if it does not make sense.
612
hassoc1eaa442004-10-19 06:26:01 +00006132004-10-19 Hasso Tepper <hasso at quagga.net>
614
615 * zserv.c: Fix regression introduced with zserv cleanup.
616
hassoc75105a2004-10-13 10:33:26 +00006172004-10-13 Hasso Tepper <hasso at quagga.net>
618
619 * zebra_snmp.c: Remove defaults used to initialize smux connection to
620 snmpd. Connection is initialized only if smux peer is configured.
hassob71f00f2004-10-13 12:20:35 +0000621 * zserv.c: Remove useless warnings "forwarding is already on".
hassoc75105a2004-10-13 10:33:26 +0000622
hasso39ff11d2004-10-12 15:55:19 +00006232004-10-12 Hasso Tepper <hasso at quagga.net>
624
625 * zebra_vty.c: Unbreak "show ip route" command help and make it work
626 for isis routes.
hasso39db97e2004-10-12 20:50:58 +0000627 * interface.c(if_dump_vty): Show IPv6 addresses in "show interface"
628 output. Fixes Bugzilla #119.
629 * *.c: Make some strings const and some (unsigned) casts to fix
630 compiler warnings.
hasso39ff11d2004-10-12 15:55:19 +0000631
hassofce954f2004-10-07 20:29:24 +00006322004-10-07 Hasso Tepper <hasso at quagga.net>
633
634 * connected.c, main.c, rt_netlink.c, rtadv.c, zebra_rib.c, zserv.c:
635 Fix warnings: make strings const, signed -> unsigned.
636
paul72164662004-10-05 14:39:43 +00006372004-10-05 Paul Jakma <paul@dishone.st>
638
639 * irdp_packet.c: (parse_irdp_packet) style issues.
640 Use sockopt_iphdrincl_swab_systoh.
641 Try unbork the code. Checksum the ICMP data and actually
642 compare it to received checksum. Check data length against
643 claimed length in header.
644 Always use ntoh.. when accessing addresses, even when the
645 comparison happens to be endian-safe.
646 (send_packet) minor style isues. Use
647 sockopt_iphdrincl_swab_htosys.
648 (irdp_iph_hton/ntoh) IP header to/from network/host order.
649
hassoeef1fe12004-10-03 18:46:08 +00006502004-10-03 Gilad Arnold <gilad.arnold at terayon.com>
651
652 * interface.c, interface.h: A new prefix tree of connected subnets is
653 associated with each interface structure in zebra, in which each
654 live (ie, non-synthetic) node holds a list of installed addresses
655 that belong to that prefix. Remove secondary address logic from cli.
656 See [quagga-dev 872] for detailed explanation.
657 * connected.c: Use if_subnet_add() and if_subnet_delete().
658
hasso18a6dce2004-10-03 18:18:34 +00006592004-10-03 James R. Leu <jleu at mindspring.com>
660
661 * router-id.c, router-id.h: New files. Router id selection process. If
662 there is non 127.x.x.x address in loopack interface, lowest of them
663 is chosen. If there isn't, lowest from other interfaces addresses
664 are chosen. "router-id x.x.x.x" vty command to manual override.
665 * Makefile.am: Compile new files.
666 * main.c: Initialize router id.
667 * redistribute.c: Add interface addresses into router id selection
668 lists as they (dis)appear.
669 * zserv.c, zserv.h: Sending router id related messages to daemons.
670
hassoc9e52be2004-09-26 16:09:34 +00006712004-09-26 Hasso Tepper <hasso at quagga.net>
672
673 * irdp_interface.c, irdp_main.c, irdp_packet.c, rt_netlink.c,
674 rtadv.c, zebra_vty.c: Fix compiler warnings.
675
paul0c0f9112004-09-24 08:24:42 +00006762004-09-24 Paul Jakma <paul@dishone.st>
677
paul26f7a242004-09-24 08:45:10 +0000678 * irdp_interface.c: (no_ip_irdp_address_preference_cmd)
679 add missing listnode declaration.
680
6812004-09-24 Paul Jakma <paul@dishone.st>
682
paul0c0f9112004-09-24 08:24:42 +0000683 * irdp_{interface,main}.c: lists typedef removal cleanup.
684 update some list loops to LIST_LOOP. some miscellaneous style
685 and indent fixups.
686 (no_ip_irdp_address_preference_cmd) Fix delete of referenced node
paul26f7a242004-09-24 08:45:10 +0000687 in loop.
paul0c0f9112004-09-24 08:24:42 +0000688 * irdp_packet.c: (irdp_recvmsg) Fix buggy assignment of integer
689 to pointer.
690 * if_ioctl{,_solaris}.c: lists typedef removal cleanup.
691 update some list loops to LIST_LOOP.
692
hasso52dc7ee2004-09-23 19:18:23 +00006932004-09-23 Hasso Tepper <hasso at quagga.net>
694
695 * *.[c|h]: list -> struct list *, listnode -> struct listnode *.
696
paul44983cf2004-09-22 13:15:58 +00006972004-09-22 Paul Jakma <paul.jakma@sun.com>
698
699 * zserv.c: (zsend_route_multipath) fix nasty bad memset of struct
700 in_addr to sizeof(struct in6_addr), causing odd and hard to debug
701 crash.
702
hassoc34b6b52004-08-31 13:41:49 +00007032004-08-31 Hasso Tepper <hasso at quagga.net>
704
705 * main.c, rt_netlink.c: Added -s command line switch for tuning
706 netlink receive buffer size in Linux to avoid buffer overruns.
707
gdta5ea6872004-08-26 13:24:00 +00007082004-08-26 Miles Nordin <carton@Ivy.NET>
709
710 * ipforward_sysctl.c (mib_ipv6): Use size_t for len, per
711 sysctl(3), rather than int. (Needed on NetBSD/alpha to display
712 forwarding status correctly.)
713
paul3e0b3a52004-08-23 18:58:32 +00007142004-08-23 Paul Jakma <paul@dishone.st>
715
716 * zserv.c: (zebra_init) remove implicit ip forward enabling
717
paul0de1cde2004-08-19 04:45:33 +00007182004-08-19 Paul Jakma <paul@dishone.st>
719
720 * irdp_main.c: update to match sockopt renames.
721 * irdp_packet.c: include sockopt.h and update to match sockopt
722 renames.
723
gdt57492d52004-08-11 18:06:38 +00007242004-08-11 Greg Troxel <gdt@fnord.ir.bbn.com>
725
726 * rtadv.c (rtadv_send_packet): Allocate space for control messages
727 more carefully; it was wrong on NetBSD/sparc where CMSG alignment
728 is to 8 bytes instead of 4, and overwriting the address. Use the
729 provided macros for determining lengths.
730
paul5b73a672004-07-23 15:26:14 +00007312004-07-23 Sowmini Varadhan <Sowmini.Varadhan@Sun.COM>
732
733 * if_ioctl_solaris.c: HAVE_IPV6 ifdef fixups
734 * zserv.c: ditto
735 * ioctl_solaris.c: ditto.
736 * interface.c: cast for LLADDR
737 * interface.h: Add guards, include redistribute.h and remove
738 extraneous definitions of zebra_interface_{up,down}_update
739 * ioctl.h: Add AF_IOCTL define for non SOLARIS_IPV6
740 * redistribute.h: include dependent header, zserv.h
741 * zserv.h: include dependent header, rib.h
742
paul1470baf2004-07-23 15:25:01 +00007432004-07-23 Paul Jakma <paul@dishone.st>
744
745 * irdp_main.c: use setsockopt_pktinfo_ipv4
746 * irdp_packet.c: use SOPT_SIZE_CMSG_PKTINFO_IPV4 and
747 getsockopt_pktinfo_ifindex()
748
gdtcced60d2004-07-13 16:45:54 +00007492004-07-13 David Wiggins <dwiggins@bbn.com
750
751 * kernel_socket.c (rtm_flag_dump): terminate buffer with '\0', not '0'.
752
hasso25dac852004-07-13 03:06:51 +00007532004-07-13 Hasso Tepper <hasso@estpak.ee>
754
755 * irdp_main.c: Add privilege change.
756
hasso996933f2004-07-12 16:32:56 +00007572004-07-12 Hasso Tepper <hasso@estpak.ee>
758
759 * irdp_interface.c: follow common style while naming vty command
760 functions. Avoids confusion in extract.pl.
761
gdt87efd642004-06-30 17:36:11 +00007622004-06-30 Greg Troxel <gdt@poblano.ir.bbn.com>
763
764 * main.c: define thread_master variable so that linking with
765 libzebra.so doesn't fail. Arguably zclient.o should be in a
766 separate library, but this is far less disruptive.
767
hassoca776982004-06-12 14:33:05 +00007682004-06-12 Robert Olsson <Robert.Olsson at data.slu.se>
769
770 * Added IRDP support.
771
hasso3e31cde2004-05-18 11:58:59 +00007722004-05-18 Hasso Tepper <hasso@estpak.ee>
773
774 * rtadv.c: Removed "[no] ipv6 nd send-ra" command. Replaced "ipv6 nd
775 prefix-advertisement" with "ipv6 nd prefix". Rewrite syntax of
776 "ipv6 nd prefix" command to allow various combinations of parameters
777 and flags. No defaults in configuration. Replaced on-link and
778 autoconfig with off-link and no-autoconfig flags in command syntax.
779 Cosmetic fixes in all commands. Documentation to reflect all changes.
780
paul19877dd2004-05-11 10:49:35 +00007812004-05-11 Paul Jakma <paul@dishone.st>
782
783 * Makefile.am: support for IOCTL_METHOD, as per Sowmini's patch.
paul48a46fa2004-05-11 10:55:22 +0000784 * if_ioctl_solaris.c: Fixup some erroneous privilege changes and
785 add privs.h header.
786 * ioctl_solaris.c: ditto
paulc50ae8b2004-05-11 11:31:07 +0000787 * ioctl.h: Add if_ioctl_ipv6 prototype and AF_IOCTL for SOLARIS_IPV6
788 * kernel_socket.c: Fix SAROUNDUP, compiler doesnt like do..while
789 RHS in assignments :)
790 * redistribute.c: (zebra_interface_delete_update) only used
791 if RTM_IFANNOUNCE and NETLINK is available.
792
paulb9df2d22004-05-09 09:09:59 +00007932004-05-09 Paul Jakma <paul@dishone.st>
794
795 * zserv.c: (zsend_route_multipath) Set the nexthop_num
796 field correctly. Add NEXTHOP_TYPE_IPV6_IFNAME for v6.
797 Conditionally set ZAPI_MESSAGE_METRIC flag - only for adds.
798 (zsend_ipv4_add) cruft, deleted.
799 (zsend_ipv4_delete) ditto.
800 (zsend_ipv6_add) ditto.
801 (zsend_ipv6_delete) ditto.
paul44145db2004-05-09 11:00:23 +0000802 * ioctl.c: (if_get_mtu) set mtu6 to mtu
803 * mtu_kvm.c: (if_kvm_get_mtu) set mtu6 to mtu
804 * rt_netlink.c: (netlink_interface) set mtu6 to mtu
805 (netlink_link_change) ditto
paul66e94882004-05-09 17:19:24 +0000806 * ipforward_solaris.c: fix typo of ND variable.
paul88424682004-05-09 18:21:35 +0000807 * if_ioctl_solaris.c: Add zprivs support.
808 * ioctl_solaris.c: ditto.
paul66e94882004-05-09 17:19:24 +0000809
paulb9df2d22004-05-09 09:09:59 +00008102004-05-09 Sowmini Varadhan <sowmini.varadhan@sun.com>
811
812 * zserv.c: (zsend_ipv{4,6}_{add,delete}_multipath) collapsed
813 into single zsend_route_multipath function.
814 (zsend_interface_{up,down}) collapsed into zsend_interface_update.
815 (zsend_interface_address_{add,delete}) collapsed into
816 zsend_interface_address.
817 (zsend_interface_add) send mtu6.
818 (zsend_interface_delete) ditto.
819 (zebra_write) remove unused function.
820 (various) Apply static qualifier. Add comments.
821 * zserv.h: Definitions changed as per above.
822 * redistribute.c: Changes as per zserv.c.
paul44145db2004-05-09 11:00:23 +0000823 * interface.c: (if_delete_update) only used with HAVE_NETLINK
824 and RTM_IFANNOUNCE.
825 (if_flag_dump_vty) Solaris IFF_IPV4 and IFF_IPV6 if flags
826 (if_dump_vty) print mtu6 if not same as mtu
paul88424682004-05-09 18:21:35 +0000827 * if_ioctl_solaris.c: New file, Solaris interface ioctl methods.
828 * ioctl_solaris.c: New file, Common solaris ioctl methods.
829
hasso34195bf2004-04-06 12:07:06 +00008302004-04-06 Krzysztof Oledzki <oleq@ans.pl>
831
832 * rt_netlink.c: Do not ignore metric when reading kernel routing
833 table on Linux with rt_netlink interface.
834
8352004-03-18 Hasso Tepper <hasso@estpak.ee>
hassof1d92e12004-03-18 15:40:33 +0000836
837 * interface.c: Temporary fix for handling secondary addresses
838 with label.
839
hasso55906722004-02-11 22:42:16 +00008402004-02-12 Hasso Tepper <hasso@estpak.ee>
hassof1d92e12004-03-18 15:40:33 +0000841
hasso55906722004-02-11 22:42:16 +0000842 * zserv.c: Added "ipv6 forwarding" command.
843
gdtb27900b2004-01-08 15:44:29 +00008442004-01-08 Greg Troxel <gdt@fnord.ir.bbn.com>
845
846 * kernel_socket.c (kernel_read): Use sockaddr_storage in buffer
847 for reading kernel messages to ensure enough space (necessary on
848 Solaris due to sockaddr_dl being large). Thanks to Sowmini
849 Varadhan for help with this change.
850
gdt9ccabd12004-01-06 18:23:02 +00008512004-01-06 Greg Troxel <gdt@t1.ir.bbn.com>
852
853 * rtadv.c (rtadv_send_packet): Change perror to zlog_err.
854
gdtdbee01f2004-01-06 00:36:51 +00008552004-01-05 Greg Troxel <gdt@fnord.ir.bbn.com>
gdt4bfbea82004-01-06 01:13:05 +0000856 * kernel_socket.c (ifm_read): Major cleanup. Use Sowmini's code
857 to find the sockaddr_dl in all cases, narrowing the Solaris ifdef
858 to just the accomodation of broken kernels. Check sockaddr_dl
859 carefully up front, and later assume any non-NULL sdl pointer is
860 valid. Clean up types and variable declarations, and rename
861 WRAPUP to SAROUNDUP to make the name fit the behavior.
862
8632004-01-05 Greg Troxel <gdt@fnord.ir.bbn.com>
gdtdbee01f2004-01-06 00:36:51 +0000864
865 * kernel_socket.c (kernel_read): Add a sockaddr_dl to the ifmsg
866 structure, because on Solaris sockaddr_dl is far larger than the
867 base sockaddr structure. (The code had previously been failing to
868 read all the data.)
gdt4bfbea82004-01-06 01:13:05 +0000869
gdtda26e3b2004-01-05 17:20:59 +00008702004-01-05 Greg Troxel <gdt@ahi.ir.bbn.com>
871
872 * kernel_socket.c (kernel_read): Look up interfaces by index
873 first, so that state changes which do not include a sockaddr_dl
874 now work. Add many sanity checks. In
875 particular, do not assume that a sockaddr_dl follows a message
876 without checking the ifm_addrs flags, and do not trust the length
877 in a sockaddr_dl. Add/clarify many comments.
878
gdt4b5e1352003-12-03 17:54:34 +00008792003-12-03 Greg Troxel <gdt@poblano.ir.bbn.com>
880
881 * rtadv.c: reorder includes to avoid compiler warning (define
882 structs before using them in prototypes)
883
hasso647e4f12003-05-25 11:43:52 +00008842003-05-25 Jim Crumpler <Jim.Crumpler@edion.com>
885
886 * zserv.c: Add "ip forwarding" command.
887
paul445f1432003-05-16 19:00:31 +00008882003-05-16 Gilad Arnold <gilad.arnold@terayon.com>
889
890 * zebra_rib.c: Fix memory leaks for ifname nexthops
891
8922003-04-19 Israel Keys <ikeys@agile.tv>
893
894 * rt_netlink.c: BLOCK on netlink while initialising
895
8962003-02-06 Francois Deppierraz <francois@ctrlaltdel.ch>
897
898 * rt_netlink.c (netlink_route_multipath): Set RTM_F_EQUALIZE when
899 it exists.
900
paul718e3742002-12-13 20:15:29 +00009012002-09-28 Akihiro Mizutani <mizutani@net-chef.net>
902
903 * zebra_rib.c (static_add_ipv4): Null0 static route is added.
904
9052002-09-10 Jochen Friedrich <chris+zebra@scram.de>
906
907 * rt_netlink.c: Add check for EAGAIN.
908 * kernel_socket.c: Likewise
909
9102002-06-12 Israel Keys <ikeys@oz.agile.tv>
911
912 * rt_netlink.c: Setting the NLM_F_ACK flag on the netlink command
913 message so that we get an ACK for successful netlink commands.
914 Change the netlink socket to BLOCKING while we wait for a
915 response; be it an ACK or an NLMSG_ERROR. Change
916 netlink_parse_info to deal with ACK messages.
917
9182001-11-01 Jun-ichiro itojun Hagino <itojun@iijlab.net>
919
920 * rtadv.c (rtadv_make_socket): setsockopt(IPV6_CHECKSUM) does not
921 work for ICMPv6 socket.
922
9232001-10-24 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
924
925 * rib.c (rib_process): Select connected route any case.
926
9272001-10-23 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
928
929 * interface.c (no_ip_address_secondary): Add "no" to command.
930
9312001-10-18 NOGUCHI Kay <kay@v6.access.co.jp>
932
933 * ioctl.c (if_prefix_add_ipv6): Set the prefered and valid lifetime
934 to infinity as the freebsd4.4 workaroud.
935
9362001-08-26 mihail.balikov@interbgc.com
937
938 * zebra_snmp.c: Fix snmpwalk problem such as IPv4 address
939 A.B.C.255.
940
9412001-08-22 NOGUCHI Kay <kay@v6.access.co.jp>
942
943 * rtadv.c: Do not send RA to loopback interface.
944
9452001-08-20 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
946
947 * ioctl.c (if_set_prefix): Remove Linux 2.0 specific connected
948 route treatment.
949
9502001-08-19 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
951
952 * zebra-0.92a released.
953
9542001-08-17 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
955
956 * rib.c: Kernel route is treated as EGP routes in nexthop active
957 check.
958
9592001-08-15 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
960
961 * zebra-0.92 released.
962
9632001-08-08 "Akihiro Mizutani" <mizutani@dml.com>
964
965 * rib.c (show_ip_route_prefix_longer): Add longer-prefix option to
966 show route commands.
967
9682001-07-29 Yon Uriarte <havanna_moon@gmx.net>
969
970 * zserv.c (zsend_ipv4_add_multipath): Add
971 NEXTHOP_TYPE_IPV4_IFINDEX check.
972
9732001-07-29 NOGUCHI Kay <kay@v6.access.co.jp>
974
975 * rtadv.c: Apply valid lifetime, preferred lifetime, onilnk flag,
976 autonomous address-configuration flag patch.
977 (no_ipv6_nd_suppress_ra): Change "ipv6 nd send-ra" to "no ipv6 nd
978 suppress-ra".
979
9802001-07-24 NOGUCHI Kay <kay@v6.access.co.jp>
981
982 * rtadv.c (ipv6_nd_ra_interval): Add "ipv6 nd ra-interval SECONDS"
983 command.
984
9852001-07-24 Jun-ichiro itojun Hagino <itojun@iijlab.net>
986
987 * rt_socket.c (kernel_rtm_ipv4): Add KAME/NetBSD151 equal cost
988 multicast FIB support both IPv4 and IPv6.
989
9902001-07-24 Hal Snyder <hal@vailsys.com>
991
992 * if_ioctl.c (interface_list_ioctl): Fix bug of failing to get the
993 full list of interfaces on some configurations of OpenBSD.
994
9952001-07-23 NOGUCHI Kay <kay@v6.access.co.jp>
996
997 * rtadv.c (ipv6_nd_send_ra): Apply [zebra 9320] to fix "ipv6 nd
998 send-ra" bug.
999 (ipv6_nd_ra_lifetime): "ipv6 nd ra-lifetime 0" for default router
1000 availability.
1001 (ipv6_nd_managed_config_flag): "ipv6 nd managed-config-flag" is
1002 added.
1003 (ipv6_nd_other_config_flag): "ipv6 nd other-config-flag" is added.
1004
10052001-07-23 Jun-ichiro itojun Hagino <itojun@iijlab.net>
1006
1007 * ioctl.c (if_ioctl): Change ioctl argument from int to u_long.
1008
1009 * rt_ioctl.c: Likewise.
1010
10112001-07-23 Jun-ichiro itojun Hagino <itojun@iijlab.net>
1012
1013 * kernel_socket.c (rtm_write): Only set RTF_CLONING when the
1014 interface is not p2p.
1015
10162001-04-23 Kunihiro Ishiguro <kunihiro@zebra.org>
1017
1018 * ioctl.c (if_prefix_add_ipv6): Fix argument type.
1019
10202001-04-06 Toshiaki Takada <takada@zebra.org>
1021
1022 * zserv.c (zsend_interface_delete): Use client->obuf instead of
1023 allocating new stream.
1024
10252001-03-10 Kunihiro Ishiguro <kunihiro@zebra.org>
1026
1027 * rt_netlink.c: Revert RTPROT_BOOT change.
1028
10292001-03-08 Kunihiro Ishiguro <kunihiro@zebra.org>
1030
1031 * rt_netlink.c (netlink_route_change): Skip RTPROT_BOOT route.
1032 (netlink_routing_table): Likewise.
1033
10342001-03-07 "Akihiro Mizutani" <mizutani@dml.com>
1035
1036 * zserv.c (zsend_ipv4_add_multipath): Send metric value to
1037 protocol daemons.
1038
10392001-02-18 Kunihiro Ishiguro <kunihiro@zebra.org>
1040
1041 * rt_netlink.c (netlink_routing_table): Do not return
1042 tb[RTA_GATEWAY] is NULL. Reported by: "Michael O'Keefe"
1043 <mokeefe@qualcomm.com>.
1044
10452001-02-08 Kunihiro Ishiguro <kunihiro@zebra.org>
1046
1047 * if_ioctl.c (interface_list_ioctl): Call if_add_update().
1048 Suggested by: Chris Dunlop <chris@onthe.net.au>.
1049
10502001-02-01 Kunihiro Ishiguro <kunihiro@zebra.org>
1051
1052 * rib.c (nexthop_active_ipv4): When nexthop type is
1053 NEXTHOP_TYPE_IPV4_IFINDEX, propery set the ifindex to rifindex.
1054
1055 * zserv.c: Initialize rtm_table_default with 0.
1056
1057 * zebra-0.91 is released.
1058
10592001-01-31 Kunihiro Ishiguro <kunihiro@zebra.org>
1060
1061 * kernel_socket.c (rtm_read): Filter cloned route. Suggested by:
1062 Jun-ichiro itojun Hagino <itojun@iijlab.net>
1063
10642001-01-30 Kunihiro Ishiguro <kunihiro@zebra.org>
1065
1066 * connected.c (connected_up_ipv6): When point-to-point destination
1067 address is ::, use local address for connected network.
1068 (connected_down_ipv6): Likewise.
1069
10702001-01-25 Kunihiro Ishiguro <kunihiro@zebra.org>
1071
1072 * zserv.c (zebra_serv): Add missing close() call. Reported by:
1073 David Waitzman <djw@vineyard.net>.
1074
10752001-01-24 Kunihiro Ishiguro <kunihiro@zebra.org>
1076
1077 * rib.c (rib_lookup_ipv4): New function for checking exact match
1078 IGP route.
1079
10802001-01-23 Kunihiro Ishiguro <kunihiro@zebra.org>
1081
1082 * rib.c (show_ipv6_route_protocol): Fix bug of "show ip route
1083 route-type".
1084
10852001-01-22 Kunihiro Ishiguro <kunihiro@zebra.org>
1086
1087 * interface.c (zebra_interface): Do not call
1088 zebra_interface_add_update for inactive interface.
1089
1090 * zserv.c (zsend_interface_address_add): Send interface address
1091 flag.
1092 (zsend_interface_address_delete): Likewise.
1093
10942001-01-19 Kunihiro Ishiguro <kunihiro@zebra.org>
1095
1096 * interface.c (if_addr_add): Add flags.
1097
1098 * connected.c (ifa_add_ipv4): Add new function for interface
1099 address handling.
1100 (ifa_delete_ipv4): Likewise.
1101
11022001-01-16 Kunihiro Ishiguro <kunihiro@zebra.org>
1103
1104 * rib.c (rib_update): Update IPv6 RIB.
1105
1106 * kernel_socket.c (ifam_read): Call if_refresh() for update
1107 interface flag status. This is for implicit interface up on *BSD.
1108
1109 * interface.c (if_refresh): Add interface flag refresh function.
1110
1111 * kernel_socket.c (rtm_read): Fetch link-local address interface
1112 index.
1113 (ifan_read): We need to fetch interface information. Suggested
1114 by: Yasuhiro Ohara <yasu@sfc.wide.ad.jp>.
1115
1116 * rib.c (static_ipv6_nexthop_same): Add check for
1117 NEXTHOP_TYPE_IPV6_IFNAME.
1118
11192001-01-15 Kunihiro Ishiguro <kunihiro@zebra.org>
1120
1121 * rib.h (NEW_RIB): Turn on NEW_RIB flag. IPv6 new RIB code are
1122 taken into place.
1123
11242001-01-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1125
1126 * rib.c (static_ipv6_write): Display STATIC_IPV6_GATEWAY_IFNAME
1127 configuration.
1128 (rib_delete_ipv6): Handle same route conter for IPv6 connected
1129 route.
1130 (show_ipv6_route_protocol): New command.
1131 (show_ipv6_route_addr): Likewise.
1132 (show_ipv6_route_prefix): Likewise.
1133 (rib_update): Sweep kernel route when it is cleaned up.
1134
1135 * rt_socket.c (kernel_add_ipv6): Add NEXTHOP_IPV6_IFNAME
1136 treatmenet.
1137
1138 * rt_netlink.c (kernel_init): Likewise.
1139
1140 * rt_ioctl.c (kernel_ioctl_ipv6_multipath): Likewise.
1141
1142 * rib.c (rib_add_ipv4): Cope with same connected route on a
1143 interface. Suggested by: Matthew Grant <grantma@anathoth.gen.nz>.
1144 (nexthop_ipv6_ifname_add): Add NEXTHOP_IPV6_IFNAME treatmenet.
1145
1146 * rib.h (struct new_rib): Add refcnt to keep track on the
1147 reference of same connected route.
1148
1149 * ioctl.c (if_set_prefix): Add check for GNU_LINUX.
1150
11512001-01-13 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1152
1153 * kernel_socket.c (ifan_read, rtm_type_str): Add RTM_OIFINFO check.
1154 (rtm_type_str): Add RTM_IFANNOUNCE check.
1155 (ifan_read): New function.
1156 (kernel_read): Add case for RTM_IFANNOUNCE.
1157
11582001-01-13 Kunihiro Ishiguro <kunihiro@zebra.org>
1159
1160 * rt_ioctl.c (kernel_ioctl_ipv6_multipath): New function.
1161
1162 * rt_netlink.c (netlink_route_multipath): IPv6 address ifindex
1163 treatment.
1164
1165 * connected.c (connected_up_ipv6): Add dest value check.
1166
1167 * rib.c (nexthop_active_ipv6): Do not touch IPv6 nexthop's
1168 ifindex.
1169 (rib_add_ipv4): Import rib_add_ipv6() same route check code.
1170 (nexthop_active_check): NEXTHOP_TYPE_IPV6_IFINDEX activity is only
1171 checked by ifindex.
1172
1173 * rt_socket.c (kernel_rtm_ipv6_multipath): New function.
1174
1175 * redistribute.c (redistribute_add): Use
1176 zsend_ipv6_add_multipath().
1177 (redistribute_delete_multipath): Use
1178 zsend_ipv6_delete_multipath().
1179
1180 * interface.c (ip_address): Check current IP address to avoid
1181 duplicate.
1182
1183 * rib.c (rib_delete_ipv4): When deleted route is connected route,
1184 check ifindex.
1185 (rib_add_ipv4): When connected route is added do not perform
1186 implicit withdraw.
1187 (rib_delete_ipv4): Check ifindex for connected route.
1188
1189 * kernel_socket.c (rtm_read): When route has RTF_STATIC, set
1190 ZEBRA_FLAG_STATIC for indicate as persistent route.
1191 (ifam_read): Unset interface index from link-local address when
1192 IPv6 stack is KAME.
1193
1194 * rib.c (rib_update): Do not delete persistent kernel route.
1195
1196 * rib.h (struct new_rib): Integrate RIB_FLAG_* to ZEBRA_FLAG_*.
1197
1198 * rt_socket.c (kernel_add_ipv6_multipath): Add placeholder.
1199 (kernel_delete_ipv6_multipath): Likewise.
1200
1201 * rt_netlink.c (netlink_talk): Give struct nlsock to netlink_talk.
1202
12032001-01-12 Kunihiro Ishiguro <kunihiro@zebra.org>
1204
1205 * rib.c (rib_update): Revert Matthew Grant's patch
1206 zebra_cvs_newribfix.patch. Use struct rib->ifindex for kernel
1207 interface index. Introduce NEXTHOP_TYPE_IPV4_IFINDEX to support
1208 that. Add support for address deletion situation.
1209
12102001-01-11 Kunihiro Ishiguro <kunihiro@zebra.org>
1211
1212 * interface.c: Remove HAVE_IF_PSEUDO part.
1213
1214 * rib.h: Likewise.
1215
1216 * rt_netlink.c (netlink_link_change): Likewise.
1217
12182001-01-10 Kunihiro Ishiguro <kunihiro@zebra.org>
1219
1220 * zserv.c: Remove OLD_RIB codes.
1221
12222001-01-09 Kunihiro Ishiguro <kunihiro@zebra.org>
1223
1224 * zebra-0.90 is released.
1225
12262001-01-09 Matthew Grant <grantma@anathoth.gen.nz>
1227
1228 * interface.c (if_new_intern_ifindex): Allocate a new internal
1229 interface index.
1230 (if_addr_refresh): Fix up ip addresses configured via zebra.
1231 (if_add_update): Handle an interface addition.
1232 (if_delete_update): Handle an interface delete event.
1233
1234 * rib.c (nexthop_ipv4_add): Add kernel route deletion process when
1235 interface goes down.
1236
12372001-01-08 Kunihiro Ishiguro <kunihiro@zebra.org>
1238
1239 * interface.c (if_dump_vty): When HAVE_NET_RT_IFLIST is defined,
1240 NetBSD also use this function. Suggested by Jasper Wallace
1241 <jasper@ivision.co.uk>.
1242
12432001-01-07 Kunihiro Ishiguro <kunihiro@zebra.org>
1244
1245 * rib.c (nexthop_active_ipv4): Move back to set methodo to old
1246 one.
1247
12482001-01-05 Kunihiro Ishiguro <kunihiro@zebra.org>
1249
1250 * rib.c (rib_add_ipv4): EBGP multihop set ZEBRA_FLAG_INTERNAL
1251 flag, so treat it.
1252
12532001-01-04 Kunihiro Ishiguro <kunihiro@zebra.org>
1254
1255 * rt_netlink.c (netlink_talk_ipv6): When IPv6 route message is
1256 sent from netlink_cmd, the same message comes from netlink. To
1257 avoid confusion, temporary netlink_talk_ipv6 use netlink.sock
1258 instead of netlink_cmd.sock.
1259
12602001-01-01 Kunihiro Ishiguro <kunihiro@zebra.org>
1261
1262 * zserv.h (ZEBRA_SERV_PATH): Change "/tmp/zebra" to "/tmp/.zebra".
1263 Change "/tmp/zserv" to "/tmp/.zserv".
1264
12652000-12-29 Frank van Maarseveen <F.vanMaarseveen@inter.NL.net>
1266
1267 * rt_netlink.c (struct nlsock): Divide kernel message into listen
1268 socket and command socket.
1269 (netlink_talk): Remove socket listen code. Use netlink_parse_info
1270 for read kernel response.
1271
12722000-12-29 Kunihiro Ishiguro <kunihiro@zebra.org>
1273
1274 * rib.c (vty_show_ip_route): Show uptime of the RIP,OSPF,BGP
1275 routes.
1276
12772000-12-27 Kunihiro Ishiguro <kunihiro@zebra.org>
1278
1279 * rt_netlink.c (netlink_route_multipath): Metric value is
1280 reflected to kernel routing table.
1281
1282 * rt_ioctl.c (kernel_ioctl_ipv4_multipath): Likewise.
1283
1284 * kernel_socket.c (rtm_write): Likewise.
1285
1286 * rib.c (nexthop_active_ipv4): Only iBGP route perform recursive
1287 nexthop lookup.
1288
1289 * rt_ioctl.c (kernel_ioctl_ipv4_multipath): Add ioctl version of
1290 new RIB implementation.
1291
12922000-12-26 Kunihiro Ishiguro <kunihiro@zebra.org>
1293
1294 * rib.h: Remove MULTIPATH_NUM. It is defined by configure script.
1295
12962000-12-25 Michael Rozhavsky <mrozhavsky@opticalaccess.com>
1297
1298 * rib.c (rib_if_up): Call rib_fib_set instead of RIB_FIB_SET for
1299 proper redistribution.
1300
13012000-12-19 Kunihiro Ishiguro <kunihiro@zebra.org>
1302
1303 * rib.c (nexthop_active_ipv4): Add self lookup nexthop check.
1304 (show_ip_route_protocol): Support new RIB.
1305
1306 * rt_netlink.c (netlink_route_change): Do not return when gate is
1307 NULL.
1308
13092000-12-18 Kunihiro Ishiguro <kunihiro@zebra.org>
1310
1311 * rib.c (rib_lookup_ipv4_nexthop): IBGP nexthop check function is
1312 updated.
1313 (rib_add_ipv4): Free implicit withdraw route's RIB.
1314
13152000-12-15 Kunihiro Ishiguro <kunihiro@zebra.org>
1316
1317 * rib.c (nexthop_active_ipv4): Check indirect nexthop.
1318
1319 * redistribute.c (redistribute_add_multipath): Redistribution
1320 works with new rib code.
1321
13222000-12-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1323
1324 * rt_netlink.c (netlink_route_multipath): Check useful nexthop
1325 number.
1326 (netlink_route_multipath): Clear rtnh_flags and rtnh_hops.
1327
1328 * rib.c (nexthop_active_update): Set flag for the rib's nexthop
1329 activity is changed.
1330 (nexthop_active_check): Before checking interface is up, make it
1331 sure the interface exist.
1332
13332000-11-20 Kunihiro Ishiguro <kunihiro@zebra.org>
1334
1335 * rib.c (ip_route): New RIB prototype.
1336
13372000-11-16 Yon Uriarte <ukl2@rz.uni-karlsruhe.de>
1338
1339 * zserv.c (zsend_interface_add): Send hardware address when
1340 hw_addr_len is greater than 0.
1341
13422000-11-07 Kunihiro Ishiguro <kunihiro@zebra.org>
1343
1344 * connected.c (connected_up_ipv4): Fix ptop bug. The destination
1345 network should be installed into routing table.
1346 (connected_down_ipv4): Likewise.
1347 (connected_add_ipv4): Change to use connected_up_ipv4.
1348 (connected_delete_ipv4): Likewise.
1349
13502000-11-06 Kunihiro Ishiguro <kunihiro@zebra.org>
1351
1352 * rt_netlink.c (netlink_interface_addr): Revert Harald Welte
1353 <laforge@gnumonks.org>'s ptop patch then back to original code to
1354 avoid duplicated connected route problem. Suggested by Frank van
1355 Maarseveen <F.vanMaarseveen@inter.NL.net>.
1356
1357 * kernel_socket.c (rtm_read): Make behavior consistent even #ifdef
1358 DEBUG is defined. Reported by Jun-ichiro itojun Hagino
1359 <itojun@iijlab.net>.
1360
13612000-10-23 Jochen Friedrich <jochen@scram.de>
1362
1363 * main.c (main): Call zebra_snmp_init() when it is enabled.
1364
13652000-10-23 Kunihiro Ishiguro <kunihiro@zebra.org>
1366
1367 * zserv.c (zebra_serv_un): UNIX domain socket server of zebra
1368 protocol.
1369
13702000-10-19 Kunihiro Ishiguro <kunihiro@zebra.org>
1371
1372 * rib.c (rib_add_ipv4): Same check bug is fixed.
1373
13742000-10-03 Kunihiro Ishiguro <kunihiro@zebra.org>
1375
1376 * rib.c (rib_if_down): Remove kernel route when the interface goes
1377 down.
1378
1379 * debug.c: New command "debug zebra kernel" is added.
1380
13812000-10-02 Kunihiro Ishiguro <kunihiro@zebra.org>
1382
1383 * zebra-0.89 is released.
1384
13852000-09-24 Harald Welte <laforge@gnumonks.org>
1386
1387 * rt_netlink.c (netlink_interface_addr): Fix point-to-point address
1388 treatment in netlink interface.
1389
13902000-09-21 David Lipovkov <dlipovkov@OpticalAccess.com>
1391
1392 * rib.c (rib_if_down): Pull static route only. Protocol daemon
1393 must withdraw routes when interface goes down.
1394 (rib_add_ipv4): Check nexthop when replace route.
1395
13962000-09-21 Kunihiro Ishiguro <kunihiro@zebra.org>
1397
1398 * if_ioctl.c (if_getaddrs): New function for looking up
1399 interface's address by getifaddrs().
1400
14012000-09-10 Kunihiro Ishiguro <kunihiro@zebra.org>
1402
1403 * connected.c (connected_delete_ipv4): Add check for connected
1404 address is found or not.
1405 (connected_add_ipv6): Reflect IPv6 connected address change to
1406 protocol daemons.
1407 (connected_delete_ipv6): Likewise.
1408
14092000-09-07 David Lipovkov <davidl@nbase.co.il>
1410
1411 * rib.c (rib_delete_ipv4): Reverted the change from pseudo
1412 interface patch to original. Because ospfd deletes routes using
1413 zero ifindex.
1414
14152000-08-17 Kunihiro Ishiguro <kunihiro@zebra.org>
1416
1417 * zebra-0.88 is released.
1418
14192000-08-15 "Akihiro Mizutani" <mizutani@dml.com>
1420
1421 * rib.c (show_ip_route_protocol): Help string correction.
1422 (show_ip_route_prefix): Check prefix mask.
1423 (show_ip_route_vty_detail): Display distance and metric.
1424
14252000-08-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1426
1427 * zserv.c (zsend_interface_add): Change ifindex store size from
1428 two octet to four.
1429 (zsend_interface_delete): Likewise.
1430 (zsend_interface_address_add): Likewise.
1431 (zsend_interface_address_delete): Likewise.
1432 (zsend_interface_up): Likewise.
1433 (zsend_interface_down): Likewise.
1434
14352000-08-13 Kunihiro Ishiguro <kunihiro@zebra.org>
1436
1437 * rib.c (rib_add_ipv4): Do not install distance 255 route.
1438
14392000-08-10 Toshiaki Takada <takada@zebra.org>
1440
1441 * interface.c (bandwidth_if), (no_bandwidth_if): Call
1442 zebra_interface_up_update () instead of using if_up() and if_down().
1443
14442000-08-07 "Akihiro Mizutani" <mizutani@dml.com>
1445
1446 * interface.c (bandwidth_if): Fix help string.
1447
14482000-08-07 Matthew Grant <grantma@anathoth.gen.nz>
1449
1450 * interface.c (if_dump_vty): Display bandwidth value.
1451 (bandwidth_if): New command "bandwidth <1-10000000>" is added.
1452 When interface is up, force protocol daemons to recalculate routes
1453 due to cost change.
1454 (no_bandwidth_if): Likewise.
1455 (if_config_write): Output bandwidth configuration.
1456
1457 * zserv.c (zsend_interface_add): Send bandwidth value.
1458 (zsend_interface_up): Likewise.
1459 (zsend_interface_down): Likewise.
1460
1461
14622000-08-07 Michael Rozhavsky <mike@nbase.co.il>
1463
1464 * rib.c (show_ip_route_protocol): "show ip route
1465 (bgp|connected|kernel|ospf|rip|static)" is added.
1466
14672000-08-07 Kunihiro Ishiguro <kunihiro@zebra.org>
1468
1469 * rib.c (rib_lookup_ipv4_nexthop): Check parent node until IGP
1470 nexthop is found.
1471 (rib_add_ipv4_internal): Set fib ifindex to rib ifindex.
1472
14732000-08-06 Kunihiro Ishiguro <kunihiro@zebra.org>
1474
1475 * redistribute.c (redistribute_delete): Fix bug of default route
1476 redistribute treatment.
1477
14782000-08-05 Kunihiro Ishiguro <kunihiro@zebra.org>
1479
1480 * rib.c (rib_init): Install ip_node in rib.c instead of zserv.c.
1481 Change default distance value.
1482
1483 Old New
1484 ------------------------------------------
1485 system 10 0
1486 kernel 20 0
1487 connected 30 0
1488 static 40 1
1489 rip 50 120
1490 ripng 50 120
1491 ospf 60 110
1492 ospf6 49 110
1493 bgp 70 200(iBGP) 20(eBGP)
1494 ------------------------------------------
1495
1496 * zserv.c (client_lookup): Function removed.
1497 (zsend_interface_add): Use client's output buffer. Check ifinfo
1498 flag.
1499 (zsend_interface_delete): Likewise.
1500 Delete ipv4_static_radix and ipv6_static_radix.
1501
15022000-08-02 Kunihiro Ishiguro <kunihiro@zebra.org>
1503
1504 * zserv.h (struct zebra_client): When client request interface
1505 information, ifinfo is set.
1506
1507 * rib.c: Temporary Revert changes for pseudo interface.
1508
1509 * rib.h: Likewise.
1510
1511 * zserv.c: Likewise.
1512
1513 * interface.c: Likewise.
1514
15152000-08-02 David Lipovkov <davidl@nbase.co.il>
1516
1517 * interface.c (zebra_if_init): Install interface "pseudo"
1518 commands.
1519
1520 * rib.c (rib_create): ifname argument is added.
1521 (rib_add_ipv4_pseudo): New function is added.
1522 (rib_delete_ipv4_pseudo): Likewise.
1523
1524 * rib.h : Delete INTERFACE_UNKNOWN definition. Add prototype for
1525 pseudo interface functions.
1526
1527 * rt_netlink.c (netlink_link_change): Check for pseudo interface.
1528
1529 * zserv.c (ip_route): When destination is pseudo interface, call
1530 rib_add_ipv4_pseudo().
1531
1532 * zserv.c (no_ip_route): Trim "unknown" argument.
1533
15342000-07-26 kunitake@dti.ad.jp
1535
1536 * if_ioctl.c (if_get_hwaddr): Fix hardware address length from 8
1537 to 6.
1538
1539 * rtadv.c (rtadv_send_packet): Fix shift bug for hardware address.
1540
15412000-07-24 Akihiro Mizutani <mizutani@dml.com>
1542
1543 * interface.c: Use install_default() for common VTY commands.
1544
15452000-07-23 Kunihiro Ishiguro <kunihiro@zebra.org>
1546
1547 * if_ioctl.c (interface_list_ioctl): A interface list size is
1548 calculated from ifreq->if_addr.sa_len. This is for OpenBSD.
1549
1550 * ioctl.c (if_get_mtu): Remove codes for SIOCGIFDATA.
1551
15522000-07-09 Chris Dunlop <chris@onthe.net.au>
1553
1554 * if_ioctl.c (if_get_index): Add check for HAVE_BROKEN_ALIASES.
1555
15562000-07-04 Kunihiro Ishiguro <kunihiro@zebra.org>
1557
1558 * zserv.c (zebra_client_read): Add ZEBRA_REDISTRIBUTE_{ADD,DELETE}
1559 message handling.
1560
15612000-07-02 David Lipovkov <davidl@nbase.co.il>
1562
1563 * zserv.c: "ip route A.B.C.D/M unknown" command is added.
1564
15652000-06-28 Michael Rozhavsky <mike@nbase.co.il>
1566
1567 * rib.c: Remove old kernel route when new route comes in.
1568
15692000-06-13 David Lipovkov <davidl@nbase.co.il>
1570
1571 * rib.c (rib_if_up): Add check for unknown interface.
1572
15732000-06-13 Kunihiro Ishiguro <kunihiro@zebra.org>
1574
1575 * rib.h: Define INTERFACE_UNKNOWN.
1576
15772000-06-08 Kunihiro Ishiguro <kunihiro@zebra.org>
1578
1579 * Makefile.am (EXTRA_DIST): Move irdp.c until implementation is
1580 finished.
1581
15822000-06-05 David Lipovkov <davidl@nbase.co.il>
1583
1584 * interface.c (if_zebra_delete_hook): Call rib_if_delete().
1585
1586 * redistribute.c (zebra_interface_delete_update): New function.
1587
1588 * redistribute.h (zebra_interface_delete_update): New function
1589 prototype.
1590
1591 * rib.c (rib_if_delete): New function. Walk down all routes and
1592 delete all on the interface.
1593
1594 * rib.h: New function prototype.
1595
1596 * rt_netlink.c (netlink_link_change): Call
1597 zebra_interface_delete_update ().
1598
15992000-05-10 Kunihiro Ishiguro <kunihiro@zebra.org>
1600
1601 * if_ioctl.c (interface_info_ioctl): Check interface's flag before
1602 checking interface's address.
1603
16042000-04-26 Jochen Friedrich <jochen@nwe.de>
1605
1606 * GNOME-PRODUCT-ZEBRA-MIB: New file.
1607
1608 * GNOME-SMI: New file.
1609
16102000-04-23 Kunihiro Ishiguro <kunihiro@zebra.org>
1611
1612 * irdp.c: New file from 1997 development code.
1613 * irdp.h: Likewise.
1614
16152000-04-19 Kunihiro Ishiguro <kunihiro@zebra.org>
1616
1617 * rtadv.c (rtadv_send_packet): Enclose router advertisement
1618 logging with IS_ZEBRA_DEBUG_PACKET.
1619
16202000-04-17 Kunihiro Ishiguro <kunihiro@zebra.org>
1621
1622 * zserv.c (zebra_client_close): Remove client structure from
1623 client_list when connection is terminated.
1624
16252000-03-21 David Lipovkov <davidl@nbase.co.il>
1626
1627 * connected.c (connected_add_ipv4): Allows all necessary structure
1628 updates for connected route, but doesn't insert it into rib if
1629 it's interface is down.
1630
16312000-01-21 Hideto Yamakawa <hideto.yamakawa@soliton.co.jp>
1632
1633 * rtread_getmsg.c: Set some definition for Solaris 2.5 and Solaris
1634 2.5.1.
1635
16362000-01-21 Kunihiro Ishiguro <kunihiro@zebra.org>
1637
1638 * rib.c (no_ipv6_route_ifname): Fix buf of cheking return value
1639 from str2prefix_ipv6().
1640
16412000-01-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1642
1643 * rt_socket.c: Revert to use RTF_HOST for IPv4 with /32 route and
1644 IPv6 with /128 routes.
1645 (kernel_rtm_ipv4): In case of /32 route's gateway is interface. It
1646 should have mask for cloning.
1647
16481999-12-26 Jochen.Friedrich@genorz.de
1649
1650 * interface.c (if_dump_vty): Fix a bug of missing VTY_NEWLINE.
1651
16521999-12-23 Alex Zinin <zinin@amt.ru>
1653 * interface.*: dynamic int up/down support
1654
16551999-12-09 Kunihiro Ishiguro <kunihiro@zebra.org>
1656
1657 * ipforward_proc.c (dropline): Move dropline() from lib/dropline.c
1658
1659 * rtread_proc.c (proc_route_read): Don't use dropline().
1660
16611999-12-08 Kunihiro Ishiguro <kunihiro@zebra.org>
1662
1663 * kernel_socket.c (rtm_read): When message is RTM_GET, it has own
1664 process's pid.
1665
16661999-12-04 Kunihiro Ishiguro <kunihiro@zebra.org>
1667
1668 * main.c (main): Change to default log output to ZLOG_STDOUT.
1669
1670 * zserv.c (zebra_serv): More detailed error print.
1671
16721999-11-30 Kunihiro Ishiguro <kunihiro@zebra.org>
1673
1674 * kernel_socket.c (rtm_read): Check old pid for static route
1675 insertion check.
1676
16771999-11-30 Kunihiro Ishiguro <kunihiro@zebra.org>
1678
1679 * interface.c (if_dump_vty): BSDI/OS uses 64bit for interface
1680 statistics counter.
1681
1682 * mtu_kvm.c: New file added.
1683
16841999-11-27 Vladimir B. Grebenschikov <vova@express.ru>
1685
1686 * kernel_socket.c (rtm_write): Set RTF_CLONING flag for
1687 route to the directly connected interface.
1688
16891999-11-27 Kunihiro Ishiguro <kunihiro@zebra.org>
1690
1691 * rt_socket.c: Delete USE_HOST_BIT definition.
1692
16931999-11-21 Michael Handler <handler@sub-rosa.com>
1694
1695 * rtread_getmsg.c: Undef some definition to resolve conflict.
1696
16971999-11-27 Kunihiro Ishiguro <kunihiro@zebra.org>
1698
1699 * kernel_socket.c (rtm_write): Change to use pre stored struct_dl
1700 value for gateway specification.
1701
17021999-11-25 Kunihiro Ishiguro <kunihiro@zebra.org>
1703
1704 * rt_socket.c (kernel_rtm_ipv4): Even mask is 32 under IPv4 or
1705 128 under IPv6, don't use RTF_HOST.
1706
17071999-11-21 Kunihiro Ishiguro <kunihiro@zebra.org>
1708
1709 * Makefile.am (EXTRA_DIST): Add rtread_getmsg.c.
1710
17111999-11-21 Michael Handler <handler@sub-rosa.com>
1712
1713 * rtread_getmsg.c: Added for Solaris 2.6 support.
1714
17151999-11-18 Kunihiro Ishiguro <kunihiro@zebra.org>
1716
1717 * rtread_sysctl.c (rtm_read_route): RTM_DELETE handling added.
1718
1719 * rt_socket.c (kernel_read): Better BSD routing socket support.
1720
17211999-10-19 Kunihiro Ishiguro <kunihiro@zebra.org>
1722
1723 * client_main.c: Disable making obsolete zebra test `client'
1724 command.
1725
17261999-10-18 Kunihiro Ishiguro <kunihiro@zebra.org>
1727
1728 * zebra.c: Renamed to zserv.c.
1729
1730 * zebra.h: Global definitions are moved to lib/zebra.h. Then
1731 renamed to zserv.h.
1732
17331999-10-15 Jordan Mendelson <jordy@wserv.com>
1734
1735 * if_ioctl.c: Add Linux 2.2.X's alias support and dynamic
1736 interface. Remove ugly MAX_INTERFACE handling codes.
1737
17381999-09-17 Satosi KOBAYASI <kobayasi@north.ad.jp>
1739
1740 * Fix serious bug of IPv6 route deletion.
1741
17421999-09-11 Kunihiro Ishiguro <kunihiro@zebra.org>
1743
1744 * ioctl.c (if_set_prefix): Properly set broadcast address.
1745
17461999-09-04 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1747
1748 * rib.c (rib_add_ipv6, rib_delete_ipv6): now protocol daemons
1749 can install connected route to kernel via zebra
1750
17511999-08-24 VOP <vop@unity.net>
1752
1753 * rib.c: Include "sockunion.h"
1754
17551999-08-22 Kunihiro Ishiguro <kunihiro@zebra.org>
1756
1757 * ipforward.h: New file.
1758
1759 * zebra.h: Obsolete message ZEBRA_GET_ALL_INTERFACE,
1760 ZEBRA_GET_ONE_INTERFACE, ZEBRA_GET_HOSTINFO are deleted.
1761
17621999-08-18 Kunihiro Ishiguro <kunihiro@zebra.org>
1763
1764 * zebra.h (ZEBRA_INTERFACE_ADDRESS_ADD):
1765 ZEBRA_INTERFACE_{ADD,DELETE} added.
1766
17671999-08-15 Kunihiro Ishiguro <kunihiro@zebra.org>
1768
1769 * rib.c: show ip route A.B.C.D works.
1770
1771 * zebra.c (zebra_read_ipv4): Add ifindex to zebra messages.
1772
17731999-08-12 Kunihiro Ishiguro <kunihiro@zebra.org>
1774
1775 * zebra.h: New Zebra message ZEBRA_INTERFACE_{ADD,DELETE} added.
1776
17771999-08-09 Kunihiro Ishiguro <kunihiro@zebra.org>
1778
1779 * interface.h: New file.
1780 * Makefile.am: Add interface.h
1781
17821999-08-04 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1783
1784 * redistribute.c (zebra_redistribute): give ifindex to client.
1785
17861999-08-02 Kunihiro Ishiguro <kunihiro@zebra.org>
1787
1788 * main.c (longopts): -k, --keep_kernel option added.
1789
17901999-07-18 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1791
1792 * rt_socket.c (rtm_write): forgot closing socket bug fixed.
1793
17941999-07-17 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1795
1796 * rib.c (show_ipv6_cmd): if rib is link show interface name.
1797
17981999-07-17 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1799
1800 * rt_socket.c (rtm_write): use sockaddr_dl when null gateway.
1801
18021999-07-16 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1803
1804 * rt_socket.c (rtm_write): ipv6 route table bug fixed.
1805
18061999-07-15 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1807
1808 * zebra.c (zebra_read_ipv6): read link prefix from ospf6 support
1809
18101999-07-15 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1811
1812 * rt_socket.c (kernel_rtm_ipv6): gate treatment bug fixed.
1813
18141999-07-15 Kunihiro Ishiguro <kunihiro@zebra.org>
1815
1816 * if_sysctl.c (ifm_read): Clear sockunion argument before fetching
1817 data. Suggested by "Chris P. Ross" <cross@eng.us.uu.net>
1818
18191999-07-08 HEO SeonMeyong <seirios@Matrix.IRI.Co.Jp>
1820
1821 * interface.c (if_tun_add): Add KAME's gif tunnel setting codes.
1822
18231999-06-26 Kunihiro Ishiguro <kunihiro@zebra.org>
1824
1825 * zebra.c (zebra_serv): Only accept loopback address connection.
1826
18271999-06-25 Kunihiro Ishiguro <kunihiro@zebra.org>
1828
1829 * zebra.h (ZEBRA_ROUTE_EXTERNAL): Add zebra messages flags
1830
18311999-06-17 Kunihiro Ishiguro <kunihiro@zebra.org>
1832
1833 * ipforward_proc.c: ipforward_on () and ipforward_off () added.
1834
18351999-06-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1836
1837 * ipforward_proc.c (ipforward_ipv6): Check for IPv6 forwarding
1838 using /proc file system is added.
1839
18401999-06-06 Kunihiro Ishiguro <kunihiro@zebra.org>
1841
1842 * if_ioctl.c (if_get_index): Interface index set bug is fixed by
1843 adding #else at the middle of function. Suggested by David Luyer
1844 <luyer@ucs.uwa.edu.au>.
1845
18461999-05-29 <kunihiro@zebra.org>
1847
1848 * rt_ioctl.c: Comment out #include <linux/ipv6_route.h>.
1849
18501999-05-26 Kunihiro Ishiguro <kunihiro@zebra.org>
1851
1852 * zebra.h (ZEBRA_ROUTE_MAX): Add new define for the max value of
1853 the sort of routes.
1854
18551999-05-25 Patrick Koppen <koppen@rhrk.uni-kl.de>
1856
1857 * rt_netlink.c (netlink_socket): Make netlink socket non-blocking.
1858 (netlink_parse_info): If errno is EWOULDBLOCK then continue to
1859 parse the message.
1860 (netlink_talk): Likewise
1861
18621999-05-17 <kunihiro@zebra.org>
1863
1864 * redistribute.c (zebra_check_addr): Added for loopback address
1865 check.
1866
18671999-05-15 Kunihiro Ishiguro <kunihiro@zebra.org>
1868
1869 * rt_netlink.c (netlink_route_change): Tempolary bypass ipv6 route
1870 change treatment.
1871
1872 * Makefile.am (noinst_HEADERS): redistribute.h added.
1873
1874 * redistribute.h: New file.
1875
18761999-05-14 Stephen R. van den Berg <srb@cuci.nl>
1877
1878 * zebra.c (show_table): Show all table configuration DEFUN.
1879 (config_table): Config table number DEFUN.
1880
1881 * rt_netlink.c: Add support for multiple routing table.
1882
1883 * rib.c (rib_weed_table): New function added for delete all
1884 routes from specified routing table.
1885
1886 * main.c (signal_init): SIGTERM call sigint.
1887 (sigint): Loggging more better message.
1888
18891999-05-09 Kunihiro Ishiguro <kunihiro@zebra.org>
1890
1891 * rt_netlink.c: Change log () to zlog ().
1892
18931999-05-07 <kunihiro@zebra.org>
1894
1895 * zebra.h (ZEBRA_ROUTE_OSPF6): Added for ospf6d route.
1896
18971999-04-20 Kunihiro Ishiguro <kunihiro@zebra.org>
1898
1899 * interface.c: Add `no ip address' command.
1900
19011999-04-10 Kunihiro Ishiguro <kunihiro@zebra.org>
1902
1903 * rt_netlink.c (kernel_read): Function added for asynchronous
1904 zebra between kernel communication.
1905
19061999-03-25 Kunihiro Ishiguro <kunihiro@zebra.org>
1907
1908 * rtread_sysctl.c (rtm_read): Fix address memcopy overrun bug.
1909 Reported by Achim Patzner <ap@bnc.net>.
1910
19111999-03-03 Kunihiro Ishiguro <kunihiro@zebra.org>
1912
1913 * Makefile.am: Install configuration sample with 600 permission.
1914
19151999-03-02 Kunihiro Ishiguro <kunihiro@zebra.org>
1916
1917 * Makefile.am: Add -I.. to INCLUDES.
1918
19191999-02-18 Peter Galbavy <Peter.Galbavy@knowledge.com>
1920
1921 * syslog support added
1922
19231999-02-17 Peter Galbavy <Peter.Galbavy@knowledge.com>
1924
1925 * if_sysctl.c (interface_list): allocated memory free when unknown
1926 ifm_type is returned.
1927
1928 * ioctl.c (if_get_mtu): added SIOCGIFDATA treatment.
1929
19301998-12-15 Magnus Ahltorp <map@stacken.kth.se>
1931
1932 * interface.c: Header include added.
1933
19341998-12-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1935
1936 * rt.h (kernel_delete_ipv6): change int index to unsigned int index.
1937
19381998-12-13 Kunihiro Ishiguro <kunihiro@zebra.org>
1939
1940 * if_ioctl.c (interface_list_ioctl): interface flag must be
1941 checked before check addresses of the interface.
1942
19431998-12-07 Kunihiro Ishiguro <kunihiro@zebra.org>
1944
1945 * Makefile.am (INCLUDES): add @INCLUDES@ for Linux IPv6.
1946
19471998-10-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1948
1949 * ioctl.c: Linux version before 2.1.0 need interface route setup.
1950
19511998-09-15 HEO SeonMeyong <seirios@matrix.iri.co.jp>
1952
1953 * change HYDRANGEA to KAME
1954
19551998-09-01 Kunihiro Ishiguro <kunihiro@zebra.org>
1956
1957 * if_ioctl.c (if_addr_ioctl): set address family for getting
1958 interface's address.
1959 (if_get_index): silently return when can't get interface's index.
1960
19611998-08-17 Kunihiro Ishiguro <kunihiro@zebra.org>
1962
1963 * main.c (main): batch mode option '-b' added.
1964
19651998-08-16 Kunihiro Ishiguro <kunihiro@zebra.org>
1966
1967 * ioctl.c (if_set_prefix): add `ip address IPV4ADDR' command.
1968 * interface.c (shutdown_if): add interface shutdown and no
1969 shutdown command.
1970
19711998-08-12 Kunihiro Ishiguro <kunihiro@zebra.org>
1972
1973 * rib.c (rib_add_ipv6): delete rib_add_in6.
1974
19751998-07-27 Kunihiro Ishiguro <kunihiro@zebra.org>
1976
1977 * main.c: retain flag is added.
1978
19791998-07-08 Kunihiro Ishiguro <kunihiro@zebra.org>
1980
1981 * rtable.[ch]: merged with rib.[ch]
1982
19831998-07-07 Kunihiro Ishiguro <kunihiro@zebra.org>
1984
1985 * connected.h: renamed from ifa.h.
1986
19871998-06-09 Kunihiro Ishiguro <kunihiro@zebra.org>
1988
1989 * rename if.c to interface.c
1990 * rename ifa.c to connected.c
1991
1992 * Porting to Debian GNU/Linux 2.0 (hamm).
1993
19941998-06-08 Kunihiro Ishiguro <kunihiro@zebra.org>
1995
1996 * rt_netlink.c: renamed from krt_netlink.c
1997
1998 * fib.c: deleted.
1999 * rt_kvm.c: deleted.
2000 * rtread_getmsg.c: deleted.
2001
20021998-06-07 Kunihiro Ishiguro <kunihiro@zebra.org>
2003
2004 * if.c (multicast): add multicast flag [un]set fucntion.
2005
20061998-05-19 Yamshita TAKAO <jargon@lares.dti.ne.jp>
2007
2008 * rt_socket.c: Modify for compile on Solaris, but dont't work it.
2009 rt_socket.c have some undefined function, so add directive "IMPLEMENT"
2010
20111998-05-18 Yamshita TAKAO <jargon@lares.dti.ne.jp>
2012
2013 * zebra.c: Modify for compile on Solaris.
2014
20151998-05-03 Kunihiro Ishiguro <kunihiro@zebra.org>
2016
2017 * main.c: change CONFDIR to SYSCONFDIR.
2018
20191998-05-01 Kunihiro Ishiguro <kunihiro@zebra.org>
2020
2021 * .cvsignore: added.
2022
20231998-04-02 Kunihiro Ishiguro <kunihiro@zebra.org>
2024
2025 * client.c: moves to ../lib.
2026
20271998-03-30 Kunihiro Ishiguro <kunihiro@zebra.org>
2028
2029 * if_ioctl.c (if_get_addr): Change address copy from memcopy() to
2030 structure assignment.
2031
20321998-03-30 URA Hiroshi <ura@yamato.ibm.co.jp>
2033
2034 * if_sysctl.c (ifm_interface_add): sdl->sdl_data copy bug fixed.
2035
20361998-02-23 "Hannes R. Boehm" <hannes@boehm.org>
2037
2038 * if.c (if_init): add config_exit_cmd and config_help_cmd.
2039
20401998-01-24 Kunihiro Ishiguro <kunihiro@zebra.org>
2041
2042 * rt_ioctl.c (route_ioctl): EPERM treatment added.
2043
20441998-01-05 Kunihiro Ishiguro <kunihiro@zebra.org>
2045
2046 * rt_socket.c (kernel_read): communication port zebra between
2047 kernel is now handled by kernel_read.
2048
20491998-01-02 Kunihiro Ishiguro <kunihiro@zebra.org>
2050
2051 * main.c (main): zebra [-P port] can specify vty port number.
2052
20531997-12-25 Kunihiro Ishiguro <kunihiro@zebra.org>
2054
2055 * zebra.c: change select will be block.
2056
20571997-12-04 Kunihiro Ishiguro <kunihiro@zebra.org>
2058
2059 * add static route treatment.
2060
20611997-11-25 Kunihiro Ishiguro <kunihiro@zebra.org>
2062
2063 * rt_netlink.c: add netlink support over GNU/Linux system.
2064
20651997-11-23 Kunihiro Ishiguro <kunihiro@zebra.org>
2066
2067 * all inet_addr is changed to inet_aton.
2068
2069 * zebra.c (ip_route): add ip route command for static routes.
2070
20711997-11-20 Kunihiro Ishiguro <kunihiro@zebra.org>
2072
2073 * if.c (if_flag_dump): Linux port of if_flag_dump and _vty.
2074
20751997-11-19 Kunihiro Ishiguro <kunihiro@zebra.org>
2076
2077 * if.c: add interface command.
2078
20791997-11-18 Kunihiro Ishiguro <kunihiro@zebra.org>
2080
2081 * ipforward_proc.c : Now works on Linux.
2082
20831997-10-25 Kunihiro Ishiguro <kunihiro@zebra.org>
2084
2085 * command.c : add completion feature.
2086
20871997-10-18 Kunihiro Ishiguro <kunihiro@zebra.org>
2088
2089 * vty.c (vty_command): add vty interface.
2090
20911997-10-13 Kunihiro Ishiguro <kunihiro@zebra.org>
2092
2093 * zebra.c: add verbose mode.
2094
20951997-10-12 SonMyong Ho <s-ho@Matrix.IRI.Co.Jp>
2096
2097 * Hydrangea for FreeBSD supported
2098 * in.h: add some prototype.
2099
21001997-10-11 Kunihiro Ishiguro <kunihiro@zebra.org>
2101
2102 * rt_socket.c and rtread.c completely rewritten.
2103
21041997-10-05 Kunihiro Ishiguro <kunihiro@zebra.org>
2105
2106 * rt_socket.c: rename kernel_sock to routing_socket
2107
21081997-10-04 Kunihiro Ishiguro <kunihiro@zebra.org>
2109
2110 * if.c (if_new): interface structure change from linklist to vector.
2111
21121997-10-03 Kunihiro Ishiguro <kunihiro@zebra.org>
2113
2114 * vector.c (vector_init): create vector related function
2115
21161997-09-25 Kunihiro Ishiguro <kunihiro@zebra.org>
2117
2118 * Makefile.in: add tags target
2119
2120 * start IPv6 support for INRIA FreeBSD.
2121