--- flowscan-1.006.orig/CampusIO.README +++ flowscan-1.006/CampusIO.README @@ -106,8 +106,8 @@ recommended that it contain at least the services shown here: - # TCPServices ftp-data, ftp, smtp, nntp, http, 7070, 554 - TCPServices ftp-data, ftp, smtp, nntp, http, 7070, 554 + # TCPServices ftp-data, ftp, smtp, nntp, www, 7070, 554 + TCPServices ftp-data, ftp, smtp, nntp, www, 7070, 554 UDPServices This directive is optional. It is a comma-seperated list of --- flowscan-1.006.orig/CampusIO.pm +++ flowscan-1.006/CampusIO.pm @@ -145,8 +145,8 @@ by name or number. E.g., it is recommended that it contain at least the services shown here: - # TCPServices ftp-data, ftp, smtp, nntp, http, 7070, 554 - TCPServices ftp-data, ftp, smtp, nntp, http, 7070, 554 + # TCPServices ftp-data, ftp, smtp, nntp, www, 7070, 554 + TCPServices ftp-data, ftp, smtp, nntp, www, 7070, 554 =item B @@ -402,7 +402,8 @@ $c->directive('BGPDumpFile'); $c->directive('ASNFile'); $c->directive('WebProxyIfIndex'); -$c->load("${FindBin::Bin}/CampusIO.cf"); +#$c->load("${FindBin::Bin}/CampusIO.cf"); +$c->load("/etc/${FindBin::Script}/CampusIO.cf"); if (1 <= $c->value('Verbose')) { $CampusIO::verbose = 1 --- flowscan-1.006.orig/flowscan.in +++ flowscan-1.006/flowscan.in @@ -39,7 +39,8 @@ $c->directive('WaitSeconds'); $c->required('FlowFileGlob'); $c->required('ReportClasses'); -$c->load("${FindBin::Bin}/${FindBin::Script}.cf"); +#$c->load("${FindBin::Bin}/${FindBin::Script}.cf"); +$c->load("/etc/${FindBin::Script}/${FindBin::Script}.cf"); $flowfileglob = $c->value('FlowFileGlob'); $opt_w = $c->value('WaitSeconds'); $opt_v = $c->value('Verbose'); --- flowscan-1.006.orig/SubNetIO.pm +++ flowscan-1.006/SubNetIO.pm @@ -143,7 +143,8 @@ $c->directive('Verbose'); $c->directive('TopN'); $c->directive('ReportPrefixFormat'); -$c->load("${FindBin::Bin}/SubNetIO.cf"); +#$c->load("${FindBin::Bin}/SubNetIO.cf"); +$c->load("/etc/${FindBin::Script}/SubNetIO.cf"); if (1 <= $c->value('Verbose')) { $SubNetIO::verbose = 1 --- flowscan-1.006.orig/CampusIO.html +++ flowscan-1.006/CampusIO.html @@ -218,8 +218,8 @@

-

   # TCPServices ftp-data, ftp, smtp, nntp, http, 7070, 554
-   TCPServices ftp-data, ftp, smtp, nntp, http, 7070, 554
+
   # TCPServices ftp-data, ftp, smtp, nntp, www, 7070, 554
+   TCPServices ftp-data, ftp, smtp, nntp, www, 7070, 554
 

