blob: e31d0c6caf46a77f094db7c6ba0d7343d1d7f8c5 [file] [log] [blame]
gdtd6b72f72003-12-03 17:24:27 +000012003-12-03 Greg Troxel <gdt@poblano.ir.bbn.com>
2
3 * configure.ac: Add --enable-exampledir to specify where example
4 config files should go, defaulting to sysconfdir.
5
6 * */Makefile.am: use exampledir instead of sysconfdif for examples
7
paul62892882003-11-02 07:31:47 +000082003-11-02 Paul Jakma <paul@dishone.st>
9
10 * bgpd/bgp_routemap.c: Fix up 'set ip next-hop A.B.C.D|peer-address'
11 route map command so that vtysh can use it. Modified version of
12 Hasso Tepper's patch. Fixes bug #52.
13 * configure.ac: FreeBSD has net-snmp in /usr/local.
14 * redhat/quagga.spec.in: Install libzebra headers with -devel
15 package.
16
172003-11-02 Krzysztof Oledzki <oleq@ans.pl>
18
19 * zebra/zebra_rib.c: Revert patch (dating from zebra.org) which
20 caused zebra to read all routes in all tables, rather than just
21 the main table. See [quagga-dev 280].
22
232003-10-30 Paul Jakma <paul@dishone.st>
24
25 * configure.ac: netinet/in_systm.h is yet another well-known
26 header file we really should be checking for
27
282003-10-27 kamatchi soundaram <kamatchi@tdd.sj.nec.com>
29
30 * ospfd/ospfd.c: Do not increment act_int for an area, as it is done
31 by ospf_ism.c::ism_change_state() - results in incorrect figure
32 for active interfaces in an area.
33
342003-10-27 Paul Jakma <paul@dishone.st>
35
36 * lib/if.{ch}: remove ifc_pointtopoint() - left over from the
37 reverted RFC3021 patch.
38
392003-10-27 Simon <lists@routemeister.net>
40
41 * ospfd/ospfd.c: if_is_pointopoint() takes (struct interface *), was
42 being called with struct connected. Change to co->ifp.
43
442003-10-27 Gilad Arnold <gilad.arnold@terayon.com>
45
46 * zebra/zebra_rib.c: (nexthop_active_update) Check for multipath
47 limit when setting changed flag to avoid spurious changes.
48 (static_install_ipv{4,6}) dont uninstall by default, might not be
49 required - avoid spurious uninstalls.
50 (static_uninstall_ipv{4,6}) only uninstall the route if its
51 actually FIB route.
52
532003-10-24 sowmini.varadhan@sun.com
54
55 * ospfd/ospf_network.c: (ospf_sock_init) Exit if socket can not be
56 created.
57
582003-10-24 Jose Luis Rubio Guivernau <jrubio@dit.upm.es>
59
60 * Better 'show bgp' support for views (eg ipv6), see [quagga-dev 238]
61 * bgpd/bgp_route.c: (bgp_show) Take a struct bgp argument instead of
62 view string.
63 (bgp_show_neighbor_route) Take a struct peer argument instead of
64 ip string.
65 (peer_adj_routes) ditto
66 (show_adj_routes) ditto
67 (peer_lookup_in_view) new function to return appropriate struct
68 peer for a given view string.
69 (misc) Fixup all calls to above to reflect new calling arguments,
70 and use peer_lookup_in_view as needed. Additional commands
71 installed to use expanded functionality above, existing commands
72 modified to suit as well.
73 * bgpd/bgp_vty.c: 2 new aliases.
74
752003-10-24 Paul Jakma <paul@dishone.st>
76
77 * configure.ac: Check for fcntl()
78 * {bgpd,ospf,ospf6d,ripd,ripngd}/Makefile.am: Install conf file via
79 regular automake means, not magic install incantations, see
80 bug #38.
81 * lib/Makefile.am: install the headers, needed to link libzebra.a
82 (and hence libospf.a, OSPF-API, etc.)
83
842003-10-24 waldi@debian.org
85
86 * vtysh/Makefile.am: vtysh_cmd.c rebuild was broken because it
87 depended against source files without specification, i.e. it
88 used ../zebra instead of $(top_srcdir)/zebra.
89
902003-10-23 Paul Jakma <paul@dishone.st>
91
92 * configure.ac: IRIX configure.ac support. Sort of works.
93 sysctl() crashes though (ipforward), there's some kind of odd
94 padding in the PF_ROUTE socket messages and setsockopt() on
95 SOCK_RAW does not work (so ospfd doesnt work).
96
972003-10-22 Paul Jakma <paul@dishone.st>
98
99 * vtysh/Makefile.am: do not include vtysh_cmd.c in dists, its
100 configure dependent. (still need to find a way to make building of
101 it dependent on configure options or include all commands.)
102
1032003-10-22 Paul Jakma <paul@dishone.st>
104
105 * lib/zebra.h: include limits.h if its there, its a portable header
106 and useful and not just solaris specific. net/route.h is also
107 useful.
108
1092003-10-22 Paul Jakma <paul@dishone.st>
110
111 * lib/regex.c: bzero -> memset
112 * zebra/ioctl.c: ditto. bzero is not portable.
113
1142003-10-22 Paul Jakma <paul@dishone.st>
115
116 * zebra/kernel_socket.c: HAVE_IPV6 conditional for WRAPUP when
117 HAVE_SA_LEN is not defined. bcopy -> memcpy, bcopy is not
118 portable.
119
1202003-10-22 Paul Jakma <paul@dishone.st>
121
122 * configure.ac: Split up header checks into non-net, net and ipv6
123 related. Checking of IPv6 is conditional. Add some more output
124 text for the end of the configure run.
125
1262003-10-18 Lorenzo Colitti <lorenzo@ripe.net>
127
128 * bgpd/bgp_attr.c: (bgp_dump_routes_attr) Dont dump IPv4 nexthop
129 for IP. Dump MP_NLRI attr with IPv6 next-hop for AF_INET6 address
130 family prefixes. Accept prefix as argument.
131 * bgpd/bgp_attr.c: modify bgp_dump_routes_attr declaration.
132 * bgpd/bgp_dump.c: (bgp_dump_routes_entry) Modify calls to
133 bgp_dump_routes_attr.
134 (bgp_dump_common) Go by the family of the peering socket, not
135 configured address family when dumping peering information.
136 Add HAVE_IPV6 conditionals, eg missing from previous bgp interval
137 patch.
138
1392003-10-18 Lorenzo Colitti <lorenzo@ripe.net>
140
141 * bgpd/bgp_dump.{c,h}: (bgp_dump_interval_add) Dump at discrete
142 fixed intervals rather than fixed intervals from startup time.
143 (bgp_dump_interval_func) Dont return immediately if file cant be
144 openeded, but reschedule interval dumps, even - admin might
145 fix problem in meantime. Close the dump file in between intervals.
146 (bgp_dump_init) account for MSG header when initialising stream
147 size.
148
1492003-10-15 Paul Jakma <paul@dishone.st>
150
151 * ospfd/ospf_interface: (ospf_if_lookup_table) new function to
152 lookup oi for a given prefix in a given interfaces table of oi's.
153 (ospf_if_new) use ospf_if_lookup_table to deal with zebra
154 reporting new interface multiple times.
155 NB: This patch is a complete plaster-band of a hack. First, why is
156 zebra reporting interface events multiple times? Second, why does
157 ospfd maintain so many damn lists and tables relating to oi's -
158 these should be reconciled into one or two tables.
159
1602003-10-15 sowmini.varadhan@sun.com
161
162 * ripd/ripd.c: (rip_send_packet) use rip->sock for mcast sends,
163 instead of creating one socket per send. send source addr to
164 rip_update_interface.
165 (rip_update_process) should send an update on every connected
166 network for each interface.
167 (rip_request_send) should send a request on every connected
168 network for each interface.
169 * ripd/ripd.h: update prototype for rip_interface_multicast_set
170 * ripd/rip_interface.c: (rip_interface_multicast_set) reorganized
171 so that it can be called repeatedly for aliased interfaces (on
172 multiple networks).
173
1742003-10-15 Jay Fenlason <fenlason@redhat.com>
175
176 * lib/vty.c: (vty_telnet_option) Remote DoS exists if a telnet
177 end-sub-negotation is sent when no sub-negotation data has been
178 sent. Return immediately if no sub-negotation is in progress.
179 (vty_read) do not attempt to process options if no sub-negotation
180 is in progress.
181
1822003-10-15 Paul Jakma <paul@dishone.st>
183
184 * lib/vty.c: (vty_save_cwd) dont crash if getcwd fails. try fallback
185 to SYSCONFDIR. Allocate cwd from the stack rather than relying on
186 (non-portable) getcwd() allocation (which we didnt seem to be
187 freeing).
188
1892003-10-13 Jay Fenlason <fenlason@redhat.com>
190
191 * lib/zebra.h: define UINT32_MAX for those systems which do not
192 provide it.
193 * bgp_attr.h: define BGP_MED_MAX.
194 * bgp_route.c: update defines/constants to BGP_MED_MAX.
195 * bgp_routemap.c: ditto. clean up route_match_metric_compile
196 slightly to avoid unneccesary XMALLOC.
197
1982003-10-13 sowmini.varadhan@sun.com
199
200 * ospf_lsa.h: Add OSPF_LSA_PREMATURE_AGE flag.
201 * ospf_lsa.c: added better debug comments. check sequence number in
202 ospf_lsa_install. ospf_maxage_lsa_remover() checks for
203 OSPF_LSA_PREMATURE_AGE and re-originates the lsa after ls_acks are
204 received.
205 * ospf_flood.c: improve debug statement- print ls_seqnum.
206
2072003-10-13 Douglas Fraser <doug+quagga@idmf.net>
208
209 * zebra/connected.c: PtP revert fixup. Zebra was not creating
210 connected route for PtP peer.
211
2122003-10-07 Tarhon-Onu Victor <mituc@iasi.rdsnet.ro>
213
214 * zebra/ipforward_proc.c: (ipforward) Close the fd for
215 /proc/net/snmp. See [quagga-dev 284]
216
2172003-09-29 Gilad Arnold <gilad.arnold@terayon.com>
218
219 * zebra/zebra_rib.c: Fix possible dangling reference to rib
220 route_nodes - unlock it the appropriate number of times. (twice,
221 because of the implicit lock). see [quagga-dev 251].
222
2232003-09-29 Paul Jakma <paul@dishone.st>
224
225 * zebra/connected.c: revert the 'generic PtP' patch as it causes
226 far too many problems. People who use FreeSWAN should investigate
227 native linux ipsec.
228 * zebra/rt_netlink.c: ditto
229 * lib/if.c: ditto
230 * ripd/ripd.h: ditto
231 * ripd/ripd.c: ditto
232 * ripd/rip_interface.c: ditto
233 * ospfd/ospfd.c: ditto
234 * ospfd/ospf_snmp.c: ditto
235 * bgpd/bgp_nexthop.c: ditto
236 * ospfd/ospf_packet.c: Add debug output for some of the previously
237 completely silent drops of 'bad' packets.
238 * configure.ac: bump version
239
2402003-08-27 Jay Fenlason <fenlason@redhat.com>
241
242 * lib/Makefile.am: Do not use a lib (libcap) as a dependency
243 * zebra/Makefile.am: Link in libcap
244 * bgpd/bgp_routemap.c: attr->med is type u_in32_t, should be
245 compared with UINT32_MAX
246 * ospfd/ospfd.c: remove redundant assert
247 * zebra/rtadv.c: add missing include for zebra/rib.h
248
2492003-09-24 Paul Jakma <paul@dishone.st>
250
251 * lib/version.h: moved to version.h.in
252 * lib/version.h.in: New file, from version.h. Change hardcoded
253 package name and version to use the autoconf defined substition
254 variables.
255 * configure.ac: Fix up AC/AM_INIT* to new style. Remove the sed'ing
256 through lib/version.h for VERSION. Add lib/version.h to the
257 AC_OUTPUT list. Update the text output of quagga version at end
258 of configure run to use PACKAGE_VERSION.
259 * doc/.cvsignore: ignore quagga.pdf
260 * doc/.cvsignore: ignore version.h, its now autogenerated.
261
2622003-09-24 sowmini.varadhan@sun.com
263
264 * lib/if.c: (if_cmp_func) fix infinite loop if
265 ifp1->name == ifp2->name
266 * lib/linklist.c: (if_cmp_func) Fix handling of case where
267 list->cmp returns 0.
268 * rip_interface.c: (rip_interface_address_add) call
269 rip_enable_apply(), or the interface is never considered up.
270 see [quagga-dev 225].
271 * zebra/kernel_socket.c: Fix up WRAPUP macro to deal with multiple
272 address families in the absence of sa_len element in struct
273 sockaddr.
274 (ifm_read): Handle solaris 9 if_msghdr_t.
275 Deal with interfaces which are incomplete, lookup on name rather
276 than the placeholder interface index of -1.
277
2782003-09-24 Thomas Giger TGC <thomas.giger@tgc.de>
279
280 * ospf_packet.c (ospf_associate_packet_vl): pass NULL struct
281 interface to ospf_if_lookup_by_local_addr() rather than the
282 receiving interface ifp, packets for VL's could come in any
283 interface. See quagga-dev 250.
284
paule05fba42003-04-13 20:20:53 +00002852003-04-13 Paul Jakma <paul@dishone.st>
286
287 * Amir: Opaque LSA bug fix for deletion of Type11's
288 * configure.ac: use --localstatedir for Unix sockets
paul645878f2003-04-13 21:42:11 +0000289 * Hasso Tepper: When flushing as-ext LSAs flush associated NSSA
290 LSAs.
paule05fba42003-04-13 20:20:53 +0000291
paul020709f2003-04-04 02:44:16 +00002922003-04-04 Paul Jakma <paul@dishone.st>
293
294 * Sync to Zebra CVS
295 * Fix lib/thread.h leak
296 * Fix small Opaque LSA leak
297 * Do not configure OSPF interfaces for secondary addresses
298 * vtysh fixes from Hasso
299 * Dave Watson's missing ntohs fix
300
paul68980082003-03-25 05:07:42 +00003012003-03-25 Paul Jakma <paul@dishone.st>
302
303 * Sync to Zebra CVS
304
paul07661cb2003-03-18 00:03:05 +00003052003-03-17 Amir Guindehi <amir@datacore.ch>
306
307 * Extended SNMP checks in configure.ac so that net-snmp works
308
3092003-03-17 Amir Guindehi <amir@datacore.ch>
310 Ralph Keller <keller@tik.ee.ethz.ch>
311 * merge OSPF-API
312
paul13766da2003-02-07 14:46:23 +00003132003-02-07 Paul Jakma <paul@dishone.st>
314
315 * Sync to zebra CVS
316
paul420df432003-02-03 20:30:39 +00003172003-02-03 Paul Jakma <paul@dishone.st>
318
319 * Sync to zebra CVS
320
paulae936ae2003-01-20 04:58:21 +00003212003-01-19 Paul Jakma <paul@dishone.st>
322
323 * Temporary fix for Generic PtP wrt to IPv6
324
paul9a668002003-01-18 23:11:44 +00003252003-01-17 Paul Jakma <paul@dishone.st>
326
327 * Sync up to latest zebra.org CVS
328 * [zebra 16823] Bugfix and new feature in Opaque-LSA handling
329 Masahiko Endo <endo@suri.co.jp>
330 * [zebra 16824] [PATCH] nsm_kill_neighbor
331 Masahiko Endo <endo@suri.co.jp>
332 * [zebra 17217] [PATCH] show thread CPU
333 Yon Uriarte <havanna_moon@gmx.net>
334 * [zebra 17218] Re: [PATCH] CLI extensions.
335 Yon Uriarte <havanna_moon@gmx.net>
336
paul4fc01e62002-12-13 20:49:00 +00003372002-12-13 Paul Jakma <paul@dishone.st>
338
339 * added support for vtysh 'write file' command to
paul0efa4d52002-12-13 21:55:43 +0000340 write either per-daamon and/or integrated file
paulab836aa2002-12-13 21:19:02 +0000341 * ospfd md5 buffer copying fix (Greg Troxel)
paul8bd9c712002-12-13 21:05:16 +0000342 * ospfd md5 sequence number derived from time()
paulab836aa2002-12-13 21:19:02 +0000343 * RIPv1 fixes and improvements (John Hay)
344 * link state detection (linux) ([zebra 12269])
345 * Generic PtP and RFC3021 interface addressing support
346 (Frank van Maarseveen)
paul0efa4d52002-12-13 21:55:43 +0000347 * Michal Ludvig <michal@logix.cz>:
348 [zebra 16525] PATCH: Bugfixes for KAME systems
349 * Kevin C Miller <kevinm@andrew.cmu.edu>
350 [zebra 16681] OSPF NSSA Patches
351 * Yon Uriarte <havanna_moon@gmx.net>
352 [zebra 16671] [PATCH] CLI extensions
paula8959012002-12-13 21:59:26 +0000353 * Masahiko Endo: [zebra 15475] - MPLS-TE docs
paul4fc01e62002-12-13 20:49:00 +0000354
paul718e3742002-12-13 20:15:29 +00003552002-07-07 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
356
357 * zebra-0.93 released.
358
3592002-06-28 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
360
361 * update-autotools: Change file name from update-auto-tools.sh.
362
3632002-06-21 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
364
365 * update-auto-tools.sh: Add a new script to clean up build
366 environment.
367
3682002-06-18 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
369
370 * Shift to the latest build environment autoconf-2.53 and
371 automake-1.6.2.
372
3732001-10-22 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
374
375 * Integrate Glen Turner <glen.turner@aarnet.edu.au>'s pid option.
376
3772001-08-19 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
378
379 * zebra-0.92a released.
380
3812001-08-19 "Peter Galbavy" <peter.galbavy@knowtion.net>
382
383 * configure.in: SNMP library check problem fix when the library is
384 installed under /usr/local/lib.
385
3862001-08-15 Kunihiro Ishiguro <kunihiro@ipinfusion.com>
387
388 * zebra-0.92 released.
389
3902001-04-22 Kunihiro Ishiguro <kunihiro@zebra.org>
391
392 * configure.in (LIBPAM): Use ZEBRA_AC_C_BIGENDIAN to avoid a
393 warning.
394 (IF_METHOD): Use test -r instead of AC_CHECK_FILE to avoid
395 warnings.
396
397 * config.guess: Update to 2000-11-10 version.
398
3992001-04-11 Kunihiro Ishiguro <kunihiro@zebra.org>
400
401 * configure.in: Use AC_TRY_COMPILE instead of AC_EGREP_HEADER to
402 detect in_pktinfo structure. Suggested by: Vlad Lungu
403 <vlad@rls.roknet.ro>.
404
4052001-03-07 Michael Rozhavsky <mrozhavsky@opticalaccess.com>
406
407 * configure.in: Add check for structure in_pktinfo.
408
4092001-02-07 "Bjoern A. Zeeb" <bzeeb+zebra@zabbadoz.net>
410
411 * configure.in (USE_PAM): Fix PAM library detection code.
412
4132001-02-01 Kunihiro Ishiguro <kunihiro@zebra.org>
414
415 * zebra-0.91 is released.
416
4172001-01-12 Kunihiro Ishiguro <kunihiro@zebra.org>
418
419 * configure.in: Remove guile related definition.
420
4212001-01-11 Kunihiro Ishiguro <kunihiro@zebra.org>
422
423 * configure.in (ac_cv_htonl_works): HAVE_REPAIRABLE_HTONL is
424 removed. htonl should work fine on any platform.
425
4262001-01-10 Kunihiro Ishiguro <kunihiro@zebra.org>
427
428 * configure.in: Remove --enable-oldrib option.
429
430 * acconfig.h: OLD_RIB definition is removed.
431
432 * zebra-0.90 is released.
433
434 * configure.in (LIBS): Add check for sun_len field in struct
435 sun_len.
436
4372001-01-09 Kunihiro Ishiguro <kunihiro@zebra.org>
438
439 * Makefile.am: Include init/redhat files to distribution.
440
4412001-01-07 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
442
443 * configure.in: check libm.a for BGPd compile error.
444 AC_CHECK_LIB(m, main) was added.
445
4462000-12-29 Kunihiro Ishiguro <kunihiro@zebra.org>
447
448 * configure.in: --enable-unixdomain becomes default. Add
449 --enable-tcp-zebra for TCP/IP communication between protocol
450 daemon and zebra.
451
452 * COPYING.LIB: Added for lib/getopt.c, lib/getopt.h,
453 lib/getopt1.c, lib/md5-gnu.h, lib/md5.c, lib/regex-gnu.h,
454 lib/regex.c.
455
456 * Makefile.am (dist-hook): Include tools/*.cgi to distribution.
457
4582000-12-26 Kunihiro Ishiguro <kunihiro@zebra.org>
459
460 * configure.in (MULTIPATH_NUM): --enable-multipath=ARG specify
461 multipath number. ARG must be digit.
462
4632000-12-11 Kunihiro Ishiguro <kunihiro@zebra.org>
464
465 * configure.in: Add --enable-newrib for test new RIB code.
466
4672000-11-25 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
468
469 * configure.in, config.h.in: Add check for libutil.h and
470 setproctitle().
471
4722000-10-26 Kunihiro Ishiguro <kunihiro@zebra.org>
473
474 * configure.in: Add --enable-nssa for OSPF NSSA option.
475
476 * acconfig.h: Define HAVE_NSSA.
477
4782000-10-25 "Bjoern A. Zeeb" <bzeeb+zebra@zabbadoz.net>
479
480 * configure.in: pam_misc is only linked when the platform is
481 GNU/Linux.
482
4832000-10-24 Arkadiusz Miskiewicz <misiek@pld.org.pl>
484
485 * configure.in (LIBS): Add check for crypto library. test x`ls
486 ${ac_snmp}` is replaced with sipmle test -f.
487
4882000-10-23 Kunihiro Ishiguro <kunihiro@zebra.org>
489
490 * configure.in: Add --enable-unixdomain option. This will be
491 default behavior in zebra-0.90.
492
4932000-10-02 Kunihiro Ishiguro <kunihiro@zebra.org>
494
495 * zebra-0.89 is released.
496
4972000-09-27 Kunihiro Ishiguro <kunihiro@zebra.org>
498
499 * configure.in: Add check for Intel CPU for Solaris on x86 check.
500
5012000-09-21 Kunihiro Ishiguro <kunihiro@zebra.org>
502
503 * configure.in: Add check for getifaddrs().
504 Set AM_INIT_AUTOMAKE version to 0.89.
505
5062000-09-14 Kunihiro Ishiguro <kunihiro@zebra.org>
507
508 * config.guess: Update to the latest version.
509
510 * config.sub: Likewise
511
5122000-09-14 David Lipovkov <dlipovkov@OpticalAccess.com>
513
514 * REPORTING-BUGS: New file is added.
515
5162000-08-27 itojun@iijlab.net
517
518 * configure.in: Add ncurses library check when --enable-vtysh is
519 specified.
520
5212000-08-22 Kunihiro Ishiguro <kunihiro@zebra.org>
522
523 * configure.in: Add check for readline/history.h.
524
525 * acconfig.h: Remove pthread related variables.
526
527 * configure.in: Add --with-libpam option for vtysh PAM
528 authentication. Remove --disable-pthread because we don't support
529 pthread.
530
5312000-08-17 Kunihiro Ishiguro <kunihiro@zebra.org>
532
533 * zebra-0.88 is released.
534
535 * configure.in: Add Solaris -lcurses for vtysh.
536
5372000-08-02 Kunihiro Ishiguro <kunihiro@zebra.org>
538
539 * configure.in: Add check for ncurses for compiling on Solaris.
540
5412000-07-27 Kunihiro Ishiguro <kunihiro@zebra.org>
542
543 * configure.in: Add check for libreadline when --enable-vtysh is
544 specified.
545
5462000-07-23 Kunihiro Ishiguro <kunihiro@zebra.org>
547
548 * configure.in: Add AC_DEFINE(OPEN_BSD). When OS is OpenBSD
549 interface method is if_ioctl.o
550
5512000-07-09 Chris Dunlop <chris@onthe.net.au>
552
553 * acconfig.h: Add HAVE_BROKEN_ALIASES.
554
555 * configure.in: Add --enable-broken-aliases.
556
5572000-06-12 Kunihiro Ishiguro <kunihiro@zebra.org>
558
559 * Set version to zebra-0.87.
560
5612000-06-05 Kunihiro Ishiguro <kunihiro@zebra.org>
562
563 * configure.in: Remove --enable-mpls-vpn. Now MPLS-VPN support is
564 default.
565
566 * Set version to zebra-0.87-pre
567
568 * Makefile.am: Likewise.
569
5702000-04-27 Kunihiro Ishiguro <kunihiro@zebra.org>
571
572 * Set version to 0.86.
573
5742000-03-21 Kunihiro Ishiguro <kunihiro@zebra.org>
575
576 * Set version to 0.85b for ospfd test.
577
5782000-03-20 Kunihiro Ishiguro <kunihiro@zebra.org>
579
580 * Set version to 0.85a for ospfd test.
581
5822000-03-08 Kunihiro Ishiguro <kunihiro@zebra.org>
583
584 * Set version to 0.85.
585
5862000-01-26 Kunihiro Ishiguro <kunihiro@zebra.org>
587
588 * Makefile.in: Regenerated by patched automake for fixing "make
589 clean" problem on FreeBSD.
590
5911999-12-08 Kunihiro Ishiguro <kunihiro@zebra.org>
592
593 * Set version to 0.83a. This is for *BSD static route lookup
594 problem.
595
5961999-12-06 Kunihiro Ishiguro <kunihiro@zebra.org>
597
598 * Set version to 0.83.
599
6001999-11-29 Kunihiro Ishiguro <kunihiro@zebra.org>
601
602 * Set version to 0.82.
603
6041999-11-23 Kunihiro Ishiguro <kunihiro@zebra.org>
605
606 * aczebra.m4: New file added.
607
6081999-11-21 Michael Handler <handler@sub-rosa.com>
609
610 * configure.in (LIBS): Add sa_len check of sockaddr.
611
612 * acconfig.h: Add HAVE_SA_LEN.
613
6141999-11-12 Kunihiro Ishiguro <kunihiro@zebra.org>
615
616 * version.h: Update version to zebra-0.81b for bgpd test.
617
6181999-11-09 Kunihiro Ishiguro <kunihiro@zebra.org>
619
620 * configure.in: Add --enable-mbgp.
621
6221999-11-05 Kunihiro Ishiguro <kunihiro@zebra.org>
623
624 * Makefile.am (EXTRA_DIST): Add TODO to the distribution.
625
6261999-11-04 Kunihiro Ishiguro <kunihiro@zebra.org>
627
628 * TODO: New file is added.
629
6301999-11-03 Kunihiro Ishiguro <kunihiro@zebra.org>
631
632 * version.h: Update version to zebra-0.81a for ospfd test.
633
6341999-10-28 Kunihiro Ishiguro <kunihiro@zebra.org>
635
636 * configure.in: New option --enable-snmp is added.
637
6381999-10-24 Kunihiro Ishiguro <kunihiro@zebra.org>
639
640 * version.h: Update version to zebra-0.80.
641
6421999-10-21 Kunihiro Ishiguro <kunihiro@zebra.org>
643
644 * version.h: Update version to zebra-0.80-pre3
645
6461999-10-18 Kunihiro Ishiguro <kunihiro@zebra.org>
647
648 * configure.in (LIBS): SNMP check is done by ucd-snmp/asn1.h.
649
6501999-10-10 Peter Galbavy <Peter.Galbavy@knowledge.com>
651
652 * configure.in: Add support of OpenBSD.
653
6541999-10-04 Kunihiro Ishiguro <kunihiro@zebra.org>
655
656 * version.h: Update version to zebra-0.80-pre2.
657
6581999-09-27 Kunihiro Ishiguro <kunihiro@zebra.org>
659
660 * version.h: Update version to zebra-0.80-pre. From this version,
661 access-list and prefix-list's name space is divided into IPv4 and
662 IPv6.
663
6641999-09-17 Kunihiro Ishiguro <kunihiro@zebra.org>
665
666 * version.h: For test recent fixes Set version to zebra-0.79a.
667
6681999-09-14 Kunihiro Ishiguro <kunihiro@zebra.org>
669
670 * version.h: zebra-0.79 is out.
671
6721999-09-08 Kunihiro Ishiguro <kunihiro@zebra.org>
673
674 * version.h: For ospfd's virtual link test. Set version to 0.78h.
675
6761999-09-07 Kunihiro Ishiguro <kunihiro@zebra.org>
677
678 * version.h: For ospfd test. Set version to 0.78g.
679
6801999-09-05 Kunihiro Ishiguro <kunihiro@zebra.org>
681
682 * version.h: For internal test of ospfd. Set version to 0.78f.
683
6841999-09-02 Kunihiro Ishiguro <kunihiro@zebra.org>
685
686 * version.h: To test ospfd's fix, set version to 0.78e.
687
6881999-09-01 Kunihiro Ishiguro <kunihiro@zebra.org>
689
690 * version.h: To test ospfd's area related bug fix, set version
691 to 0.78d.
692
6931999-09-01 Kunihiro Ishiguro <kunihiro@zebra.org>
694
695 * version.h: To test ospfd, set version to 0.78c.
696
6971999-08-31 Janos Farkas <chexum@shadow.banki.hu>
698
699 * Many misspelling correction.
700
7011999-08-31 Kunihiro Ishiguro <kunihiro@zebra.org>
702
703 * version.h: To test ospfd, set version to 0.78b.
704
7051999-08-31 Kunihiro Ishiguro <kunihiro@zebra.org>
706
707 * configure.in (LIBS): Add UCD-SNMP include path check.
708
7091999-08-31 Lars Fenneberg <lf@elemental.net>
710
711 * configure.in: The logic which detects the UCD-SNMP library
712 should first check in the default system locations for the library
713 and then in /usr/local.
714
7151999-08-27 itojun@iijlab.net
716
717 * configure.in (LIBS): Fix problem about libsnmp.a check.
718
7191999-08-26 kay <kay@v6.access.co.jp>
720
721 * configure.in (CFLAGS): Add <sys/socket.h> to check socklen_t.
722
7231999-08-24 VOP <vop@unity.net>
724
725 * filter.c: Include "sockunion.h".
726 plist.c: Likewise.
727 table.c: Likewise.
728
7291999-08-24 Kunihiro Ishiguro <kunihiro@zebra.org>
730
731 * configure.in: Add netinet6/in6.h check.
732
7331999-08-21 Masaki Minami <masaki@minami.org>
734
735 * BSD/OS 4.0 porting.
736
7371999-08-15 Kunihiro Ishiguro <kunihiro@zebra.org>
738
739 * configure.in: Add --enable-netlink option to force to use Linux
740 netlink interface.
741 (CFLAGS): Add ucd-snmp library check.
742
743 * acconfig.h: If socklen_t is not defined, typedef int to
744 socklen_t.
745
7461999-08-15 Arkadiusz Miskiewicz <misiek@misiek.eu.org>
747
748 * configure.in: When --enable-ipv6 specified, then only kernel
749 version is checked.
750
7511999-08-14 Kunihiro Ishiguro <kunihiro@zebra.org>
752
753 * configure.in: Add GNU libc 2.1 check.
754
7551999-08-02 Kunihiro Ishiguro <kunihiro@zebra.org>
756
757 * configure.in: Fix privious Linux IPv6 check changes.
758
7591999-08-02 Arkadiusz Miskiewicz <misiek@misiek.eu.org>
760
761 * configure.in: Improve Linux IPv6 feature check.
762
7631999-07-29 Rick Payne <rickp@rossfell.co.uk>
764
765 * Changed route-maps to behave in a more cisco-like fashion
766
7671999-07-27 Gerhard Poul <gpoul@gnu.org>
768
769 * SERVICES: New file added.
770
7711999-07-12 itojun@iijlab.net
772
773 * configure.in: Add check for getaddrinfo. Improve Kame related
774 library check.
775
7761999-07-07 Yasuhiro Ohara <yasu@sfc.wide.ad.jp>
777
778 * configure.in, acconfig.h: Add check for FreeBSD 3.2.
779
7801999-07-07 Kunihiro Ishiguro <kunihiro@zebra.org>
781
782 * configure.in: Delete check for netinet/ip6.h.
783
7841999-06-30 Gerhard Poul <gpoul@gnu.org>
785
786 * README: remixed the old files and added some new parts.
787 moved some INSTALL stuff into INSTALL file.
788 moved some other stuff to doc/zebra.texi
789
7901999-06-29 Kunihiro Ishiguro <kunihiro@zebra.org>
791
792 * configure.in (LIBS): Add libresolv check.
793 Change --enabe-all-in-one option to --enable-one-vty.
794
7951999-06-20 Kunihiro Ishiguro <kunihiro@zebra.org>
796
797 * configure.in: Add --enabe-all-in-one option.
798
7991999-06-16 Kunihiro Ishiguro <kunihiro@zebra.org>
800
801 * configure.in: Add socklen_t check.
802
8031999-06-16 Gerhard Poul <gpoul@gnu.org>
804
805 * Many compile warnings fixed.
806
8071999-05-31 Kunihiro Ishiguro <kunihiro@zebra.org>
808
809 * configure.in: Change message from Linux 2.2.X IPv6 to Linux IPv6.
810 OpenBSD (NRL) check is enabled.
811
8121999-05-30 Kunihiro Ishiguro <kunihiro@zebra.org>
813
814 * configure.in (LIBS): Add crypt library check.
815
8161999-05-08 Kunihiro Ishiguro <kunihiro@zebra.org>
817
818 * configure.in: Add sin6_scope_id in struct sockaddr_in6 check.
819
8201999-04-30 Kunihiro Ishiguro <kunihiro@zebra.org>
821
822 * Set version to 0.63 for first beta package.
823
8241999-04-15 Kunihiro Ishiguro <kunihiro@zebra.org>
825
826 * guile.m4: Added from guile package.
827
8281999-04-14 Kunihiro Ishiguro <kunihiro@zebra.org>
829
830 * Set version to 0.60 for beta package preparation.
831
8321999-04-12 Kunihiro Ishiguro <kunihiro@zebra.org>
833
834 * Makefile.am: Add noninst_LIBRARIES each directory's Makefile.am.
835 This change is for linking these libraries to guile.
836
8371999-04-08 Kunihiro Ishiguro <kunihiro@zebra.org>
838
839 * configure.in (LIBS): Add struct rt_addrinfo check.
840
8411999-04-07 Kunihiro Ishiguro <kunihiro@zebra.org>
842
843 * configure.in: AC_STDC_HEADERS added.
844
8451999-03-29 Kunihiro Ishiguro <kunihiro@zebra.org>
846
847 * Add dependencies to each directory's Makefile.am.
848
8491999-03-02 Peter Galbavy <Peter.Galbavy@knowledge.com>
850
851 * reworked include file structure, and configure so that all
852 source files get all system-dependent include files by including
853 <zebra.h> which is really lib/zebra.h. This means that the
854 different programs include files are now available as #include
855 "zebra/zebra.h" - note the use of quotes, not <> as delimiters.
856
857 In practical terms, if I haven't really screwed up, the main file
858 that maintainers for other OSes have to change is lib/zebra.h for
859 all the conditional includes etc.
860
861 * added --disable-pthread for those systems that seem to have
862 POSIX threads, but do not work. OpenBSD 2.4+ is like that just
863 now. Changed all occurance of #ifdef PTHREAD to use HAVE_PTHREAD
864 instead.
865
8661999-02-24 <kunihiro@zebra.org>
867
868 * configure.in: update to AC_PREREQ(1.13).
869 Change message from Linux 2.1.x to Linux 2.2.x.
870 * Added ospf6d directory support.
871
8721999-02-22 Peter Galbavy <Peter.Galbavy@knowledge.com>
873
874 * added a "log" element to the BGPd peer structure, enabling us to
875 start thinging about a log stream per peer. This is currently
876 ignored by the wrapper code, but developers should try to use the
877 "appropriate" ZLOG stream. Documentation will follow, when the
878 real routines start to exist.
879
880 The current plan is to use a copy of the BSD syslog() routines and
881 replace the syslog library function with our own. I will need
882 feedback from users of other platforms as this work is done to see
883 if all is well elsewhere.
884
885 * preliminary work on zlog() library. directly replaces syslog()
886 currently with zlog(ZLOG *, ...) where the new first argument
887 is a pointer to a ZLOG structure (defined in lib/log.h) and will
888 encapsulate all the information necessary to maintain multiple
889 logging streams.
890
8911999-02-19 Peter Galbavy <Peter.Galbavy@knowledge.com>
892
893 * added vsnprintf() macro to lib/str.h if required and removed
894 #ifdef SUNOS_5 dependency on it
895
8961999-02-18 Peter Galbavy <Peter.Galbavy@knowledge.com>
897
898 * syslog support added
899
9001999-02-18 Peter Galbavy <Peter.Galbavy@knowledge.com>
901
902 * configure.in: Add daemon function check.
903
9041999-01-21 Kunihiro Ishiguro <kunihiro@zebra.org>
905
906 * configure.in: Add --disable-ipv6, --disable-zebra,
907 --disable-bgpd, --disable-ripd, --disable-ripngd, --disable-ospfd
908 options to configure.
909
9101998-12-07 Kunihiro Ishiguro <kunihiro@zebra.org>
911
912 * configure.in: Check /usr/inet6/lib/libinet6.a exists or not.
913
9141998-10-14 Kunihiro Ishiguro <kunihiro@zebra.org>
915
916 * configure.in: Comment out FreeBSD's libc_r detect section. At
917 this moment it doesn't work correctly with zebra.
918
919 Netlink interface is only enabled when Linux kernel version is
920 upper than 2.1.0.
921
9221998-09-15 HEO SeonMeyong <seirios@matrix.iri.co.jp>
923
924 * Hydrangea is now called KAME, so change all defines.
925
9261998-08-16 Kunihiro Ishiguro <kunihiro@zebra.org>
927
928 * configure.in: ifaliasreq check added.
929
9301998-08-12 Katsuhiro Kondou <kondou@nec.co.jp>
931
932 * Patch is applied for compile under EWS4800
933
9341998-06-09 Kunihiro Ishiguro <kunihiro@zebra.org>
935
936 * configure.in: delete old mtu_method check.
937
938 * doc/zebra.texi (Kernel interface): chapter `Kernel interface' added
939
9401998-06-08 Kunihiro Ishiguro <kunihiro@zebra.org>
941
942 * configure.in: add new netlink check for GNU/Linux
943
9441998-06-07 Kunihiro Ishiguro <kunihiro@zebra.org>
945
946 * doc/zebra.texi: Update Linux netlink chapter.
947
9481998-05-18 Yamashita TAKAO <jargon@lares.dti.ne.jp>
949
950 * config.h.in: define PTHREAD if work on Solaris 2.6
951 why delete the definition? I miss?
952
9531998-05-08 Kunihiro Ishiguro <kunihiro@zebra.org>
954
955 * configure.in: add net/if.h header check.
956
9571998-05-02 SeonMeyong HEO <seirios@Matrix.iri.co.jp>
958
959 * zebra.tex,archfig.tex,zebra.sty: Manual file is added.
960 * zebra.texi: Modify Introduction text.
961 * RIPngd.c: Patch Hydrangea code.
962
9631998-05-01 Kunihiro Ishiguro <kunihiro@zebra.org>
964
965 * .cvsignore: added.
966
967 * Makerule.in: is gone.
968 * Makefile.am: Now we use automake to generate Makefile.in
969
9701998-03-19 Yamashita TAKAO <jargon@lares.dti.ne.jp>
971
972 * lib/vty.c: modified the definition of *master
973 * lib/sockunion.c (inet_aton): add, but don't work. uum...
974
975
9761998-03-15 Yamashita TAKAO <jargon@lares.dti.ne.jp>
977
978 * configure.in: define PTHREAD if work on Solaris 2.6
979 * config.h.in: likewise
980 * lib/thread.c: likewise
981 * lib/vty.c: likewise
982
9831998-03-15 SeonMeyong HEO <seirios@Matrix.iri.co.jp>
984
985 * config.h.in: define INET6 if defined HAVE_IPV6 & HYDRANGEA
986 * bgpd/: remove include <netinet6/in6.h> line.
987 * lib/: remove include <netinet6/in6.h> line.
988 * ripbgd/: remove include <netinet6/in6.h> line.
989 * zebra/: remove include <netinet6/in6.h> line.
990 * ripd/*.c: remove include <netinet6/in6.h> line.
991 undefine IPV6 difinitions because RIPd is not worked for
992 IPv6 protocol.
993
994
9951998-01-30 Kunihiro Ishiguro <kunihiro@zebra.org>
996
997 * configure.in: Change routing socket check method from
998 AC_TRY_COMPILE to AC_TRY_RUN because GNU libc version 2 has
999 AF_ROUTE but over linux it's meenigless.
1000
10011998-01-06 Kunihiro Ishiguro <kunihiro@zebra.org>
1002
1003 * config.h.in: remove err_t define.
1004
10051997-11-18 Kunihiro Ishiguro <kunihiro@zebra.org>
1006
1007 * configure.in (canonical): add check of IF_METHOD
1008
10091997-09-27 Kunihiro Ishiguro <kunihiro@note.digital-magic.co.jp>
1010
1011 * configure.in: add INRIA check
1012
10131997-09-25 Kunihiro Ishiguro <kunihiro@note.digital-magic.co.jp>
1014
1015 * configure.in (canonical): change ipforward_snmp.o to ipforward_proc.o
1016
10171997-09-12 Kunihiro Ishiguro <kunihiro@zebra.org>
1018
1019 * configure.in: change IRDPD to NDPD
1020
10211997-08-18 Kunihiro Ishiguro <kunihiro@zebra.org>
1022
1023 * INSTALL: new file
1024
10251997-08-14 Kunihiro Ishiguro <kunihiro@zebra.org>
1026
1027 * config.h: add XCALLOC()
1028