Files
bpfire/lfs/conntrack-tools
Adolf Belka b685b5e7e9 conntrack-tools: Update to version 1.4.7
- Update from 1.4.6 to 1.4.7
- Update of rootfile not required
- Requires update fo libnetfilter_conntrack from 1.0.8 to 1.0.9
- Changelog
    conntrack-tools 1.4.7
     This release contains new features:
	* IPS_HW_OFFLOAD flag specifies that a conntrack entry has been
	  offloaded into the hardware
	* 'clash_resolve' and 'chaintoolong' stats counters
	* Default to unspec family if '-f' flag is absent to improve support for
	  dual-stack setups
	* Support filtering events by IP address family
	* Support flushing per IP address family
	* Add "save" output format representing data in conntrack parameters
	* Support loading conntrack commands from a batch file, e.g. generated
	  by "save" output format
	* Annotate portid in events by the program name (if found)
	* Accept yes/no as synonyms to on/off in conntrackd.conf
	* Support user space helper auto-loading upon daemon startup, relieving
	  users from manual 'nfct add helper' calls
	* Filter dumps by status on kernel side if possible
	* Accept to filter for any status other than SEEN_REPLY using
	  'UNREPLIED'
	* Use libmnl internally
	* Reuse netlink socket for improved performance with bulk CT entry loads
	* Remove '-o userspace' flag and always tag user space triggered events
	* Introduce '-A' command, a variant of '-I' which does not fail if the
	  entry exists already
     ... and fixes:
	* ICMP entry creation would fail when reply data was specified
	* Sync zone value also
	* Log external inject problems as warning only
	* Endianness bug parsing IP addresses
	* Ignore conntrack ID when looking up cache entries to allow for stuck
	  old ones to be replaced eventually
	* Broken parsing of IPv6 M-SEARCH requests in ssdp cthelper
	* Eliminate the need for lazy binding in nfct
	* Fix for use of unknown protocol values
	* Sanitize protocol value parsing, catch illegal values
	* Ensure unknown protocol values are included in '-o save' dumps
     ... and documentation updates:
	* Fixed examples in manual
	* Refer to nf_conntrack sysctl instead of the deprecated ip_conntrack
	  one
	* Misc updates to the manual
	* Add an older example script creating an active-active setup using the
	  cluster match

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
Reviewed-by: Michael Tremer <michael.tremer@ipfire.org>
2022-11-19 19:24:14 +00:00

80 lines
3.2 KiB
Plaintext

###############################################################################
# #
# IPFire.org - A linux based firewall #
# Copyright (C) 2007-2018 IPFire Team <info@ipfire.org> #
# #
# This program is free software: you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
# the Free Software Foundation, either version 3 of the License, or #
# (at your option) any later version. #
# #
# This program is distributed in the hope that it will be useful, #
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
# GNU General Public License for more details. #
# #
# You should have received a copy of the GNU General Public License #
# along with this program. If not, see <http://www.gnu.org/licenses/>. #
# #
###############################################################################
###############################################################################
# Definitions
###############################################################################
include Config
VER = 1.4.7
THISAPP = conntrack-tools-$(VER)
DL_FILE = $(THISAPP).tar.bz2
DL_FROM = $(URL_IPFIRE)
DIR_APP = $(DIR_SRC)/$(THISAPP)
TARGET = $(DIR_INFO)/$(THISAPP)
CFLAGS += -I/usr/include/tirpc
###############################################################################
# Top-level Rules
###############################################################################
objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
$(DL_FILE)_BLAKE2 = 42a3cacf8a32a5b8b688a9fd68f66024c591e9814ef3cc349456691094bab0fae15bb1c00befa178b0f8e845bf6fc00715cbf9db55cd7bf2d155c2dfd55f9b1a
install : $(TARGET)
check : $(patsubst %,$(DIR_CHK)/%,$(objects))
download :$(patsubst %,$(DIR_DL)/%,$(objects))
b2 : $(subst %,%_BLAKE2,$(objects))
###############################################################################
# Downloading, checking, b2sum
###############################################################################
$(patsubst %,$(DIR_CHK)/%,$(objects)) :
@$(CHECK)
$(patsubst %,$(DIR_DL)/%,$(objects)) :
@$(LOAD)
$(subst %,%_BLAKE2,$(objects)) :
@$(B2SUM)
###############################################################################
# Installation Details
###############################################################################
$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
@$(PREBUILD)
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
cd $(DIR_APP) && ./configure --prefix=/usr
cd $(DIR_APP) && make $(MAKETUNING)
cd $(DIR_APP) && make install
@rm -rf $(DIR_APP)
@$(POSTBUILD)