--- flowscan-1.006.orig/FlowScan.pm +++ flowscan-1.006/FlowScan.pm @@ -15,7 +15,7 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. -# $Id: FlowScan.pm,v 1.5 2001/02/11 20:41:19 dplonka Exp $ +# $Id: FlowScan.pm,v 1.6 2001/03/27 20:48:01 dplonka Exp $ # Dave Plonka use strict; @@ -29,7 +29,7 @@ @FlowScan::ISA=qw(Exporter); @FlowScan::EXPORT_OK=qw(ip2name); # convert the RCS revision to a reasonable Exporter VERSION: -'$Revision: 1.5 $' =~ m/(\d+)\.(\d+)/ && (( $FlowScan::VERSION ) = sprintf("%d.%03d", $1, $2)); +'$Revision: 1.6 $' =~ m/(\d+)\.(\d+)/ && (( $FlowScan::VERSION ) = sprintf("%d.%03d", $1, $2)); =head1 NAME @@ -93,7 +93,7 @@ sub file2time_t { my $file = shift; if ($file =~ - m/(\d\d\d\d)(\d\d)(\d\d)_(\d\d):(\d\d):(\d\d)([+-])(\d\d)(\d\d)/) { + m/(\d\d\d\d)-?(\d\d)-?(\d\d)[_.](\d\d):?(\d\d):?(\d\d)([+-])(\d\d)(\d\d)/) { # The file name contains an "hours east of GMT" component my(@tm) = ($6, $5, $4, $3, $2-1, $1-1900, 0, 0, -1); my($tm_sec, $tm_min, $tm_hour, $tm_mday, $tm_mon, $tm_year, @@ -105,7 +105,7 @@ } mutt_normalize_time(@tm); return mutt_mktime(@tm, -1, 0) - } elsif ($file =~ m/(\d\d\d\d)(\d\d)(\d\d)_(\d\d):(\d\d):(\d\d)$/) { + } elsif ($file =~ m/(\d\d\d\d)-?(\d\d)-?(\d\d)[_.](\d\d):?(\d\d):?(\d\d)$/) { # The file name contains just the plain old localtime return mutt_mktime($6, $5, $4, $3, $2-1, $1-1900, 0, 0, -1, 1) } else { @@ -157,9 +157,9 @@ RRA:AVERAGE:0:1:600 RRA:AVERAGE:0:6:600 RRA:AVERAGE:0:24:600 - RRA:AVERAGE:0:288:732 + RRA:AVERAGE:0:288:1827 RRA:MAX:0:24:600 - RRA:MAX:0:288:732 + RRA:MAX:0:288:1827 ) ); my $err=RRDs::error; @@ -190,7 +190,7 @@ =head1 VERSION -The version number is the module file RCS revision number (B<$Revision: 1.5 $>) +The version number is the module file RCS revision number (B<$Revision: 1.6 $>) with the minor number printed right justified with leading zeroes to 3 decimal places. For instance, RCS revision 1.1 would yield a package version number of 1.001. --- flowscan-1.006.orig/util/add_txrx.in +++ flowscan-1.006/util/add_txrx.in @@ -1,4 +1,4 @@ -#! @KSH_PATH@ +#! /bin/ksh # add_txrx - add two new Data Sources called 'tx' and 'rx' to an RRD file --- flowscan-1.006.orig/cf/SubNetIO.cf +++ flowscan-1.006/cf/SubNetIO.cf @@ -5,7 +5,7 @@ # a comma-seperated list of one (or more) files containing the definitions # of "local" subnets, e.g.: # SubnetFiles our_subnets.boulder -SubnetFiles bin/our_subnets.boulder +SubnetFiles /etc/flowscan/our_subnets.boulder # OutputDir (REQUIRED) # This is the directory in which RRD files will be written, e.g.: --- flowscan-1.006.orig/cf/CampusIO.cf +++ flowscan-1.006/cf/CampusIO.cf @@ -16,7 +16,7 @@ # a comma-seperated list of one (or more) files containing the definitions # of "local" subnets, e.g.: # LocalSubnetFiles local_nets.boulder -LocalSubnetFiles bin/local_nets.boulder +LocalSubnetFiles /etc/flowscan/local_nets.boulder # OutputDir (REQUIRED) # This is the directory in which RRD files will be written, e.g.: @@ -72,7 +72,7 @@ # a comma-seperated list of one (or more) files containing the definitions # of "Napster" subnets, e.g.: # NapsterSubnetFiles Napster_subnets.boulder -NapsterSubnetFiles bin/Napster_subnets.boulder +NapsterSubnetFiles /etc/flowscan/Napster_subnets.boulder # NapsterSeconds (OPTIONAL) # the number of seconds after which a given campus host has communicated --- flowscan-1.006.orig/man/ip2hostname.1 +++ flowscan-1.006/man/ip2hostname.1 @@ -0,0 +1,23 @@ +.TH IP2HOSTNAME 1 +.SH NAME +ip2hostname \- converts IP addresses to their respective hostnames +.SH SYNOPSIS +.B ip2hostname [-h] [ -p printf_format ] [ [-i extension] file [...] ] +.SH "DESCRIPTION" +.TS +tab (@); +l l. +-h@help (shows this usage information) (mnemonic: 'h'elp) +-p printf_format@use this printf format for IP address and hostname, respectively. The default format is '%.0s%s', which supresses the printing of the IP address (i.e. "%.0s" specifies printing a string with a maximum width of zero). To maintain column widths (since both the IP address and hostname vary in lenght), a format like this may be useful: '%-16.16s %-20s' (mnemonic: 'p'rintf format) +-i extension@edit the files in place (rather than sending to standard output) This option requires file name(s) argument(s). The extension is added to the name of the old file to make a backup copy. If you don't wish to make a backup, use "-I". (mnemonic: edit 'i'n place) +-I@like "-i" but no backup is made. (mnemonic: edit 'I'n place, trusting this script 'I'mplicitly. ;^) +.TE +.SH "SEE ALSO" +.BR add_ds.pl (1), +.BR add_txrx (1), +.BR event2vrule (1), +.BR flowscan (1), +.BR locker (1) +.SH AUTHOR +This manual page was written by Anibal Monsalve Salazar, +for the Debian Project. --- flowscan-1.006.orig/man/add_txrx.1 +++ flowscan-1.006/man/add_txrx.1 @@ -0,0 +1,52 @@ +.TH ADD_TXRX 1 +.SH NAME +add_txrx \- add two new Data Sources called 'tx' and 'rx' to an RRD file +.SH SYNOPSIS +.B add_txrx ... +.SH "DESCRIPTION" +This utility is used when upgrading from FlowScan-1.005 (or less) to +FlowScan-1.006 (or greater). It is used to add two new Data Sources +to FlowScan ".rrd" files. e.g.: + + $ make install # install FlowScan-1.006 in your existing FlowScan dir + $ cd $prefix/graphs + $ add_txrx total.rrd *.*.*.*_*.rrd + + tx - a count of the unique source IP addresses + that have transmitted flows + rx - a count of the unique destination IP addresses + that have received flows + +These Data Sources will allows FlowScan users to calculate the average +number of bytes, packets, and flows per host and to determine the overall +level of activity (in terms of numbers of individual hosts) for each subnet +and for the entire campus. + +The values will be recorded only if you use the TopN directive with the +CampusIO and/or SubNetIO reports. TopN was introduced in FlowScan-1.006. + +For instance, if you set CampusIO's TopN to a value greater than zero, +the tx value in FlowScan's "total.rrd" is the number of unique source +IP addresses (hosts) from which FlowScan has seen outbound flows. + +Upgrading your RRD Files + +If you are upgrading, it is necessary to add two new Data Sources to the some of your existing RRD files. Before running flowscan, backup your RRD files, e.g.: + + $ cd $prefix/graphs + $ tar cf saved_rrd_files.tar *.rrd + +then do this: + + $ cd $prefix/graphs + $ ../bin/add_txrx total.rrd [1-9]*.*.*.*_*.rrd + +.SH "SEE ALSO" +.BR add_ds.pl (1), +.BR event2vrule (1), +.BR flowscan (1), +.BR ip2hostname (1), +.BR locker (1) +.SH AUTHOR +This manual page was written by Anibal Monsalve Salazar, +for the Debian Project. --- flowscan-1.006.orig/man/add_ds.pl.1 +++ flowscan-1.006/man/add_ds.pl.1 @@ -0,0 +1,32 @@ +.TH ADD_DS.PL 1 +.SH NAME +add_ds.pl \- program to add datasources to an existing RRD +.SH SYNOPSIS +.B add-ds.pl [default_val] [type] [heartbeat] [rrdmin] [rrdmax] < file.xml +.SH "DESCRIPTION" + +.TS +tab (@); +l l. +@number of additional datasources +[default_val]@default value to be entered in add'l fields +[type]@type of datasource (i.e. COUNTER, GAUGE...) +[heatbeat]@length of time in seconds before RRD thinks your DS is dead +[rrdmin]@minimum value allowed for each datasource +[rrdmax]@max value allowed for each datasource +.TE + +Options are read in order, so if you want to change the +default heartbeat, you need to specify the default_val and +type as well, etc. + +Output goes to STDOUT. +.SH "SEE ALSO" +.BR add_txrx (1), +.BR event2vrule (1), +.BR flowscan (1), +.BR ip2hostname (1), +.BR locker (1) +.SH AUTHOR +This manual page was written by Anibal Monsalve Salazar, +for the Debian Project. --- flowscan-1.006.orig/man/flowscan.1 +++ flowscan-1.006/man/flowscan.1 @@ -0,0 +1,24 @@ +.TH FLOWSCAN 1 +.SH NAME +flowscan \- flow-based IP traffic analysis and visualization tool +.SH SYNOPSIS +.B flowscan [-hv] [-w secs] [-s bytes] FlowScanClass [...] +.SH "DESCRIPTION" +.TS +tab (@); +l l. +-g@use this glob (file pattern match) when looking for raw flow files to be processed. Defaults to: 'flows.*:*[0-9]' (mnemonic: 'g'lob) +-h@shows this usage information (mnemonic: 'h'elp) +-v@verbose - show warnings (mnemonic: 'v'erbose) +-w secs@process the flow files, and wait secs seconds for new ones to appear. Flow file will be globbed using "flows.*:*[0-9]". (Don't pass flow file names as arguments when using this option.) +-s bytes@skip processing of files of size greater than bytes (mnemonic: 's'kip 's'ize) +.TE +.SH "SEE ALSO" +.BR add_ds.pl (1), +.BR add_txrx (1), +.BR event2vrule (1), +.BR ip2hostname (1), +.BR locker (1) +.SH AUTHOR +This manual page was written by Anibal Monsalve Salazar, +for the Debian Project. --- flowscan-1.006.orig/man/locker.1 +++ flowscan-1.006/man/locker.1 @@ -0,0 +1,22 @@ +.TH LOCKER 1 +.SH NAME +locker \- locks a file +.SH SYNOPSIS +.B locker < -e file | -s file > [ -n ] command [ args ... ] +.SH "DESCRIPTION" +.TS +tab (@); +l l. +-e file@lock specified file for exclusive (write) access +-s file@lock specified file for shared (read) access +-n@do an "non-blocking" attempt to lock specified file +.TE +.SH "SEE ALSO" +.BR add_ds.pl (1), +.BR add_txrx (1), +.BR event2vrule (1), +.BR flowscan (1), +.BR ip2hostname (1) +.SH AUTHOR +This manual page was written by Anibal Monsalve Salazar, +for the Debian Project. --- flowscan-1.006.orig/man/event2vrule.1 +++ flowscan-1.006/man/event2vrule.1 @@ -0,0 +1,40 @@ +.TH EVENT2VRULE 1 +.SH NAME +event2vrule \- adds 'events' to rrdtool graphs +.SH SYNOPSIS +.B event2vrule +.SH "DESCRIPTION" +Adding Events to Graphs + +There is a new graphing feature which allows you to specify events that should be displayed in your graphs. These events are simply a list of points in time at which something of interest occurred. + +For instance, one could create a plain text file in the graphs directory called events.txt containing these lines: + + 2001/02/10 1538 added support for events to FlowScan graphs + 2001/02/12 1601 allowed the events file to be named on make command line + +Then to generate the graphs with those events included one might run: + + $ make -f graphs.mf events=events.txt + +This feature was implemented using a new script called event2vrule that is supplied with FlowScan. This script is meant to be used as a ``wrapper'' for running rrdtool(1), similarly to how one might run nohup(1). E.g.: + + $ event2vrule -h 48 events.txt rrdtool graph -s -48h ... + +That command will cause these VRULE arguments to be passed to rrdtool, at the end of the argument list: + + COMMENT:\\n + VRULE:981841080#ff0000:2001/02/10 1538 added support for events to FlowScan graphs + COMMENT:\\n + VRULE:982015260#ff0000:2001/02/12 1601 allowed the events file to be named on make command line + COMMENT:\\n + +.SH "SEE ALSO" +.BR add_ds.pl (1), +.BR add_txrx (1), +.BR flowscan (1), +.BR ip2hostname (1), +.BR locker (1) +.SH AUTHOR +This manual page was written by Anibal Monsalve Salazar, +for the Debian Project. --- flowscan-1.006.orig/debian/rules +++ flowscan-1.006/debian/rules @@ -0,0 +1,86 @@ +#!/usr/bin/make -f +# +# GNU Copyright (C) 2003-2005 by Anibal Monsalve Salazar +# + +CF = "-g -Wall -D_REENTRANT -fPIC" + +TMP =$(CURDIR)/debian/$(PACKAGE) + +binary: binary-arch binary-indep + +binary-arch: + +binary-indep: build + $(checkdir) + rm -rf debian/tmp + install -d -m 755 debian/tmp/DEBIAN + + install -d -m 755 debian/tmp/usr/bin + install -d -m 755 debian/tmp/etc/flowscan + install -d -m 755 debian/tmp/usr/share/perl5 + install -d -m 755 debian/tmp/DEBIAN + install -p -m 644 *.pm debian/tmp/usr/share/perl5 + install -p -m 755 flowscan util/locker util/add_ds.pl util/add_txrx util/event2vrule util/ip2hostname debian/tmp/usr/bin + + install -d -m 755 debian/tmp/usr/share/man/man1 + install -p -m 644 man/*.1 debian/tmp/usr/share/man/man1 + gzip -9 debian/tmp/usr/share/man/man1/*.1 + + install -d -m 755 debian/tmp/usr/share/doc/flowscan + install -p -m 644 Changes debian/tmp/usr/share/doc/flowscan/changelog + install -p -m 644 CampusIO.README README SubNetIO.README TODO VERSION debian/tmp/usr/share/doc/flowscan + install -p -m 644 INSTALL debian/tmp/usr/share/doc/flowscan/UserManual + install -p -m 644 debian/changelog debian/tmp/usr/share/doc/flowscan/changelog.Debian + install -p -m 644 debian/README.Debian debian/tmp/usr/share/doc/flowscan + gzip -9 debian/tmp/usr/share/doc/flowscan/* + install -d -m 755 debian/tmp/usr/share/doc/flowscan/html + install -d -m 755 debian/tmp/usr/share/doc/flowscan/pod + install -p -m 644 CampusIO.html README.html SubNetIO.html debian/tmp/usr/share/doc/flowscan/html + install -p -m 644 INSTALL.html debian/tmp/usr/share/doc/flowscan/html/UserManual.html + install -p -m 644 README.pod debian/tmp/usr/share/doc/flowscan/pod + install -p -m 644 INSTALL.pod debian/tmp/usr/share/doc/flowscan/pod/UserManual.pod + install -p -m 644 debian/copyright debian/tmp/usr/share/doc/flowscan + install -d -m 755 debian/tmp/usr/share/doc/flowscan/examples/cf + install -d -m 755 debian/tmp/usr/share/doc/flowscan/examples/rc + install -p -m 644 graphs.mf example/events.txt debian/tmp/usr/share/doc/flowscan/examples + install -p -m 644 cf/* debian/tmp/etc/flowscan + install -p -m 644 cf/* debian/tmp/usr/share/doc/flowscan/examples/cf + install -p -m 644 rc/linux/* debian/tmp/usr/share/doc/flowscan/examples/rc + gzip -r9 debian/tmp/usr/share/doc/flowscan/examples/* + + install -p -m 644 debian/conffiles debian/tmp/DEBIAN +# install -p -m 755 debian/config debian/preinst debian/tmp/DEBIAN +# po2debconf debian/templates > debian/tmp/DEBIAN/templates + + # lintian overrides... + mkdir -p debian/tmp/usr/share/lintian/overrides/ + install -m 644 debian/lintian-overrides debian/tmp/usr/share/lintian/overrides/flowscan + + dpkg-shlibdeps debian/tmp/usr/bin/* + dpkg-gencontrol -isp + dpkg --build debian/tmp .. + +build: + $(checkdir) + cp -p /usr/share/misc/config.guess /usr/share/misc/config.sub . + ./configure --prefix=/usr + $(MAKE) + touch build + +clean: + $(checkdir) + [ ! -f Makefile ] || $(MAKE) realclean + rm -f config.guess config.sub config.log util/locker util/add_ds.pl util/add_txrx util/event2vrule util/ip2hostname example/crontab* + rm -f debian/files debian/substvars + rm -fr debian/tmp + +define checkdir + test -f debian/rules +endef + +checkroot: + $(checkdir) + test root = "`whoami`" + +.PHONY: binary binary-arch binary-indep build clean --- flowscan-1.006.orig/debian/conffiles +++ flowscan-1.006/debian/conffiles @@ -0,0 +1,6 @@ +/etc/flowscan/flowscan.cf +/etc/flowscan/CampusIO.cf +/etc/flowscan/SubNetIO.cf +/etc/flowscan/Napster_subnets.boulder +/etc/flowscan/our_subnets.boulder +/etc/flowscan/local_nets.boulder --- flowscan-1.006.orig/debian/changelog +++ flowscan-1.006/debian/changelog @@ -0,0 +1,118 @@ +flowscan (1.006-13.2) unstable; urgency=low + + * Non-maintainer upload. + * Add Depends on libperl4-corelibs-perl (Closes: #659420) + + -- Dominic Hargreaves Sat, 17 Mar 2012 18:24:30 +0000 + +flowscan (1.006-13.1) unstable; urgency=low + + * Non-maintainer upload. + * Fix configure looking for http service instead of www + (Closes: 660044, LP: #935087). + + -- Leo Iannacone Tue, 06 Mar 2012 15:51:33 +0100 + +flowscan (1.006-13) unstable; urgency=low + + * New maintainer (Closes: #402663). + * debian/lintian-overrides and debian/rules: + + override script-with-language-extension (usr/bin/add_ds.pl) + * debian/rules: + + Delete "-" before "rm -f config.log util/locker util/add_ds.pl" + in clean rule. + + Delete "-" before "rm -rf debian/tmp" in binary-indep rule. + * debian/copyright: Layout review + * debian/control: + + Bump Standards-Version to 3.8.1, no changes needed. + + Delete "Section" and "Priority" from Package (already in Source) + (lintian binary-control-field-duplicates-source info). + + Move "Homepage" from Package to Source + (lintian description-possibly-contains-homepage info). + + Delete zsh and ksh from Build-Depends and Depends + (lintian missing-dep-for-interpreter error, + ksh => mksh | pdksh [./usr/bin/add_txrx]) + + -- Guillaume Delacour Wed, 13 May 2009 18:27:03 +0000 + +flowscan (1.006-12) unstable; urgency=low + + * QA upload. + * debian/rules: fix bashisms (use of {,}). Closes: #455904. + + -- Lucas Nussbaum Tue, 22 Jan 2008 13:42:23 +0100 + +flowscan (1.006-11) unstable; urgency=low + + * QA upload. + * debian/rules: Add binary-arch as a no-op. Closes: #395599. + * debian/rules: Don't ignore errors from `$(MAKE) realclean'. + * debian/control: Remove empty Recommends. + * Conforms to Standards version 3.7.2. + + -- Matej Vela Mon, 19 Nov 2007 16:41:14 +0100 + +flowscan (1.006-10) unstable; urgency=low + + * QA upload. + * Set maintainer to Debian QA Group. + + -- Luk Claes Sun, 18 Nov 2007 18:52:49 +0100 + +flowscan (1.006-9) unstable; urgency=low + + * Fixed flowscan depends on pdksh but /bin/ksh may not be pdksh (closes: #340611). + + -- Ernesto Nadir Crespo Avila Sat, 28 Jan 2006 21:28:51 -0400 + +flowscan (1.006-8) unstable; urgency=low + + * Fixed flowscan depends on debconf without | debconf-2.0 alternate (closes: #331823). + + -- Ernesto Nadir Crespo Avila Tue, 04 Oct 2005 20:26:35 -0400 + +flowscan (1.006-7) unstable; urgency=low + + * New maintainer. + + -- Ernesto Nadir Crespo Avila Wed, 24 Aug 2005 23:34:55 -0400 + +flowscan (1.006-6) unstable; urgency=low + + * New maintainer's email address. + * New uploaders. + + -- Anibal Monsalve Salazar Tue, 22 Feb 2005 16:12:42 +1100 + +flowscan (1.006-5) unstable; urgency=low + + * flowscan: not working with flow-tools (closes: #254001). + Patch by Matej Zagiba + * Created man pages for add_ds.pl, add_txrx, event2vrule, flowscan, ip2hostname and locker. + (Closes: #230470, #230472, #230473, #230474, #230475, #230476). + + -- Anibal Monsalve Salazar Sun, 27 Jun 2004 14:42:08 +1000 + +flowscan (1.006-4) unstable; urgency=low + + * Changed description to clarify its usage with flow information generated by routers. + (Closes: #234599). + * Created README.Debian and removed the debconf configuration note. + (Closes: #233895). + + -- Anibal Monsalve Salazar Tue, 09 Mar 2004 18:34:21 +1100 + +flowscan (1.006-3) unstable; urgency=low + + * MUST NOT depend on packages with lower priority values (closes: #230467, #230471). + * Tries to open config in /usr/bin (closes: #230194). + * FTBFS: Missing Build-Depends on netbase (closes: #232989). + + -- Anibal Monsalve Salazar Tue, 17 Feb 2004 11:05:15 +1100 + +flowscan (1.006-2) unstable; urgency=low + + * Initial Release (closes: #197208). + + -- Anibal Monsalve Salazar Tue, 18 Nov 2003 10:24:08 +1100 + --- flowscan-1.006.orig/debian/README.Debian +++ flowscan-1.006/debian/README.Debian @@ -0,0 +1,8 @@ +The flowscan program needs some configuration in the files in the +/etc/flowscan directory. + +You will have to edit those files manually. Comments in the files +will help you on your way. + +Examples are available in the /usr/share/doc/flowscan/examples +directory. --- flowscan-1.006.orig/debian/control +++ flowscan-1.006/debian/control @@ -0,0 +1,21 @@ +Source: flowscan +Section: net +Priority: optional +Maintainer: Guillaume Delacour +Build-Depends-Indep: perl (>= 5.6.1), rrdtool, librrds-perl, libboulder-perl, libnet-patricia-perl (>= 1.010), libconfigreader-perl, libcflow-perl (>= 1.024), libhtml-table-perl, netbase, po-debconf, ksh | mksh | pdksh | zsh, autotools-dev, libperl4-corelibs-perl | perl (<< 5.12.3-7) +Standards-Version: 3.8.1 +Homepage: http://net.doit.wisc.edu/~plonka/FlowScan/ + +Package: flowscan +Architecture: all +Depends: ${shlibs:Depends}, perl (>= 5.6.1), rrdtool, librrds-perl, libboulder-perl, libnet-patricia-perl (>= 1.010), libconfigreader-perl, libcflow-perl (>= 1.024), libhtml-table-perl, flow-tools, debconf(>=0.5) | debconf-2.0, ksh | mksh | pdksh | zsh, libperl4-corelibs-perl | perl (<< 5.12.3-7) +Suggests: fprobe +Description: flow-based IP traffic analysis and visualization tool + FlowScan is a freely-available network traffic analysis and + visualization tool which uses IP flow data to provide a continuous + near real-time view of a network's IP traffic. + . + FlowScan is a tool to monitor and graph flow information from Cisco + and Riverstone routers in near real-time. You can also use FlowScan + with flow information generated by programs like fprobe. + . --- flowscan-1.006.orig/debian/lintian-overrides +++ flowscan-1.006/debian/lintian-overrides @@ -0,0 +1 @@ +flowscan: script-with-language-extension usr/bin/add_ds.pl --- flowscan-1.006.orig/debian/copyright +++ flowscan-1.006/debian/copyright @@ -0,0 +1,24 @@ +This debian package was previously maintained by +Ernesto Nadir Crespo Avila (2009), +and now by Guillaume Delacour . + +It was downloaded from http://net.doit.wisc.edu/~plonka/FlowScan/ + +Upstream Author: + + Dave Plonka + +Copyright: + + Copyright (C) 2000 Selena M. Brewington + Copyright (C) 1999-2001 Dave Plonka + Copyright (C) 1998-2001 Dave Plonka + Copyright (C) 1996-2000 Michael R. Elkins + Copyright (C) 2000-2001 Dave Plonka + +License: + + GPL-2 + +The Debian packaging is copyright 2005, and +is licensed under the GPL, see `/usr/share/common-licenses/GPL-2'.