]> git.proxmox.com Git - mirror_frr.git/blame - zebra/ChangeLog
2005-04-02 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
[mirror_frr.git] / zebra / ChangeLog
CommitLineData
d2fc8896 12005-04-02 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
2
3 * interface.c: (if_new_intern_ifindex) Remove obsolete function.
4 (if_delete_update) After distributing the interface deletion message,
5 set ifp->ifindex to IFINDEX_INTERNAL.
6 (if_dump_vty) Detect pseudo interface by checking if ifp->ifindex is
7 IFINDEX_INTERNAL.
8 (zebra_interface) Check return code from interface_cmd.func.
9 Do not set internal ifindex values to if_new_intern_ifindex(),
10 since we now use IFINDEX_INTERNAL for all pseudo interfaces.
11 * kernel_socket.c: (ifm_read) Fix code and comments to reflect that
12 all internal interfaces now have ifp->ifindex set to IFINDEX_INTERNAL.
13 * rt_netlink.c: (set_ifindex) New function used to update ifp->ifindex.
14 Detects interface rename events by checking if that ifindex is already
15 being used. If it is, delete the old interface before assigning
16 the ifindex to the new interface.
17 (netlink_interface, netlink_link_change) Call set_ifindex to update
18 the ifindex.
19
b7ed1ec7 202005-03-31 Hasso Tepper <hasso at quagga.net>
21
22 * rt_netlink.c (netlink_talk_filter): Show always warning message,
23 it's not for debug.
24 * rt_netlink.c (netlink_talk): Don't assume we use netlink_cmd
25 although we do now actually.
26 * rt_netlink.c (netlink_route, netlink_route_multipath): Always use
27 netlink_cmd to send messages to the kernel.
28
2da40f49 292005-03-30 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
30
31 * irdp.h: Add prototype for irdp_sock_init, and fix protos for
32 other irdp_* functions.
33 * irdp_interface.c: (irdp_if_start) If irdp_sock is negative,
34 call irdp_sock_init to create the IRDP socket.
35 (irdp_if_init) Rename to irdp_init().
36 (get_iflist_ifp) Remove function that is a duplicate of
37 if_lookup_by_index.
38 (*) Make many functions static. And remove superfluous "\n" from
39 several zlog messages.
40 * irdp_main.c: (irdp_init) Remove function that used to call
41 irdp_if_init() and irdp_sock_init(), since we will now create
42 the socket only upon first use.
43 (irdp_sock_init) Do not update global irdp_sock variable, just
44 return the fd and assume that the caller will do so. If setsockopt
45 calls fail, close the socket before returning -1.
46 (*) Make many functions static.
47 * irdp_packet.c: Initialize irdp_sock to -1.
48 (irdp_read_raw) Call standard library function if_lookup_by_index
49 instead of get_iflist_ifp.
50 (irdp_recvmsg) Should be static, not global.
51
a608bbf2 522005-03-29 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
53
54 * rt_netlink.c: (netlink_link_change) If the status of an
55 operative interface changes (e.g. MTU changes), the client
56 daemons should be notified by calling zebra_interface_up_update.
57 Previously, the information was being updated in zebra's
58 interface structure, but the clients were not notified of
59 changes to an operative interface.
60
7cee1bb1 612005-03-25 Jean-Mickael Guerin <jean-mickael.guerin@6wind.com>
62 * interface.c, interface.h, rtadv.c, rtadv.h: modifications to
63 IPv6 Neighbor Discovery according to RFC3775, section 7:
64 o 1-bit Home Agent flag management in Router Advertisement (7.1).
65 o 1-bit Router Address flag management in Prefix Information
66 Option (7.2).
67 o Advertisement Interval Option (7.3)
68 o Home Agent Information Option (7.4)
69 o Changes to Sending Router Advertisements more frequently (7.5)
70
ed9bb6d5 712005-03-13 Hasso Tepper <hasso at quagga.net>
72
73 * zebra/interaface.c: "show interface description" command
74 implemented.
75
c1f01f35 762005-03-12 Paul Jakma <paul@dishone.st>
77
78 * rt_netlink.c: (netlink_route_multipath) dont set equalise flag.
79 No stock Linux kernel has ever supported it, and even if it had
80 it's not generally a good idea.
81
42a66d7c 822005-03-07 Michael Sandee <voidptr@voidptr.sboost.org>
83
84 * if_proc.c, ipforward_proc.c, rtread_proc.c: Fix fd leaks.
85
3452d475 862005-03-06 Hasso Tepper <hasso at quagga.net>
87
88 * interface.c: Fix CRC and frame errors statistics in Linux.
89
719e9741 902005-02-28 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
91
92 * zserv.c: Must include network.h and buffer.h for non-blocking I/O.
93 Remove global message_queue and t_write (need separate buffering for
94 each client).
95 (zebra_server_dequeue,zebra_server_enqueue) Remove functions
96 related to old buggy buffering code.
97 (zserv_delayed_close) New thread callback function to delete a client.
98 (zserv_flush_data) New thread callback function to flush buffered
99 data to client.
100 (zebra_server_send_message) Rewritten to use buffer_write (so
101 buffering of writes and non-blocking I/O work properly).
102 (zsend_interface_add,zsend_interface_delete,zsend_interface_address,
103 zsend_interface_update) Return 0 instead of -1 if !client->ifinfo
104 (this is not really an error). Return value from
105 zebra_server_send_message.
106 (zsend_route_multipath,zsend_ipv4_nexthop_lookup,
107 zsend_ipv4_import_lookup) Return value from zebra_server_send_message.
108 (zsend_ipv6_nexthop_lookup) Fix scope to static, and return value
109 from zebra_server_send_message.
110 (zsend_router_id_update) Must use zebra_server_send_message instead
111 of deprecated writen function. Return 0 instead of -1 if this client
112 is not subscribed to router-id updates (since this is not really
113 an error).
114 (zread_interface_add) Change type to static int. If
115 zsend_interface_add fails or zsend_interface_address fails, return -1
116 immediately (since the client has had an I/O error).
117 (zread_interface_delete,zread_ipv4_add,zread_ipv4_delete,
118 zread_ipv6_add,zread_ipv6_delete,zread_router_id_delete) Return 0
119 to indicate success.
120 (zread_ipv4_nexthop_lookup) Return value from
121 zsend_ipv4_nexthop_lookup.
122 (zread_ipv4_import_lookup) Return value from zsend_ipv4_import_lookup.
123 (zebra_read_ipv6) Remove unused function.
124 (zread_ipv6_nexthop_lookup) Return value from
125 zsend_ipv6_nexthop_lookup.
126 (zread_router_id_add) Return value from zsend_router_id_update.
127 (zebra_client_close) Call buffer_free(client->wb) and
128 thread_cancel(client->t_suicide).
129 (zebra_client_create) Allocate client->wb using buffer_new.
130 (zebra_client_read) Support non-blocking I/O by using stream_read_try.
131 Use ZEBRA_HEADER_SIZE instead of 3.
132 (zebra_accept) Fix bug: reset accept thread at top. Make client
133 socket non-blocking using the set_nonblocking function.
134 (config_write_forwarding) Fix scope to static.
135 (zebra_init) Remove initialization code for old buggy write buffering.
136 * zserv.h: Add 2 new fields to struct zserv: struct buffer *wb
137 (to enable buffered writes with non-blocking I/), and
138 struct thread *t_suicide to support delayed close on I/O
139 errors.
140 * router-id.h: Remove prototypes for zread_router_id_add and
141 zread_router_id_delete (their scope should be static to zserv.c).
142
27da3988 1432005-02-24 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
144
145 * redistribute.c: (zebra_check_addr,is_default,
146 zebra_redistribute_default,zebra_redistribute) Fix scope to be static.
147
e8274dcd 1482005-02-20 Hasso Tepper <hasso at quagga.net>
149
150 * rt_netlink.c: Don't show messages "ignoring message type 0x001[89]"
151 if we are not debugging.
152
e31f2299 1532005-02-19 Paul Jakma <paul@dishone.st>
154
155 * zserv.c: (zebra_read_ipv6) replace the char * arithmetic with
156 STREAM_READABLE.
157
1e193152 1582005-02-14 Paul Jakma <paul@dishone.st>
159
160 * Not all Linux netlink systems have IFLA_WIRELESS
161
6a52d0d1 1622005-01-30 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
163
164 * ioctl.c: (if_ioctl,if_ioctl_ipv6,if_get_flags) Replace perror with
165 zlog_err.
166 * ioctl_solaris.c: (if_ioctl,if_ioctl_ipv6) Replace perror with
167 zlog_err.
168
4460e7a4 1692005-01-29 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
170
171 * if_ioctl_solaris.c: (interface_list_ioctl) Save errno before calling
172 zserv_privs.change.
173 * ioctl{,_solaris}.c: (if_ioctl,if_ioctl_ipv6) Save errno before calling
174 zserv_privs.change.
175 * ipforward_solaris.c: (solaris_nd) Save errno before calling
176 zserv_privs.change.
177 * irdp_main.c: (irdp_sock_init) Save errno before calling
178 zserv_privs.change.
179
4be019d5 1802005-01-29 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
181
182 * rt_netlink.c: (netlink_socket,netlink_request,netlink_parse_info,
183 netlink_talk) Save errno before calling zserv_privs.change.
184
c15cb242 1852005-01-24 Martin Pot <mpot at martybugs.net>
186
187 * zebra/rt_netlink.c: ignore wireless newlink netlink messages.
188
6f2c27af 1892005-01-18 Hasso Tepper <hasso at quagga.net>
190
191 * interface.c: Better statistics output in "show interface" command in
192 case of /proc being used.
193
583d800c 1942005-01-17 Hasso Tepper <hasso at quagga.net>
195
196 * main.c: With --nl-bufsize argument is required.
197
865b852c 1982005-01-05 Paul Jakma <paul@dishone.st>
199
200 * zserv.c: (zebra_accept) Comment out setting of socket to NONBLOCK
201 for now, as we dont actually deal with with resending.... See
202 bugzilla #122, fix from wawa@yandex-team.ru (Vladimir Ivanov).
203 * kernel_socket.c: (routing_socket) ditto.
204
b99760ab 2052005-01-04 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
206
207 * rtadv.c: (rtadv_recv_packet,rtadv_send_packet) Use ZCMSG_FIRSTHDR
208 instead of CMSG_FIRSTHDR.
209
341a8f1a 2102004-12-22 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
211
212 * connected.c: (connected_add_ipv4) Limit warning about /32 addresses
213 with no peer specified to PtP interfaces only.
214
b8adec1f 2152004-12-18 Hasso Tepper <hasso at quagga.net>
216
217 * zebra_vty.c: Fix "show ipv6 route <proto>" command help and make it
218 work for isis routes.
219
6a250b09 2202004-12-09 Greg Troxel <gdt@fnord.ir.bbn.com>
221
222 * kernel_socket.c (rtmsg_debug): char * => const char *
223
b6178002 2242004-12-07 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
225
226 * *.c: Change level of debug messages to LOG_DEBUG.
227
274a4a44 2282004-12-07 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
229
230 * main.c: (main) The 2nd argument to openzlog has been removed.
231 So stdout logging will no longer be enabled by default.
232 * irdp_main.c: (irdp_finish) Reduce severity of shutdown message
233 from LOG_WARNING to LOG_INFO.
234
887c44a4 2352004-12-03 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
236
237 * main.c: (sigint) Use zlog_notice for termination message.
238 (main) Add a startup announcement using zlog_notice.
239
accb156b 2402004-11-25 Hasso Tepper <hasso at quagga.net>
241
242 * irdp_interface.c: Remove comment from DEFUN, it breaks vtysh because
243 it confuses extract.pl.
c065230a 244 * main.c: Make group to run as configurable.
accb156b 245
6bd7c6ae 2462004-10-28 Hasso Tepper <hasso at quagga.net>
247
248 * interface.c: Remove dead "ip tunnel" command.
249
06f953f7 2502004-10-22 Paul Jakma <paul@dishone.st>
251
252 * irdp_main.c: change setsockopt_pktinfo to setsockopt_ifindex
253
3fb9cd6e 2542004-10-19 Andrew J. Schorr <aschorr@telemetry-investments.com>
255
256 * rt_netlink.c: (netlink_interface_addr) For PtP interfaces, ignore
257 tb[IFA_ADDRESS] if it's the same as tb[IFA_LOCAL].
258 * interface.c: (ip_address_install) Use new ipv4_broadcast_addr
259 function.
260 * connected.c: (connected_up_ipv4) Use CONNECTED_POINTOPOINT_HOST
261 macro.
262 (connected_down_ipv4) ditto.
263 (connected_add_ipv4) Validate destination address, print warnings
264 if it does not make sense.
265
c1eaa442 2662004-10-19 Hasso Tepper <hasso at quagga.net>
267
268 * zserv.c: Fix regression introduced with zserv cleanup.
269
c75105ab 2702004-10-13 Hasso Tepper <hasso at quagga.net>
271
272 * zebra_snmp.c: Remove defaults used to initialize smux connection to
273 snmpd. Connection is initialized only if smux peer is configured.
b71f00f2 274 * zserv.c: Remove useless warnings "forwarding is already on".
c75105ab 275
39ff11dc 2762004-10-12 Hasso Tepper <hasso at quagga.net>
277
278 * zebra_vty.c: Unbreak "show ip route" command help and make it work
279 for isis routes.
39db97e4 280 * interface.c(if_dump_vty): Show IPv6 addresses in "show interface"
281 output. Fixes Bugzilla #119.
282 * *.c: Make some strings const and some (unsigned) casts to fix
283 compiler warnings.
39ff11dc 284
fce954f8 2852004-10-07 Hasso Tepper <hasso at quagga.net>
286
287 * connected.c, main.c, rt_netlink.c, rtadv.c, zebra_rib.c, zserv.c:
288 Fix warnings: make strings const, signed -> unsigned.
289
7216466a 2902004-10-05 Paul Jakma <paul@dishone.st>
291
292 * irdp_packet.c: (parse_irdp_packet) style issues.
293 Use sockopt_iphdrincl_swab_systoh.
294 Try unbork the code. Checksum the ICMP data and actually
295 compare it to received checksum. Check data length against
296 claimed length in header.
297 Always use ntoh.. when accessing addresses, even when the
298 comparison happens to be endian-safe.
299 (send_packet) minor style isues. Use
300 sockopt_iphdrincl_swab_htosys.
301 (irdp_iph_hton/ntoh) IP header to/from network/host order.
302
eef1fe11 3032004-10-03 Gilad Arnold <gilad.arnold at terayon.com>
304
305 * interface.c, interface.h: A new prefix tree of connected subnets is
306 associated with each interface structure in zebra, in which each
307 live (ie, non-synthetic) node holds a list of installed addresses
308 that belong to that prefix. Remove secondary address logic from cli.
309 See [quagga-dev 872] for detailed explanation.
310 * connected.c: Use if_subnet_add() and if_subnet_delete().
311
18a6dce6 3122004-10-03 James R. Leu <jleu at mindspring.com>
313
314 * router-id.c, router-id.h: New files. Router id selection process. If
315 there is non 127.x.x.x address in loopack interface, lowest of them
316 is chosen. If there isn't, lowest from other interfaces addresses
317 are chosen. "router-id x.x.x.x" vty command to manual override.
318 * Makefile.am: Compile new files.
319 * main.c: Initialize router id.
320 * redistribute.c: Add interface addresses into router id selection
321 lists as they (dis)appear.
322 * zserv.c, zserv.h: Sending router id related messages to daemons.
323
c9e52be3 3242004-09-26 Hasso Tepper <hasso at quagga.net>
325
326 * irdp_interface.c, irdp_main.c, irdp_packet.c, rt_netlink.c,
327 rtadv.c, zebra_vty.c: Fix compiler warnings.
328
26f7a244 3292004-09-24 Paul Jakma <paul@dishone.st>
330
331 * irdp_interface.c: (no_ip_irdp_address_preference_cmd)
332 add missing listnode declaration.
333
0c0f9112 3342004-09-24 Paul Jakma <paul@dishone.st>
335
336 * irdp_{interface,main}.c: lists typedef removal cleanup.
337 update some list loops to LIST_LOOP. some miscellaneous style
338 and indent fixups.
339 (no_ip_irdp_address_preference_cmd) Fix delete of referenced node
26f7a244 340 in loop.
0c0f9112 341 * irdp_packet.c: (irdp_recvmsg) Fix buggy assignment of integer
342 to pointer.
343 * if_ioctl{,_solaris}.c: lists typedef removal cleanup.
344 update some list loops to LIST_LOOP.
345
52dc7ee6 3462004-09-23 Hasso Tepper <hasso at quagga.net>
347
348 * *.[c|h]: list -> struct list *, listnode -> struct listnode *.
349
44983cf8 3502004-09-22 Paul Jakma <paul.jakma@sun.com>
351
352 * zserv.c: (zsend_route_multipath) fix nasty bad memset of struct
353 in_addr to sizeof(struct in6_addr), causing odd and hard to debug
354 crash.
355
c34b6b57 3562004-08-31 Hasso Tepper <hasso at quagga.net>
357
358 * main.c, rt_netlink.c: Added -s command line switch for tuning
359 netlink receive buffer size in Linux to avoid buffer overruns.
360
a5ea687e 3612004-08-26 Miles Nordin <carton@Ivy.NET>
362
363 * ipforward_sysctl.c (mib_ipv6): Use size_t for len, per
364 sysctl(3), rather than int. (Needed on NetBSD/alpha to display
365 forwarding status correctly.)
366
3e0b3a56 3672004-08-23 Paul Jakma <paul@dishone.st>
368
369 * zserv.c: (zebra_init) remove implicit ip forward enabling
370
0de1cde6 3712004-08-19 Paul Jakma <paul@dishone.st>
372
373 * irdp_main.c: update to match sockopt renames.
374 * irdp_packet.c: include sockopt.h and update to match sockopt
375 renames.
376
57492d56 3772004-08-11 Greg Troxel <gdt@fnord.ir.bbn.com>
378
379 * rtadv.c (rtadv_send_packet): Allocate space for control messages
380 more carefully; it was wrong on NetBSD/sparc where CMSG alignment
381 is to 8 bytes instead of 4, and overwriting the address. Use the
382 provided macros for determining lengths.
383
5b73a671 3842004-07-23 Sowmini Varadhan <Sowmini.Varadhan@Sun.COM>
385
386 * if_ioctl_solaris.c: HAVE_IPV6 ifdef fixups
387 * zserv.c: ditto
388 * ioctl_solaris.c: ditto.
389 * interface.c: cast for LLADDR
390 * interface.h: Add guards, include redistribute.h and remove
391 extraneous definitions of zebra_interface_{up,down}_update
392 * ioctl.h: Add AF_IOCTL define for non SOLARIS_IPV6
393 * redistribute.h: include dependent header, zserv.h
394 * zserv.h: include dependent header, rib.h
395
1470bafb 3962004-07-23 Paul Jakma <paul@dishone.st>
397
398 * irdp_main.c: use setsockopt_pktinfo_ipv4
399 * irdp_packet.c: use SOPT_SIZE_CMSG_PKTINFO_IPV4 and
400 getsockopt_pktinfo_ifindex()
401
cced60dd 4022004-07-13 David Wiggins <dwiggins@bbn.com
403
404 * kernel_socket.c (rtm_flag_dump): terminate buffer with '\0', not '0'.
405
25dac855 4062004-07-13 Hasso Tepper <hasso@estpak.ee>
407
408 * irdp_main.c: Add privilege change.
409
996933fd 4102004-07-12 Hasso Tepper <hasso@estpak.ee>
411
412 * irdp_interface.c: follow common style while naming vty command
413 functions. Avoids confusion in extract.pl.
414
87efd646 4152004-06-30 Greg Troxel <gdt@poblano.ir.bbn.com>
416
417 * main.c: define thread_master variable so that linking with
418 libzebra.so doesn't fail. Arguably zclient.o should be in a
419 separate library, but this is far less disruptive.
420
ca776988 4212004-06-12 Robert Olsson <Robert.Olsson at data.slu.se>
422
423 * Added IRDP support.
424
3e31cded 4252004-05-18 Hasso Tepper <hasso@estpak.ee>
426
427 * rtadv.c: Removed "[no] ipv6 nd send-ra" command. Replaced "ipv6 nd
428 prefix-advertisement" with "ipv6 nd prefix". Rewrite syntax of
429 "ipv6 nd prefix" command to allow various combinations of parameters
430 and flags. No defaults in configuration. Replaced on-link and
431 autoconfig with off-link and no-autoconfig flags in command syntax.
432 Cosmetic fixes in all commands. Documentation to reflect all changes.
433
19877dd2 4342004-05-11 Paul Jakma <paul@dishone.st>
435
436 * Makefile.am: support for IOCTL_METHOD, as per Sowmini's patch.
48a46fa0 437 * if_ioctl_solaris.c: Fixup some erroneous privilege changes and
438 add privs.h header.
439 * ioctl_solaris.c: ditto
c50ae8ba 440 * ioctl.h: Add if_ioctl_ipv6 prototype and AF_IOCTL for SOLARIS_IPV6
441 * kernel_socket.c: Fix SAROUNDUP, compiler doesnt like do..while
442 RHS in assignments :)
443 * redistribute.c: (zebra_interface_delete_update) only used
444 if RTM_IFANNOUNCE and NETLINK is available.
445
b9df2d25 4462004-05-09 Paul Jakma <paul@dishone.st>
447
448 * zserv.c: (zsend_route_multipath) Set the nexthop_num
449 field correctly. Add NEXTHOP_TYPE_IPV6_IFNAME for v6.
450 Conditionally set ZAPI_MESSAGE_METRIC flag - only for adds.
451 (zsend_ipv4_add) cruft, deleted.
452 (zsend_ipv4_delete) ditto.
453 (zsend_ipv6_add) ditto.
454 (zsend_ipv6_delete) ditto.
44145db3 455 * ioctl.c: (if_get_mtu) set mtu6 to mtu
456 * mtu_kvm.c: (if_kvm_get_mtu) set mtu6 to mtu
457 * rt_netlink.c: (netlink_interface) set mtu6 to mtu
458 (netlink_link_change) ditto
66e9488c 459 * ipforward_solaris.c: fix typo of ND variable.
8842468c 460 * if_ioctl_solaris.c: Add zprivs support.
461 * ioctl_solaris.c: ditto.
66e9488c 462
b9df2d25 4632004-05-09 Sowmini Varadhan <sowmini.varadhan@sun.com>
464
465 * zserv.c: (zsend_ipv{4,6}_{add,delete}_multipath) collapsed
466 into single zsend_route_multipath function.
467 (zsend_interface_{up,down}) collapsed into zsend_interface_update.
468 (zsend_interface_address_{add,delete}) collapsed into
469 zsend_interface_address.
470 (zsend_interface_add) send mtu6.
471 (zsend_interface_delete) ditto.
472 (zebra_write) remove unused function.
473 (various) Apply static qualifier. Add comments.
474 * zserv.h: Definitions changed as per above.
475 * redistribute.c: Changes as per zserv.c.
44145db3 476 * interface.c: (if_delete_update) only used with HAVE_NETLINK
477 and RTM_IFANNOUNCE.
478 (if_flag_dump_vty) Solaris IFF_IPV4 and IFF_IPV6 if flags
479 (if_dump_vty) print mtu6 if not same as mtu
8842468c 480 * if_ioctl_solaris.c: New file, Solaris interface ioctl methods.
481 * ioctl_solaris.c: New file, Common solaris ioctl methods.
482
34195bf6 4832004-04-06 Krzysztof Oledzki <oleq@ans.pl>
484
485 * rt_netlink.c: Do not ignore metric when reading kernel routing
486 table on Linux with rt_netlink interface.
487
4882004-03-18 Hasso Tepper <hasso@estpak.ee>
f1d92e17 489
490 * interface.c: Temporary fix for handling secondary addresses
491 with label.
492
55906724 4932004-02-12 Hasso Tepper <hasso@estpak.ee>
f1d92e17 494
55906724 495 * zserv.c: Added "ipv6 forwarding" command.
496
b27900b7 4972004-01-08 Greg Troxel <gdt@fnord.ir.bbn.com>
498
499 * kernel_socket.c (kernel_read): Use sockaddr_storage in buffer
500 for reading kernel messages to ensure enough space (necessary on
501 Solaris due to sockaddr_dl being large). Thanks to Sowmini
502 Varadhan for help with this change.
503
9ccabd1c 5042004-01-06 Greg Troxel <gdt@t1.ir.bbn.com>
505
506 * rtadv.c (rtadv_send_packet): Change perror to zlog_err.
507
4bfbea8c 5082004-01-05 Greg Troxel <gdt@fnord.ir.bbn.com>
509 * kernel_socket.c (ifm_read): Major cleanup. Use Sowmini's code
510 to find the sockaddr_dl in all cases, narrowing the Solaris ifdef
511 to just the accomodation of broken kernels. Check sockaddr_dl
512 carefully up front, and later assume any non-NULL sdl pointer is
513 valid. Clean up types and variable declarations, and rename
514 WRAPUP to SAROUNDUP to make the name fit the behavior.
515
dbee01fe 5162004-01-05 Greg Troxel <gdt@fnord.ir.bbn.com>
517
518 * kernel_socket.c (kernel_read): Add a sockaddr_dl to the ifmsg
519 structure, because on Solaris sockaddr_dl is far larger than the
520 base sockaddr structure. (The code had previously been failing to
521 read all the data.)
4bfbea8c 522
da26e3b6 5232004-01-05 Greg Troxel <gdt@ahi.ir.bbn.com>
524
525 * kernel_socket.c (kernel_read): Look up interfaces by index
526 first, so that state changes which do not include a sockaddr_dl
527 now work. Add many sanity checks. In
528 particular, do not assume that a sockaddr_dl follows a message
529 without checking the ifm_addrs flags, and do not trust the length
530 in a sockaddr_dl. Add/clarify many comments.
531
4b5e1359 5322003-12-03 Greg Troxel <gdt@poblano.ir.bbn.com>
533
534 * rtadv.c: reorder includes to avoid compiler warning (define
535 structs before using them in prototypes)
536
647e4f1f 5372003-05-25 Jim Crumpler <Jim.Crumpler@edion.com>
538
539 * zserv.c: Add "ip forwarding" command.
540
445f1435 5412003-05-16 Gilad Arnold <gilad.arnold@terayon.com>
542
543 * zebra_rib.c: Fix memory leaks for ifname nexthops
544
5452003-04-19 Israel Keys <ikeys@agile.tv>
546
547 * rt_netlink.c: BLOCK on netlink while initialising
548
5492003-02-06 Francois Deppierraz <francois@ctrlaltdel.ch>
550
551 * rt_netlink.c (netlink_route_multipath): Set RTM_F_EQUALIZE when
552 it exists.
553
718e3744 5542002-09-28 Akihiro Mizutani <mizutani@net-chef.net>
555
556 * zebra_rib.c (static_add_ipv4): Null0 static route is added.
557
5582002-09-10 Jochen Friedrich <chris+zebra@scram.de>
559
560 * rt_netlink.c: Add check for EAGAIN.
561 * kernel_socket.c: Likewise
562
5632002-06-12 Israel Keys <ikeys@oz.agile.tv>
564
565 * rt_netlink.c: Setting the NLM_F_ACK flag on the netlink command
566 message so that we get an ACK for successful netlink commands.
567 Change the netlink socket to BLOCKING while we wait for a
568 response; be it an ACK or an NLMSG_ERROR. Change
569 netlink_parse_info to deal with ACK messages.
570
5712001-11-01 Jun-ichiro itojun Hagino <itojun@iijlab.net>
572
573 * rtadv.c (rtadv_make_socket): setsockopt(IPV6_CHECKSUM) does not
574 work for ICMPv6 socket.
575
5762001-10-24 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
577
578 * rib.c (rib_process): Select connected route any case.
579
5802001-10-23 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
581
582 * interface.c (no_ip_address_secondary): Add "no" to command.
583
5842001-10-18 NOGUCHI Kay <kay@v6.access.co.jp>
585
586 * ioctl.c (if_prefix_add_ipv6): Set the prefered and valid lifetime
587 to infinity as the freebsd4.4 workaroud.
588
5892001-08-26 mihail.balikov@interbgc.com
590
591 * zebra_snmp.c: Fix snmpwalk problem such as IPv4 address
592 A.B.C.255.
593
5942001-08-22 NOGUCHI Kay <kay@v6.access.co.jp>
595
596 * rtadv.c: Do not send RA to loopback interface.
597
5982001-08-20 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
599
600 * ioctl.c (if_set_prefix): Remove Linux 2.0 specific connected
601 route treatment.
602
6032001-08-19 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
604
605 * zebra-0.92a released.
606
6072001-08-17 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
608
609 * rib.c: Kernel route is treated as EGP routes in nexthop active
610 check.
611
6122001-08-15 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
613
614 * zebra-0.92 released.
615
6162001-08-08 "Akihiro Mizutani" <mizutani@dml.com>
617
618 * rib.c (show_ip_route_prefix_longer): Add longer-prefix option to
619 show route commands.
620
6212001-07-29 Yon Uriarte <havanna_moon@gmx.net>
622
623 * zserv.c (zsend_ipv4_add_multipath): Add
624 NEXTHOP_TYPE_IPV4_IFINDEX check.
625
6262001-07-29 NOGUCHI Kay <kay@v6.access.co.jp>
627
628 * rtadv.c: Apply valid lifetime, preferred lifetime, onilnk flag,
629 autonomous address-configuration flag patch.
630 (no_ipv6_nd_suppress_ra): Change "ipv6 nd send-ra" to "no ipv6 nd
631 suppress-ra".
632
6332001-07-24 NOGUCHI Kay <kay@v6.access.co.jp>
634
635 * rtadv.c (ipv6_nd_ra_interval): Add "ipv6 nd ra-interval SECONDS"
636 command.
637
6382001-07-24 Jun-ichiro itojun Hagino <itojun@iijlab.net>
639
640 * rt_socket.c (kernel_rtm_ipv4): Add KAME/NetBSD151 equal cost
641 multicast FIB support both IPv4 and IPv6.
642
6432001-07-24 Hal Snyder <hal@vailsys.com>
644
645 * if_ioctl.c (interface_list_ioctl): Fix bug of failing to get the
646 full list of interfaces on some configurations of OpenBSD.
647
6482001-07-23 NOGUCHI Kay <kay@v6.access.co.jp>
649
650 * rtadv.c (ipv6_nd_send_ra): Apply [zebra 9320] to fix "ipv6 nd
651 send-ra" bug.
652 (ipv6_nd_ra_lifetime): "ipv6 nd ra-lifetime 0" for default router
653 availability.
654 (ipv6_nd_managed_config_flag): "ipv6 nd managed-config-flag" is
655 added.
656 (ipv6_nd_other_config_flag): "ipv6 nd other-config-flag" is added.
657
6582001-07-23 Jun-ichiro itojun Hagino <itojun@iijlab.net>
659
660 * ioctl.c (if_ioctl): Change ioctl argument from int to u_long.
661
662 * rt_ioctl.c: Likewise.
663
6642001-07-23 Jun-ichiro itojun Hagino <itojun@iijlab.net>
665
666 * kernel_socket.c (rtm_write): Only set RTF_CLONING when the
667 interface is not p2p.
668
6692001-04-23 Kunihiro Ishiguro <kunihiro@zebra.org>
670
671 * ioctl.c (if_prefix_add_ipv6): Fix argument type.
672
6732001-04-06 Toshiaki Takada <takada@zebra.org>
674
675 * zserv.c (zsend_interface_delete): Use client->obuf instead of
676 allocating new stream.
677
6782001-03-10 Kunihiro Ishiguro <kunihiro@zebra.org>
679
680 * rt_netlink.c: Revert RTPROT_BOOT change.
681
6822001-03-08 Kunihiro Ishiguro <kunihiro@zebra.org>
683
684 * rt_netlink.c (netlink_route_change): Skip RTPROT_BOOT route.
685 (netlink_routing_table): Likewise.
686
6872001-03-07 "Akihiro Mizutani" <mizutani@dml.com>
688
689 * zserv.c (zsend_ipv4_add_multipath): Send metric value to
690 protocol daemons.
691
6922001-02-18 Kunihiro Ishiguro <kunihiro@zebra.org>
693
694 * rt_netlink.c (netlink_routing_table): Do not return
695 tb[RTA_GATEWAY] is NULL. Reported by: "Michael O'Keefe"
696 <mokeefe@qualcomm.com>.
697
6982001-02-08 Kunihiro Ishiguro <kunihiro@zebra.org>
699
700 * if_ioctl.c (interface_list_ioctl): Call if_add_update().
701 Suggested by: Chris Dunlop <chris@onthe.net.au>.
702
7032001-02-01 Kunihiro Ishiguro <kunihiro@zebra.org>
704
705 * rib.c (nexthop_active_ipv4): When nexthop type is
706 NEXTHOP_TYPE_IPV4_IFINDEX, propery set the ifindex to rifindex.
707
708 * zserv.c: Initialize rtm_table_default with 0.
709
710 * zebra-0.91 is released.
711
7122001-01-31 Kunihiro Ishiguro <kunihiro@zebra.org>
713
714 * kernel_socket.c (rtm_read): Filter cloned route. Suggested by:
715 Jun-ichiro itojun Hagino <itojun@iijlab.net>
716
7172001-01-30 Kunihiro Ishiguro <kunihiro@zebra.org>
718
719 * connected.c (connected_up_ipv6): When point-to-point destination
720 address is ::, use local address for connected network.
721 (connected_down_ipv6): Likewise.
722
7232001-01-25 Kunihiro Ishiguro <kunihiro@zebra.org>
724
725 * zserv.c (zebra_serv): Add missing close() call. Reported by:
726 David Waitzman <djw@vineyard.net>.
727
7282001-01-24 Kunihiro Ishiguro <kunihiro@zebra.org>
729
730 * rib.c (rib_lookup_ipv4): New function for checking exact match
731 IGP route.
732
7332001-01-23 Kunihiro Ishiguro <kunihiro@zebra.org>
734
735 * rib.c (show_ipv6_route_protocol): Fix bug of "show ip route
736 route-type".
737
7382001-01-22 Kunihiro Ishiguro <kunihiro@zebra.org>
739
740 * interface.c (zebra_interface): Do not call
741 zebra_interface_add_update for inactive interface.
742
743 * zserv.c (zsend_interface_address_add): Send interface address
744 flag.
745 (zsend_interface_address_delete): Likewise.
746
7472001-01-19 Kunihiro Ishiguro <kunihiro@zebra.org>
748
749 * interface.c (if_addr_add): Add flags.
750
751 * connected.c (ifa_add_ipv4): Add new function for interface
752 address handling.
753 (ifa_delete_ipv4): Likewise.
754
7552001-01-16 Kunihiro Ishiguro <kunihiro@zebra.org>
756
757 * rib.c (rib_update): Update IPv6 RIB.
758
759 * kernel_socket.c (ifam_read): Call if_refresh() for update
760 interface flag status. This is for implicit interface up on *BSD.
761
762 * interface.c (if_refresh): Add interface flag refresh function.
763
764 * kernel_socket.c (rtm_read): Fetch link-local address interface
765 index.
766 (ifan_read): We need to fetch interface information. Suggested
767 by: Yasuhiro Ohara <yasu@sfc.wide.ad.jp>.
768
769 * rib.c (static_ipv6_nexthop_same): Add check for
770 NEXTHOP_TYPE_IPV6_IFNAME.
771
7722001-01-15 Kunihiro Ishiguro <kunihiro@zebra.org>
773
774 * rib.h (NEW_RIB): Turn on NEW_RIB flag. IPv6 new RIB code are
775 taken into place.
776
7772001-01-14 Kunihiro Ishiguro <kunihiro@zebra.org>
778
779 * rib.c (static_ipv6_write): Display STATIC_IPV6_GATEWAY_IFNAME
780 configuration.
781 (rib_delete_ipv6): Handle same route conter for IPv6 connected
782 route.
783 (show_ipv6_route_protocol): New command.
784 (show_ipv6_route_addr): Likewise.
785 (show_ipv6_route_prefix): Likewise.
786 (rib_update): Sweep kernel route when it is cleaned up.
787
788 * rt_socket.c (kernel_add_ipv6): Add NEXTHOP_IPV6_IFNAME
789 treatmenet.
790
791 * rt_netlink.c (kernel_init): Likewise.
792
793 * rt_ioctl.c (kernel_ioctl_ipv6_multipath): Likewise.
794
795 * rib.c (rib_add_ipv4): Cope with same connected route on a
796 interface. Suggested by: Matthew Grant <grantma@anathoth.gen.nz>.
797 (nexthop_ipv6_ifname_add): Add NEXTHOP_IPV6_IFNAME treatmenet.
798
799 * rib.h (struct new_rib): Add refcnt to keep track on the
800 reference of same connected route.
801
802 * ioctl.c (if_set_prefix): Add check for GNU_LINUX.
803
8042001-01-13 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
805
806 * kernel_socket.c (ifan_read, rtm_type_str): Add RTM_OIFINFO check.
807 (rtm_type_str): Add RTM_IFANNOUNCE check.
808 (ifan_read): New function.
809 (kernel_read): Add case for RTM_IFANNOUNCE.
810
8112001-01-13 Kunihiro Ishiguro <kunihiro@zebra.org>
812
813 * rt_ioctl.c (kernel_ioctl_ipv6_multipath): New function.
814
815 * rt_netlink.c (netlink_route_multipath): IPv6 address ifindex
816 treatment.
817
818 * connected.c (connected_up_ipv6): Add dest value check.
819
820 * rib.c (nexthop_active_ipv6): Do not touch IPv6 nexthop's
821 ifindex.
822 (rib_add_ipv4): Import rib_add_ipv6() same route check code.
823 (nexthop_active_check): NEXTHOP_TYPE_IPV6_IFINDEX activity is only
824 checked by ifindex.
825
826 * rt_socket.c (kernel_rtm_ipv6_multipath): New function.
827
828 * redistribute.c (redistribute_add): Use
829 zsend_ipv6_add_multipath().
830 (redistribute_delete_multipath): Use
831 zsend_ipv6_delete_multipath().
832
833 * interface.c (ip_address): Check current IP address to avoid
834 duplicate.
835
836 * rib.c (rib_delete_ipv4): When deleted route is connected route,
837 check ifindex.
838 (rib_add_ipv4): When connected route is added do not perform
839 implicit withdraw.
840 (rib_delete_ipv4): Check ifindex for connected route.
841
842 * kernel_socket.c (rtm_read): When route has RTF_STATIC, set
843 ZEBRA_FLAG_STATIC for indicate as persistent route.
844 (ifam_read): Unset interface index from link-local address when
845 IPv6 stack is KAME.
846
847 * rib.c (rib_update): Do not delete persistent kernel route.
848
849 * rib.h (struct new_rib): Integrate RIB_FLAG_* to ZEBRA_FLAG_*.
850
851 * rt_socket.c (kernel_add_ipv6_multipath): Add placeholder.
852 (kernel_delete_ipv6_multipath): Likewise.
853
854 * rt_netlink.c (netlink_talk): Give struct nlsock to netlink_talk.
855
8562001-01-12 Kunihiro Ishiguro <kunihiro@zebra.org>
857
858 * rib.c (rib_update): Revert Matthew Grant's patch
859 zebra_cvs_newribfix.patch. Use struct rib->ifindex for kernel
860 interface index. Introduce NEXTHOP_TYPE_IPV4_IFINDEX to support
861 that. Add support for address deletion situation.
862
8632001-01-11 Kunihiro Ishiguro <kunihiro@zebra.org>
864
865 * interface.c: Remove HAVE_IF_PSEUDO part.
866
867 * rib.h: Likewise.
868
869 * rt_netlink.c (netlink_link_change): Likewise.
870
8712001-01-10 Kunihiro Ishiguro <kunihiro@zebra.org>
872
873 * zserv.c: Remove OLD_RIB codes.
874
8752001-01-09 Kunihiro Ishiguro <kunihiro@zebra.org>
876
877 * zebra-0.90 is released.
878
8792001-01-09 Matthew Grant <grantma@anathoth.gen.nz>
880
881 * interface.c (if_new_intern_ifindex): Allocate a new internal
882 interface index.
883 (if_addr_refresh): Fix up ip addresses configured via zebra.
884 (if_add_update): Handle an interface addition.
885 (if_delete_update): Handle an interface delete event.
886
887 * rib.c (nexthop_ipv4_add): Add kernel route deletion process when
888 interface goes down.
889
8902001-01-08 Kunihiro Ishiguro <kunihiro@zebra.org>
891
892 * interface.c (if_dump_vty): When HAVE_NET_RT_IFLIST is defined,
893 NetBSD also use this function. Suggested by Jasper Wallace
894 <jasper@ivision.co.uk>.
895
8962001-01-07 Kunihiro Ishiguro <kunihiro@zebra.org>
897
898 * rib.c (nexthop_active_ipv4): Move back to set methodo to old
899 one.
900
9012001-01-05 Kunihiro Ishiguro <kunihiro@zebra.org>
902
903 * rib.c (rib_add_ipv4): EBGP multihop set ZEBRA_FLAG_INTERNAL
904 flag, so treat it.
905
9062001-01-04 Kunihiro Ishiguro <kunihiro@zebra.org>
907
908 * rt_netlink.c (netlink_talk_ipv6): When IPv6 route message is
909 sent from netlink_cmd, the same message comes from netlink. To
910 avoid confusion, temporary netlink_talk_ipv6 use netlink.sock
911 instead of netlink_cmd.sock.
912
9132001-01-01 Kunihiro Ishiguro <kunihiro@zebra.org>
914
915 * zserv.h (ZEBRA_SERV_PATH): Change "/tmp/zebra" to "/tmp/.zebra".
916 Change "/tmp/zserv" to "/tmp/.zserv".
917
9182000-12-29 Frank van Maarseveen <F.vanMaarseveen@inter.NL.net>
919
920 * rt_netlink.c (struct nlsock): Divide kernel message into listen
921 socket and command socket.
922 (netlink_talk): Remove socket listen code. Use netlink_parse_info
923 for read kernel response.
924
9252000-12-29 Kunihiro Ishiguro <kunihiro@zebra.org>
926
927 * rib.c (vty_show_ip_route): Show uptime of the RIP,OSPF,BGP
928 routes.
929
9302000-12-27 Kunihiro Ishiguro <kunihiro@zebra.org>
931
932 * rt_netlink.c (netlink_route_multipath): Metric value is
933 reflected to kernel routing table.
934
935 * rt_ioctl.c (kernel_ioctl_ipv4_multipath): Likewise.
936
937 * kernel_socket.c (rtm_write): Likewise.
938
939 * rib.c (nexthop_active_ipv4): Only iBGP route perform recursive
940 nexthop lookup.
941
942 * rt_ioctl.c (kernel_ioctl_ipv4_multipath): Add ioctl version of
943 new RIB implementation.
944
9452000-12-26 Kunihiro Ishiguro <kunihiro@zebra.org>
946
947 * rib.h: Remove MULTIPATH_NUM. It is defined by configure script.
948
9492000-12-25 Michael Rozhavsky <mrozhavsky@opticalaccess.com>
950
951 * rib.c (rib_if_up): Call rib_fib_set instead of RIB_FIB_SET for
952 proper redistribution.
953
9542000-12-19 Kunihiro Ishiguro <kunihiro@zebra.org>
955
956 * rib.c (nexthop_active_ipv4): Add self lookup nexthop check.
957 (show_ip_route_protocol): Support new RIB.
958
959 * rt_netlink.c (netlink_route_change): Do not return when gate is
960 NULL.
961
9622000-12-18 Kunihiro Ishiguro <kunihiro@zebra.org>
963
964 * rib.c (rib_lookup_ipv4_nexthop): IBGP nexthop check function is
965 updated.
966 (rib_add_ipv4): Free implicit withdraw route's RIB.
967
9682000-12-15 Kunihiro Ishiguro <kunihiro@zebra.org>
969
970 * rib.c (nexthop_active_ipv4): Check indirect nexthop.
971
972 * redistribute.c (redistribute_add_multipath): Redistribution
973 works with new rib code.
974
9752000-12-14 Kunihiro Ishiguro <kunihiro@zebra.org>
976
977 * rt_netlink.c (netlink_route_multipath): Check useful nexthop
978 number.
979 (netlink_route_multipath): Clear rtnh_flags and rtnh_hops.
980
981 * rib.c (nexthop_active_update): Set flag for the rib's nexthop
982 activity is changed.
983 (nexthop_active_check): Before checking interface is up, make it
984 sure the interface exist.
985
9862000-11-20 Kunihiro Ishiguro <kunihiro@zebra.org>
987
988 * rib.c (ip_route): New RIB prototype.
989
9902000-11-16 Yon Uriarte <ukl2@rz.uni-karlsruhe.de>
991
992 * zserv.c (zsend_interface_add): Send hardware address when
993 hw_addr_len is greater than 0.
994
9952000-11-07 Kunihiro Ishiguro <kunihiro@zebra.org>
996
997 * connected.c (connected_up_ipv4): Fix ptop bug. The destination
998 network should be installed into routing table.
999 (connected_down_ipv4): Likewise.
1000 (connected_add_ipv4): Change to use connected_up_ipv4.
1001 (connected_delete_ipv4): Likewise.
1002
10032000-11-06 Kunihiro Ishiguro <kunihiro@zebra.org>
1004
1005 * rt_netlink.c (netlink_interface_addr): Revert Harald Welte
1006 <laforge@gnumonks.org>'s ptop patch then back to original code to
1007 avoid duplicated connected route problem. Suggested by Frank van
1008 Maarseveen <F.vanMaarseveen@inter.NL.net>.
1009
1010 * kernel_socket.c (rtm_read): Make behavior consistent even #ifdef
1011 DEBUG is defined. Reported by Jun-ichiro itojun Hagino
1012 <itojun@iijlab.net>.
1013
10142000-10-23 Jochen Friedrich <jochen@scram.de>
1015
1016 * main.c (main): Call zebra_snmp_init() when it is enabled.
1017
10182000-10-23 Kunihiro Ishiguro <kunihiro@zebra.org>
1019
1020 * zserv.c (zebra_serv_un): UNIX domain socket server of zebra
1021 protocol.
1022
10232000-10-19 Kunihiro Ishiguro <kunihiro@zebra.org>
1024
1025 * rib.c (rib_add_ipv4): Same check bug is fixed.
1026
10272000-10-03 Kunihiro Ishiguro <kunihiro@zebra.org>
1028
1029 * rib.c (rib_if_down): Remove kernel route when the interface goes
1030 down.
1031
1032 * debug.c: New command "debug zebra kernel" is added.
1033
10342000-10-02 Kunihiro Ishiguro <kunihiro@zebra.org>
1035
1036 * zebra-0.89 is released.
1037
10382000-09-24 Harald Welte <laforge@gnumonks.org>
1039
1040 * rt_netlink.c (netlink_interface_addr): Fix point-to-point address
1041 treatment in netlink interface.
1042
10432000-09-21 David Lipovkov <dlipovkov@OpticalAccess.com>
1044
1045 * rib.c (rib_if_down): Pull static route only. Protocol daemon
1046 must withdraw routes when interface goes down.
1047 (rib_add_ipv4): Check nexthop when replace route.
1048
10492000-09-21 Kunihiro Ishiguro <kunihiro@zebra.org>
1050
1051 * if_ioctl.c (if_getaddrs): New function for looking up
1052 interface's address by getifaddrs().
1053
10542000-09-10 Kunihiro Ishiguro <kunihiro@zebra.org>
1055
1056 * connected.c (connected_delete_ipv4): Add check for connected
1057 address is found or not.
1058 (connected_add_ipv6): Reflect IPv6 connected address change to
1059 protocol daemons.
1060 (connected_delete_ipv6): Likewise.
1061
10622000-09-07 David Lipovkov <davidl@nbase.co.il>
1063
1064 * rib.c (rib_delete_ipv4): Reverted the change from pseudo
1065 interface patch to original. Because ospfd deletes routes using
1066 zero ifindex.
1067
10682000-08-17 Kunihiro Ishiguro <kunihiro@zebra.org>
1069
1070 * zebra-0.88 is released.
1071
10722000-08-15 "Akihiro Mizutani" <mizutani@dml.com>
1073
1074 * rib.c (show_ip_route_protocol): Help string correction.
1075 (show_ip_route_prefix): Check prefix mask.
1076 (show_ip_route_vty_detail): Display distance and metric.
1077
10782000-08-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1079
1080 * zserv.c (zsend_interface_add): Change ifindex store size from
1081 two octet to four.
1082 (zsend_interface_delete): Likewise.
1083 (zsend_interface_address_add): Likewise.
1084 (zsend_interface_address_delete): Likewise.
1085 (zsend_interface_up): Likewise.
1086 (zsend_interface_down): Likewise.
1087
10882000-08-13 Kunihiro Ishiguro <kunihiro@zebra.org>
1089
1090 * rib.c (rib_add_ipv4): Do not install distance 255 route.
1091
10922000-08-10 Toshiaki Takada <takada@zebra.org>
1093
1094 * interface.c (bandwidth_if), (no_bandwidth_if): Call
1095 zebra_interface_up_update () instead of using if_up() and if_down().
1096
10972000-08-07 "Akihiro Mizutani" <mizutani@dml.com>
1098
1099 * interface.c (bandwidth_if): Fix help string.
1100
11012000-08-07 Matthew Grant <grantma@anathoth.gen.nz>
1102
1103 * interface.c (if_dump_vty): Display bandwidth value.
1104 (bandwidth_if): New command "bandwidth <1-10000000>" is added.
1105 When interface is up, force protocol daemons to recalculate routes
1106 due to cost change.
1107 (no_bandwidth_if): Likewise.
1108 (if_config_write): Output bandwidth configuration.
1109
1110 * zserv.c (zsend_interface_add): Send bandwidth value.
1111 (zsend_interface_up): Likewise.
1112 (zsend_interface_down): Likewise.
1113
1114
11152000-08-07 Michael Rozhavsky <mike@nbase.co.il>
1116
1117 * rib.c (show_ip_route_protocol): "show ip route
1118 (bgp|connected|kernel|ospf|rip|static)" is added.
1119
11202000-08-07 Kunihiro Ishiguro <kunihiro@zebra.org>
1121
1122 * rib.c (rib_lookup_ipv4_nexthop): Check parent node until IGP
1123 nexthop is found.
1124 (rib_add_ipv4_internal): Set fib ifindex to rib ifindex.
1125
11262000-08-06 Kunihiro Ishiguro <kunihiro@zebra.org>
1127
1128 * redistribute.c (redistribute_delete): Fix bug of default route
1129 redistribute treatment.
1130
11312000-08-05 Kunihiro Ishiguro <kunihiro@zebra.org>
1132
1133 * rib.c (rib_init): Install ip_node in rib.c instead of zserv.c.
1134 Change default distance value.
1135
1136 Old New
1137 ------------------------------------------
1138 system 10 0
1139 kernel 20 0
1140 connected 30 0
1141 static 40 1
1142 rip 50 120
1143 ripng 50 120
1144 ospf 60 110
1145 ospf6 49 110
1146 bgp 70 200(iBGP) 20(eBGP)
1147 ------------------------------------------
1148
1149 * zserv.c (client_lookup): Function removed.
1150 (zsend_interface_add): Use client's output buffer. Check ifinfo
1151 flag.
1152 (zsend_interface_delete): Likewise.
1153 Delete ipv4_static_radix and ipv6_static_radix.
1154
11552000-08-02 Kunihiro Ishiguro <kunihiro@zebra.org>
1156
1157 * zserv.h (struct zebra_client): When client request interface
1158 information, ifinfo is set.
1159
1160 * rib.c: Temporary Revert changes for pseudo interface.
1161
1162 * rib.h: Likewise.
1163
1164 * zserv.c: Likewise.
1165
1166 * interface.c: Likewise.
1167
11682000-08-02 David Lipovkov <davidl@nbase.co.il>
1169
1170 * interface.c (zebra_if_init): Install interface "pseudo"
1171 commands.
1172
1173 * rib.c (rib_create): ifname argument is added.
1174 (rib_add_ipv4_pseudo): New function is added.
1175 (rib_delete_ipv4_pseudo): Likewise.
1176
1177 * rib.h : Delete INTERFACE_UNKNOWN definition. Add prototype for
1178 pseudo interface functions.
1179
1180 * rt_netlink.c (netlink_link_change): Check for pseudo interface.
1181
1182 * zserv.c (ip_route): When destination is pseudo interface, call
1183 rib_add_ipv4_pseudo().
1184
1185 * zserv.c (no_ip_route): Trim "unknown" argument.
1186
11872000-07-26 kunitake@dti.ad.jp
1188
1189 * if_ioctl.c (if_get_hwaddr): Fix hardware address length from 8
1190 to 6.
1191
1192 * rtadv.c (rtadv_send_packet): Fix shift bug for hardware address.
1193
11942000-07-24 Akihiro Mizutani <mizutani@dml.com>
1195
1196 * interface.c: Use install_default() for common VTY commands.
1197
11982000-07-23 Kunihiro Ishiguro <kunihiro@zebra.org>
1199
1200 * if_ioctl.c (interface_list_ioctl): A interface list size is
1201 calculated from ifreq->if_addr.sa_len. This is for OpenBSD.
1202
1203 * ioctl.c (if_get_mtu): Remove codes for SIOCGIFDATA.
1204
12052000-07-09 Chris Dunlop <chris@onthe.net.au>
1206
1207 * if_ioctl.c (if_get_index): Add check for HAVE_BROKEN_ALIASES.
1208
12092000-07-04 Kunihiro Ishiguro <kunihiro@zebra.org>
1210
1211 * zserv.c (zebra_client_read): Add ZEBRA_REDISTRIBUTE_{ADD,DELETE}
1212 message handling.
1213
12142000-07-02 David Lipovkov <davidl@nbase.co.il>
1215
1216 * zserv.c: "ip route A.B.C.D/M unknown" command is added.
1217
12182000-06-28 Michael Rozhavsky <mike@nbase.co.il>
1219
1220 * rib.c: Remove old kernel route when new route comes in.
1221
12222000-06-13 David Lipovkov <davidl@nbase.co.il>
1223
1224 * rib.c (rib_if_up): Add check for unknown interface.
1225
12262000-06-13 Kunihiro Ishiguro <kunihiro@zebra.org>
1227
1228 * rib.h: Define INTERFACE_UNKNOWN.
1229
12302000-06-08 Kunihiro Ishiguro <kunihiro@zebra.org>
1231
1232 * Makefile.am (EXTRA_DIST): Move irdp.c until implementation is
1233 finished.
1234
12352000-06-05 David Lipovkov <davidl@nbase.co.il>
1236
1237 * interface.c (if_zebra_delete_hook): Call rib_if_delete().
1238
1239 * redistribute.c (zebra_interface_delete_update): New function.
1240
1241 * redistribute.h (zebra_interface_delete_update): New function
1242 prototype.
1243
1244 * rib.c (rib_if_delete): New function. Walk down all routes and
1245 delete all on the interface.
1246
1247 * rib.h: New function prototype.
1248
1249 * rt_netlink.c (netlink_link_change): Call
1250 zebra_interface_delete_update ().
1251
12522000-05-10 Kunihiro Ishiguro <kunihiro@zebra.org>
1253
1254 * if_ioctl.c (interface_info_ioctl): Check interface's flag before
1255 checking interface's address.
1256
12572000-04-26 Jochen Friedrich <jochen@nwe.de>
1258
1259 * GNOME-PRODUCT-ZEBRA-MIB: New file.
1260
1261 * GNOME-SMI: New file.
1262
12632000-04-23 Kunihiro Ishiguro <kunihiro@zebra.org>
1264
1265 * irdp.c: New file from 1997 development code.
1266 * irdp.h: Likewise.
1267
12682000-04-19 Kunihiro Ishiguro <kunihiro@zebra.org>
1269
1270 * rtadv.c (rtadv_send_packet): Enclose router advertisement
1271 logging with IS_ZEBRA_DEBUG_PACKET.
1272
12732000-04-17 Kunihiro Ishiguro <kunihiro@zebra.org>
1274
1275 * zserv.c (zebra_client_close): Remove client structure from
1276 client_list when connection is terminated.
1277
12782000-03-21 David Lipovkov <davidl@nbase.co.il>
1279
1280 * connected.c (connected_add_ipv4): Allows all necessary structure
1281 updates for connected route, but doesn't insert it into rib if
1282 it's interface is down.
1283
12842000-01-21 Hideto Yamakawa <hideto.yamakawa@soliton.co.jp>
1285
1286 * rtread_getmsg.c: Set some definition for Solaris 2.5 and Solaris
1287 2.5.1.
1288
12892000-01-21 Kunihiro Ishiguro <kunihiro@zebra.org>
1290
1291 * rib.c (no_ipv6_route_ifname): Fix buf of cheking return value
1292 from str2prefix_ipv6().
1293
12942000-01-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1295
1296 * rt_socket.c: Revert to use RTF_HOST for IPv4 with /32 route and
1297 IPv6 with /128 routes.
1298 (kernel_rtm_ipv4): In case of /32 route's gateway is interface. It
1299 should have mask for cloning.
1300
13011999-12-26 Jochen.Friedrich@genorz.de
1302
1303 * interface.c (if_dump_vty): Fix a bug of missing VTY_NEWLINE.
1304
13051999-12-23 Alex Zinin <zinin@amt.ru>
1306 * interface.*: dynamic int up/down support
1307
13081999-12-09 Kunihiro Ishiguro <kunihiro@zebra.org>
1309
1310 * ipforward_proc.c (dropline): Move dropline() from lib/dropline.c
1311
1312 * rtread_proc.c (proc_route_read): Don't use dropline().
1313
13141999-12-08 Kunihiro Ishiguro <kunihiro@zebra.org>
1315
1316 * kernel_socket.c (rtm_read): When message is RTM_GET, it has own
1317 process's pid.
1318
13191999-12-04 Kunihiro Ishiguro <kunihiro@zebra.org>
1320
1321 * main.c (main): Change to default log output to ZLOG_STDOUT.
1322
1323 * zserv.c (zebra_serv): More detailed error print.
1324
13251999-11-30 Kunihiro Ishiguro <kunihiro@zebra.org>
1326
1327 * kernel_socket.c (rtm_read): Check old pid for static route
1328 insertion check.
1329
13301999-11-30 Kunihiro Ishiguro <kunihiro@zebra.org>
1331
1332 * interface.c (if_dump_vty): BSDI/OS uses 64bit for interface
1333 statistics counter.
1334
1335 * mtu_kvm.c: New file added.
1336
13371999-11-27 Vladimir B. Grebenschikov <vova@express.ru>
1338
1339 * kernel_socket.c (rtm_write): Set RTF_CLONING flag for
1340 route to the directly connected interface.
1341
13421999-11-27 Kunihiro Ishiguro <kunihiro@zebra.org>
1343
1344 * rt_socket.c: Delete USE_HOST_BIT definition.
1345
13461999-11-21 Michael Handler <handler@sub-rosa.com>
1347
1348 * rtread_getmsg.c: Undef some definition to resolve conflict.
1349
13501999-11-27 Kunihiro Ishiguro <kunihiro@zebra.org>
1351
1352 * kernel_socket.c (rtm_write): Change to use pre stored struct_dl
1353 value for gateway specification.
1354
13551999-11-25 Kunihiro Ishiguro <kunihiro@zebra.org>
1356
1357 * rt_socket.c (kernel_rtm_ipv4): Even mask is 32 under IPv4 or
1358 128 under IPv6, don't use RTF_HOST.
1359
13601999-11-21 Kunihiro Ishiguro <kunihiro@zebra.org>
1361
1362 * Makefile.am (EXTRA_DIST): Add rtread_getmsg.c.
1363
13641999-11-21 Michael Handler <handler@sub-rosa.com>
1365
1366 * rtread_getmsg.c: Added for Solaris 2.6 support.
1367
13681999-11-18 Kunihiro Ishiguro <kunihiro@zebra.org>
1369
1370 * rtread_sysctl.c (rtm_read_route): RTM_DELETE handling added.
1371
1372 * rt_socket.c (kernel_read): Better BSD routing socket support.
1373
13741999-10-19 Kunihiro Ishiguro <kunihiro@zebra.org>
1375
1376 * client_main.c: Disable making obsolete zebra test `client'
1377 command.
1378
13791999-10-18 Kunihiro Ishiguro <kunihiro@zebra.org>
1380
1381 * zebra.c: Renamed to zserv.c.
1382
1383 * zebra.h: Global definitions are moved to lib/zebra.h. Then
1384 renamed to zserv.h.
1385
13861999-10-15 Jordan Mendelson <jordy@wserv.com>
1387
1388 * if_ioctl.c: Add Linux 2.2.X's alias support and dynamic
1389 interface. Remove ugly MAX_INTERFACE handling codes.
1390
13911999-09-17 Satosi KOBAYASI <kobayasi@north.ad.jp>
1392
1393 * Fix serious bug of IPv6 route deletion.
1394
13951999-09-11 Kunihiro Ishiguro <kunihiro@zebra.org>
1396
1397 * ioctl.c (if_set_prefix): Properly set broadcast address.
1398
13991999-09-04 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1400
1401 * rib.c (rib_add_ipv6, rib_delete_ipv6): now protocol daemons
1402 can install connected route to kernel via zebra
1403
14041999-08-24 VOP <vop@unity.net>
1405
1406 * rib.c: Include "sockunion.h"
1407
14081999-08-22 Kunihiro Ishiguro <kunihiro@zebra.org>
1409
1410 * ipforward.h: New file.
1411
1412 * zebra.h: Obsolete message ZEBRA_GET_ALL_INTERFACE,
1413 ZEBRA_GET_ONE_INTERFACE, ZEBRA_GET_HOSTINFO are deleted.
1414
14151999-08-18 Kunihiro Ishiguro <kunihiro@zebra.org>
1416
1417 * zebra.h (ZEBRA_INTERFACE_ADDRESS_ADD):
1418 ZEBRA_INTERFACE_{ADD,DELETE} added.
1419
14201999-08-15 Kunihiro Ishiguro <kunihiro@zebra.org>
1421
1422 * rib.c: show ip route A.B.C.D works.
1423
1424 * zebra.c (zebra_read_ipv4): Add ifindex to zebra messages.
1425
14261999-08-12 Kunihiro Ishiguro <kunihiro@zebra.org>
1427
1428 * zebra.h: New Zebra message ZEBRA_INTERFACE_{ADD,DELETE} added.
1429
14301999-08-09 Kunihiro Ishiguro <kunihiro@zebra.org>
1431
1432 * interface.h: New file.
1433 * Makefile.am: Add interface.h
1434
14351999-08-04 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1436
1437 * redistribute.c (zebra_redistribute): give ifindex to client.
1438
14391999-08-02 Kunihiro Ishiguro <kunihiro@zebra.org>
1440
1441 * main.c (longopts): -k, --keep_kernel option added.
1442
14431999-07-18 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1444
1445 * rt_socket.c (rtm_write): forgot closing socket bug fixed.
1446
14471999-07-17 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1448
1449 * rib.c (show_ipv6_cmd): if rib is link show interface name.
1450
14511999-07-17 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1452
1453 * rt_socket.c (rtm_write): use sockaddr_dl when null gateway.
1454
14551999-07-16 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1456
1457 * rt_socket.c (rtm_write): ipv6 route table bug fixed.
1458
14591999-07-15 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1460
1461 * zebra.c (zebra_read_ipv6): read link prefix from ospf6 support
1462
14631999-07-15 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
1464
1465 * rt_socket.c (kernel_rtm_ipv6): gate treatment bug fixed.
1466
14671999-07-15 Kunihiro Ishiguro <kunihiro@zebra.org>
1468
1469 * if_sysctl.c (ifm_read): Clear sockunion argument before fetching
1470 data. Suggested by "Chris P. Ross" <cross@eng.us.uu.net>
1471
14721999-07-08 HEO SeonMeyong <seirios@Matrix.IRI.Co.Jp>
1473
1474 * interface.c (if_tun_add): Add KAME's gif tunnel setting codes.
1475
14761999-06-26 Kunihiro Ishiguro <kunihiro@zebra.org>
1477
1478 * zebra.c (zebra_serv): Only accept loopback address connection.
1479
14801999-06-25 Kunihiro Ishiguro <kunihiro@zebra.org>
1481
1482 * zebra.h (ZEBRA_ROUTE_EXTERNAL): Add zebra messages flags
1483
14841999-06-17 Kunihiro Ishiguro <kunihiro@zebra.org>
1485
1486 * ipforward_proc.c: ipforward_on () and ipforward_off () added.
1487
14881999-06-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1489
1490 * ipforward_proc.c (ipforward_ipv6): Check for IPv6 forwarding
1491 using /proc file system is added.
1492
14931999-06-06 Kunihiro Ishiguro <kunihiro@zebra.org>
1494
1495 * if_ioctl.c (if_get_index): Interface index set bug is fixed by
1496 adding #else at the middle of function. Suggested by David Luyer
1497 <luyer@ucs.uwa.edu.au>.
1498
14991999-05-29 <kunihiro@zebra.org>
1500
1501 * rt_ioctl.c: Comment out #include <linux/ipv6_route.h>.
1502
15031999-05-26 Kunihiro Ishiguro <kunihiro@zebra.org>
1504
1505 * zebra.h (ZEBRA_ROUTE_MAX): Add new define for the max value of
1506 the sort of routes.
1507
15081999-05-25 Patrick Koppen <koppen@rhrk.uni-kl.de>
1509
1510 * rt_netlink.c (netlink_socket): Make netlink socket non-blocking.
1511 (netlink_parse_info): If errno is EWOULDBLOCK then continue to
1512 parse the message.
1513 (netlink_talk): Likewise
1514
15151999-05-17 <kunihiro@zebra.org>
1516
1517 * redistribute.c (zebra_check_addr): Added for loopback address
1518 check.
1519
15201999-05-15 Kunihiro Ishiguro <kunihiro@zebra.org>
1521
1522 * rt_netlink.c (netlink_route_change): Tempolary bypass ipv6 route
1523 change treatment.
1524
1525 * Makefile.am (noinst_HEADERS): redistribute.h added.
1526
1527 * redistribute.h: New file.
1528
15291999-05-14 Stephen R. van den Berg <srb@cuci.nl>
1530
1531 * zebra.c (show_table): Show all table configuration DEFUN.
1532 (config_table): Config table number DEFUN.
1533
1534 * rt_netlink.c: Add support for multiple routing table.
1535
1536 * rib.c (rib_weed_table): New function added for delete all
1537 routes from specified routing table.
1538
1539 * main.c (signal_init): SIGTERM call sigint.
1540 (sigint): Loggging more better message.
1541
15421999-05-09 Kunihiro Ishiguro <kunihiro@zebra.org>
1543
1544 * rt_netlink.c: Change log () to zlog ().
1545
15461999-05-07 <kunihiro@zebra.org>
1547
1548 * zebra.h (ZEBRA_ROUTE_OSPF6): Added for ospf6d route.
1549
15501999-04-20 Kunihiro Ishiguro <kunihiro@zebra.org>
1551
1552 * interface.c: Add `no ip address' command.
1553
15541999-04-10 Kunihiro Ishiguro <kunihiro@zebra.org>
1555
1556 * rt_netlink.c (kernel_read): Function added for asynchronous
1557 zebra between kernel communication.
1558
15591999-03-25 Kunihiro Ishiguro <kunihiro@zebra.org>
1560
1561 * rtread_sysctl.c (rtm_read): Fix address memcopy overrun bug.
1562 Reported by Achim Patzner <ap@bnc.net>.
1563
15641999-03-03 Kunihiro Ishiguro <kunihiro@zebra.org>
1565
1566 * Makefile.am: Install configuration sample with 600 permission.
1567
15681999-03-02 Kunihiro Ishiguro <kunihiro@zebra.org>
1569
1570 * Makefile.am: Add -I.. to INCLUDES.
1571
15721999-02-18 Peter Galbavy <Peter.Galbavy@knowledge.com>
1573
1574 * syslog support added
1575
15761999-02-17 Peter Galbavy <Peter.Galbavy@knowledge.com>
1577
1578 * if_sysctl.c (interface_list): allocated memory free when unknown
1579 ifm_type is returned.
1580
1581 * ioctl.c (if_get_mtu): added SIOCGIFDATA treatment.
1582
15831998-12-15 Magnus Ahltorp <map@stacken.kth.se>
1584
1585 * interface.c: Header include added.
1586
15871998-12-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1588
1589 * rt.h (kernel_delete_ipv6): change int index to unsigned int index.
1590
15911998-12-13 Kunihiro Ishiguro <kunihiro@zebra.org>
1592
1593 * if_ioctl.c (interface_list_ioctl): interface flag must be
1594 checked before check addresses of the interface.
1595
15961998-12-07 Kunihiro Ishiguro <kunihiro@zebra.org>
1597
1598 * Makefile.am (INCLUDES): add @INCLUDES@ for Linux IPv6.
1599
16001998-10-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1601
1602 * ioctl.c: Linux version before 2.1.0 need interface route setup.
1603
16041998-09-15 HEO SeonMeyong <seirios@matrix.iri.co.jp>
1605
1606 * change HYDRANGEA to KAME
1607
16081998-09-01 Kunihiro Ishiguro <kunihiro@zebra.org>
1609
1610 * if_ioctl.c (if_addr_ioctl): set address family for getting
1611 interface's address.
1612 (if_get_index): silently return when can't get interface's index.
1613
16141998-08-17 Kunihiro Ishiguro <kunihiro@zebra.org>
1615
1616 * main.c (main): batch mode option '-b' added.
1617
16181998-08-16 Kunihiro Ishiguro <kunihiro@zebra.org>
1619
1620 * ioctl.c (if_set_prefix): add `ip address IPV4ADDR' command.
1621 * interface.c (shutdown_if): add interface shutdown and no
1622 shutdown command.
1623
16241998-08-12 Kunihiro Ishiguro <kunihiro@zebra.org>
1625
1626 * rib.c (rib_add_ipv6): delete rib_add_in6.
1627
16281998-07-27 Kunihiro Ishiguro <kunihiro@zebra.org>
1629
1630 * main.c: retain flag is added.
1631
16321998-07-08 Kunihiro Ishiguro <kunihiro@zebra.org>
1633
1634 * rtable.[ch]: merged with rib.[ch]
1635
16361998-07-07 Kunihiro Ishiguro <kunihiro@zebra.org>
1637
1638 * connected.h: renamed from ifa.h.
1639
16401998-06-09 Kunihiro Ishiguro <kunihiro@zebra.org>
1641
1642 * rename if.c to interface.c
1643 * rename ifa.c to connected.c
1644
1645 * Porting to Debian GNU/Linux 2.0 (hamm).
1646
16471998-06-08 Kunihiro Ishiguro <kunihiro@zebra.org>
1648
1649 * rt_netlink.c: renamed from krt_netlink.c
1650
1651 * fib.c: deleted.
1652 * rt_kvm.c: deleted.
1653 * rtread_getmsg.c: deleted.
1654
16551998-06-07 Kunihiro Ishiguro <kunihiro@zebra.org>
1656
1657 * if.c (multicast): add multicast flag [un]set fucntion.
1658
16591998-05-19 Yamshita TAKAO <jargon@lares.dti.ne.jp>
1660
1661 * rt_socket.c: Modify for compile on Solaris, but dont't work it.
1662 rt_socket.c have some undefined function, so add directive "IMPLEMENT"
1663
16641998-05-18 Yamshita TAKAO <jargon@lares.dti.ne.jp>
1665
1666 * zebra.c: Modify for compile on Solaris.
1667
16681998-05-03 Kunihiro Ishiguro <kunihiro@zebra.org>
1669
1670 * main.c: change CONFDIR to SYSCONFDIR.
1671
16721998-05-01 Kunihiro Ishiguro <kunihiro@zebra.org>
1673
1674 * .cvsignore: added.
1675
16761998-04-02 Kunihiro Ishiguro <kunihiro@zebra.org>
1677
1678 * client.c: moves to ../lib.
1679
16801998-03-30 Kunihiro Ishiguro <kunihiro@zebra.org>
1681
1682 * if_ioctl.c (if_get_addr): Change address copy from memcopy() to
1683 structure assignment.
1684
16851998-03-30 URA Hiroshi <ura@yamato.ibm.co.jp>
1686
1687 * if_sysctl.c (ifm_interface_add): sdl->sdl_data copy bug fixed.
1688
16891998-02-23 "Hannes R. Boehm" <hannes@boehm.org>
1690
1691 * if.c (if_init): add config_exit_cmd and config_help_cmd.
1692
16931998-01-24 Kunihiro Ishiguro <kunihiro@zebra.org>
1694
1695 * rt_ioctl.c (route_ioctl): EPERM treatment added.
1696
16971998-01-05 Kunihiro Ishiguro <kunihiro@zebra.org>
1698
1699 * rt_socket.c (kernel_read): communication port zebra between
1700 kernel is now handled by kernel_read.
1701
17021998-01-02 Kunihiro Ishiguro <kunihiro@zebra.org>
1703
1704 * main.c (main): zebra [-P port] can specify vty port number.
1705
17061997-12-25 Kunihiro Ishiguro <kunihiro@zebra.org>
1707
1708 * zebra.c: change select will be block.
1709
17101997-12-04 Kunihiro Ishiguro <kunihiro@zebra.org>
1711
1712 * add static route treatment.
1713
17141997-11-25 Kunihiro Ishiguro <kunihiro@zebra.org>
1715
1716 * rt_netlink.c: add netlink support over GNU/Linux system.
1717
17181997-11-23 Kunihiro Ishiguro <kunihiro@zebra.org>
1719
1720 * all inet_addr is changed to inet_aton.
1721
1722 * zebra.c (ip_route): add ip route command for static routes.
1723
17241997-11-20 Kunihiro Ishiguro <kunihiro@zebra.org>
1725
1726 * if.c (if_flag_dump): Linux port of if_flag_dump and _vty.
1727
17281997-11-19 Kunihiro Ishiguro <kunihiro@zebra.org>
1729
1730 * if.c: add interface command.
1731
17321997-11-18 Kunihiro Ishiguro <kunihiro@zebra.org>
1733
1734 * ipforward_proc.c : Now works on Linux.
1735
17361997-10-25 Kunihiro Ishiguro <kunihiro@zebra.org>
1737
1738 * command.c : add completion feature.
1739
17401997-10-18 Kunihiro Ishiguro <kunihiro@zebra.org>
1741
1742 * vty.c (vty_command): add vty interface.
1743
17441997-10-13 Kunihiro Ishiguro <kunihiro@zebra.org>
1745
1746 * zebra.c: add verbose mode.
1747
17481997-10-12 SonMyong Ho <s-ho@Matrix.IRI.Co.Jp>
1749
1750 * Hydrangea for FreeBSD supported
1751 * in.h: add some prototype.
1752
17531997-10-11 Kunihiro Ishiguro <kunihiro@zebra.org>
1754
1755 * rt_socket.c and rtread.c completely rewritten.
1756
17571997-10-05 Kunihiro Ishiguro <kunihiro@zebra.org>
1758
1759 * rt_socket.c: rename kernel_sock to routing_socket
1760
17611997-10-04 Kunihiro Ishiguro <kunihiro@zebra.org>
1762
1763 * if.c (if_new): interface structure change from linklist to vector.
1764
17651997-10-03 Kunihiro Ishiguro <kunihiro@zebra.org>
1766
1767 * vector.c (vector_init): create vector related function
1768
17691997-09-25 Kunihiro Ishiguro <kunihiro@zebra.org>
1770
1771 * Makefile.in: add tags target
1772
1773 * start IPv6 support for INRIA FreeBSD.
1774