svn commit: r529782 - in head/net-mgmt: . bgpq4

Muhammad Moinur Rahman bofh at FreeBSD.org
Sun Mar 29 09:29:59 UTC 2020


Author: bofh
Date: Sun Mar 29 09:29:50 2020
New Revision: 529782
URL: https://svnweb.freebsd.org/changeset/ports/529782

Log:
  [NEW] net-mgmt/bgpq4: Lightweight prefix-list generator for various routers v4
  
  bgpq4 is a lightweight access-list/prefix-list/as-path access-list generator
  for Cisco, Juniper and many other routers and routing daemons.
  
  Support for IOS-XR and Mikrotik added over net-mgmt/bgpq3
  
  WWW: https://github.com/bgp/bgpq4

Added:
  head/net-mgmt/bgpq4/
  head/net-mgmt/bgpq4/Makefile   (contents, props changed)
  head/net-mgmt/bgpq4/distinfo   (contents, props changed)
  head/net-mgmt/bgpq4/pkg-descr   (contents, props changed)
  head/net-mgmt/bgpq4/pkg-message   (contents, props changed)
Modified:
  head/net-mgmt/Makefile

Modified: head/net-mgmt/Makefile
==============================================================================
--- head/net-mgmt/Makefile	Sun Mar 29 09:22:57 2020	(r529781)
+++ head/net-mgmt/Makefile	Sun Mar 29 09:29:50 2020	(r529782)
@@ -19,6 +19,7 @@
     SUBDIR += bandwidthd
     SUBDIR += bgpq
     SUBDIR += bgpq3
+    SUBDIR += bgpq4
     SUBDIR += bgpuma
     SUBDIR += blackbox_exporter
     SUBDIR += bpft

Added: head/net-mgmt/bgpq4/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net-mgmt/bgpq4/Makefile	Sun Mar 29 09:29:50 2020	(r529782)
@@ -0,0 +1,24 @@
+# Created by: Muhammad Moinur Rahman <bofh at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	bgpq4
+PORTVERSION=	0.0.6
+CATEGORIES=	net-mgmt
+
+MAINTAINER=	bofh at FreeBSD.org
+COMMENT=	Lightweight prefix-list generator for various routers v4
+
+LICENSE=	BSD2CLAUSE
+LICENSE_FILE=	${WRKSRC}/COPYRIGHT
+
+USES=		autoreconf
+USE_GITHUB=	yes
+
+GH_ACCOUNT=	bgp
+
+GNU_CONFIGURE=	yes
+
+PLIST_FILES=	bin/bgpq4 \
+		man/man8/bgpq4.8.gz
+
+.include <bsd.port.mk>

Added: head/net-mgmt/bgpq4/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net-mgmt/bgpq4/distinfo	Sun Mar 29 09:29:50 2020	(r529782)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1585472287
+SHA256 (bgp-bgpq4-0.0.6_GH0.tar.gz) = 612d8eb7c3de07712e43b3e03e3b9d6b9b87e14333e56df3ccf198675a87a642
+SIZE (bgp-bgpq4-0.0.6_GH0.tar.gz) = 49254

Added: head/net-mgmt/bgpq4/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net-mgmt/bgpq4/pkg-descr	Sun Mar 29 09:29:50 2020	(r529782)
@@ -0,0 +1,6 @@
+bgpq4 is a lightweight access-list/prefix-list/as-path access-list generator
+for Cisco, Juniper and many other routers and routing daemons.
+
+Support for IOS-XR and Mikrotik added over net-mgmt/bgpq3
+
+WWW: https://github.com/bgp/bgpq4

Added: head/net-mgmt/bgpq4/pkg-message
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net-mgmt/bgpq4/pkg-message	Sun Mar 29 09:29:50 2020	(r529782)
@@ -0,0 +1,16 @@
+[
+{ type: install
+  message: <<EOM
+To improve bgpq4 performance when expanding extra-large AS-SETs OS settings needs to be tuned to enlarge TCP send buffer.
+
+To enlarge TCP send buffer, run the following:
+
+# sysctl -w net.inet.tcp.sendbuf_max=2097152
+
+To make it persistent across reboots, add the following to /etc/sysctl.conf:
+
+net.inet.tcp.sendbuf_max=2097152
+
+EOM
+}
+]


More information about the svn-ports-all mailing list