Skip to content

Commit c0038fc

Browse files
committed
FRRouting Release 7.3
BGPd EVPN PIP Support Route Aggregation code speed ups BGP Vector I/O speed ups New CLI: `set distance XXX` New CLI: `aggregate-address A.B.C.D/M route-map WORD` New CLI: `bgp reject-as-sets` New CLI: `advertise pip ...` New CLI: `match evpn rd ASN:NN_OR_IP-ADDRESS:NN` New CLI: `show bgp l2vpn evpn community|large-community X` New CLI: `show bgp l2vpn evpn A.B.C.D` Auto-completion for clear bgp command Add ability to set tcp socket buffer size OSPFd Partial MPLS TE support PBRd New CLI: `set vrf unchanged|NAME` BFDd VRF Support New CLI: 'show bfd peers brief' New CLI: 'clear bfd peer ...' PIMd Significant Speedups in accessing Internal Data for higher scale Support for joining any-source Multicast Updated CLI: 'show ip pim upstream-join-desired' New CLI: 'show ip pim channel' Debug Cleanup MLAG experimental support VRRPd VRF Support Northbound Conversion- NHRPd vtysh New CLI: `banner motd line LINE...` yangx New CLI: `show yang operational-data XPATH` New CLI: `debug northbound` Zebra Nexthop Group support New CLI: 'debug zebra nexthop [detail]' New CLI: 'show router-id' MLAG experimental support watchfrr Additional status messages of system state to systemd New CLI: `watchfrr ignore DAEMON` Others As always all daemons have received too many bug fixes to fully list There has been a significant focus on increasing test coverage Change in Behavior: ISISd All areas created default automatically to level-1-2 Zebra Nexthop Group Installation in Kernel is turned on by default if the kernel supports- New CLI: 'show nexthop-group rib [singleton]' Man Pages Renamed to frr-* to remove collision with other packages Signed-off-by: Martin Winter <mwinter@opensourcerouting.org>
1 parent df80bf1 commit c0038fc

File tree

3 files changed

+320
-2
lines changed

3 files changed

+320
-2
lines changed

changelog-auto.in

Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,85 @@ frr (@VERSION@-0) UNRELEASED; urgency=medium
66

77
-- FRRouting-Dev <dev@lists.frrouting.org> Thu, 25 Oct 2018 16:36:50 +0200
88

9+
frr (7.3-0) testing; urgency=medium
10+
11+
* BGPd
12+
* EVPN PIP Support
13+
* Route Aggregation code speed ups
14+
* BGP Vector I/O speed ups
15+
* New CLI: `set distance XXX`
16+
* New CLI: `aggregate-address A.B.C.D/M route-map WORD`
17+
* New CLI: `bgp reject-as-sets`
18+
* New CLI: `advertise pip ...`
19+
* New CLI: `match evpn rd ASN:NN_OR_IP-ADDRESS:NN`
20+
* New CLI: `show bgp l2vpn evpn community|large-community X`
21+
* New CLI: `show bgp l2vpn evpn A.B.C.D`
22+
* Auto-completion for clear bgp command
23+
* Add ability to set tcp socket buffer size
24+
* OSPFd
25+
* Partial MPLS TE support
26+
* PBRd
27+
* New CLI: `set vrf unchanged|NAME`
28+
* BFDd
29+
* VRF Support
30+
* New CLI: 'show bfd peers brief'
31+
* New CLI: 'clear bfd peer ...'
32+
* PIMd
33+
* Significant Speedups in accessing Internal Data for higher scale
34+
* Support for joining any-source Multicast
35+
* Updated CLI: 'show ip pim upstream-join-desired'
36+
* New CLI: 'show ip pim channel'
37+
* Debug Cleanup
38+
* MLAG experimental support
39+
* VRRPd
40+
* VRF Support
41+
* Northbound Conversion- NHRPd
42+
* LDPd
43+
* vtysh
44+
* New CLI: `banner motd line LINE...`
45+
* yang
46+
* New CLI: `show yang operational-data XPATH`
47+
* New CLI: `debug northbound`
48+
* Zebra
49+
* Nexthop Group support
50+
* New CLI: 'debug zebra nexthop [detail]'
51+
* New CLI: 'show router-id'
52+
* MLAG experimental support
53+
* watchfrr
54+
* Additional status messages of system state to systemd
55+
* New CLI: `watchfrr ignore DAEMON`
56+
* Others
57+
* As always all daemons have received too many bug fixes to fully list
58+
* There has been a significant focus on increasing test coverage
59+
* Change in Behavior:
60+
* ISISd
61+
* All areas created default automatically to level-1-2
62+
* Zebra
63+
* Nexthop Group Installation in Kernel is turned on by default
64+
if the kernel supports- New CLI: 'show nexthop-group rib [singleton]'
65+
* Man Pages
66+
* Renamed to frr-* to remove collision with other packages
67+
68+
-- Martin Winter <mwinter@opensourcerouting.org> Fri, 14 Feb 2020 02:20:00 +0200
69+
70+
frr (7.2-1) testing; urgency=medium
71+
72+
* upstream 7.2.1 release
73+
74+
-- Martin Winter <mwinter@opensourcerouting.org> Fri, 17 Jan 2020 16:40:00 +0200
75+
76+
frr (7.2-0) testing; urgency=medium
77+
78+
* upstream 7.2 release
79+
80+
-- Martin Winter <mwinter@opensourcerouting.org> Tue, 17 Oct 2019 16:42:20 +0200
81+
82+
frr (7.1-0) testing; urgency=medium
83+
84+
* upstream 7.1 release
85+
86+
-- David Lamparter <equinox-debian@diac24.net> Tue, 18 Jun 2019 06:08:13 +0200
87+
988
frr (6.0-2) testing; urgency=medium
1089

