NEWS and version update
This commit is contained in:
parent
b867a87c2f
commit
deec752ef9
3 changed files with 33 additions and 7 deletions
32
NEWS
32
NEWS
|
@ -1,6 +1,32 @@
|
||||||
Version 1.5.0pre (2014-11-05) - Not for production
|
Version 1.5.0 (2015-04-20)
|
||||||
o Major OSPF protocol redesign
|
o Major OSPF protocol redesign.
|
||||||
o RFC 6549 - OSPFv2 multi-instance extension
|
o OSPFv2 multi-instance extension (RFC 6549).
|
||||||
|
o BGP AS-wide unique router ID (RFC 6286).
|
||||||
|
o BGP enhanced route refresh (RFC 7313).
|
||||||
|
o Link state support in BGP.
|
||||||
|
o Latency tracking and internal watchdog.
|
||||||
|
o Uses high port range for BFD on BSD.
|
||||||
|
o Increase max symbol length to 64.
|
||||||
|
o Allows to define unnamed protocols from templates.
|
||||||
|
o Fixes two serious bugs in BGP.
|
||||||
|
o Several bugfixes and minor improvements.
|
||||||
|
o Several minor option changes:
|
||||||
|
- OSPF: Protocol-wide 'instance id' option added.
|
||||||
|
- BGP: Parameters to option 'neighbor' extended.
|
||||||
|
- BGP: Separate option 'interface' added.
|
||||||
|
- BGP: Option 'start delay time' renamed to 'connect delay time'.
|
||||||
|
- BGP: Option 'route limit' deprecated.
|
||||||
|
|
||||||
|
Upgrade notes:
|
||||||
|
|
||||||
|
For OSPF, there are deep internal changes, but user-visible changes
|
||||||
|
are limited to log messages and minor changes in formatting of command
|
||||||
|
output.
|
||||||
|
|
||||||
|
For BGP, version 1.5.0 is essentially a minor release. There are two
|
||||||
|
deprecated options ('start delay time' and 'route limit') and some
|
||||||
|
minor formatting changes.
|
||||||
|
|
||||||
|
|
||||||
Version 1.4.5 (2014-10-06)
|
Version 1.4.5 (2014-10-06)
|
||||||
o New 'show route noexport' command option.
|
o New 'show route noexport' command option.
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
Summary: BIRD Internet Routing Daemon
|
Summary: BIRD Internet Routing Daemon
|
||||||
Name: bird
|
Name: bird
|
||||||
Version: 1.4.5
|
Version: 1.5.0
|
||||||
Release: 1
|
Release: 1
|
||||||
Copyright: GPL
|
Copyright: GPL
|
||||||
Group: Networking/Daemons
|
Group: Networking/Daemons
|
||||||
|
@ -41,11 +41,11 @@ install $RPM_SOURCE_DIR/birdc6 usr/sbin/birdc6
|
||||||
%post
|
%post
|
||||||
/sbin/ldconfig
|
/sbin/ldconfig
|
||||||
/sbin/chkconfig --add bird
|
/sbin/chkconfig --add bird
|
||||||
|
|
||||||
%preun
|
%preun
|
||||||
if [ $1 = 0 ] ; then
|
if [ $1 = 0 ] ; then
|
||||||
/sbin/chkconfig --del bird
|
/sbin/chkconfig --del bird
|
||||||
fi
|
fi
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%attr(755,root,root) /usr/sbin/bird
|
%attr(755,root,root) /usr/sbin/bird
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
#define _BIRD_CONFIG_H_
|
#define _BIRD_CONFIG_H_
|
||||||
|
|
||||||
/* BIRD version */
|
/* BIRD version */
|
||||||
#define BIRD_VERSION "1.5.0pre"
|
#define BIRD_VERSION "1.5.0"
|
||||||
|
|
||||||
/* Include parameters determined by configure script */
|
/* Include parameters determined by configure script */
|
||||||
#include "sysdep/autoconf.h"
|
#include "sysdep/autoconf.h"
|
||||||
|
|
Loading…
Reference in a new issue