Blame SOURCES/arpwatch-2.1a15-extraman.patch

83d119
diff -up arpwatch-2.1a15/Makefile.in.extraman arpwatch-2.1a15/Makefile.in
83d119
--- arpwatch-2.1a15/Makefile.in.extraman	2009-12-14 18:01:27.000000000 +0100
83d119
+++ arpwatch-2.1a15/Makefile.in	2010-03-30 15:11:30.000000000 +0200
83d119
@@ -118,6 +118,10 @@ install-man: force
83d119
 	    $(DESTDIR)$(MANDEST)/man8
83d119
 	$(INSTALL) -m 644 $(srcdir)/arpsnmp.8 \
83d119
 	    $(DESTDIR)$(MANDEST)/man8
83d119
+	$(INSTALL) -m 644 $(srcdir)/arp2ethers.8 \
83d119
+	    $(DESTDIR)$(MANDEST)/man8
83d119
+	$(INSTALL) -m 644 $(srcdir)/massagevendor.8 \
83d119
+	    $(DESTDIR)$(MANDEST)/man8
83d119
 
83d119
 lint:	$(GENSRC) force
83d119
 	lint -hbxn $(SRC) | \
83d119
diff -up arpwatch-2.1a15/arp2ethers.8.extraman arpwatch-2.1a15/arp2ethers.8
83d119
--- arpwatch-2.1a15/arp2ethers.8.extraman	2010-03-30 15:12:37.000000000 +0200
83d119
+++ arpwatch-2.1a15/arp2ethers.8	2010-03-30 15:53:01.000000000 +0200
83d119
@@ -0,0 +1,60 @@
83d119
+.TH ARP2ETHERS 8
83d119
+.SH NAME
83d119
+arp2ethers \- convert arpwatch address database to ethers file format
83d119
+.SH SYNOPSIS
83d119
+.na
83d119
+.B arp2ethers
83d119
+.ad
83d119
+.SH "DESCRIPTION"
83d119
+.B arp2ethers
83d119
+converts file
83d119
+.IR arp.dat
83d119
+in the current directory into
83d119
+.BR ethers(5)
83d119
+format on
83d119
+.IR stdout .
83d119
+Usually
83d119
+.IR arp.dat
83d119
+is an ethernet/ip database file generated by
83d119
+.BR arpwatch(8) .
83d119
+The arpwatch daemon in Debian will create different 
83d119
+.IR arp.dat
83d119
+depending on its configuration. All of them will be available at 
83d119
+.IR /var/lib/arpwatch/ .
83d119
+.SH FILES
83d119
+.na
83d119
+.nh
83d119
+.nf
83d119
+/var/lib/arpwatch - default directory for arp.dat
83d119
+arp.dat - ethernet/ip address database
83d119
+.ad
83d119
+.hy
83d119
+.fi
83d119
+.SH "SEE ALSO"
83d119
+.na
83d119
+.nh
83d119
+.BR arpwatch (8),
83d119
+.BR ethers (5),
83d119
+.BR rarp (8),
83d119
+.BR arp (8),
83d119
+.ad
83d119
+.hy
83d119
+.SH BUGS
83d119
+Please send bug reports to arpwatch@ee.lbl.gov.
83d119
+.SH AUTHORS
83d119
+.LP
83d119
+Original version by Craig Leres of the Lawrence Berkeley
83d119
+National Laboratory Network Research Group, University of
83d119
+California, Berkeley, CA.
83d119
+.LP
83d119
+Modified for the Debian Project by Peter Kelemen, with
83d119
+additions from Erik Warmelink.
83d119
+.LP
83d119
+The current version is available via anonymous ftp:
83d119
+.LP
83d119
+.RS
83d119
+.I ftp://ftp.ee.lbl.gov/arpwatch.tar.gz
83d119
+.RE
83d119
+.LP
83d119
+This manual page was contributed by Hugo Graumann.
83d119
+
83d119
diff -up arpwatch-2.1a15/massagevendor.8.extraman arpwatch-2.1a15/massagevendor.8
83d119
--- arpwatch-2.1a15/massagevendor.8.extraman	2010-03-30 15:15:18.000000000 +0200
83d119
+++ arpwatch-2.1a15/massagevendor.8	2010-03-30 15:15:18.000000000 +0200
83d119
@@ -0,0 +1,91 @@
83d119
+.TH MASSAGEVENDOR 8
83d119
+.SH NAME
83d119
+massagevendor \- convert the ethernet vendor codes master list to arpwatch format
83d119
+.SH SYNOPSIS
83d119
+.na
83d119
+massagevendor
83d119
+.I vendorfile
83d119
+.SH "DESCRIPTION"
83d119
+.B massagevendor
83d119
+is a program that converts a text file containing ethernet vendor codes
83d119
+into a format suitable for use by
83d119
+.B arpwatch(8)
83d119
+and
83d119
+.B arpsnmp(8).
83d119
+The input
83d119
+.I vendorfile
83d119
+is a master text file containing vendor codes. The output
83d119
+is sent to
83d119
+.I stdout.
83d119
+Each line of the
83d119
+.I vendorfile
83d119
+is expected to have a six digit hexadecimal vendor code
83d119
+followed by spaces followed by the name of the manufacturer.
83d119
+.LP
83d119
+All ethernet devices have a unique identifier which
83d119
+includes a vendor code specifying the manufacturer of the
83d119
+device. In normal operation
83d119
+.B arpwatch(8)
83d119
+and
83d119
+.B arpsnmp(8)
83d119
+use the file
83d119
+.I ethercodes.dat
83d119
+to report this vendor code.
83d119
+.B massagevendor
83d119
+is used to generate the
83d119
+.I ethercodes.dat
83d119
+file from text files containing these vendor codes.
83d119
+.LP
83d119
+Locations where an ethernet vendor codes master text file
83d119
+can be obtained are given below.
83d119
+.SH FILES
83d119
+.na
83d119
+.nh
83d119
+.nf
83d119
+/var/lib/arpwatch - default location of the ethernet vendor list
83d119
+ethercodes.dat - file containing the list of ethernet vendor codes
83d119
+.ad
83d119
+.hy
83d119
+.fi
83d119
+.SH "SEE ALSO"
83d119
+.na
83d119
+.nh
83d119
+.BR arpwatch(8),
83d119
+.BR arpsnmp(8)
83d119
+.ad
83d119
+.hy
83d119
+.SH NOTES
83d119
+Sources for ethernet vendor codes seen in the wild are
83d119
+.LP
83d119
+.na
83d119
+.nh
83d119
+.nf
83d119
+.RS
83d119
+.I http://map-ne.com/Ethernet/vendor.html
83d119
+.I ftp://ftp.cavebear.com/pub/Ethernet.txt
83d119
+.I http://www.cavebear.com/CaveBear/Ethernet/vendor.html
83d119
+.RE
83d119
+.ad
83d119
+.hy
83d119
+.LP
83d119
+Useful for comparison or completeness are the
83d119
+ethernet vendor codes as assigned
83d119
+by the IEEE which can be found at
83d119
+.LP
83d119
+.RS
83d119
+.I http://standards.ieee.org/regauth/oui/oui.txt
83d119
+.RE
83d119
+.SH BUGS
83d119
+Please send bug reports to arpwatch@ee.lbl.gov.
83d119
+.SH AUTHORS
83d119
+Craig Leres of the
83d119
+Lawrence Berkeley National Laboratory Network Research Group,
83d119
+University of California, Berkeley, CA.
83d119
+.LP
83d119
+The current version is available via anonymous ftp:
83d119
+.LP
83d119
+.RS
83d119
+.I ftp://ftp.ee.lbl.gov/arpwatch.tar.gz
83d119
+.RE
83d119
+.LP
83d119
+This manual page was contributed by Hugo Graumann.