1190
* add install-info to build deps

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], [7.3-dev], [https://github.com/frrouting/frr/issues])
10+
AC_INIT([frr], [7.3], [https://github.com/frrouting/frr/issues])
1111
PACKAGE_URL="https://frrouting.org/"
1212
AC_SUBST([PACKAGE_URL])
1313
PACKAGE_FULLNAME="FRRouting"

redhat/frr.spec.in

Lines changed: 240 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -728,10 +728,249 @@ fi
728728

729729

730730
%changelog
731+
* Fri Feb 14 2020 Martin Winter <mwinter@opensourcerouting.org> - %{version}
732+
- BGPd
733+
- EVPN PIP Support
734+
- Route Aggregation code speed ups
735+
- BGP Vector I/O speed ups
736+
- New CLI: `set distance XXX`
737+
- New CLI: `aggregate-address A.B.C.D/M route-map WORD`
738+
- New CLI: `bgp reject-as-sets`
739+
- New CLI: `advertise pip ...`
740+
- New CLI: `match evpn rd ASN:NN_OR_IP-ADDRESS:NN`
741+
- New CLI: `show bgp l2vpn evpn community|large-community X`
742+
- New CLI: `show bgp l2vpn evpn A.B.C.D`
743+
- Auto-completion for clear bgp command
744+
- Add ability to set tcp socket buffer size
745+
- OSPFd
746+
- Partial MPLS TE support
747+
- PBRd
748+
- New CLI: `set vrf unchanged|NAME`
749+
- BFDd
750+
- VRF Support
751+
- New CLI: 'show bfd peers brief'
752+
- New CLI: 'clear bfd peer ...'
753+
- PIMd
754+
- Significant Speedups in accessing Internal Data for higher scale
755+
- Support for joining any-source Multicast
756+
- Updated CLI: 'show ip pim upstream-join-desired'
757+
- New CLI: 'show ip pim channel'
758+
- Debug Cleanup
759+
- MLAG experimental support
760+
- VRRPd
761+
- VRF Support
762+
- Northbound Conversion- NHRPd
763+
- LDPd
764+
- vtysh
765+
- New CLI: `banner motd line LINE...`
766+
- yang
767+
- New CLI: `show yang operational-data XPATH`
768+
- New CLI: `debug northbound`
769+
- Zebra
770+
- Nexthop Group support
771+
- New CLI: 'debug zebra nexthop [detail]'
772+
- New CLI: 'show router-id'
773+
- MLAG experimental support
774+
- watchfrr
775+
- Additional status messages of system state to systemd
776+
- New CLI: `watchfrr ignore DAEMON`
777+
- Others
778+
- As always all daemons have received too many bug fixes to fully list
779+
- There has been a significant focus on increasing test coverage
780+
- Change in Behavior:
781+
- ISISd
782+
- All areas created default automatically to level-1-2
783+
- Zebra
784+
- Nexthop Group Installation in Kernel is turned on by default
785+
if the kernel supports- New CLI: 'show nexthop-group rib [singleton]'
786+
- Man Pages
787+
- Renamed to frr-* to remove collision with other packages
788+
789+
* Fri Jan 17 2020 Martin Winter <mwinter@opensourcerouting.org> - 7.2.1
790+
- BGPd
791+
- Fix Addpath issue
792+
- Do not apply eBGP policy for iBGP peers
793+
- Show `ip` and `fqdn` in json output for `show [ip] bgp <route> json`
794+
- Fix large route-distinguisher's format
795+
- Fix `no bgp listen range ...` configuration command
796+
- Autocomplete neighbor for clear bgp
797+
- Reflect the distance in RIB when it is changed for an arbitrary afi/safi
798+
- Notify "Peer De-configured" after entering 'no neighbor <neighbor> cmd
799+
- Fix per afi/safi addpath peer counting
800+
- Rework BGP dampening to be per AFI/SAFI
801+
- Do not send next-hop as :: in MP_REACH_NLRI if no link-local exists
802+
- Override peer's TTL only if peer-group is configured with TTL
803+
- Remove error message for unkown afi/safi combination
804+
- Keep the session down if maximum-prefix is reached
805+
- OSPFd
806+
- Fix BFD down not tearing down OSPF adjacency for point-to-point net
807+
- BFDd
808+
- Fix multiple VRF handling
809+
- VRF security improvement
810+
- PIMd
811+
- Fix rp crash
812+
- NHRPd
813+
- Make sure `no ip nhrp map <something>` works as expected
814+
- LDPd
815+
- Add missing sanity check in the parsing of label messages
816+
- Zebra
817+
- Use correct state when installing evpn macs
818+
- Capture dplane plugin flags
819+
- lib
820+
- Fix interface config when vrf changes
821+
- Fix Interface Infinite Loop Walk (for special interfaces such as bond)
822+
- snapcraft
823+
- fix missing vrrpd daemon
824+
- Others
825+
- Rename man pages (to avoid conflicts with other packages)
826+
- Various other fixes for code cleanup and memory leaks
827+
731828
* Fri Dec 27 2019 Donatas Abraitis <donatas.abraitis@gmail.com>
732829
- Add CentOS 8 support
733830

734-
* Mon May 28 2018 Rafael Zalamena <rzalamena@opensourcerouting.org> - %{version}
831+
* Tue Oct 15 2019 Martin Winter <mwinter@opensourcerouting.org> - 7.2
832+
- ALL Daemons
833+
- -N <namespace> to allow for config file locating when running FRR inside
834+
of a namespace
835+
- Impoved Testing across all daemons
836+
- BFD
837+
- VRF Support
838+
- Conversion to Northbound interface
839+
- BGP
840+
- Aggregate-address add route-map support
841+
- BMP Support
842+
- Improved JSON output for many commands
843+
- `show bgp afi safi summary failed` command
844+
- `clear bop *` clears all peers
845+
- Show FQDN for `show bgp ipv4 uni` commands
846+
- Display BestPath selection reason as part of show commands
847+
- EIGRP
848+
- Infrastructure changes to allow VRF's
849+
- SIGHUP signals the config reload
850+
- Conversion to Northbound interface
851+
- ISIS
852+
- BFD Support
853+
- Support for circuits with MTU > 8192
854+
- PBRD
855+
- fwmark support as part of match criteria
856+
- autocompletion of PBRMAPS
857+
- Improved Nexthop Support
858+
- PIMD
859+
- PIM-BSM receive support
860+
- Improved debugging support
861+
- Store ECMP paths that are not currently legal for use
862+
- Disallow igmp query from a non-connected source
863+
- Many new cli improvements and changes
864+
- VRRPD
865+
- Add Support for RFC 3768 and RFC 5798
866+
- Route-Maps
867+
- Add sequence numbers to access-lists
868+
- Add `match ip next-hop type blackhole`
869+
- Improved ability to notice dependency changes
870+
- SHARPD
871+
- `sharp watch [import|nexthop]` you can now specify a prefix instead
872+
of assuming a /32
873+
- STATICD
874+
- Significantly Improved NHT
875+
- ZEBRA
876+
- Many dataplane improvements for routes, neighbor table and EVPN
877+
- NHT cli can now be specified per VRF and improved ability to control
878+
NHT data being shown
879+
- Removed duplicate processing of routes
880+
- Improved debugablility
881+
- RMAC and VxLan support for the FPM
882+
- LIB
883+
- RCU support
884+
- Nexthop Group Improvements
885+
- `log-filter WORD` added
886+
- Building
887+
- openssl support
888+
- libcap should be used as part of build or significant slowdowns
889+
will be experienced
890+
- Lua builds have been fixed
891+
- Improved Cross building
892+
893+
* Mon Jun 17 2019 David Lamparter <equinox@opensourcerouting.org> - 7.1
894+
- gRPC northbound plugin
895+
- "table NNN" removed from zebra
896+
- more dataplane MT work
897+
- EVPN in non-default VRFs
898+
- RFC 8212 (default deny policy for eBGP)
899+
- RFC 8106 (IPv6 RA DNS options)
900+
901+
* Wed May 8 2019 Martin Winter <mwinter@opensourcerouting.org> - 7.0.1
902+
- bgp:
903+
- Don't send Updates with BGP Max-Prefix Overflow
904+
- Make sure `next-hop-self all` backward compatible with force
905+
- Fix as-path validation in "show bgp regexp"
906+
- Fix interface-based peers to override peergroups
907+
- Fix removing private AS numbers if local-as is used
908+
- Fix show bgp labeled_unicast
909+
- Add command to lookup prefixes in rpki table
910+
- Fix peer count in "show bgp ipv6 summary"
911+
- Add missing ipv6 only peer flag action
912+
- Fix address family output in "show bgp [ipv4|ipv6] neighbors"
913+
- Add missing checks for vpnv6 nexthops
914+
- Fix nexthop for ipv6 vpn case
915+
- rip: Fix removal of passive interfaces
916+
- ospf:
917+
- Fix json timer output
918+
- Fix milliseconds in json output
919+
- bfd:
920+
- Fix source port according RFC 5881, Sec 4
921+
- Fix IPv6 link-local peer removal
922+
- Fix interface clean up when deleting interface
923+
- pim: Fix interface clean up when deleting interface
924+
- nhrp: Fix interface clean up when deleting interface
925+
- lib:
926+
- Workaround to get FRR building with libyang 0.x and 1.x
927+
- Fix in priv handling
928+
- Make priv elevation thread-safe
929+
- zebra:
930+
- Pseudowire event recovery
931+
- Fix race condition in label manager
932+
- Fix system routes selection and next-hop tracking
933+
- Set connected route metric based on devaddr metric
934+
- Display metric for connected routes
935+
- Add selected fib details to json output
936+
- Always use replace if installing new route
937+
- watchfrr: Silently ignore declare failures (for backward compatibility)
938+
- RPM packages: Switch to new init script
939+
940+
* Thu Feb 28 2019 Martin Winter <mwinter@opensourcerouting.org> - 7.0
941+
- Added libyang dependency: New work for northbound interface based on libyang
942+
- Fabricd: New Daemon based on https://datatracker.ietf.org/doc/draft-white-openfabric/
943+
- various bug fixes and other enhancements
944+
945+
* Sun Oct 7 2018 Martin Winter <mwinter@opensourcerouting.org> - 6.0
946+
- Staticd: New daemon responsible for management of static routes
947+
- ISISd: Implement dst-src routing as per draft-ietf-isis-ipv6-dst-src-routing
948+
- BFDd: new daemon for BFD (Bidrectional Forwarding Detection). Responsible
949+
for notifying link changes to make routing protocols converge faster.
950+
- various bug fixes
951+
952+
* Thu Jul 5 2018 Martin Winter <mwinter@opensourcerouting.org> - 5.0.1
953+
- Support Automake 1.16.1
954+
- BGPd: Support for flowspec ICMP, DSCP, packet length, fragment and tcp flags
955+
- BGPd: fix rpki validation for ipv6
956+
- VRF: Workaround for kernel bug on Linux 4.14 and newer
957+
- Zebra: Fix interface based routes from zebra not marked up
958+
- Zebra: Fix large zebra memory usage when redistribute between protocols
959+
- Zebra: Allow route-maps to match on source instance
960+
- BGPd: Backport peer-attr overrides, peer-level enforce-first-as and filtered-routes fix
961+
- BGPd: fix for crash during display of filtered-routes
962+
- BGPd: Actually display labeled unicast routes received
963+
- Label Manager: Fix to work correctly behind a label manager proxy
964+
965+
* Thu Jun 7 2018 Martin Winter <mwinter@opensourcerouting.org> - 5.0
966+
- PIM: Add a Multicast Trace Command draft-ietf-idmr-traceroute-ipm-05
967+
- IS-IS: Implement Three-Way Handshake as per RFC5303
968+
- BGPD: Implement VPN-VRF route leaking per RFC4364.
969+
- BGPD: Implement VRF with NETNS backend
970+
- BGPD: Flowspec
971+
- PBRD: Add a new Policy Based Routing Daemon
972+
973+
* Mon May 28 2018 Rafael Zalamena <rzalamena@opensourcerouting.org>
735974
- Add BFDd support
736975

737976
* Sun May 20 2018 Martin Winter <mwinter@opensourcerouting.org>

0 commit comments

Comments
 (0)