From owner-svn-ports-all@freebsd.org Mon Aug 6 09:17:01 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 078DC1050A4F; Mon, 6 Aug 2018 09:17:01 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A25E570111; Mon, 6 Aug 2018 09:17:00 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 68A802DB1; Mon, 6 Aug 2018 09:17:00 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w769H0L3043468; Mon, 6 Aug 2018 09:17:00 GMT (envelope-from ehaupt@FreeBSD.org) Received: (from ehaupt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w769Gx8O043461; Mon, 6 Aug 2018 09:16:59 GMT (envelope-from ehaupt@FreeBSD.org) Message-Id: <201808060916.w769Gx8O043461@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ehaupt set sender to ehaupt@FreeBSD.org using -f From: Emanuel Haupt Date: Mon, 6 Aug 2018 09:16:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r476499 - in head/dns: . dnsblast X-SVN-Group: ports-head X-SVN-Commit-Author: ehaupt X-SVN-Commit-Paths: in head/dns: . dnsblast X-SVN-Commit-Revision: 476499 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Aug 2018 09:17:01 -0000 Author: ehaupt Date: Mon Aug 6 09:16:59 2018 New Revision: 476499 URL: https://svnweb.freebsd.org/changeset/ports/476499 Log: Add dnsblast 0.0.2016060901, simple load testing tool for DNS resolvers. Added: head/dns/dnsblast/ head/dns/dnsblast/Makefile (contents, props changed) head/dns/dnsblast/distinfo (contents, props changed) head/dns/dnsblast/pkg-descr (contents, props changed) Modified: head/dns/Makefile Modified: head/dns/Makefile ============================================================================== --- head/dns/Makefile Mon Aug 6 09:07:58 2018 (r476498) +++ head/dns/Makefile Mon Aug 6 09:16:59 2018 (r476499) @@ -32,6 +32,7 @@ SUBDIR += dns2blackhole SUBDIR += dns2tcp SUBDIR += dns_balance + SUBDIR += dnsblast SUBDIR += dnscap SUBDIR += dnscheck SUBDIR += dnscheckengine Added: head/dns/dnsblast/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/dns/dnsblast/Makefile Mon Aug 6 09:16:59 2018 (r476499) @@ -0,0 +1,24 @@ +# Created by: Emanuel Haupt +# $FreeBSD$ + +PORTNAME= dnsblast +PORTVERSION= 0.0.2016060901 +CATEGORIES= dns benchmarks + +MAINTAINER= ehaupt@FreeBSD.org +COMMENT= Simple load testing tool for DNS resolvers + +LICENSE= ISCL +LICENSE_FILE= ${WRKSRC}/COPYING + +USE_GITHUB= yes + +GH_ACCOUNT= jedisct1 +GH_TAGNAME= f74cc52 + +PLIST_FILES= bin/dnsblast + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin + +.include Added: head/dns/dnsblast/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/dns/dnsblast/distinfo Mon Aug 6 09:16:59 2018 (r476499) @@ -0,0 +1,3 @@ +TIMESTAMP = 1533376008 +SHA256 (jedisct1-dnsblast-0.0.2016060901-f74cc52_GH0.tar.gz) = 53fa705ccca0f05be816046da77672d0d355f8ff917fdd5f0f333f7767c6385f +SIZE (jedisct1-dnsblast-0.0.2016060901-f74cc52_GH0.tar.gz) = 6482 Added: head/dns/dnsblast/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/dns/dnsblast/pkg-descr Mon Aug 6 09:16:59 2018 (r476499) @@ -0,0 +1,7 @@ +Simple load testing tool for DNS resolvers. + +Give it the IP address of a resolver, the total number of queries you want to +send, the rate (number of packets per second), and dnsblast will tell you how +well the resolver is able to keep up. + +WWW: https://github.com/jedisct1/dnsblast