Skip to content

Commit c8c2427

Browse files
committed
FRRouting Release 6.0
Major Changes since 5.0: - Staticd: New daemon responsible for management of static routes - ISISd: Implement dst-src routing as per draft-ietf-isis-ipv6-dst-src-routing - BFDd: new daemon for BFD (Bidrectional Forwarding Detection). Responsiblei for notifying link changes to make routing protocols converge faster. - various bug fixes Signed-off-by: Martin Winter <mwinter@opensourcerouting.org>
1 parent 32b7381 commit c8c2427

File tree

3 files changed

+97
-2
lines changed

3 files changed

+97
-2
lines changed

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
##
88
AC_PREREQ(2.60)
99

10-
AC_INIT(frr, 5.1-dev, [https://github.com/frrouting/frr/issues])
10+
AC_INIT(frr, 6.0, [https://github.com/frrouting/frr/issues])
1111
PACKAGE_URL="https://frrouting.org/"
1212
AC_SUBST(PACKAGE_URL)
1313
PACKAGE_FULLNAME="FRRouting"

debianpkg/changelog.in

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,59 @@
11
frr (@VERSION@) RELEASED; urgency=medium
22

3+
* Staticd: New daemon responsible for management of static routes
4+
* ISISd: Implement dst-src routing as per draft-ietf-isis-ipv6-dst-src-routing
5+
* BFDd: new daemon for BFD (Bidrectional Forwarding Detection). Responsible
6+
for notifying link changes to make routing protocols converge faster.
7+
* various bug fixes
8+
9+
-- FRRouting-Dev <dev@lists.frrouting.org> Sun, 7 Oct 2018 08:10:00 -0700
10+
11+
frr (5.0.1-0) RELEASED; urgency=medium
12+
13+
* Support Automake 1.16.1
14+
* BGPd: Support for flowspec ICMP, DSCP, packet length, fragment and tcp flags
15+
* BGPd: fix rpki validation for ipv6
16+
* VRF: Workaround for kernel bug on Linux 4.14 and newer
17+
* Zebra: Fix interface based routes from zebra not marked up
18+
* Zebra: Fix large zebra memory usage when redistribute between protocols
19+
* Zebra: Allow route-maps to match on source instance
20+
* BGPd: Backport peer-attr overrides, peer-level enforce-first-as and filtered-routes fix
21+
* BGPd: fix for crash during display of filtered-routes
22+
* BGPd: Actually display labeled unicast routes received
23+
* Label Manager: Fix to work correctly behind a label manager proxy
24+
* Debian Pkg: Fix build dependency for install-info
25+
26+
-- FRRouting-Dev <dev@lists.frrouting.org> Thu, 5 Jul 2018 00:38:00 -0700
27+
28+
frr (5.0-0) RELEASED; urgency=medium
29+
30+
* PIM: Add a Multicast Trace Command draft-ietf-idmr-traceroute-ipm-05
31+
* IS-IS: Implement Three-Way Handshake as per RFC5303
32+
* BGPD: Implement VPN-VRF route leaking per RFC4364.
33+
* BGPD: Implement VRF with NETNS backend
34+
* BGPD: Flowspec
35+
* PBRD: Add a new Policy Based Routing Daemon
36+
37+
-- FRRouting-Dev <dev@lists.frrouting.org> Thu, 7 Jun 2018 17:47:00 -0700
38+
39+
frr (4.0-0) RELEASED; urgency=medium
40+
41+
* ISIS-MT - https://tools.ietf.org/html/rfc5120
42+
* BGP - RPKI (RFC 6810)
43+
* BGP - v4 labeled unicast as per RFC 3107
44+
* BGP/Zebra - Type 2 and 3 EVPN with symmetric and asymmetric routing
45+
* EIGRP - https://tools.ietf.org/html/rfc7868
46+
* FRR - Tab completion for iface names, prefix-lists, route-maps, BGP peers
47+
* BABEL - https://tools.ietf.org/html/rfc6126
48+
* PIM VRF - Added the ability to work with VRF’s to PIM
49+
* OSPFv2 VRF - Added the ability to work with VRF’s to OSPFv2
50+
* OSPFv2 Experimental SR - draft-ietf-ospf-segment-routing-extensions-24
51+
* ZEBRA - Add ability to create a static route that leaks across VRF’s.
52+
53+
-- FRRouting-Dev <dev@lists.frrouting.org> Sun, 11 Mar 2018 17:22:20 -0700
54+
55+
frr (3.0.3-1) RELEASED; urgency=medium
56+
357
* New Enabled: PIM draft Unnumbered
458

559
-- FRRouting-Dev <dev@lists.frrouting.org> Wed, 18 Oct 2017 17:01:42 -0700

redhat/frr.spec.in

Lines changed: 42 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -662,12 +662,53 @@ fi
662662

663663

664664
%changelog
665+
* Sun Oct 7 2018 Martin Winter <mwinter@opensourcerouting.org> - %{version}
666+
- Staticd: New daemon responsible for management of static routes
667+
- ISISd: Implement dst-src routing as per draft-ietf-isis-ipv6-dst-src-routing
668+
- BFDd: new daemon for BFD (Bidrectional Forwarding Detection). Responsiblei
669+
for notifying link changes to make routing protocols converge faster.
670+
- various bug fixes
671+
672+
* Thu Jul 5 2018 Martin Winter <mwinter@opensourcerouting.org> - 5.0.1
673+
- Support Automake 1.16.1
674+
- BGPd: Support for flowspec ICMP, DSCP, packet length, fragment and tcp flags
675+
- BGPd: fix rpki validation for ipv6
676+
- VRF: Workaround for kernel bug on Linux 4.14 and newer
677+
- Zebra: Fix interface based routes from zebra not marked up
678+
- Zebra: Fix large zebra memory usage when redistribute between protocols
679+
- Zebra: Allow route-maps to match on source instance
680+
- BGPd: Backport peer-attr overrides, peer-level enforce-first-as and filtered-routes fix
681+
- BGPd: fix for crash during display of filtered-routes
682+
- BGPd: Actually display labeled unicast routes received
683+
- Label Manager: Fix to work correctly behind a label manager proxy
684+
685+
* Thu Jun 7 2018 Martin Winter <mwinter@opensourcerouting.org> - 5.0
686+
- PIM: Add a Multicast Trace Command draft-ietf-idmr-traceroute-ipm-05
687+
- IS-IS: Implement Three-Way Handshake as per RFC5303
688+
- BGPD: Implement VPN-VRF route leaking per RFC4364.
689+
- BGPD: Implement VRF with NETNS backend
690+
- BGPD: Flowspec
691+
- PBRD: Add a new Policy Based Routing Daemon
692+
665693
* Sun May 28 2018 Rafael Zalamena <rzalamena@opensourcerouting.org> - %{version}
666694
- Add BFDd support
667695

668-
* Sun May 20 2018 Martin Winter <mwinter@opensourcerouting.org>
696+
* Sun May 20 2018 Martin Winter <mwinter@opensourcerouting.org> - 4.0.1
669697
- Fixed RPKI RPM build
670698

699+
* Sun Mar 11 2018 Martin Winter <mwinter@opensourcerouting.org> - 4.0
700+
- ISIS-MT - https://tools.ietf.org/html/rfc5120
701+
- BGP - RPKI (RFC 6810)
702+
- BGP - v4 labeled unicast as per RFC 3107
703+
- BGP/Zebra - Type 2 and 3 EVPN with symmetric and asymmetric routing
704+
- EIGRP - https://tools.ietf.org/html/rfc7868
705+
- FRR - Tab completion for iface names, prefix-lists, route-maps, BGP peers
706+
- BABEL - https://tools.ietf.org/html/rfc6126
707+
- PIM VRF - Added the ability to work with VRF’s to PIM
708+
- OSPFv2 VRF - Added the ability to work with VRF’s to OSPFv2
709+
- OSPFv2 Experimental SR - draft-ietf-ospf-segment-routing-extensions-24
710+
- ZEBRA - Add ability to create a static route that leaks across VRF’s.
711+
671712
* Sun Mar 4 2018 Martin Winter <mwinter@opensourcerouting.org>
672713
- Add option to build with RPKI (default: disabled)
673714

0 commit comments

Comments
 (0)