wok-current rev 24492
updated dnstop (20121017 -> 20210329)
author | Hans-G?nter Theisgen |
---|---|
date | Sat Feb 19 07:41:52 2022 +0100 (2022-02-19) |
parents | d8c511e24c20 |
children | 8d83e2a77e2f |
files | dnstop/description.txt dnstop/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/dnstop/description.txt Sat Feb 19 07:41:52 2022 +0100 1.3 @@ -0,0 +1,26 @@ 1.4 +Dnstop is a libpcap application (like tcpdump) that displays 1.5 +various tables of DNS traffic on your network. 1.6 +Currently dnstop displays tables of: 1.7 + 1.8 +* Source IP addresses 1.9 +* Destination IP addresses 1.10 +* Query types 1.11 +* Response codes 1.12 +* Opcodes 1.13 +* Top level domains 1.14 +* Second level domains 1.15 +* Third level domains 1.16 + 1.17 +Dnstop supports both IPv4 and IPv6 addresses. 1.18 + 1.19 +To help find especially undesirable DNS queries, dnstop provides 1.20 +a number of filters. The filters tell dnstop to display only the 1.21 +following types of queries: 1.22 + 1.23 +* For unknown or invalid TLDs 1.24 +* A queries where the query name is already an IP address 1.25 +* PTR queries for RFC1918 address space 1.26 +* Responses with code REFUSED 1.27 + 1.28 +Dnstop can either read packets from the live capture device, 1.29 +or from a tcpdump savefile.
2.1 --- a/dnstop/receipt Fri Feb 18 22:59:06 2022 +0000 2.2 +++ b/dnstop/receipt Sat Feb 19 07:41:52 2022 +0100 2.3 @@ -1,16 +1,18 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="dnstop" 2.7 -VERSION="20121017" 2.8 +VERSION="20210329" 2.9 CATEGORY="network" 2.10 SHORT_DESC="Displays various tables of DNS traffic on your network." 2.11 MAINTAINER="paul@slitaz.org" 2.12 LICENSE="BSD" 2.13 -DEPENDS="ncurses libpcap" 2.14 -BUILD_DEPENDS="ncurses-dev libpcap-dev" 2.15 -TARBALL="$PACKAGE-$VERSION.tar.gz" 2.16 WEB_SITE="http://dns.measurement-factory.com/tools/dnstop" 2.17 -WGET_URL="$WEB_SITE/src/$TARBALL" 2.18 + 2.19 +TARBALL="$PACKAGE-$VERSION.zip" 2.20 +WGET_URL="https://github.com/measurement-factory/$PACKAGE/archive/refs/heads/master.zip" 2.21 + 2.22 +DEPENDS="libpcap ncurses" 2.23 +BUILD_DEPENDS="libpcap-dev ncurses-dev" 2.24 2.25 # What is the latest version available today? 2.26 current_version() 2.27 @@ -23,7 +25,8 @@ 2.28 compile_rules() 2.29 { 2.30 export LDFLAGS="$LDFLAGS -ltinfo" 2.31 - ./configure --prefix=/usr 2.32 + 2.33 + ./configure --prefix=/usr && 2.34 make 2.35 } 2.36 2.37 @@ -31,5 +34,5 @@ 2.38 genpkg_rules() 2.39 { 2.40 mkdir -p $fs/usr/bin 2.41 - cp -a $src/$PACKAGE $fs/usr/bin 2.42 + cp -a $src/$PACKAGE $fs/usr/bin 2.43 }