8e664d3ffd
This is an update to address security issues, but contains more changes. Packaging changes include: remove lib/privs.c patch (integrated upstream) opaque LSA no longer an option (always on) pimd enabled by default upstream and hence in the package Upstream changes from http://savannah.nongnu.org/news/?group=quagga Quagga 1.0.20160315 Released Quagga 1.0.20160309 has been released, and is available at http://download.savannah.gnu.org/releases/quagga/ This is a bug fix release. It addresses a crash in protocols with a redistribute statement. Quagga 1.0.20160309 Released Quagga 1.0.20160309 has been released, and is available at http://download.savannah.gnu.org/releases/quagga/ This release addresses Security Vulnerability VU #270232. Users using VPNv4 to untrusted peers and zebra that have untrusted clients talking to it are advised to upgrade to this release. For further details see the CERT Vulnerability note: https://www.kb.cert.org/vuls/id/270232 Major user-visible changes: [quagga] - Namespace VRF Support has been added. [lib] - Add 'show commandtree' [bgpd] - vpnv4 and vpnv6 handling has been included. [bgpd] - Add 'set metric (rtt|+rtt|-rtt)' to route map handling. [bgpd] - Addition of 'show ip bgp dampening' command tree. [bgpd] - If route-map does not exist default to DENY for redistribute statements [bgpd] - Lower default 'timers connect' in BGP to 10 seconds. [bgpd] - Enable "bgp log-neighbor-changes" by default [bgpd] - Add support for timer commands with peer-group syntax [bgpd] - Extend Dump to allow Extended Time Format [babeld] - Removed from the distribution. [isisd] - Allow the adjustment of lsp-mtu [isisd] - Allow the import of routes from other protocols [ospfd] - Add per interface 'ip ospf area' command [ospfd] - Lower the default OSPF spf timers to '0 50 5000' [ripngd] - Add ECMP support [pimd] - Add multicast static routes. [pimd] - Add ability to set DR priority for an interface [pimd] - Add ability to modify hello and hold timers per interface [vtysh] - Add 'show thread cpu ..' and 'show work-queues' [vtysh] - Add 'show run <protocol>' command [vtysh] - Fix history handling
37 lines
915 B
Makefile
37 lines
915 B
Makefile
# $NetBSD: options.mk,v 1.9 2016/03/21 13:40:28 gdt Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.quagga
|
|
PKG_SUPPORTED_OPTIONS= inet6
|
|
PKG_SUPPORTED_OPTIONS+= quagga-vtysh
|
|
PKG_SUGGESTED_OPTIONS= inet6
|
|
PKG_SUGGESTED_OPTIONS+= quagga-vtysh
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
###
|
|
### IPv6 support
|
|
###
|
|
.if !empty(PKG_OPTIONS:Minet6)
|
|
PLIST_CAT+= ${PKGDIR}/PLIST.v6
|
|
RCD_SCRIPTS+= ospf6d ripngd
|
|
. for _file_ in ospf6d.conf ripngd.conf
|
|
CONF_FILES_PERMS+= ${PREFIX}/share/examples/quagga/log_syslog.conf \
|
|
${PKG_SYSCONFDIR}/${_file_} quagga quagga 0600
|
|
. endfor
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-ospf6d
|
|
CONFIGURE_ARGS+= --disable-ripngd
|
|
.endif
|
|
|
|
###
|
|
### Include 'vtysh' program.
|
|
###
|
|
.if !empty(PKG_OPTIONS:Mquagga-vtysh)
|
|
# uses rl_pending_input
|
|
USE_GNU_READLINE= yes
|
|
. include "../../devel/readline/buildlink3.mk"
|
|
CONFIGURE_ARGS+= --enable-vtysh
|
|
PLIST_CAT+= ${PKGDIR}/PLIST.vtysh
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-vtysh
|
|
.endif
|