blob: a75bd6156024e1ebfed4fe90cc040c4aab1d5192 [file] [log] [blame]
ajs2da40f42005-03-30 16:33:13 +000012005-03-30 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
2
3 * irdp.h: Add prototype for irdp_sock_init, and fix protos for
4 other irdp_* functions.
5 * irdp_interface.c: (irdp_if_start) If irdp_sock is negative,
6 call irdp_sock_init to create the IRDP socket.
7 (irdp_if_init) Rename to irdp_init().
8 (get_iflist_ifp) Remove function that is a duplicate of
9 if_lookup_by_index.
10 (*) Make many functions static. And remove superfluous "\n" from
11 several zlog messages.
12 * irdp_main.c: (irdp_init) Remove function that used to call
13 irdp_if_init() and irdp_sock_init(), since we will now create
14 the socket only upon first use.
15 (irdp_sock_init) Do not update global irdp_sock variable, just
16 return the fd and assume that the caller will do so. If setsockopt
17 calls fail, close the socket before returning -1.
18 (*) Make many functions static.
19 * irdp_packet.c: Initialize irdp_sock to -1.
20 (irdp_read_raw) Call standard library function if_lookup_by_index
21 instead of get_iflist_ifp.
22 (irdp_recvmsg) Should be static, not global.
23
ajsa608bbf2005-03-29 17:03:49 +0000242005-03-29 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
25
26 * rt_netlink.c: (netlink_link_change) If the status of an
27 operative interface changes (e.g. MTU changes), the client
28 daemons should be notified by calling zebra_interface_up_update.
29 Previously, the information was being updated in zebra's
30 interface structure, but the clients were not notified of
31 changes to an operative interface.
32
vincent7cee1bb2005-03-25 13:08:53 +0000332005-03-25 Jean-Mickael Guerin <jean-mickael.guerin@6wind.com>
34 * interface.c, interface.h, rtadv.c, rtadv.h: modifications to
35 IPv6 Neighbor Discovery according to RFC3775, section 7:
36 o 1-bit Home Agent flag management in Router Advertisement (7.1).
37 o 1-bit Router Address flag management in Prefix Information
38 Option (7.2).
39 o Advertisement Interval Option (7.3)
40 o Home Agent Information Option (7.4)
41 o Changes to Sending Router Advertisements more frequently (7.5)
42
hassoed9bb6d2005-03-13 19:17:21 +0000432005-03-13 Hasso Tepper <hasso at quagga.net>
44
45 * zebra/interaface.c: "show interface description" command
46 implemented.
47
paulc1f01f32005-03-12 06:33:14 +0000482005-03-12 Paul Jakma <paul@dishone.st>
49
50 * rt_netlink.c: (netlink_route_multipath) dont set equalise flag.
51 No stock Linux kernel has ever supported it, and even if it had
52 it's not generally a good idea.
53
hasso42a66d72005-03-07 08:19:44 +0000542005-03-07 Michael Sandee <voidptr@voidptr.sboost.org>
55
56 * if_proc.c, ipforward_proc.c, rtread_proc.c: Fix fd leaks.
57
hasso3452d472005-03-06 13:42:05 +0000582005-03-06 Hasso Tepper <hasso at quagga.net>
59
60 * interface.c: Fix CRC and frame errors statistics in Linux.
61
ajs719e9742005-02-28 20:52:15 +0000622005-02-28 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
63
64 * zserv.c: Must include network.h and buffer.h for non-blocking I/O.
65 Remove global message_queue and t_write (need separate buffering for
66 each client).
67 (zebra_server_dequeue,zebra_server_enqueue) Remove functions
68 related to old buggy buffering code.
69 (zserv_delayed_close) New thread callback function to delete a client.
70 (zserv_flush_data) New thread callback function to flush buffered
71 data to client.
72 (zebra_server_send_message) Rewritten to use buffer_write (so
73 buffering of writes and non-blocking I/O work properly).
74 (zsend_interface_add,zsend_interface_delete,zsend_interface_address,
75 zsend_interface_update) Return 0 instead of -1 if !client->ifinfo
76 (this is not really an error). Return value from
77 zebra_server_send_message.
78 (zsend_route_multipath,zsend_ipv4_nexthop_lookup,
79 zsend_ipv4_import_lookup) Return value from zebra_server_send_message.
80 (zsend_ipv6_nexthop_lookup) Fix scope to static, and return value
81 from zebra_server_send_message.
82 (zsend_router_id_update) Must use zebra_server_send_message instead
83 of deprecated writen function. Return 0 instead of -1 if this client
84 is not subscribed to router-id updates (since this is not really
85 an error).
86 (zread_interface_add) Change type to static int. If
87 zsend_interface_add fails or zsend_interface_address fails, return -1
88 immediately (since the client has had an I/O error).
89 (zread_interface_delete,zread_ipv4_add,zread_ipv4_delete,
90 zread_ipv6_add,zread_ipv6_delete,zread_router_id_delete) Return 0
91 to indicate success.
92 (zread_ipv4_nexthop_lookup) Return value from
93 zsend_ipv4_nexthop_lookup.
94 (zread_ipv4_import_lookup) Return value from zsend_ipv4_import_lookup.
95 (zebra_read_ipv6) Remove unused function.
96 (zread_ipv6_nexthop_lookup) Return value from
97 zsend_ipv6_nexthop_lookup.
98 (zread_router_id_add) Return value from zsend_router_id_update.
99 (zebra_client_close) Call buffer_free(client->wb) and
100 thread_cancel(client->t_suicide).
101 (zebra_client_create) Allocate client->wb using buffer_new.
102 (zebra_client_read) Support non-blocking I/O by using stream_read_try.
103 Use ZEBRA_HEADER_SIZE instead of 3.
104 (zebra_accept) Fix bug: reset accept thread at top. Make client
105 socket non-blocking using the set_nonblocking function.
106 (config_write_forwarding) Fix scope to static.
107 (zebra_init) Remove initialization code for old buggy write buffering.
108 * zserv.h: Add 2 new fields to struct zserv: struct buffer *wb
109 (to enable buffered writes with non-blocking I/), and
110 struct thread *t_suicide to support delayed close on I/O
111 errors.
112 * router-id.h: Remove prototypes for zread_router_id_add and
113 zread_router_id_delete (their scope should be static to zserv.c).
114
ajs27da3982005-02-24 16:06:33 +00001152005-02-24 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
116
117 * redistribute.c: (zebra_check_addr,is_default,
118 zebra_redistribute_default,zebra_redistribute) Fix scope to be static.
119
hassoe8274dc2005-02-20 19:09:23 +00001202005-02-20 Hasso Tepper <hasso at quagga.net>
121
122 * rt_netlink.c: Don't show messages "ignoring message type 0x001[89]"
123 if we are not debugging.
124
paule31f2292005-02-19 02:00:26 +00001252005-02-19 Paul Jakma <paul@dishone.st>
126
127 * zserv.c: (zebra_read_ipv6) replace the char * arithmetic with
128 STREAM_READABLE.
129
paul1e193152005-02-14 23:53:05 +00001302005-02-14 Paul Jakma <paul@dishone.st>
131
132 * Not all Linux netlink systems have IFLA_WIRELESS
133
ajs6a52d0d2005-01-30 18:49:28 +00001342005-01-30 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
135
136 * ioctl.c: (if_ioctl,if_ioctl_ipv6,if_get_flags) Replace perror with
137 zlog_err.
138 * ioctl_solaris.c: (if_ioctl,if_ioctl_ipv6) Replace perror with
139 zlog_err.
140
ajs4be019d2005-01-29 16:12:41 +00001412005-01-29 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
142
ajs4460e7a2005-01-29 17:07:40 +0000143 * if_ioctl_solaris.c: (interface_list_ioctl) Save errno before calling
144 zserv_privs.change.
145 * ioctl{,_solaris}.c: (if_ioctl,if_ioctl_ipv6) Save errno before calling
146 zserv_privs.change.
147 * ipforward_solaris.c: (solaris_nd) Save errno before calling
148 zserv_privs.change.
149 * irdp_main.c: (irdp_sock_init) Save errno before calling
150 zserv_privs.change.
151
1522005-01-29 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
153
ajs4be019d2005-01-29 16:12:41 +0000154 * rt_netlink.c: (netlink_socket,netlink_request,netlink_parse_info,
155 netlink_talk) Save errno before calling zserv_privs.change.
156
paulc15cb242005-01-24 09:05:27 +00001572005-01-24 Martin Pot <mpot at martybugs.net>
158
159 * zebra/rt_netlink.c: ignore wireless newlink netlink messages.
160
hasso6f2c27a2005-01-18 13:44:35 +00001612005-01-18 Hasso Tepper <hasso at quagga.net>
162
163 * interface.c: Better statistics output in "show interface" command in
164 case of /proc being used.
165
hasso583d8002005-01-16 23:34:02 +00001662005-01-17 Hasso Tepper <hasso at quagga.net>
167
168 * main.c: With --nl-bufsize argument is required.
169
paul865b8522005-01-05 08:30:35 +00001702005-01-05 Paul Jakma <paul@dishone.st>
171
172 * zserv.c: (zebra_accept) Comment out setting of socket to NONBLOCK
173 for now, as we dont actually deal with with resending.... See
174 bugzilla #122, fix from wawa@yandex-team.ru (Vladimir Ivanov).
175 * kernel_socket.c: (routing_socket) ditto.
176
ajsb99760a2005-01-04 16:24:43 +00001772005-01-04 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
178
179 * rtadv.c: (rtadv_recv_packet,rtadv_send_packet) Use ZCMSG_FIRSTHDR
180 instead of CMSG_FIRSTHDR.
181
ajs341a8f12004-12-22 16:32:16 +00001822004-12-22 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
183
184 * connected.c: (connected_add_ipv4) Limit warning about /32 addresses
185 with no peer specified to PtP interfaces only.
186
hassob8adec12004-12-18 16:03:28 +00001872004-12-18 Hasso Tepper <hasso at quagga.net>
188
189 * zebra_vty.c: Fix "show ipv6 route <proto>" command help and make it
190 work for isis routes.
191
gdt6a250b02004-12-09 14:48:12 +00001922004-12-09 Greg Troxel <gdt@fnord.ir.bbn.com>
193
194 * kernel_socket.c (rtmsg_debug): char * => const char *
195
ajs274a4a42004-12-07 15:39:31 +00001962004-12-07 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
197
ajsb6178002004-12-07 21:12:56 +0000198 * *.c: Change level of debug messages to LOG_DEBUG.
199
2002004-12-07 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
201
ajs274a4a42004-12-07 15:39:31 +0000202 * main.c: (main) The 2nd argument to openzlog has been removed.
203 So stdout logging will no longer be enabled by default.
204 * irdp_main.c: (irdp_finish) Reduce severity of shutdown message
205 from LOG_WARNING to LOG_INFO.
206
ajs887c44a2004-12-03 16:36:46 +00002072004-12-03 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
208
209 * main.c: (sigint) Use zlog_notice for termination message.
210 (main) Add a startup announcement using zlog_notice.
211
hassoaccb1562004-11-25 19:21:07 +00002122004-11-25 Hasso Tepper <hasso at quagga.net>
213
214 * irdp_interface.c: Remove comment from DEFUN, it breaks vtysh because
215 it confuses extract.pl.
hassoc0652302004-11-25 19:33:48 +0000216 * main.c: Make group to run as configurable.
hassoaccb1562004-11-25 19:21:07 +0000217
hasso6bd7c6a2004-10-28 17:32:27 +00002182004-10-28 Hasso Tepper <hasso at quagga.net>
219
220 * interface.c: Remove dead "ip tunnel" command.
221
paul06f953f2004-10-22 17:00:38 +00002222004-10-22 Paul Jakma <paul@dishone.st>
223
224 * irdp_main.c: change setsockopt_pktinfo to setsockopt_ifindex
225
hasso3fb9cd62004-10-19 19:44:43 +00002262004-10-19 Andrew J. Schorr <aschorr@telemetry-investments.com>
227
228 * rt_netlink.c: (netlink_interface_addr) For PtP interfaces, ignore
229 tb[IFA_ADDRESS] if it's the same as tb[IFA_LOCAL].
230 * interface.c: (ip_address_install) Use new ipv4_broadcast_addr
231 function.
232 * connected.c: (connected_up_ipv4) Use CONNECTED_POINTOPOINT_HOST
233 macro.
234 (connected_down_ipv4) ditto.
235 (connected_add_ipv4) Validate destination address, print warnings
236 if it does not make sense.
237
hassoc1eaa442004-10-19 06:26:01 +00002382004-10-19 Hasso Tepper <hasso at quagga.net>
239
240 * zserv.c: Fix regression introduced with zserv cleanup.
241
hassoc75105a2004-10-13 10:33:26 +00002422004-10-13 Hasso Tepper <hasso at quagga.net>
243
244 * zebra_snmp.c: Remove defaults used to initialize smux connection to
245 snmpd. Connection is initialized only if smux peer is configured.
hassob71f00f2004-10-13 12:20:35 +0000246 * zserv.c: Remove useless warnings "forwarding is already on".
hassoc75105a2004-10-13 10:33:26 +0000247
hasso39ff11d2004-10-12 15:55:19 +00002482004-10-12 Hasso Tepper <hasso at quagga.net>
249
250 * zebra_vty.c: Unbreak "show ip route" command help and make it work
251 for isis routes.
hasso39db97e2004-10-12 20:50:58 +0000252 * interface.c(if_dump_vty): Show IPv6 addresses in "show interface"
253 output. Fixes Bugzilla #119.
254 * *.c: Make some strings const and some (unsigned) casts to fix
255 compiler warnings.
hasso39ff11d2004-10-12 15:55:19 +0000256
hassofce954f2004-10-07 20:29:24 +00002572004-10-07 Hasso Tepper <hasso at quagga.net>
258
259 * connected.c, main.c, rt_netlink.c, rtadv.c, zebra_rib.c, zserv.c:
260 Fix warnings: make strings const, signed -> unsigned.
261
paul72164662004-10-05 14:39:43 +00002622004-10-05 Paul Jakma <paul@dishone.st>
263
264 * irdp_packet.c: (parse_irdp_packet) style issues.
265 Use sockopt_iphdrincl_swab_systoh.
266 Try unbork the code. Checksum the ICMP data and actually
267 compare it to received checksum. Check data length against
268 claimed length in header.
269 Always use ntoh.. when accessing addresses, even when the
270 comparison happens to be endian-safe.
271 (send_packet) minor style isues. Use
272 sockopt_iphdrincl_swab_htosys.
273 (irdp_iph_hton/ntoh) IP header to/from network/host order.
274
hassoeef1fe12004-10-03 18:46:08 +00002752004-10-03 Gilad Arnold <gilad.arnold at terayon.com>
276
277 * interface.c, interface.h: A new prefix tree of connected subnets is
278 associated with each interface structure in zebra, in which each
279 live (ie, non-synthetic) node holds a list of installed addresses
280 that belong to that prefix. Remove secondary address logic from cli.
281 See [quagga-dev 872] for detailed explanation.
282 * connected.c: Use if_subnet_add() and if_subnet_delete().
283
hasso18a6dce2004-10-03 18:18:34 +00002842004-10-03 James R. Leu <jleu at mindspring.com>
285
286 * router-id.c, router-id.h: New files. Router id selection process. If
287 there is non 127.x.x.x address in loopack interface, lowest of them
288 is chosen. If there isn't, lowest from other interfaces addresses
289 are chosen. "router-id x.x.x.x" vty command to manual override.
290 * Makefile.am: Compile new files.
291 * main.c: Initialize router id.
292 * redistribute.c: Add interface addresses into router id selection
293 lists as they (dis)appear.
294 * zserv.c, zserv.h: Sending router id related messages to daemons.
295
hassoc9e52be2004-09-26 16:09:34 +00002962004-09-26 Hasso Tepper <hasso at quagga.net>
297
298 * irdp_interface.c, irdp_main.c, irdp_packet.c, rt_netlink.c,
299 rtadv.c, zebra_vty.c: Fix compiler warnings.
300
paul0c0f9112004-09-24 08:24:42 +00003012004-09-24 Paul Jakma <paul@dishone.st>
302
paul26f7a242004-09-24 08:45:10 +0000303 * irdp_interface.c: (no_ip_irdp_address_preference_cmd)
304 add missing listnode declaration.
305
3062004-09-24 Paul Jakma <paul@dishone.st>
307
paul0c0f9112004-09-24 08:24:42 +0000308 * irdp_{interface,main}.c: lists typedef removal cleanup.
309 update some list loops to LIST_LOOP. some miscellaneous style
310 and indent fixups.
311 (no_ip_irdp_address_preference_cmd) Fix delete of referenced node
paul26f7a242004-09-24 08:45:10 +0000312 in loop.
paul0c0f9112004-09-24 08:24:42 +0000313 * irdp_packet.c: (irdp_recvmsg) Fix buggy assignment of integer
314 to pointer.
315 * if_ioctl{,_solaris}.c: lists typedef removal cleanup.
316 update some list loops to LIST_LOOP.
317
hasso52dc7ee2004-09-23 19:18:23 +00003182004-09-23 Hasso Tepper <hasso at quagga.net>
319
320 * *.[c|h]: list -> struct list *, listnode -> struct listnode *.
321
paul44983cf2004-09-22 13:15:58 +00003222004-09-22 Paul Jakma <paul.jakma@sun.com>
323
324 * zserv.c: (zsend_route_multipath) fix nasty bad memset of struct
325 in_addr to sizeof(struct in6_addr), causing odd and hard to debug
326 crash.
327
hassoc34b6b52004-08-31 13:41:49 +00003282004-08-31 Hasso Tepper <hasso at quagga.net>
329
330 * main.c, rt_netlink.c: Added -s command line switch for tuning
331 netlink receive buffer size in Linux to avoid buffer overruns.
332
gdta5ea6872004-08-26 13:24:00 +00003332004-08-26 Miles Nordin <carton@Ivy.NET>
334
335 * ipforward_sysctl.c (mib_ipv6): Use size_t for len, per
336 sysctl(3), rather than int. (Needed on NetBSD/alpha to display
337 forwarding status correctly.)
338
paul3e0b3a52004-08-23 18:58:32 +00003392004-08-23 Paul Jakma <paul@dishone.st>
340
341 * zserv.c: (zebra_init) remove implicit ip forward enabling
342
paul0de1cde2004-08-19 04:45:33 +00003432004-08-19 Paul Jakma <paul@dishone.st>
344
345 * irdp_main.c: update to match sockopt renames.
346 * irdp_packet.c: include sockopt.h and update to match sockopt
347 renames.
348
gdt57492d52004-08-11 18:06:38 +00003492004-08-11 Greg Troxel <gdt@fnord.ir.bbn.com>
350
351 * rtadv.c (rtadv_send_packet): Allocate space for control messages
352 more carefully; it was wrong on NetBSD/sparc where CMSG alignment
353 is to 8 bytes instead of 4, and overwriting the address. Use the
354 provided macros for determining lengths.
355
paul5b73a672004-07-23 15:26:14 +00003562004-07-23 Sowmini Varadhan <Sowmini.Varadhan@Sun.COM>
357
358 * if_ioctl_solaris.c: HAVE_IPV6 ifdef fixups
359 * zserv.c: ditto
360 * ioctl_solaris.c: ditto.
361 * interface.c: cast for LLADDR
362 * interface.h: Add guards, include redistribute.h and remove
363 extraneous definitions of zebra_interface_{up,down}_update
364 * ioctl.h: Add AF_IOCTL define for non SOLARIS_IPV6
365 * redistribute.h: include dependent header, zserv.h
366 * zserv.h: include dependent header, rib.h
367
paul1470baf2004-07-23 15:25:01 +00003682004-07-23 Paul Jakma <paul@dishone.st>
369
370 * irdp_main.c: use setsockopt_pktinfo_ipv4
371 * irdp_packet.c: use SOPT_SIZE_CMSG_PKTINFO_IPV4 and
372 getsockopt_pktinfo_ifindex()
373
gdtcced60d2004-07-13 16:45:54 +00003742004-07-13 David Wiggins <dwiggins@bbn.com
375
376 * kernel_socket.c (rtm_flag_dump): terminate buffer with '\0', not '0'.
377
hasso25dac852004-07-13 03:06:51 +00003782004-07-13 Hasso Tepper <hasso@estpak.ee>
379
380 * irdp_main.c: Add privilege change.
381
hasso996933f2004-07-12 16:32:56 +00003822004-07-12 Hasso Tepper <hasso@estpak.ee>
383
384 * irdp_interface.c: follow common style while naming vty command
385 functions. Avoids confusion in extract.pl.
386
gdt87efd642004-06-30 17:36:11 +00003872004-06-30 Greg Troxel <gdt@poblano.ir.bbn.com>
388
389 * main.c: define thread_master variable so that linking with
390 libzebra.so doesn't fail. Arguably zclient.o should be in a
391 separate library, but this is far less disruptive.
392
hassoca776982004-06-12 14:33:05 +00003932004-06-12 Robert Olsson <Robert.Olsson at data.slu.se>
394
395 * Added IRDP support.
396
hasso3e31cde2004-05-18 11:58:59 +00003972004-05-18 Hasso Tepper <hasso@estpak.ee>
398
399 * rtadv.c: Removed "[no] ipv6 nd send-ra" command. Replaced "ipv6 nd
400 prefix-advertisement" with "ipv6 nd prefix". Rewrite syntax of
401 "ipv6 nd prefix" command to allow various combinations of parameters
402 and flags. No defaults in configuration. Replaced on-link and
403 autoconfig with off-link and no-autoconfig flags in command syntax.
404 Cosmetic fixes in all commands. Documentation to reflect all changes.
405
paul19877dd2004-05-11 10:49:35 +00004062004-05-11 Paul Jakma <paul@dishone.st>
407
408 * Makefile.am: support for IOCTL_METHOD, as per Sowmini's patch.
paul48a46fa2004-05-11 10:55:22 +0000409 * if_ioctl_solaris.c: Fixup some erroneous privilege changes and
410 add privs.h header.
411 * ioctl_solaris.c: ditto
paulc50ae8b2004-05-11 11:31:07 +0000412 * ioctl.h: Add if_ioctl_ipv6 prototype and AF_IOCTL for SOLARIS_IPV6
413 * kernel_socket.c: Fix SAROUNDUP, compiler doesnt like do..while
414 RHS in assignments :)
415 * redistribute.c: (zebra_interface_delete_update) only used
416 if RTM_IFANNOUNCE and NETLINK is available.
417
paulb9df2d22004-05-09 09:09:59 +00004182004-05-09 Paul Jakma <paul@dishone.st>
419
420 * zserv.c: (zsend_route_multipath) Set the nexthop_num
421 field correctly. Add NEXTHOP_TYPE_IPV6_IFNAME for v6.
422 Conditionally set ZAPI_MESSAGE_METRIC flag - only for adds.
423 (zsend_ipv4_add) cruft, deleted.
424 (zsend_ipv4_delete) ditto.
425 (zsend_ipv6_add) ditto.
426 (zsend_ipv6_delete) ditto.
paul44145db2004-05-09 11:00:23 +0000427 * ioctl.c: (if_get_mtu) set mtu6 to mtu
428 * mtu_kvm.c: (if_kvm_get_mtu) set mtu6 to mtu
429 * rt_netlink.c: (netlink_interface) set mtu6 to mtu
430 (netlink_link_change) ditto
paul66e94882004-05-09 17:19:24 +0000431 * ipforward_solaris.c: fix typo of ND variable.
paul88424682004-05-09 18:21:35 +0000432 * if_ioctl_solaris.c: Add zprivs support.
433 * ioctl_solaris.c: ditto.
paul66e94882004-05-09 17:19:24 +0000434
paulb9df2d22004-05-09 09:09:59 +00004352004-05-09 Sowmini Varadhan <sowmini.varadhan@sun.com>
436
437 * zserv.c: (zsend_ipv{4,6}_{add,delete}_multipath) collapsed
438 into single zsend_route_multipath function.
439 (zsend_interface_{up,down}) collapsed into zsend_interface_update.
440 (zsend_interface_address_{add,delete}) collapsed into
441 zsend_interface_address.
442 (zsend_interface_add) send mtu6.
443 (zsend_interface_delete) ditto.
444 (zebra_write) remove unused function.
445 (various) Apply static qualifier. Add comments.
446 * zserv.h: Definitions changed as per above.
447 * redistribute.c: Changes as per zserv.c.
paul44145db2004-05-09 11:00:23 +0000448 * interface.c: (if_delete_update) only used with HAVE_NETLINK
449 and RTM_IFANNOUNCE.
450 (if_flag_dump_vty) Solaris IFF_IPV4 and IFF_IPV6 if flags
451 (if_dump_vty) print mtu6 if not same as mtu
paul88424682004-05-09 18:21:35 +0000452 * if_ioctl_solaris.c: New file, Solaris interface ioctl methods.
453 * ioctl_solaris.c: New file, Common solaris ioctl methods.
454
hasso34195bf2004-04-06 12:07:06 +00004552004-04-06 Krzysztof Oledzki <oleq@ans.pl>
456
457 * rt_netlink.c: Do not ignore metric when reading kernel routing
458 table on Linux with rt_netlink interface.
459
4602004-03-18 Hasso Tepper <hasso@estpak.ee>
hassof1d92e12004-03-18 15:40:33 +0000461
462 * interface.c: Temporary fix for handling secondary addresses
463 with label.
464
hasso55906722004-02-11 22:42:16 +00004652004-02-12 Hasso Tepper <hasso@estpak.ee>
hassof1d92e12004-03-18 15:40:33 +0000466
hasso55906722004-02-11 22:42:16 +0000467 * zserv.c: Added "ipv6 forwarding" command.
468
gdtb27900b2004-01-08 15:44:29 +00004692004-01-08 Greg Troxel <gdt@fnord.ir.bbn.com>
470
471 * kernel_socket.c (kernel_read): Use sockaddr_storage in buffer
472 for reading kernel messages to ensure enough space (necessary on
473 Solaris due to sockaddr_dl being large). Thanks to Sowmini
474 Varadhan for help with this change.
475
gdt9ccabd12004-01-06 18:23:02 +00004762004-01-06 Greg Troxel <gdt@t1.ir.bbn.com>
477
478 * rtadv.c (rtadv_send_packet): Change perror to zlog_err.
479
gdtdbee01f2004-01-06 00:36:51 +00004802004-01-05 Greg Troxel <gdt@fnord.ir.bbn.com>
gdt4bfbea82004-01-06 01:13:05 +0000481 * kernel_socket.c (ifm_read): Major cleanup. Use Sowmini's code
482 to find the sockaddr_dl in all cases, narrowing the Solaris ifdef
483 to just the accomodation of broken kernels. Check sockaddr_dl
484 carefully up front, and later assume any non-NULL sdl pointer is
485 valid. Clean up types and variable declarations, and rename
486 WRAPUP to SAROUNDUP to make the name fit the behavior.
487
4882004-01-05 Greg Troxel <gdt@fnord.ir.bbn.com>
gdtdbee01f2004-01-06 00:36:51 +0000489
490 * kernel_socket.c (kernel_read): Add a sockaddr_dl to the ifmsg
491 structure, because on Solaris sockaddr_dl is far larger than the
492 base sockaddr structure. (The code had previously been failing to
493 read all the data.)
gdt4bfbea82004-01-06 01:13:05 +0000494
gdtda26e3b2004-01-05 17:20:59 +00004952004-01-05 Greg Troxel <gdt@ahi.ir.bbn.com>
496
497 * kernel_socket.c (kernel_read): Look up interfaces by index
498 first, so that state changes which do not include a sockaddr_dl
499 now work. Add many sanity checks. In
500 particular, do not assume that a sockaddr_dl follows a message
501 without checking the ifm_addrs flags, and do not trust the length
502 in a sockaddr_dl. Add/clarify many comments.
503
gdt4b5e1352003-12-03 17:54:34 +00005042003-12-03 Greg Troxel <gdt@poblano.ir.bbn.com>
505
506 * rtadv.c: reorder includes to avoid compiler warning (define
507 structs before using them in prototypes)
508
hasso647e4f12003-05-25 11:43:52 +00005092003-05-25 Jim Crumpler <Jim.Crumpler@edion.com>
510
511 * zserv.c: Add "ip forwarding" command.
512
paul445f1432003-05-16 19:00:31 +00005132003-05-16 Gilad Arnold <gilad.arnold@terayon.com>
514
515 * zebra_rib.c: Fix memory leaks for ifname nexthops
516
5172003-04-19 Israel Keys <ikeys@agile.tv>
518
519 * rt_netlink.c: BLOCK on netlink while initialising
520
5212003-02-06 Francois Deppierraz <francois@ctrlaltdel.ch>
522
523 * rt_netlink.c (netlink_route_multipath): Set RTM_F_EQUALIZE when
524 it exists.
525
paul718e3742002-12-13 20:15:29 +00005262002-09-28 Akihiro Mizutani <mizutani@net-chef.net>
527
528 * zebra_rib.c (static_add_ipv4): Null0 static route is added.
529
5302002-09-10 Jochen Friedrich <chris+zebra@scram.de>
531
532 * rt_netlink.c: Add check for EAGAIN.
533 * kernel_socket.c: Likewise
534
5352002-06-12 Israel Keys <ikeys@oz.agile.tv>
536
537 * rt_netlink.c: Setting the NLM_F_ACK flag on the netlink command
538 message so that we get an ACK for successful netlink commands.
539 Change the netlink socket to BLOCKING while we wait for a
540 response; be it an ACK or an NLMSG_ERROR. Change
541 netlink_parse_info to deal with ACK messages.
542
5432001-11-01 Jun-ichiro itojun Hagino <itojun@iijlab.net>
544
545 * rtadv.c (rtadv_make_socket): setsockopt(IPV6_CHECKSUM) does not
546 work for ICMPv6 socket.
547
5482001-10-24 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
549
550 * rib.c (rib_process): Select connected route any case.
551
5522001-10-23 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
553
554 * interface.c (no_ip_address_secondary): Add "no" to command.
555
5562001-10-18 NOGUCHI Kay <kay@v6.access.co.jp>
557
558 * ioctl.c (if_prefix_add_ipv6): Set the prefered and valid lifetime
559 to infinity as the freebsd4.4 workaroud.
560
5612001-08-26 mihail.balikov@interbgc.com
562
563 * zebra_snmp.c: Fix snmpwalk problem such as IPv4 address
564 A.B.C.255.
565
5662001-08-22 NOGUCHI Kay <kay@v6.access.co.jp>
567
568 * rtadv.c: Do not send RA to loopback interface.
569
5702001-08-20 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
571
572 * ioctl.c (if_set_prefix): Remove Linux 2.0 specific connected
573 route treatment.
574
5752001-08-19 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
576
577 * zebra-0.92a released.
578
5792001-08-17 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
580
581 * rib.c: Kernel route is treated as EGP routes in nexthop active
582 check.
583
5842001-08-15 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
585
586 * zebra-0.92 released.
587
5882001-08-08 "Akihiro Mizutani" <mizutani@dml.com>
589
590 * rib.c (show_ip_route_prefix_longer): Add longer-prefix option to
591 show route commands.
592
5932001-07-29 Yon Uriarte <havanna_moon@gmx.net>
594
595 * zserv.c (zsend_ipv4_add_multipath): Add
596 NEXTHOP_TYPE_IPV4_IFINDEX check.
597
5982001-07-29 NOGUCHI Kay <kay@v6.access.co.jp>
599
600 * rtadv.c: Apply valid lifetime, preferred lifetime, onilnk flag,
601 autonomous address-configuration flag patch.
602 (no_ipv6_nd_suppress_ra): Change "ipv6 nd send-ra" to "no ipv6 nd
603 suppress-ra".
604
6052001-07-24 NOGUCHI Kay <kay@v6.access.co.jp>
606
607 * rtadv.c (ipv6_nd_ra_interval): Add "ipv6 nd ra-interval SECONDS"
608 command.
609
6102001-07-24 Jun-ichiro itojun Hagino <itojun@iijlab.net>
611
612 * rt_socket.c (kernel_rtm_ipv4): Add KAME/NetBSD151 equal cost
613 multicast FIB support both IPv4 and IPv6.
614
6152001-07-24 Hal Snyder <hal@vailsys.com>
616
617 * if_ioctl.c (interface_list_ioctl): Fix bug of failing to get the
618 full list of interfaces on some configurations of OpenBSD.
619
6202001-07-23 NOGUCHI Kay <kay@v6.access.co.jp>
621
622 * rtadv.c (ipv6_nd_send_ra): Apply [zebra 9320] to fix "ipv6 nd
623 send-ra" bug.
624 (ipv6_nd_ra_lifetime): "ipv6 nd ra-lifetime 0" for default router
625 availability.
626 (ipv6_nd_managed_config_flag): "ipv6 nd managed-config-flag" is
627 added.
628 (ipv6_nd_other_config_flag): "ipv6 nd other-config-flag" is added.
629
6302001-07-23 Jun-ichiro itojun Hagino <itojun@iijlab.net>
631
632 * ioctl.c (if_ioctl): Change ioctl argument from int to u_long.
633
634 * rt_ioctl.c: Likewise.
635
6362001-07-23 Jun-ichiro itojun Hagino <itojun@iijlab.net>
637
638 * kernel_socket.c (rtm_write): Only set RTF_CLONING when the
639 interface is not p2p.
640
6412001-04-23 Kunihiro Ishiguro <kunihiro@zebra.org>
642
643 * ioctl.c (if_prefix_add_ipv6): Fix argument type.
644
6452001-04-06 Toshiaki Takada <takada@zebra.org>
646
647 * zserv.c (zsend_interface_delete): Use client->obuf instead of
648 allocating new stream.
649
6502001-03-10 Kunihiro Ishiguro <kunihiro@zebra.org>
651
652 * rt_netlink.c: Revert RTPROT_BOOT change.
653
6542001-03-08 Kunihiro Ishiguro <kunihiro@zebra.org>
655
656 * rt_netlink.c (netlink_route_change): Skip RTPROT_BOOT route.
657 (netlink_routing_table): Likewise.
658
6592001-03-07 "Akihiro Mizutani" <mizutani@dml.com>
660
661 * zserv.c (zsend_ipv4_add_multipath): Send metric value to
662 protocol daemons.
663
6642001-02-18 Kunihiro Ishiguro <kunihiro@zebra.org>
665
666 * rt_netlink.c (netlink_routing_table): Do not return
667 tb[RTA_GATEWAY] is NULL. Reported by: "Michael O'Keefe"
668 <mokeefe@qualcomm.com>.
669
6702001-02-08 Kunihiro Ishiguro <kunihiro@zebra.org>
671
672 * if_ioctl.c (interface_list_ioctl): Call if_add_update().
673 Suggested by: Chris Dunlop <chris@onthe.net.au>.
674
6752001-02-01 Kunihiro Ishiguro <kunihiro@zebra.org>
676
677 * rib.c (nexthop_active_ipv4): When nexthop type is
678 NEXTHOP_TYPE_IPV4_IFINDEX, propery set the ifindex to rifindex.
679
680 * zserv.c: Initialize rtm_table_default with 0.
681
682 * zebra-0.91 is released.
683
6842001-01-31 Kunihiro Ishiguro <kunihiro@zebra.org>
685
686 * kernel_socket.c (rtm_read): Filter cloned route. Suggested by:
687 Jun-ichiro itojun Hagino <itojun@iijlab.net>
688
6892001-01-30 Kunihiro Ishiguro <kunihiro@zebra.org>
690
691 * connected.c (connected_up_ipv6): When point-to-point destination
692 address is ::, use local address for connected network.
693 (connected_down_ipv6): Likewise.
694
6952001-01-25 Kunihiro Ishiguro <kunihiro@zebra.org>
696
697 * zserv.c (zebra_serv): Add missing close() call. Reported by:
698 David Waitzman <djw@vineyard.net>.
699
7002001-01-24 Kunihiro Ishiguro <kunihiro@zebra.org>
701
702 * rib.c (rib_lookup_ipv4): New function for checking exact match
703 IGP route.
704
7052001-01-23 Kunihiro Ishiguro <kunihiro@zebra.org>
706
707 * rib.c (show_ipv6_route_protocol): Fix bug of "show ip route
708 route-type".
709
7102001-01-22 Kunihiro Ishiguro <kunihiro@zebra.org>
711
712 * interface.c (zebra_interface): Do not call
713 zebra_interface_add_update for inactive interface.
714
715 * zserv.c (zsend_interface_address_add): Send interface address
716 flag.
717 (zsend_interface_address_delete): Likewise.
718
7192001-01-19 Kunihiro Ishiguro <kunihiro@zebra.org>
720
721 * interface.c (if_addr_add): Add flags.
722
723 * connected.c (ifa_add_ipv4): Add new function for interface
724 address handling.
725 (ifa_delete_ipv4): Likewise.
726
7272001-01-16 Kunihiro Ishiguro <kunihiro@zebra.org>
728
729 * rib.c (rib_update): Update IPv6 RIB.
730
731 * kernel_socket.c (ifam_read): Call if_refresh() for update
732 interface flag status. This is for implicit interface up on *BSD.
733
734 * interface.c (if_refresh): Add interface flag refresh function.
735
736 * kernel_socket.c (rtm_read): Fetch link-local address interface
737 index.
738 (ifan_read): We need to fetch interface information. Suggested
739 by: Yasuhiro Ohara <yasu@sfc.wide.ad.jp>.
740
741 * rib.c (static_ipv6_nexthop_same): Add check for
742 NEXTHOP_TYPE_IPV6_IFNAME.
743
7442001-01-15 Kunihiro Ishiguro <kunihiro@zebra.org>
745
746 * rib.h (NEW_RIB): Turn on NEW_RIB flag. IPv6 new RIB code are
747 taken into place.
748
7492001-01-14 Kunihiro Ishiguro <kunihiro@zebra.org>
750
751 * rib.c (static_ipv6_write): Display STATIC_IPV6_GATEWAY_IFNAME
752 configuration.
753 (rib_delete_ipv6): Handle same route conter for IPv6 connected
754 route.
755 (show_ipv6_route_protocol): New command.
756 (show_ipv6_route_addr): Likewise.
757 (show_ipv6_route_prefix): Likewise.
758 (rib_update): Sweep kernel route when it is cleaned up.
759
760 * rt_socket.c (kernel_add_ipv6): Add NEXTHOP_IPV6_IFNAME
761 treatmenet.
762
763 * rt_netlink.c (kernel_init): Likewise.
764
765 * rt_ioctl.c (kernel_ioctl_ipv6_multipath): Likewise.
766
767 * rib.c (rib_add_ipv4): Cope with same connected route on a
768 interface. Suggested by: Matthew Grant <grantma@anathoth.gen.nz>.
769 (nexthop_ipv6_ifname_add): Add NEXTHOP_IPV6_IFNAME treatmenet.
770
771 * rib.h (struct new_rib): Add refcnt to keep track on the
772 reference of same connected route.
773
774 * ioctl.c (if_set_prefix): Add check for GNU_LINUX.
775
7762001-01-13 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
777
778 * kernel_socket.c (ifan_read, rtm_type_str): Add RTM_OIFINFO check.
779 (rtm_type_str): Add RTM_IFANNOUNCE check.
780 (ifan_read): New function.
781 (kernel_read): Add case for RTM_IFANNOUNCE.
782
7832001-01-13 Kunihiro Ishiguro <kunihiro@zebra.org>
784
785 * rt_ioctl.c (kernel_ioctl_ipv6_multipath): New function.
786
787 * rt_netlink.c (netlink_route_multipath): IPv6 address ifindex
788 treatment.
789
790 * connected.c (connected_up_ipv6): Add dest value check.
791
792 * rib.c (nexthop_active_ipv6): Do not touch IPv6 nexthop's
793 ifindex.
794 (rib_add_ipv4): Import rib_add_ipv6() same route check code.
795 (nexthop_active_check): NEXTHOP_TYPE_IPV6_IFINDEX activity is only
796 checked by ifindex.
797
798 * rt_socket.c (kernel_rtm_ipv6_multipath): New function.
799
800 * redistribute.c (redistribute_add): Use
801 zsend_ipv6_add_multipath().
802 (redistribute_delete_multipath): Use
803 zsend_ipv6_delete_multipath().
804
805 * interface.c (ip_address): Check current IP address to avoid
806 duplicate.
807
808 * rib.c (rib_delete_ipv4): When deleted route is connected route,
809 check ifindex.
810 (rib_add_ipv4): When connected route is added do not perform
811 implicit withdraw.
812 (rib_delete_ipv4): Check ifindex for connected route.
813
814 * kernel_socket.c (rtm_read): When route has RTF_STATIC, set
815 ZEBRA_FLAG_STATIC for indicate as persistent route.
816 (ifam_read): Unset interface index from link-local address when
817 IPv6 stack is KAME.
818
819 * rib.c (rib_update): Do not delete persistent kernel route.
820
821 * rib.h (struct new_rib): Integrate RIB_FLAG_* to ZEBRA_FLAG_*.
822
823 * rt_socket.c (kernel_add_ipv6_multipath): Add placeholder.
824 (kernel_delete_ipv6_multipath): Likewise.
825
826 * rt_netlink.c (netlink_talk): Give struct nlsock to netlink_talk.
827
8282001-01-12 Kunihiro Ishiguro <kunihiro@zebra.org>
829
830 * rib.c (rib_update): Revert Matthew Grant's patch
831 zebra_cvs_newribfix.patch. Use struct rib->ifindex for kernel
832 interface index. Introduce NEXTHOP_TYPE_IPV4_IFINDEX to support
833 that. Add support for address deletion situation.
834
8352001-01-11 Kunihiro Ishiguro <kunihiro@zebra.org>
836
837 * interface.c: Remove HAVE_IF_PSEUDO part.
838
839 * rib.h: Likewise.
840
841 * rt_netlink.c (netlink_link_change): Likewise.
842
8432001-01-10 Kunihiro Ishiguro <kunihiro@zebra.org>
844
845 * zserv.c: Remove OLD_RIB codes.
846
8472001-01-09 Kunihiro Ishiguro <kunihiro@zebra.org>
848
849 * zebra-0.90 is released.
850
8512001-01-09 Matthew Grant <grantma@anathoth.gen.nz>
852
853 * interface.c (if_new_intern_ifindex): Allocate a new internal
854 interface index.
855 (if_addr_refresh): Fix up ip addresses configured via zebra.
856 (if_add_update): Handle an interface addition.
857 (if_delete_update): Handle an interface delete event.
858
859 * rib.c (nexthop_ipv4_add): Add kernel route deletion process when
860 interface goes down.
861
8622001-01-08 Kunihiro Ishiguro <kunihiro@zebra.org>
863
864 * interface.c (if_dump_vty): When HAVE_NET_RT_IFLIST is defined,
865 NetBSD also use this function. Suggested by Jasper Wallace
866 <jasper@ivision.co.uk>.
867
8682001-01-07 Kunihiro Ishiguro <kunihiro@zebra.org>
869
870 * rib.c (nexthop_active_ipv4): Move back to set methodo to old
871 one.
872
8732001-01-05 Kunihiro Ishiguro <kunihiro@zebra.org>
874
875 * rib.c (rib_add_ipv4): EBGP multihop set ZEBRA_FLAG_INTERNAL
876 flag, so treat it.
877
8782001-01-04 Kunihiro Ishiguro <kunihiro@zebra.org>
879
880 * rt_netlink.c (netlink_talk_ipv6): When IPv6 route message is
881 sent from netlink_cmd, the same message comes from netlink. To
882 avoid confusion, temporary netlink_talk_ipv6 use netlink.sock
883 instead of netlink_cmd.sock.
884
8852001-01-01 Kunihiro Ishiguro <kunihiro@zebra.org>
886
887 * zserv.h (ZEBRA_SERV_PATH): Change "/tmp/zebra" to "/tmp/.zebra".
888 Change "/tmp/zserv" to "/tmp/.zserv".
889
8902000-12-29 Frank van Maarseveen <F.vanMaarseveen@inter.NL.net>
891
892 * rt_netlink.c (struct nlsock): Divide kernel message into listen
893 socket and command socket.
894 (netlink_talk): Remove socket listen code. Use netlink_parse_info
895 for read kernel response.
896
8972000-12-29 Kunihiro Ishiguro <kunihiro@zebra.org>
898
899 * rib.c (vty_show_ip_route): Show uptime of the RIP,OSPF,BGP
900 routes.
901
9022000-12-27 Kunihiro Ishiguro <kunihiro@zebra.org>
903
904 * rt_netlink.c (netlink_route_multipath): Metric value is
905 reflected to kernel routing table.
906
907 * rt_ioctl.c (kernel_ioctl_ipv4_multipath): Likewise.
908
909 * kernel_socket.c (rtm_write): Likewise.
910
911 * rib.c (nexthop_active_ipv4): Only iBGP route perform recursive
912 nexthop lookup.
913
914 * rt_ioctl.c (kernel_ioctl_ipv4_multipath): Add ioctl version of
915 new RIB implementation.
916
9172000-12-26 Kunihiro Ishiguro <kunihiro@zebra.org>
918
919 * rib.h: Remove MULTIPATH_NUM. It is defined by configure script.
920
9212000-12-25 Michael Rozhavsky <mrozhavsky@opticalaccess.com>
922
923 * rib.c (rib_if_up): Call rib_fib_set instead of RIB_FIB_SET for
924 proper redistribution.
925
9262000-12-19 Kunihiro Ishiguro <kunihiro@zebra.org>
927
928 * rib.c (nexthop_active_ipv4): Add self lookup nexthop check.
929 (show_ip_route_protocol): Support new RIB.
930
931 * rt_netlink.c (netlink_route_change): Do not return when gate is
932 NULL.
933
9342000-12-18 Kunihiro Ishiguro <kunihiro@zebra.org>
935
936 * rib.c (rib_lookup_ipv4_nexthop): IBGP nexthop check function is
937 updated.
938 (rib_add_ipv4): Free implicit withdraw route's RIB.
939
9402000-12-15 Kunihiro Ishiguro <kunihiro@zebra.org>
941
942 * rib.c (nexthop_active_ipv4): Check indirect nexthop.
943
944 * redistribute.c (redistribute_add_multipath): Redistribution
945 works with new rib code.
946
9472000-12-14 Kunihiro Ishiguro <kunihiro@zebra.org>
948
949 * rt_netlink.c (netlink_route_multipath): Check useful nexthop
950 number.
951 (netlink_route_multipath): Clear rtnh_flags and rtnh_hops.
952
953 * rib.c (nexthop_active_update): Set flag for the rib's nexthop
954 activity is changed.
955 (nexthop_active_check): Before checking interface is up, make it
956 sure the interface exist.
957
9582000-11-20 Kunihiro Ishiguro <kunihiro@zebra.org>
959
960 * rib.c (ip_route): New RIB prototype.
961
9622000-11-16 Yon Uriarte <ukl2@rz.uni-karlsruhe.de>
963
964 * zserv.c (zsend_interface_add): Send hardware address when
965 hw_addr_len is greater than 0.
966
9672000-11-07 Kunihiro Ishiguro <kunihiro@zebra.org>
968
969 * connected.c (connected_up_ipv4): Fix ptop bug. The destination
970 network should be installed into routing table.
971 (connected_down_ipv4): Likewise.
972 (connected_add_ipv4): Change to use connected_up_ipv4.
973 (connected_delete_ipv4): Likewise.
974
9752000-11-06 Kunihiro Ishiguro <kunihiro@zebra.org>
976
977 * rt_netlink.c (netlink_interface_addr): Revert Harald Welte
978 <laforge@gnumonks.org>'s ptop patch then back to original code to
979 avoid duplicated connected route problem. Suggested by Frank van
980 Maarseveen <F.vanMaarseveen@inter.NL.net>.
981
982 * kernel_socket.c (rtm_read): Make behavior consistent even #ifdef
983 DEBUG is defined. Reported by Jun-ichiro itojun Hagino
984 <itojun@iijlab.net>.
985
9862000-10-23 Jochen Friedrich <jochen@scram.de>
987
988 * main.c (main): Call zebra_snmp_init() when it is enabled.
989
9902000-10-23 Kunihiro Ishiguro <kunihiro@zebra.org>
991
992 * zserv.c (zebra_serv_un): UNIX domain socket server of zebra
993 protocol.
994
9952000-10-19 Kunihiro Ishiguro <kunihiro@zebra.org>
996
997 * rib.c (rib_add_ipv4): Same check bug is fixed.
998
9992000-10-03 Kunihiro Ishiguro <kunihiro@zebra.org>
1000
1001 * rib.c (rib_if_down): Remove kernel route when the interface goes
1002 down.
1003
1004 * debug.c: New command "debug zebra kernel" is added.
1005
10062000-10-02 Kunihiro Ishiguro <kunihiro@zebra.org>
1007
1008 * zebra-0.89 is released.
1009
10102000-09-24 Harald Welte <laforge@gnumonks.org>
1011
1012 * rt_netlink.c (netlink_interface_addr): Fix point-to-point address
1013 treatment in netlink interface.
1014
10152000-09-21 David Lipovkov <dlipovkov@OpticalAccess.com>
1016
1017 * rib.c (rib_if_down): Pull static route only. Protocol daemon
1018 must withdraw routes when interface goes down.
1019 (rib_add_ipv4): Check nexthop when replace route.
1020
10212000-09-21 Kunihiro Ishiguro <kunihiro@zebra.org>
1022
1023 * if_ioctl.c (if_getaddrs): New function for looking up
1024 interface's address by getifaddrs().
1025
10262000-09-10 Kunihiro Ishiguro <kunihiro@zebra.org>
1027
1028 * connected.c (connected_delete_ipv4): Add check for connected
1029 address is found or not.
1030 (connected_add_ipv6): Reflect IPv6 connected address change to
1031 protocol daemons.
1032 (connected_delete_ipv6): Likewise.
1033
10342000-09-07 David Lipovkov <davidl@nbase.co.il>
1035
1036 * rib.c (rib_delete_ipv4): Reverted the change from pseudo
1037 interface patch to original. Because ospfd deletes routes using
1038 zero ifindex.
1039
10402000-08-17 Kunihiro Ishiguro <kunihiro@zebra.org>
1041
1042 * zebra-0.88 is released.
1043
10442000-08-15 "Akihiro Mizutani" <mizutani@dml.com>
1045
1046 * rib.c (show_ip_route_protocol): Help string correction.
1047 (show_ip_route_prefix): Check prefix mask.
1048 (show_ip_route_vty_detail): Display distance and metric.
1049
10502000-08-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1051
1052 * zserv.c (zsend_interface_add): Change ifindex store size from
1053 two octet to four.
1054 (zsend_interface_delete): Likewise.
1055 (zsend_interface_address_add): Likewise.
1056 (zsend_interface_address_delete): Likewise.
1057 (zsend_interface_up): Likewise.
1058 (zsend_interface_down): Likewise.
1059
10602000-08-13 Kunihiro Ishiguro <kunihiro@zebra.org>
1061
1062 * rib.c (rib_add_ipv4): Do not install distance 255 route.
1063
10642000-08-10 Toshiaki Takada <takada@zebra.org>
1065
1066 * interface.c (bandwidth_if), (no_bandwidth_if): Call
1067 zebra_interface_up_update () instead of using if_up() and if_down().
1068
10692000-08-07 "Akihiro Mizutani" <mizutani@dml.com>
1070
1071 * interface.c (bandwidth_if): Fix help string.
1072
10732000-08-07 Matthew Grant <grantma@anathoth.gen.nz>
1074
1075 * interface.c (if_dump_vty): Display bandwidth value.
1076 (bandwidth_if): New command "bandwidth <1-10000000>" is added.
1077 When interface is up, force protocol daemons to recalculate routes
1078 due to cost change.
1079 (no_bandwidth_if): Likewise.
1080 (if_config_write): Output bandwidth configuration.
1081
1082 * zserv.c (zsend_interface_add): Send bandwidth value.
1083 (zsend_interface_up): Likewise.
1084 (zsend_interface_down): Likewise.
1085
1086
10872000-08-07 Michael Rozhavsky <mike@nbase.co.il>
1088
1089 * rib.c (show_ip_route_protocol): "show ip route
1090 (bgp|connected|kernel|ospf|rip|static)" is added.
1091
10922000-08-07 Kunihiro Ishiguro <kunihiro@zebra.org>
1093
1094 * rib.c (rib_lookup_ipv4_nexthop): Check parent node until IGP
1095 nexthop is found.
1096 (rib_add_ipv4_internal): Set fib ifindex to rib ifindex.
1097
10982000-08-06 Kunihiro Ishiguro <kunihiro@zebra.org>
1099
1100 * redistribute.c (redistribute_delete): Fix bug of default route
1101 redistribute treatment.
1102
11032000-08-05 Kunihiro Ishiguro <kunihiro@zebra.org>
1104
1105 * rib.c (rib_init): Install ip_node in rib.c instead of zserv.c.
1106 Change default distance value.
1107
1108 Old New
1109 ------------------------------------------
1110 system 10 0
1111 kernel 20 0
1112 connected 30 0
1113 static 40 1
1114 rip 50 120
1115 ripng 50 120
1116 ospf 60 110
1117 ospf6 49 110
1118 bgp 70 200(iBGP) 20(eBGP)
1119 ------------------------------------------
1120
1121 * zserv.c (client_lookup): Function removed.
1122 (zsend_interface_add): Use client's output buffer. Check ifinfo
1123 flag.
1124 (zsend_interface_delete): Likewise.
1125 Delete ipv4_static_radix and ipv6_static_radix.
1126
11272000-08-02 Kunihiro Ishiguro <kunihiro@zebra.org>
1128
1129 * zserv.h (struct zebra_client): When client request interface
1130 information, ifinfo is set.
1131
1132 * rib.c: Temporary Revert changes for pseudo interface.
1133
1134 * rib.h: Likewise.
1135
1136 * zserv.c: Likewise.
1137
1138 * interface.c: Likewise.
1139
11402000-08-02 David Lipovkov <davidl@nbase.co.il>
1141
1142 * interface.c (zebra_if_init): Install interface "pseudo"
1143 commands.
1144
1145 * rib.c (rib_create): ifname argument is added.
1146 (rib_add_ipv4_pseudo): New function is added.
1147 (rib_delete_ipv4_pseudo): Likewise.
1148
1149 * rib.h : Delete INTERFACE_UNKNOWN definition. Add prototype for
1150 pseudo interface functions.
1151
1152 * rt_netlink.c (netlink_link_change): Check for pseudo interface.
1153
1154 * zserv.c (ip_route): When destination is pseudo interface, call
1155 rib_add_ipv4_pseudo().
1156
1157 * zserv.c (no_ip_route): Trim "unknown" argument.
1158
11592000-07-26 kunitake@dti.ad.jp
1160
1161 * if_ioctl.c (if_get_hwaddr): Fix hardware address length from 8
1162 to 6.
1163
1164 * rtadv.c (rtadv_send_packet): Fix shift bug for hardware address.
1165
11662000-07-24 Akihiro Mizutani <mizutani@dml.com>
1167
1168 * interface.c: Use install_default() for common VTY commands.
1169
11702000-07-23 Kunihiro Ishiguro <kunihiro@zebra.org>
1171
1172 * if_ioctl.c (interface_list_ioctl): A interface list size is
1173 calculated from ifreq->if_addr.sa_len. This is for OpenBSD.
1174
1175 * ioctl.c (if_get_mtu): Remove codes for SIOCGIFDATA.
1176
11772000-07-09 Chris Dunlop <chris@onthe.net.au>
1178
1179 * if_ioctl.c (if_get_index): Add check for HAVE_BROKEN_ALIASES.
1180
11812000-07-04 Kunihiro Ishiguro <kunihiro@zebra.org>
1182
1183 * zserv.c (zebra_client_read): Add ZEBRA_REDISTRIBUTE_{ADD,DELETE}
1184 message handling.
1185
11862000-07-02 David Lipovkov <davidl@nbase.co.il>
1187
1188 * zserv.c: "ip route A.B.C.D/M unknown" command is added.
1189
11902000-06-28 Michael Rozhavsky <mike@nbase.co.il>
1191
1192 * rib.c: Remove old kernel route when new route comes in.
1193
11942000-06-13 David Lipovkov <davidl@nbase.co.il>
1195
1196 * rib.c (rib_if_up): Add check for unknown interface.
1197
11982000-06-13 Kunihiro Ishiguro <kunihiro@zebra.org>
1199
1200 * rib.h: Define INTERFACE_UNKNOWN.
1201
12022000-06-08 Kunihiro Ishiguro <kunihiro@zebra.org>
1203
1204 * Makefile.am (EXTRA_DIST): Move irdp.c until implementation is
1205 finished.
1206
12072000-06-05 David Lipovkov <davidl@nbase.co.il>
1208
1209 * interface.c (if_zebra_delete_hook): Call rib_if_delete().
1210
1211 * redistribute.c (zebra_interface_delete_update): New function.
1212
1213 * redistribute.h (zebra_interface_delete_update): New function
1214 prototype.
1215
1216 * rib.c (rib_if_delete): New function. Walk down all routes and
1217 delete all on the interface.
1218
1219 * rib.h: New function prototype.
1220
1221 * rt_netlink.c (netlink_link_change): Call
1222 zebra_interface_delete_update ().
1223
12242000-05-10 Kunihiro Ishiguro <kunihiro@zebra.org>
1225
1226 * if_ioctl.c (interface_info_ioctl): Check interface's flag before
1227 checking interface's address.
1228
12292000-04-26 Jochen Friedrich <jochen@nwe.de>
1230
1231 * GNOME-PRODUCT-ZEBRA-MIB: New file.
1232
1233 * GNOME-SMI: New file.
1234
12352000-04-23 Kunihiro Ishiguro <kunihiro@zebra.org>
1236
1237 * irdp.c: New file from 1997 development code.
1238 * irdp.h: Likewise.
1239
12402000-04-19 Kunihiro Ishiguro <kunihiro@zebra.org>
1241
1242 * rtadv.c (rtadv_send_packet): Enclose router advertisement
1243 logging with IS_ZEBRA_DEBUG_PACKET.
1244
12452000-04-17 Kunihiro Ishiguro <kunihiro@zebra.org>
1246
1247 * zserv.c (zebra_client_close): Remove client structure from
1248 client_list when connection is terminated.
1249
12502000-03-21 David Lipovkov <davidl@nbase.co.il>
1251
1252 * connected.c (connected_add_ipv4): Allows all necessary structure
1253 updates for connected route, but doesn't insert it into rib if
1254 it's interface is down.
1255
12562000-01-21 Hideto Yamakawa <hideto.yamakawa@soliton.co.jp>
1257
1258 * rtread_getmsg.c: Set some definition for Solaris 2.5 and Solaris
1259 2.5.1.
1260
12612000-01-21 Kunihiro Ishiguro <kunihiro@zebra.org>
1262
1263 * rib.c (no_ipv6_route_ifname): Fix buf of cheking return value
1264 from str2prefix_ipv6().
1265
12662000-01-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1267
1268 * rt_socket.c: Revert to use RTF_HOST for IPv4 with /32 route and
1269 IPv6 with /128 routes.
1270 (kernel_rtm_ipv4): In case of /32 route's gateway is interface. It
1271 should have mask for cloning.
1272
12731999-12-26 Jochen.Friedrich@genorz.de
1274
1275 * interface.c (if_dump_vty): Fix a bug of missing VTY_NEWLINE.
1276
12771999-12-23 Alex Zinin <zinin@amt.ru>
1278 * interface.*: dynamic int up/down support
1279
12801999-12-09 Kunihiro Ishiguro <kunihiro@zebra.org>
1281
1282 * ipforward_proc.c (dropline): Move dropline() from lib/dropline.c
1283
1284 * rtread_proc.c (proc_route_read): Don't use dropline().
1285
12861999-12-08 Kunihiro Ishiguro <kunihiro@zebra.org>
1287
1288 * kernel_socket.c (rtm_read): When message is RTM_GET, it has own
1289 process's pid.
1290
12911999-12-04 Kunihiro Ishiguro <kunihiro@zebra.org>
1292
1293 * main.c (main): Change to default log output to ZLOG_STDOUT.
1294
1295 * zserv.c (zebra_serv): More detailed error print.
1296
12971999-11-30 Kunihiro Ishiguro <kunihiro@zebra.org>
1298
1299 * kernel_socket.c (rtm_read): Check old pid for static route
1300 insertion check.
1301
13021999-11-30 Kunihiro Ishiguro <kunihiro@zebra.org>
1303
1304 * interface.c (if_dump_vty): BSDI/OS uses 64bit for interface
1305 statistics counter.
1306
1307 * mtu_kvm.c: New file added.
1308
13091999-11-27 Vladimir B. Grebenschikov <vova@express.ru>
1310
1311 * kernel_socket.c (rtm_write): Set RTF_CLONING flag for
1312 route to the directly connected interface.
1313
13141999-11-27 Kunihiro Ishiguro <kunihiro@zebra.org>
1315
1316 * rt_socket.c: Delete USE_HOST_BIT definition.
1317
13181999-11-21 Michael Handler <handler@sub-rosa.com>
1319
1320 * rtread_getmsg.c: Undef some definition to resolve conflict.
1321
13221999-11-27 Kunihiro Ishiguro <kunihiro@zebra.org>
1323
1324 * kernel_socket.c (rtm_write): Change to use pre stored struct_dl
1325 value for gateway specification.
1326
13271999-11-25 Kunihiro Ishiguro <kunihiro@zebra.org>
1328
1329 * rt_socket.c (kernel_rtm_ipv4): Even mask is 32 under IPv4 or
1330 128 under IPv6, don't use RTF_HOST.
1331
13321999-11-21 Kunihiro Ishiguro <kunihiro@zebra.org>
1333
1334 * Makefile.am (EXTRA_DIST): Add rtread_getmsg.c.
1335
13361999-11-21 Michael Handler <handler@sub-rosa.com>
1337
1338 * rtread_getmsg.c: Added for Solaris 2.6 support.
1339
13401999-11-18 Kunihiro Ishiguro <kunihiro@zebra.org>
1341
1342 * rtread_sysctl.c (rtm_read_route): RTM_DELETE handling added.
1343
1344 * rt_socket.c (kernel_read): Better BSD routing socket support.
1345
13461999-10-19 Kunihiro Ishiguro <kunihiro@zebra.org>
1347
1348 * client_main.c: Disable making obsolete zebra test `client'
1349 command.
1350
13511999-10-18 Kunihiro Ishiguro <kunihiro@zebra.org>
1352
1353 * zebra.c: Renamed to zserv.c.
1354
1355 * zebra.h: Global definitions are moved to lib/zebra.h. Then
1356 renamed to zserv.h.
1357
13581999-10-15 Jordan Mendelson <jordy@wserv.com>
1359
1360 * if_ioctl.c: Add Linux 2.2.X's alias support and dynamic
1361 interface. Remove ugly MAX_INTERFACE handling codes.
1362
13631999-09-17 Satosi KOBAYASI <kobayasi@north.ad.jp>
1364
1365 * Fix serious bug of IPv6 route deletion.
1366
13671999-09-11 Kunihiro Ishiguro <kunihiro@zebra.org>
1368
1369 * ioctl.c (if_set_prefix): Properly set broadcast address.
1370
13711999-09-04 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1372
1373 * rib.c (rib_add_ipv6, rib_delete_ipv6): now protocol daemons
1374 can install connected route to kernel via zebra
1375
13761999-08-24 VOP <vop@unity.net>
1377
1378 * rib.c: Include "sockunion.h"
1379
13801999-08-22 Kunihiro Ishiguro <kunihiro@zebra.org>
1381
1382 * ipforward.h: New file.
1383
1384 * zebra.h: Obsolete message ZEBRA_GET_ALL_INTERFACE,
1385 ZEBRA_GET_ONE_INTERFACE, ZEBRA_GET_HOSTINFO are deleted.
1386
13871999-08-18 Kunihiro Ishiguro <kunihiro@zebra.org>
1388
1389 * zebra.h (ZEBRA_INTERFACE_ADDRESS_ADD):
1390 ZEBRA_INTERFACE_{ADD,DELETE} added.
1391
13921999-08-15 Kunihiro Ishiguro <kunihiro@zebra.org>
1393
1394 * rib.c: show ip route A.B.C.D works.
1395
1396 * zebra.c (zebra_read_ipv4): Add ifindex to zebra messages.
1397
13981999-08-12 Kunihiro Ishiguro <kunihiro@zebra.org>
1399
1400 * zebra.h: New Zebra message ZEBRA_INTERFACE_{ADD,DELETE} added.
1401
14021999-08-09 Kunihiro Ishiguro <kunihiro@zebra.org>
1403
1404 * interface.h: New file.
1405 * Makefile.am: Add interface.h
1406
14071999-08-04 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1408
1409 * redistribute.c (zebra_redistribute): give ifindex to client.
1410
14111999-08-02 Kunihiro Ishiguro <kunihiro@zebra.org>
1412
1413 * main.c (longopts): -k, --keep_kernel option added.
1414
14151999-07-18 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1416
1417 * rt_socket.c (rtm_write): forgot closing socket bug fixed.
1418
14191999-07-17 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1420
1421 * rib.c (show_ipv6_cmd): if rib is link show interface name.
1422
14231999-07-17 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1424
1425 * rt_socket.c (rtm_write): use sockaddr_dl when null gateway.
1426
14271999-07-16 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1428
1429 * rt_socket.c (rtm_write): ipv6 route table bug fixed.
1430
14311999-07-15 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1432
1433 * zebra.c (zebra_read_ipv6): read link prefix from ospf6 support
1434
14351999-07-15 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1436
1437 * rt_socket.c (kernel_rtm_ipv6): gate treatment bug fixed.
1438
14391999-07-15 Kunihiro Ishiguro <kunihiro@zebra.org>
1440
1441 * if_sysctl.c (ifm_read): Clear sockunion argument before fetching
1442 data. Suggested by "Chris P. Ross" <cross@eng.us.uu.net>
1443
14441999-07-08 HEO SeonMeyong <seirios@Matrix.IRI.Co.Jp>
1445
1446 * interface.c (if_tun_add): Add KAME's gif tunnel setting codes.
1447
14481999-06-26 Kunihiro Ishiguro <kunihiro@zebra.org>
1449
1450 * zebra.c (zebra_serv): Only accept loopback address connection.
1451
14521999-06-25 Kunihiro Ishiguro <kunihiro@zebra.org>
1453
1454 * zebra.h (ZEBRA_ROUTE_EXTERNAL): Add zebra messages flags
1455
14561999-06-17 Kunihiro Ishiguro <kunihiro@zebra.org>
1457
1458 * ipforward_proc.c: ipforward_on () and ipforward_off () added.
1459
14601999-06-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1461
1462 * ipforward_proc.c (ipforward_ipv6): Check for IPv6 forwarding
1463 using /proc file system is added.
1464
14651999-06-06 Kunihiro Ishiguro <kunihiro@zebra.org>
1466
1467 * if_ioctl.c (if_get_index): Interface index set bug is fixed by
1468 adding #else at the middle of function. Suggested by David Luyer
1469 <luyer@ucs.uwa.edu.au>.
1470
14711999-05-29 <kunihiro@zebra.org>
1472
1473 * rt_ioctl.c: Comment out #include <linux/ipv6_route.h>.
1474
14751999-05-26 Kunihiro Ishiguro <kunihiro@zebra.org>
1476
1477 * zebra.h (ZEBRA_ROUTE_MAX): Add new define for the max value of
1478 the sort of routes.
1479
14801999-05-25 Patrick Koppen <koppen@rhrk.uni-kl.de>
1481
1482 * rt_netlink.c (netlink_socket): Make netlink socket non-blocking.
1483 (netlink_parse_info): If errno is EWOULDBLOCK then continue to
1484 parse the message.
1485 (netlink_talk): Likewise
1486
14871999-05-17 <kunihiro@zebra.org>
1488
1489 * redistribute.c (zebra_check_addr): Added for loopback address
1490 check.
1491
14921999-05-15 Kunihiro Ishiguro <kunihiro@zebra.org>
1493
1494 * rt_netlink.c (netlink_route_change): Tempolary bypass ipv6 route
1495 change treatment.
1496
1497 * Makefile.am (noinst_HEADERS): redistribute.h added.
1498
1499 * redistribute.h: New file.
1500
15011999-05-14 Stephen R. van den Berg <srb@cuci.nl>
1502
1503 * zebra.c (show_table): Show all table configuration DEFUN.
1504 (config_table): Config table number DEFUN.
1505
1506 * rt_netlink.c: Add support for multiple routing table.
1507
1508 * rib.c (rib_weed_table): New function added for delete all
1509 routes from specified routing table.
1510
1511 * main.c (signal_init): SIGTERM call sigint.
1512 (sigint): Loggging more better message.
1513
15141999-05-09 Kunihiro Ishiguro <kunihiro@zebra.org>
1515
1516 * rt_netlink.c: Change log () to zlog ().
1517
15181999-05-07 <kunihiro@zebra.org>
1519
1520 * zebra.h (ZEBRA_ROUTE_OSPF6): Added for ospf6d route.
1521
15221999-04-20 Kunihiro Ishiguro <kunihiro@zebra.org>
1523
1524 * interface.c: Add `no ip address' command.
1525
15261999-04-10 Kunihiro Ishiguro <kunihiro@zebra.org>
1527
1528 * rt_netlink.c (kernel_read): Function added for asynchronous
1529 zebra between kernel communication.
1530
15311999-03-25 Kunihiro Ishiguro <kunihiro@zebra.org>
1532
1533 * rtread_sysctl.c (rtm_read): Fix address memcopy overrun bug.
1534 Reported by Achim Patzner <ap@bnc.net>.
1535
15361999-03-03 Kunihiro Ishiguro <kunihiro@zebra.org>
1537
1538 * Makefile.am: Install configuration sample with 600 permission.
1539
15401999-03-02 Kunihiro Ishiguro <kunihiro@zebra.org>
1541
1542 * Makefile.am: Add -I.. to INCLUDES.
1543
15441999-02-18 Peter Galbavy <Peter.Galbavy@knowledge.com>
1545
1546 * syslog support added
1547
15481999-02-17 Peter Galbavy <Peter.Galbavy@knowledge.com>
1549
1550 * if_sysctl.c (interface_list): allocated memory free when unknown
1551 ifm_type is returned.
1552
1553 * ioctl.c (if_get_mtu): added SIOCGIFDATA treatment.
1554
15551998-12-15 Magnus Ahltorp <map@stacken.kth.se>
1556
1557 * interface.c: Header include added.
1558
15591998-12-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1560
1561 * rt.h (kernel_delete_ipv6): change int index to unsigned int index.
1562
15631998-12-13 Kunihiro Ishiguro <kunihiro@zebra.org>
1564
1565 * if_ioctl.c (interface_list_ioctl): interface flag must be
1566 checked before check addresses of the interface.
1567
15681998-12-07 Kunihiro Ishiguro <kunihiro@zebra.org>
1569
1570 * Makefile.am (INCLUDES): add @INCLUDES@ for Linux IPv6.
1571
15721998-10-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1573
1574 * ioctl.c: Linux version before 2.1.0 need interface route setup.
1575
15761998-09-15 HEO SeonMeyong <seirios@matrix.iri.co.jp>
1577
1578 * change HYDRANGEA to KAME
1579
15801998-09-01 Kunihiro Ishiguro <kunihiro@zebra.org>
1581
1582 * if_ioctl.c (if_addr_ioctl): set address family for getting
1583 interface's address.
1584 (if_get_index): silently return when can't get interface's index.
1585
15861998-08-17 Kunihiro Ishiguro <kunihiro@zebra.org>
1587
1588 * main.c (main): batch mode option '-b' added.
1589
15901998-08-16 Kunihiro Ishiguro <kunihiro@zebra.org>
1591
1592 * ioctl.c (if_set_prefix): add `ip address IPV4ADDR' command.
1593 * interface.c (shutdown_if): add interface shutdown and no
1594 shutdown command.
1595
15961998-08-12 Kunihiro Ishiguro <kunihiro@zebra.org>
1597
1598 * rib.c (rib_add_ipv6): delete rib_add_in6.
1599
16001998-07-27 Kunihiro Ishiguro <kunihiro@zebra.org>
1601
1602 * main.c: retain flag is added.
1603
16041998-07-08 Kunihiro Ishiguro <kunihiro@zebra.org>
1605
1606 * rtable.[ch]: merged with rib.[ch]
1607
16081998-07-07 Kunihiro Ishiguro <kunihiro@zebra.org>
1609
1610 * connected.h: renamed from ifa.h.
1611
16121998-06-09 Kunihiro Ishiguro <kunihiro@zebra.org>
1613
1614 * rename if.c to interface.c
1615 * rename ifa.c to connected.c
1616
1617 * Porting to Debian GNU/Linux 2.0 (hamm).
1618
16191998-06-08 Kunihiro Ishiguro <kunihiro@zebra.org>
1620
1621 * rt_netlink.c: renamed from krt_netlink.c
1622
1623 * fib.c: deleted.
1624 * rt_kvm.c: deleted.
1625 * rtread_getmsg.c: deleted.
1626
16271998-06-07 Kunihiro Ishiguro <kunihiro@zebra.org>
1628
1629 * if.c (multicast): add multicast flag [un]set fucntion.
1630
16311998-05-19 Yamshita TAKAO <jargon@lares.dti.ne.jp>
1632
1633 * rt_socket.c: Modify for compile on Solaris, but dont't work it.
1634 rt_socket.c have some undefined function, so add directive "IMPLEMENT"
1635
16361998-05-18 Yamshita TAKAO <jargon@lares.dti.ne.jp>
1637
1638 * zebra.c: Modify for compile on Solaris.
1639
16401998-05-03 Kunihiro Ishiguro <kunihiro@zebra.org>
1641
1642 * main.c: change CONFDIR to SYSCONFDIR.
1643
16441998-05-01 Kunihiro Ishiguro <kunihiro@zebra.org>
1645
1646 * .cvsignore: added.
1647
16481998-04-02 Kunihiro Ishiguro <kunihiro@zebra.org>
1649
1650 * client.c: moves to ../lib.
1651
16521998-03-30 Kunihiro Ishiguro <kunihiro@zebra.org>
1653
1654 * if_ioctl.c (if_get_addr): Change address copy from memcopy() to
1655 structure assignment.
1656
16571998-03-30 URA Hiroshi <ura@yamato.ibm.co.jp>
1658
1659 * if_sysctl.c (ifm_interface_add): sdl->sdl_data copy bug fixed.
1660
16611998-02-23 "Hannes R. Boehm" <hannes@boehm.org>
1662
1663 * if.c (if_init): add config_exit_cmd and config_help_cmd.
1664
16651998-01-24 Kunihiro Ishiguro <kunihiro@zebra.org>
1666
1667 * rt_ioctl.c (route_ioctl): EPERM treatment added.
1668
16691998-01-05 Kunihiro Ishiguro <kunihiro@zebra.org>
1670
1671 * rt_socket.c (kernel_read): communication port zebra between
1672 kernel is now handled by kernel_read.
1673
16741998-01-02 Kunihiro Ishiguro <kunihiro@zebra.org>
1675
1676 * main.c (main): zebra [-P port] can specify vty port number.
1677
16781997-12-25 Kunihiro Ishiguro <kunihiro@zebra.org>
1679
1680 * zebra.c: change select will be block.
1681
16821997-12-04 Kunihiro Ishiguro <kunihiro@zebra.org>
1683
1684 * add static route treatment.
1685
16861997-11-25 Kunihiro Ishiguro <kunihiro@zebra.org>
1687
1688 * rt_netlink.c: add netlink support over GNU/Linux system.
1689
16901997-11-23 Kunihiro Ishiguro <kunihiro@zebra.org>
1691
1692 * all inet_addr is changed to inet_aton.
1693
1694 * zebra.c (ip_route): add ip route command for static routes.
1695
16961997-11-20 Kunihiro Ishiguro <kunihiro@zebra.org>
1697
1698 * if.c (if_flag_dump): Linux port of if_flag_dump and _vty.
1699
17001997-11-19 Kunihiro Ishiguro <kunihiro@zebra.org>
1701
1702 * if.c: add interface command.
1703
17041997-11-18 Kunihiro Ishiguro <kunihiro@zebra.org>
1705
1706 * ipforward_proc.c : Now works on Linux.
1707
17081997-10-25 Kunihiro Ishiguro <kunihiro@zebra.org>
1709
1710 * command.c : add completion feature.
1711
17121997-10-18 Kunihiro Ishiguro <kunihiro@zebra.org>
1713
1714 * vty.c (vty_command): add vty interface.
1715
17161997-10-13 Kunihiro Ishiguro <kunihiro@zebra.org>
1717
1718 * zebra.c: add verbose mode.
1719
17201997-10-12 SonMyong Ho <s-ho@Matrix.IRI.Co.Jp>
1721
1722 * Hydrangea for FreeBSD supported
1723 * in.h: add some prototype.
1724
17251997-10-11 Kunihiro Ishiguro <kunihiro@zebra.org>
1726
1727 * rt_socket.c and rtread.c completely rewritten.
1728
17291997-10-05 Kunihiro Ishiguro <kunihiro@zebra.org>
1730
1731 * rt_socket.c: rename kernel_sock to routing_socket
1732
17331997-10-04 Kunihiro Ishiguro <kunihiro@zebra.org>
1734
1735 * if.c (if_new): interface structure change from linklist to vector.
1736
17371997-10-03 Kunihiro Ishiguro <kunihiro@zebra.org>
1738
1739 * vector.c (vector_init): create vector related function
1740
17411997-09-25 Kunihiro Ishiguro <kunihiro@zebra.org>
1742
1743 * Makefile.in: add tags target
1744
1745 * start IPv6 support for INRIA FreeBSD.
1746