Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 11 Aug 2016 11:12:22 +0000 (UTC)
From:      Kurt Jaeger <pi@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r420060 - in head/sysutils: . ipdbtools
Message-ID:  <201608111112.u7BBCMGU059269@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pi
Date: Thu Aug 11 11:12:22 2016
New Revision: 420060
URL: https://svnweb.freebsd.org/changeset/ports/420060

Log:
  New port: sysutils/ipdbtools
  
  Tools for generating IP based Geo-block-ing and Geo-routing tables in
  order to configure the system's firewall and/or routing facilities
  
  In general, routing is determined by destination IP addresses, and access
  control by the firewall is established by selectors that can be attrib-
  uted to incoming and outgoing IP packets, like physical interfaces on
  which the packets are going, source and target IP addresses, protocol
  types, port numbers, content types and content, etc. The Geo-location
  would be just another selector, but this information is not carried
  explicitly with IP packets, however, it can be obtained using an IP
  address as a key for looking-up the location in an IP database.
  
  Online databases do exist, but these are usually limited to single queries
  and in addition the look-up in an online database is by far too slow for
  even thinking about being utilized at the firewall level, where IP packets
  need to be processed in a microsecond time scale. Therefore, a locally
  maintained Geo-location database is indispensable in the given respect.
  The System's own routing and filtering tables can be configured to do
  these tasks if there is a source of the appropriate data. The ipdbtools(1)
  are designed to provide this data and to assist managing and using it.
  
  WWW: https://cyclaero.github.io/ipdb/
  
  PR:		211744
  Submitted by:	cyclaero@gmail.com

Added:
  head/sysutils/ipdbtools/
  head/sysutils/ipdbtools/Makefile   (contents, props changed)
  head/sysutils/ipdbtools/distinfo   (contents, props changed)
  head/sysutils/ipdbtools/pkg-descr   (contents, props changed)
Modified:
  head/sysutils/Makefile

Modified: head/sysutils/Makefile
==============================================================================
--- head/sysutils/Makefile	Thu Aug 11 10:54:25 2016	(r420059)
+++ head/sysutils/Makefile	Thu Aug 11 11:12:22 2016	(r420060)
@@ -452,6 +452,7 @@
     SUBDIR += ioping
     SUBDIR += ipa
     SUBDIR += ipad_charge
+    SUBDIR += ipdbtools
     SUBDIR += ipfs-go
     SUBDIR += ipmitool
     SUBDIR += ipsc

Added: head/sysutils/ipdbtools/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/ipdbtools/Makefile	Thu Aug 11 11:12:22 2016	(r420060)
@@ -0,0 +1,25 @@
+# $FreeBSD$
+
+PORTNAME=	ipdbtools
+PORTVERSION=	1.1.0
+CATEGORIES=	sysutils
+MASTER_SITES=	http://cyclaero.com/public/ipdbtools/
+
+MAINTAINER=	cyclaero@gmail.com
+COMMENT=	Tools for IP based Geo-blocking and Geo-routing
+
+LICENSE=	BSD2CLAUSE
+
+USES=		tar:bzip2 compiler:c11
+
+ONLY_FOR_ARCHS=	amd64
+
+PLIST_FILES=	bin/ipup \
+		bin/ipdb \
+		bin/ipdb-update.sh \
+		man/man1/ipdbtools.1.gz \
+		man/man1/ipup.1.gz \
+		man/man1/ipdb.1.gz \
+		man/man1/ipdb-update.sh.1.gz
+
+.include <bsd.port.mk>

Added: head/sysutils/ipdbtools/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/ipdbtools/distinfo	Thu Aug 11 11:12:22 2016	(r420060)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1470866499
+SHA256 (ipdbtools-1.1.0.tar.bz2) = 3ce7cd8ede9c6a9843891d14efa2e7e488b3ab2769bfe5922194c09bb2fc9c37
+SIZE (ipdbtools-1.1.0.tar.bz2) = 18037

Added: head/sysutils/ipdbtools/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/ipdbtools/pkg-descr	Thu Aug 11 11:12:22 2016	(r420060)
@@ -0,0 +1,22 @@
+Tools for generating IP based Geo-block-ing and Geo-routing tables in
+order to configure the system's firewall and/or routing facilities
+
+In general, routing is determined by destination IP addresses, and access
+control by the firewall is established by selectors that can be attrib-
+uted to incoming and outgoing IP packets, like physical interfaces on
+which the packets are going, source and target IP addresses, protocol
+types, port numbers, content types and content, etc. The Geo-location
+would be just another selector, but this information is not carried
+explicitly with IP packets, however, it can be obtained using an IP
+address as a key for looking-up the location in an IP database.
+
+Online databases do exist, but these are usually limited to single queries
+and in addition the look-up in an online database is by far too slow for
+even thinking about being utilized at the firewall level, where IP packets
+need to be processed in a microsecond time scale. Therefore, a locally
+maintained Geo-location database is indispensable in the given respect.
+The System's own routing and filtering tables can be configured to do
+these tasks if there is a source of the appropriate data. The ipdbtools(1)
+are designed to provide this data and to assist managing and using it.
+
+WWW: https://cyclaero.github.io/ipdb/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201608111112.u7BBCMGU059269>