- update to version 20190916: * scamper * add a host implementation for looking up DNS records. it uses the first nameserver it finds in /etc/resolv.conf by default. * add an -O ptr option to tracelb. * bugfix json output for tracelb. * integrate patricia trie implementation into scamper hotspot * use HAVE_SYSCTL macro to solve a compile issue on android * include <linux/sockios.h> to get SIOCGSTAMP in Linux kernel > 5.2 * add -A option to ping code to set the ack number to use in tcp probes (or sequence number in SYN packets). do not randomly generate sequence and ack values for each TCP ping. * rework options handling to allow for long long values. * set the window size in TCP probes to 65535, instead of advertising a zero receive window. * update configure scripts around the use of --with-privsep-dir-owner * sc_ally: * when outputting alias sets, conduct a canonical sort to allow for easy diffs * update man page because sc_ally can take more than two addresses per line * sc_erosprober: * new driver to periodically probe addresses and rotate output files. * sc_hoiho: * new utility for holistic orthography of Internet hostname observations. this utility is only built if --with-sc_hoiho is passed to configure. sc_hoiho requires pcre or pcre2, which can be controlled by passing --with-pcre or --with-pcre2 to configure. * sc_uptime: OBS-URL: https://build.opensuse.org/package/show/network:utilities/scamper?expand=0&rev=19
104 lines
3.7 KiB
RPMSpec
104 lines
3.7 KiB
RPMSpec
#
|
|
# spec file for package scamper
|
|
#
|
|
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
|
|
# Copyright (c) 2016, Martin Hauke <mardnh@gmx.de>
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: scamper
|
|
Version: 20190916
|
|
Release: 0
|
|
Summary: Parallel Internet measurement utility
|
|
License: GPL-2.0-only
|
|
Group: Productivity/Networking/Diagnostic
|
|
Url: https://www.caida.org/tools/measurement/scamper/
|
|
Source: https://www.caida.org/tools/measurement/%{name}/code/%{name}-cvs-%{version}.tar.gz
|
|
BuildRequires: libopenssl-devel
|
|
BuildRequires: pkgconfig
|
|
|
|
%description
|
|
Scamper is a program that is able to conduct Internet measurement
|
|
tasks to large numbers of IPv4 and IPv6 addresses, in parallel, to
|
|
fill a specified packets-per-second rate. Currently, it supports the
|
|
well-known ping and traceroute techniques, as well as MDA traceroute,
|
|
alias resolution, some parts of tbit, sting, and neighbour discovery.
|
|
|
|
Scamper can do ICMP-based Path MTU discovery. scamper starts with the
|
|
outgoing interface's MTU and discovers the location of Path MTU
|
|
bottlenecks. scamper performs a PMTUD search when an ICMP
|
|
fragmentation required message is not returned to establish the PMTU
|
|
to the next point in the network, followed by a TTL limited search to
|
|
infer where the failure appears to occur.
|
|
|
|
%package -n libscamperfile0
|
|
Summary: File access library for scamper's binary dump format
|
|
Group: System/Libraries
|
|
|
|
%description -n libscamperfile0
|
|
Scamper is a program that is able to conduct Internet measurement
|
|
tasks to large numbers of IPv4 and IPv6 addresses, in parallel, to
|
|
fill a specified packets-per-second rate. Currently, it supports the
|
|
well-known ping and traceroute techniques, as well as MDA traceroute,
|
|
alias resolution, some parts of tbit, sting, and neighbour discovery.
|
|
|
|
This package contains the library that provides access to the binary output
|
|
files that scamper can produce in certain modes.
|
|
|
|
%package -n libscamperfile-devel
|
|
Summary: Development headers for scamper's binary dump file access library
|
|
Group: Development/Libraries/Other
|
|
Requires: libscamperfile0 = %{version}-%{release}
|
|
|
|
%description -n libscamperfile-devel
|
|
Scamper is a program that is able to conduct Internet measurement
|
|
tasks to large numbers of IPv4 and IPv6 addresses, in parallel, to
|
|
fill a specified packets-per-second rate. Currently, it supports the
|
|
well-known ping and traceroute techniques, as well as MDA traceroute,
|
|
alias resolution, some parts of tbit, sting, and neighbour discovery.
|
|
|
|
This package contains development headers and other ancillary files for the
|
|
libscamperfile library.
|
|
|
|
%prep
|
|
%setup -q -n %{name}-cvs-%{version}
|
|
|
|
%build
|
|
%configure --disable-static
|
|
make %{?_smp_mflags}
|
|
|
|
%install
|
|
%make_install
|
|
find %{buildroot} -type f -name "*.la" -delete -print
|
|
|
|
%post -n libscamperfile0 -p /sbin/ldconfig
|
|
%postun -n libscamperfile0 -p /sbin/ldconfig
|
|
|
|
%files
|
|
%license COPYING
|
|
%{_bindir}/sc_*
|
|
%{_bindir}/scamper
|
|
%{_mandir}/man1/*
|
|
%{_mandir}/man5/*
|
|
|
|
%files -n libscamperfile0
|
|
%{_libdir}/libscamperfile.so.*
|
|
|
|
%files -n libscamperfile-devel
|
|
%{_includedir}/scamper_*
|
|
%{_libdir}/libscamperfile.so
|
|
%{_mandir}/man3/*
|
|
|
|
%changelog
|