summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcin Juszkiewicz <hrw@openembedded.org>2005-07-28 14:22:15 +0000
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>2005-07-28 14:22:15 +0000
commit0ededd3186263bb24ff9c4ca44a8003438a4d0fe (patch)
treeb0ad6acd7f1242325f13b811daf760a8f615ec65
parent523565c483a854757fca191a6bee00b7a2241510 (diff)
parent9dc40f2bbd08be51411e4dc31ca504d95e97818b (diff)
merge of 51c9e09a8058432d791104e8438490931766eae3
and 5a333cd4bee97ad57667f94f2f17a96800af8232
-rw-r--r--packages/arpwatch/.mtn2git_empty0
-rw-r--r--packages/arpwatch/arpwatch_2.1a13.bb47
-rw-r--r--packages/arpwatch/files/.mtn2git_empty0
-rw-r--r--packages/arpwatch/files/05debian_fhs.patch103
-rw-r--r--packages/arpwatch/files/06debian_manpages.patch337
-rw-r--r--packages/arpwatch/files/arpwatch.conf13
-rw-r--r--packages/arpwatch/files/arpwatch.default7
-rw-r--r--packages/arpwatch/files/ethercodes.dat7665
-rw-r--r--packages/arpwatch/files/init.d159
-rw-r--r--packages/arpwatch/files/make.patch11
-rw-r--r--packages/inputpipe/inputpipe_svn.bb4
11 files changed, 8344 insertions, 2 deletions
diff --git a/packages/arpwatch/.mtn2git_empty b/packages/arpwatch/.mtn2git_empty
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/packages/arpwatch/.mtn2git_empty
diff --git a/packages/arpwatch/arpwatch_2.1a13.bb b/packages/arpwatch/arpwatch_2.1a13.bb
new file mode 100644
index 0000000000..45daae30f4
--- /dev/null
+++ b/packages/arpwatch/arpwatch_2.1a13.bb
@@ -0,0 +1,47 @@
+DESCRIPTION = "Ethernet/FDDI station activity monitor"
+LICENSE = "BSD"
+SECTION = "network"
+HOMEPAGE = "http://www-nrg.ee.lbl.gov/"
+RRECOMMENDS = "arpwatch-data"
+
+SRC_URI = "ftp://ftp.ee.lbl.gov/arpwatch-${PV}.tar.gz \
+ file://05debian_fhs.patch;patch=1 \
+ file://06debian_manpages.patch;patch=1 \
+ file://init.d \
+ file://arpwatch.default \
+ file://arpwatch.conf \
+ file://ethercodes.dat \
+ file://make.patch;patch=1"
+
+inherit autotools
+
+EXTRA_OEMAKE = "LDFLAGS=-L${STAGING_LIBDIR}"
+
+fakeroot do_install() {
+ install -d ${D}${bindir} ${D}${sbindir} ${D}${mandir}/man8 \
+ ${D}${sysconfdir}/default \
+ ${D}${sysconfdir}/init.d \
+ ${D}${datadir}/arpwatch
+
+ oe_runmake install DESTDIR=${D}
+ oe_runmake install-man DESTDIR=${D}
+
+ install -m 0755 ${S}/arp2ethers ${D}${sbindir}
+ install -m 0755 ${S}/arpfetch ${D}${sbindir}
+ install -m 0755 ${S}/bihourly ${D}${sbindir}
+ install -m 0755 ${S}/massagevendor ${D}${sbindir}
+
+ install -m 0644 ${S}/arp2ethers.8 ${D}${mandir}/man8
+ install -m 0644 ${S}/arpfetch.8 ${D}${mandir}/man8
+ install -m 0644 ${S}/bihourly.8 ${D}${mandir}/man8
+ install -m 0644 ${S}/massagevendor.8 ${D}${mandir}/man8
+
+ install -m 0755 ${WORKDIR}/init.d ${D}${sysconfdir}/init.d/arpwatch
+ install -m 0644 ${WORKDIR}/arpwatch.default ${D}${sysconfdir}/default/arpwatch
+ install -m 0644 ${WORKDIR}/arpwatch.conf ${D}${sysconfdir}
+
+ install -m 0644 ${WORKDIR}/ethercodes.dat ${D}${datadir}/arpwatch
+}
+
+PACKAGES =+ "arpwatch-data"
+FILES_arpwatch-data = "${datadir}/arpwatch/ethercodes.dat"
diff --git a/packages/arpwatch/files/.mtn2git_empty b/packages/arpwatch/files/.mtn2git_empty
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/packages/arpwatch/files/.mtn2git_empty
diff --git a/packages/arpwatch/files/05debian_fhs.patch b/packages/arpwatch/files/05debian_fhs.patch
new file mode 100644
index 0000000000..208c65108b
--- /dev/null
+++ b/packages/arpwatch/files/05debian_fhs.patch
@@ -0,0 +1,103 @@
+Index: arpwatch/Makefile.in
+diff -u arpwatch/Makefile.in:1.1.1.1 arpwatch/Makefile.in:1.1.1.1.10.1
+--- arpwatch/Makefile.in:1.1.1.1 Tue Apr 17 13:31:36 2001
++++ arpwatch/Makefile.in Tue Apr 17 13:53:29 2001
+@@ -31,7 +31,8 @@
+ # Pathname of directory to install the man page
+ MANDEST = @mandir@
+ # Pathname of directory to install database file
+-ARPDIR = $(prefix)/arpwatch
++ARPDIR = /var/lib/arpwatch
++ETHERCODES = /usr/share/arpwatch/ethercodes.dat
+
+ # VPATH
+ srcdir = @srcdir@
+@@ -45,7 +46,8 @@
+ PROG = arpwatch
+ CCOPT = @V_CCOPT@
+ INCLS = -I. @V_INCLS@
+-DEFS = -DDEBUG @DEFS@ -DARPDIR=\"$(ARPDIR)\" -DPATH_SENDMAIL=\"$(SENDMAIL)\"
++DEFS = -DDEBUG @DEFS@ -DARPDIR=\"$(ARPDIR)\" -DPATH_SENDMAIL=\"$(SENDMAIL)\" \
++ -DETHERCODES=\"$(ETHERCODES)\"
+
+ # Standard CFLAGS
+ CFLAGS = $(CCOPT) $(DEFS) $(INCLS)
+Index: arpwatch/arpsnmp.8
+diff -u arpwatch/arpsnmp.8:1.1.1.1 arpwatch/arpsnmp.8:1.1.1.1.10.1
+--- arpwatch/arpsnmp.8:1.1.1.1 Tue Apr 17 13:31:36 2001
++++ arpwatch/arpsnmp.8 Tue Apr 17 13:53:29 2001
+@@ -1,4 +1,4 @@
+-.\" @(#) $Id: arpsnmp.8,v 1.5 2000/09/17 20:34:41 leres Exp $ (LBL)
++.\" @(#) $Id: arpsnmp.8,v 1.5 2001/04/17 20:34:41 leres Exp $ (LBL)
+ .\"
+ .\" Copyright (c) 1996, 1997, 1999, 2000
+ .\" The Regents of the University of California. All rights reserved.
+@@ -69,9 +69,9 @@
+ .na
+ .nh
+ .nf
+-/usr/operator/arpwatch - default directory
++/var/lib/arpwatch - default directory
+ arp.dat - ethernet/ip address database
+-ethercodes.dat - vendor ethernet block list
++/usr/share/arpwatch/ethercodes.dat - vendor ethernet block list
+ .ad
+ .hy
+ .fi
+Index: arpwatch/arpwatch.8
+diff -u arpwatch/arpwatch.8:1.1.1.1 arpwatch/arpwatch.8:1.1.1.1.10.1
+--- arpwatch/arpwatch.8:1.1.1.1 Tue Apr 17 13:31:36 2001
++++ arpwatch/arpwatch.8 Tue Apr 17 13:53:29 2001
+@@ -1,4 +1,4 @@
+-.\" @(#) $Id: arpwatch.8,v 1.13 2000/10/08 20:31:25 leres Exp $ (LBL)
++.\" @(#) $Id: arpwatch.8,v 1.13 2001/04/17 20:31:25 leres Exp $ (LBL)
+ .\"
+ .\" Copyright (c) 1992, 1994, 1996, 1997, 2000
+ .\" The Regents of the University of California. All rights reserved.
+@@ -152,9 +152,9 @@
+ .na
+ .nh
+ .nf
+-/usr/operator/arpwatch - default directory
++/var/lib/arpwatch - default directory
+ arp.dat - ethernet/ip address database
+-ethercodes.dat - vendor ethernet block list
++/usr/share/arpwatch/ethercodes.dat - vendor ethernet block list
+ .ad
+ .hy
+ .fi
+Index: arpwatch/arpwatch.h
+diff -u arpwatch/arpwatch.h:1.1.1.1 arpwatch/arpwatch.h:1.1.1.1.10.1
+--- arpwatch/arpwatch.h:1.1.1.1 Tue Apr 17 13:31:36 2001
++++ arpwatch/arpwatch.h Tue Apr 17 13:53:29 2001
+@@ -1,7 +1,7 @@
+ /* @(#) $Id: arpwatch.h,v 1.29 2000/09/30 23:40:49 leres Exp $ (LBL) */
+
+ #define ARPFILE "arp.dat"
+-#define ETHERCODES "ethercodes.dat"
++/* #define ETHERCODES "ethercodes.dat" */
+ #define CHECKPOINT (15*60) /* Checkpoint time in seconds */
+
+ #define MEMCMP(a, b, n) memcmp((char *)a, (char *)b, n)
+Index: arpwatch/bihourly
+diff -u arpwatch/bihourly:1.1.1.1 arpwatch/bihourly:1.1.1.1.10.1
+--- arpwatch/bihourly:1.1.1.1 Tue Apr 17 13:31:36 2001
++++ arpwatch/bihourly Tue Apr 17 13:53:29 2001
+@@ -6,7 +6,7 @@
+ PATH=$PATH:/usr/local/sbin
+ export PATH
+ #
+-cd /usr/operator/arpwatch
++cd /var/lib/arpwatch
+ #
+ list=`cat list`
+ cname=`cat cname`
+@@ -14,7 +14,7 @@
+ #
+ alist=""
+ for r in $list; do \
+- ./arpfetch $r $cname > $r 2> $errs
++ arpfetch $r $cname > $r 2> $errs
+ if test -s $errs; then
+ echo "arpfetch $r failed:"
+ sed -e 's/^/ /' $errs
diff --git a/packages/arpwatch/files/06debian_manpages.patch b/packages/arpwatch/files/06debian_manpages.patch
new file mode 100644
index 0000000000..c999e9f149
--- /dev/null
+++ b/packages/arpwatch/files/06debian_manpages.patch
@@ -0,0 +1,337 @@
+Index: arpwatch/arp2ethers.8
+diff -u /dev/null arpwatch/arp2ethers.8:1.1.2.3
+--- /dev/null Sat Aug 14 03:19:34 2004
++++ arpwatch/arp2ethers.8 Thu Aug 12 14:37:09 2004
+@@ -0,0 +1,64 @@
++.TH ARP2ETHERS 8
++.SH NAME
++arp2ethers \- convert arpwatch address database to ethers file format
++.SH SYNOPSIS
++.na
++.B arp2ethers
++[
++.B arp.dat file
++]
++.ad
++.SH "DESCRIPTION"
++.B arp2ethers
++converts the file
++.IR /var/lib/arpwatch/arp.dat
++(or the file specified on the command line)
++into
++.BR ethers(5)
++format on
++.IR stdout .
++Usually
++.IR arp.dat
++is an ethernet/ip database file generated by
++.BR arpwatch(8) .
++The arpwatch daemon in Debian will create different
++.IR arp.dat
++depending on its configuration. All of them will be available at
++.IR /var/lib/arpwatch/ .
++.SH FILES
++.na
++.nh
++.nf
++/var/lib/arpwatch - default directory for arp.dat
++arp.dat - ethernet/ip address database
++.ad
++.hy
++.fi
++.SH "SEE ALSO"
++.na
++.nh
++.BR arpwatch (8),
++.BR ethers (5),
++.BR rarp (8),
++.BR arp (8),
++.ad
++.hy
++.SH BUGS
++Please send bug reports to arpwatch@ee.lbl.gov.
++.SH AUTHORS
++.LP
++Original version by Craig Leres of the Lawrence Berkeley
++National Laboratory Network Research Group, University of
++California, Berkeley, CA.
++.LP
++Modified for the Debian Project by Peter Kelemen, with
++additions from Erik Warmelink.
++.LP
++The current version is available via anonymous ftp:
++.LP
++.RS
++.I ftp://ftp.ee.lbl.gov/arpwatch.tar.gz
++.RE
++.LP
++This manual page was contributed by Hugo Graumann.
++
+Index: arpwatch/arpfetch.8
+diff -u /dev/null arpwatch/arpfetch.8:1.1.2.2
+--- /dev/null Sat Aug 14 03:19:34 2004
++++ arpwatch/arpfetch.8 Tue Apr 17 14:12:51 2001
+@@ -0,0 +1,63 @@
++.TH ARPFETCH 8
++.SH NAME
++arpfetch \- obtain ethernet/ip address pairings via snmp
++.SH SYNOPSIS
++.na
++arpfetch
++.I host
++.I cname
++.SH "DESCRIPTION"
++.B arpfetch
++gets pairings between ip addresses and the ethernet address of the
++corresponding network card. These pairings are retrieved from other
++network entities, like routers, by the SNMP protocol using
++.BR snmpwalk(1) .
++Mostly, this program is an agent that
++is used to get data for
++.BR arpsnmp(8) .
++This fetching of address mappings can be further automated by use of
++.BR bihourly(8) .
++.LP
++Both command arguments must be present for proper operation.
++The
++.IR host
++argument is the hostname of the network entity being queried and the
++.IR cname
++argument is the SNMP community name of the network entity.
++.LP
++The information is presented on
++.IR stdout
++in a format compatible with
++.BR arpsnmp(8)
++and
++.BR arpwatch(8) .
++.LP
++Further information about SNMP can be found in
++.BR snmpcmd(1)
++and
++.BR variables(5) .
++.SH "SEE ALSO"
++.na
++.nh
++.BR arpsnmp (8),
++.BR arpwatch(8),
++.BR bihourly (8),
++.BR snmpwalk (1),
++.BR snmpcmd (1),
++.BR variables (5)
++.ad
++.hy
++.SH BUGS
++Please send bug reports to arpwatch@ee.lbl.gov.
++.SH AUTHORS
++Craig Leres of the
++Lawrence Berkeley National Laboratory Network Research Group,
++University of California, Berkeley, CA.
++.LP
++The current version is available via anonymous ftp:
++.LP
++.RS
++.I ftp://ftp.ee.lbl.gov/arpwatch.tar.gz
++.RE
++.LP
++This manual page was contributed by Hugo Graumann.
+Index: arpwatch/arpsnmp.8
+diff -u arpwatch/arpsnmp.8:1.1.1.1 arpwatch/arpsnmp.8:1.1.1.1.16.2
+--- arpwatch/arpsnmp.8:1.1.1.1 Tue Apr 17 13:31:36 2001
++++ arpwatch/arpsnmp.8 Tue Apr 17 14:53:57 2001
+@@ -22,7 +22,7 @@
+ .TH ARPSNMP 8 "17 September 2000"
+ .UC 4
+ .SH NAME
+-arpsnmp - keep track of ethernet/ip address pairings
++arpsnmp \- keep track of ethernet/ip address pairings
+ .SH SYNOPSIS
+ .B arpsnmp
+ [
+Index: arpwatch/arpwatch.8
+diff -u arpwatch/arpwatch.8:1.1.1.1 arpwatch/arpwatch.8:1.1.1.1.16.2
+--- arpwatch/arpwatch.8:1.1.1.1 Tue Apr 17 13:31:36 2001
++++ arpwatch/arpwatch.8 Tue Apr 17 14:53:57 2001
+@@ -22,7 +22,7 @@
+ .TH ARPWATCH 8 "8 October 2000"
+ .UC 4
+ .SH NAME
+-arpwatch - keep track of ethernet/ip address pairings
++arpwatch \- keep track of ethernet/ip address pairings
+ .SH SYNOPSIS
+ .na
+ .B arpwatch
+Index: arpwatch/bihourly.8
+diff -u /dev/null arpwatch/bihourly.8:1.1.2.2
+--- /dev/null Sat Aug 14 03:19:34 2004
++++ arpwatch/bihourly.8 Tue Apr 17 14:12:51 2001
+@@ -0,0 +1,73 @@
++.TH BIHOURLY 8
++.SH NAME
++bihourly \- track ethernet/ip address pairs
++.SH SYNOPSIS
++.na
++bihourly
++.SH "DESCRIPTION"
++.B bihourly
++is a script that automates the operation of
++.B arpsnmp(8)
++by executing
++.B arpfetch(8)
++on a series of hostnames and then
++sending the results to
++.B arpsnmp(8)
++for analysis.
++.LP
++The result is a report of the current pairings
++between ip addresses and the corresponding ethernet address
++of the network hardware as reported by
++.B snmpwalk(8).
++Activity
++is logged and noted changes are reported by email.
++.LP
++In its working directory
++.B bihourly
++expects a file named
++.IR list
++which contains a space separated list of hostnames to be queried
++and a file named
++.IR cname
++which holds the SNMP community name by which to query these hosts.
++.LP
++Contrary to the name,
++.B bihourly
++does not run twice every hour. It
++runs once each time it is invoked. For repeated operation
++.B bihourly
++must be invoked on a periodic basis by a program like
++.B cron(1).
++.SH FILES
++.na
++.nh
++.nf
++/var/lib/arpwatch - default working directory
++list - file containing names of hosts to query
++cname - file containing the SNMP community name by which to query
++.ad
++.hy
++.fi
++.SH "SEE ALSO"
++.na
++.nh
++.BR arpsnmp (8),
++.BR arpfetch(8),
++.BR snmpwalk (8),
++.BR cron (8)
++.ad
++.hy
++.SH BUGS
++Please send bug reports to arpwatch@ee.lbl.gov.
++.SH AUTHORS
++Craig Leres of the
++Lawrence Berkeley National Laboratory Network Research Group,
++University of California, Berkeley, CA.
++.LP
++The current version is available via anonymous ftp:
++.LP
++.RS
++.I ftp://ftp.ee.lbl.gov/arpwatch.tar.gz
++.RE
++.LP
++This manual page was contributed by Hugo Graumann.
+Index: arpwatch/massagevendor.8
+diff -u /dev/null arpwatch/massagevendor.8:1.1.2.2
+--- /dev/null Sat Aug 14 03:19:34 2004
++++ arpwatch/massagevendor.8 Tue Apr 17 14:12:51 2001
+@@ -0,0 +1,91 @@
++.TH MASSAGEVENDOR 8
++.SH NAME
++massagevendor \- convert the ethernet vendor codes master list to arpwatch format
++.SH SYNOPSIS
++.na
++massagevendor
++.I vendorfile
++.SH "DESCRIPTION"
++.B massagevendor
++is a program that converts a text file containing ethernet vendor codes
++into a format suitable for use by
++.B arpwatch(8)
++and
++.B arpsnmp(8).
++The input
++.I vendorfile
++is a master text file containing vendor codes. The output
++is sent to
++.I stdout.
++Each line of the
++.I vendorfile
++is expected to have a six digit hexadecimal vendor code
++followed by spaces followed by the name of the manufacturer.
++.LP
++All ethernet devices have a unique identifier which
++includes a vendor code specifying the manufacturer of the
++device. In normal operation
++.B arpwatch(8)
++and
++.B arpsnmp(8)
++use the file
++.I ethercodes.dat
++to report this vendor code.
++.B massagevendor
++is used to generate the
++.I ethercodes.dat
++file from text files containing these vendor codes.
++.LP
++Locations where an ethernet vendor codes master text file
++can be obtained are given below.
++.SH FILES
++.na
++.nh
++.nf
++/usr/share/arpwatch - default location of the ethernet vendor list
++ethercodes.dat - file containing the list of ethernet vendor codes
++.ad
++.hy
++.fi
++.SH "SEE ALSO"
++.na
++.nh
++.BR arpwatch(8),
++.BR arpsnmp(8)
++.ad
++.hy
++.SH NOTES
++Sources for ethernet vendor codes seen in the wild are
++.LP
++.na
++.nh
++.nf
++.RS
++.I http://map-ne.com/Ethernet/vendor.html
++.I ftp://ftp.cavebear.com/pub/Ethernet.txt
++.I http://www.cavebear.com/CaveBear/Ethernet/vendor.html
++.RE
++.ad
++.hy
++.LP
++Useful for comparison or completeness are the
++ethernet vendor codes as assigned
++by the IEEE which can be found at
++.LP
++.RS
++.I http://standards.ieee.org/regauth/oui/oui.txt
++.RE
++.SH BUGS
++Please send bug reports to arpwatch@ee.lbl.gov.
++.SH AUTHORS
++Craig Leres of the
++Lawrence Berkeley National Laboratory Network Research Group,
++University of California, Berkeley, CA.
++.LP
++The current version is available via anonymous ftp:
++.LP
++.RS
++.I ftp://ftp.ee.lbl.gov/arpwatch.tar.gz
++.RE
++.LP
++This manual page was contributed by Hugo Graumann.
diff --git a/packages/arpwatch/files/arpwatch.conf b/packages/arpwatch/files/arpwatch.conf
new file mode 100644
index 0000000000..173f9d18b3
--- /dev/null
+++ b/packages/arpwatch/files/arpwatch.conf
@@ -0,0 +1,13 @@
+# /etc/arpwatch.conf: Debian-specific way to watch multiple interfaces.
+# Format of this configuration file is:
+#
+#<dev1> <arpwatch options for dev1>
+#<dev2> <arpwatch options for dev2>
+#...
+#<devN> <arpwatch options for devN>
+#
+# You can set global options for all interfaces by editing
+# /etc/default/arpwatch
+
+#eth0 -m root+eth0
+#eth1 -m root+eth1
diff --git a/packages/arpwatch/files/arpwatch.default b/packages/arpwatch/files/arpwatch.default
new file mode 100644
index 0000000000..b0a7d8f9ff
--- /dev/null
+++ b/packages/arpwatch/files/arpwatch.default
@@ -0,0 +1,7 @@
+# Global options for arpwatch(8).
+
+# Debian: don't report bogons, don't use PROMISC.
+ARGS="-N -p"
+
+# Debian: run as `arpwatch' user. Empty this to run as root.
+RUNAS="arpwatch"
diff --git a/packages/arpwatch/files/ethercodes.dat b/packages/arpwatch/files/ethercodes.dat
new file mode 100644
index 0000000000..d1d679b828
--- /dev/null
+++ b/packages/arpwatch/files/ethercodes.dat
@@ -0,0 +1,7665 @@
+0:0:0 Xerox Corporation
+0:0:1 Xerox Corporation [Super LAN-2U]
+0:0:10 Sytek Inc. [Hughes LAN Systems (formerly Sytek)]
+0:0:11 Normerel Systemes [Tektronix]
+0:0:12 Information Technology Limited
+0:0:13 Camex
+0:0:14 Netronix
+0:0:15 Datapoint Corporation
+0:0:16 du Pont Pixel Systems
+0:0:17 Tekelec
+0:0:18 Webster Computer Corporation [Webster Computer Corporation; Appletalk/Ethernet Gateway]
+0:0:19 Applied Dynamics International
+0:0:1a Advanced Micro Devices [AMD (?)]
+0:0:1b Novell Inc. [Novell (now Eagle Technology)]
+0:0:1c Bell Technologies [JDR Microdevices generic, NE2000 drivers]
+0:0:1d Cabletron Systems, Inc. [Cabletron]
+0:0:1e Telsist Industria Electronica
+0:0:1f Telco Systems, Inc. [Cryptall Communications Corp.]
+0:0:2 Xerox Corporation [BBN (was internal usage only, no longer used)]
+0:0:20 Dataindustrier Diab AB [DIAB (Data Intdustrier AB)]
+0:0:21 Sureman Comp. & Commun. Corp. [SC&C (PAM Soft&Hardware also reported)]
+0:0:22 Visual Technology Inc. [Visual Technology]
+0:0:23 ABB Industrial Systems AB [ABB Automation AB, Dept. Q]
+0:0:24 Connect AS [Olicom]
+0:0:25 Ramtek Corp.
+0:0:26 SHA-KEN Co., Ltd.
+0:0:27 Japan Radio Company
+0:0:28 Prodigy Systems Corporation
+0:0:29 IMC Networks Corp. [IMC]
+0:0:2a TRW - Sedd/INP [TRW]
+0:0:2b Crisp Automation, Inc
+0:0:2c Autotote Limited [NRC - Network Resources Corporation - Multi Gate Hub1+, Hub2, etc]
+0:0:2d Chromatics Inc
+0:0:2e Societe Evira
+0:0:2f Timeplex Inc.
+0:0:3 Xerox Corporation
+0:0:30 VG Laboratory Systems Ltd
+0:0:31 Qpsx Communications Pty Ltd
+0:0:32 Marconi plc [GPT Limited (reassigned from GEC Computers Ltd)]
+0:0:33 Egan Machinery Company
+0:0:34 Network Resources Corporation
+0:0:35 Spectragraphics Corporation
+0:0:36 Atari Corporation
+0:0:37 Oxford Metrics Limited [Oxford Metrics Ltd]
+0:0:38 CSS Labs
+0:0:39 Toshiba Corporation
+0:0:3a Chyron Corporation
+0:0:3b i Controls, Inc. [Hyundai/Axil Sun clones]
+0:0:3c Auspex Systems Inc. [Auspex]
+0:0:3d Unisys [AT&T]
+0:0:3e Simpact
+0:0:3f Syntrex, Inc.
+0:0:4 Xerox Corporation
+0:0:40 Applicon, Inc.
+0:0:41 ICE Corporation
+0:0:42 Metier Management Systems Ltd.
+0:0:43 Micro Technology
+0:0:44 Castelle Corporation [Castelle]
+0:0:45 Ford Aerospace & Comm. Corp.
+0:0:46 Olivetti North America [ISC-Bunker Ramo, An Olivetti Company]
+0:0:47 Nicolet Instruments Corp.
+0:0:48 Seiko Epson Corporation [Epson]
+0:0:49 Apricot Computers, Ltd [Apricot Ltd.]
+0:0:4a ADC Codenoll Technology Corp.
+0:0:4b ICL Data OY [APT; -ICL also reported]
+0:0:4c NEC Corporation
+0:0:4d DCI Corporation
+0:0:4e Ampex Corporation
+0:0:4f Logicraft, Inc. [Logicraft 386-Ware P.C. Emulator]
+0:0:5 Xerox Corporation
+0:0:50 Radisys Corporation
+0:0:51 HOB Electronic GmbH & Co. KG
+0:0:52 Intrusion.com, Inc. [Optical Data Systems]
+0:0:53 Compucorp
+0:0:54 Modicon, Inc.
+0:0:55 Commissariat A L`Energie Atom. [AT&T]
+0:0:56 DR. B. Struck
+0:0:57 Scitex Corporation Ltd.
+0:0:58 Racore Computer Products Inc.
+0:0:59 Hellige GmbH
+0:0:5a Syskonnect GmbH [Xerox 806 (unregistered)]
+0:0:5b Eltec Elektronik AG [Eltec]
+0:0:5c Telematics International Inc.
+0:0:5d CS Telecom [RCE]
+0:0:5e USC Information Sciences Inst [U.S. Department of Defense (IANA)]
+0:0:5f Sumitomo Electric Ind., Ltd. [Sumitomo]
+0:0:6 Xerox Corporation
+0:0:60 Kontron Elektronik GmbH
+0:0:61 Gateway Communications
+0:0:62 Bull HN Information Systems [Honeywell]
+0:0:63 DR.ING.Seufert GmbH [Hewlett-Packard Lan Probe]
+0:0:64 Yokogawa Digital Computer Corp
+0:0:65 Network Associates, Inc. [Network General]
+0:0:66 Talaris Systems, Inc. [Talaris]
+0:0:67 Soft * Rite, Inc.
+0:0:68 Rosemount Controls
+0:0:69 Concord Communications Inc [Concord Communications, Inc (although someone said Silicon Graphics)]
+0:0:6a Computer Consoles Inc.
+0:0:6b Silicon Graphics Inc./Mips [MIPS]
+0:0:6c Private
+0:0:6d Cray Communications, Ltd. [Case]
+0:0:6e Artisoft, Inc.
+0:0:6f Madge Ltd. [Madge Networks Ltd. Token-ring adapters]
+0:0:7 Xerox Corporation
+0:0:70 HCL Limited
+0:0:71 Adra Systems Inc.
+0:0:72 Miniware Technology
+0:0:73 Siecor Corporation [Du Pont]
+0:0:74 Ricoh Company Ltd.
+0:0:75 Nortel Networks [Bell Northern Research (BNR)]
+0:0:76 Abekas Video System
+0:0:77 Interphase Corporation [Interphase [Used in other systems, e.g. MIPS, Motorola]]
+0:0:78 Labtam Limited [Labtam Australia]
+0:0:79 Networth Incorporated [Networth Incorporated; [bought by Compaq, used in Netelligent series]]
+0:0:7a Dana Computer Inc. [Ardent]
+0:0:7b Research Machines
+0:0:7c Ampere Incorporated
+0:0:7d Sun Microsystems, Inc. [Cray Research Superservers,Inc [Also Harris (3M) (old)]]
+0:0:7e Clustrix Corporation [Net FRAME multiprocessor network servers]
+0:0:7f Linotype-Hell AG [Linotype-Hell AG Linotronic typesetters]
+0:0:8 Xerox Corporation
+0:0:80 Cray Communications A/S [Cray Communications (formerly Dowty Network Services); [Also shows as "Harris (3M) (new)" and/or "Imagen(?)" elsewhere]]
+0:0:81 Bay Networks [Synoptics]
+0:0:82 Lectra Systemes SA
+0:0:83 Tadpole Technology PLC [Tadpole Technology [had Optical Data Systems which is wrong according to both]]
+0:0:84 Supernet [Aquila (?), ADI Systems Inc.(?)]
+0:0:85 Canon Inc.
+0:0:86 Megahertz Corporation [Gateway Communications Inc. (then Megahertz & now 3com)]
+0:0:87 Hitachi, Ltd. [Hitachi]
+0:0:88 Computer Network Tech. Corp.
+0:0:89 Cayman Systems Inc. [Cayman Systems Gatorbox]
+0:0:8a Datahouse Information Systems
+0:0:8b Infotron
+0:0:8c Alloy Computer Products (Australia) Pty Ltd
+0:0:8d Verdix Corporation
+0:0:8e Solbourne Computer, Inc. [Solbourne(?), Jupiter(?) (I've had confirming mail on Solbourne)]
+0:0:8f Raytheon Company
+0:0:9 Xerox Corporation [powerpipes?]
+0:0:90 Microcom
+0:0:91 Anritsu Corporation
+0:0:92 Cogent Data Technologies [Unisys, Cogent (both reported)]
+0:0:93 Proteon Inc. [Proteon]
+0:0:94 Asante Technologies [Asante MAC]
+0:0:95 Sony Tektronix Corp. [Sony/Tektronix]
+0:0:96 Marconi Electronics Ltd.
+0:0:97 Epoch Systems [Epoch]
+0:0:98 Crosscomm Corporation [Cross Com]
+0:0:99 MTX, Inc. [Memorex Telex Corporations]
+0:0:9a RC Computer A/S
+0:0:9b Information International, Inc
+0:0:9c Rolm MIL-Spec Computers
+0:0:9d Locus Computing Corporation
+0:0:9e Marli S.A.
+0:0:9f Ameristar Technologies Inc. [Ameristar Technology]
+0:0:a Omron Tateisi Electronics Co.
+0:0:a0 Tokyo Sanyo Electric Co. Ltd. [Sanyo Electronics]
+0:0:a1 Marquette Electric Co.
+0:0:a2 Bay Networks [Wellfleet]
+0:0:a3 Network Application Technology [Network Application Technology (NAT)]
+0:0:a4 Acorn Computers Limited [Acorn]
+0:0:a5 Compatible Systems Corp. [Compatible Systems Corporation]
+0:0:a6 Network General Corporation [Network General (internal assignment, not for products)]
+0:0:a7 Network Computing Devices Inc. [Network Computing Devices (NCD); X-terminals]
+0:0:a8 Stratus Computer Inc.
+0:0:a9 Network Systems Corp. [Network Systems]
+0:0:aa Xerox Corporation [Xerox Xerox machines]
+0:0:ab Logic Modeling Corporation
+0:0:ac Conware Computer Consulting [Conware Netzpartner [had Apollo, claimed incorrect]]
+0:0:ad Bruker Instruments Inc.
+0:0:ae Dassault Electronique [Dassault Automatismes et Telecommunications]
+0:0:af Nuclear Data Instrumentation [Nuclear Data Acquisition Interface Modules (AIM)]
+0:0:b Matrix Corporation
+0:0:b0 RND-RAD Network Devices
+0:0:b1 Alpha Microsystems Inc.
+0:0:b2 Televideo Systems, Inc.
+0:0:b3 Cimlinc Incorporated [CIMLinc]
+0:0:b4 Edimax Computer Company [Edimax]
+0:0:b5 Datability Software Sys. Inc. [Datability Terminal Servers]
+0:0:b6 Micro-Matic Research
+0:0:b7 Dove Computer Corporation [Dove Fastnet]
+0:0:b8 Seikosha Co., Ltd.
+0:0:b9 Mcdonnell Douglas Computer Sys
+0:0:ba Siig, Inc.
+0:0:bb TRI-Data [TRI-DATA Systems Inc. Netway products, 3274 emulators]
+0:0:bc Allen-Bradley Co. Inc. [Allen-Bradley]
+0:0:bd Mitsubishi Cable Company
+0:0:be The NTI Group
+0:0:bf Symmetric Computer Systems
+0:0:c Cisco Systems, Inc. [Cisco]
+0:0:c0 Western Digital Corporation [Western Digital now SMC (Std. Microsystems Corp.)]
+0:0:c1 Madge Ltd. [Olicom A/S]
+0:0:c2 Information Presentation Tech.
+0:0:c3 Harris Corp Computer Sys Div
+0:0:c4 Waters Div. of Millipore
+0:0:c5 Farallon Computing/Netopia [Farallon Computing Inc]
+0:0:c6 Eon Systems [HP Intelligent Networks Operation (formerly Eon Systems)]
+0:0:c7 Arix Corporation
+0:0:c8 Altos Computer Systems [Altos]
+0:0:c9 Emulex Corporation [Emulex Terminal Servers, Print Servers]
+0:0:ca Applitek [LANcity Cable Modems (now owned by Bay Networks)]
+0:0:cb Compu-Shack Electronic GmbH
+0:0:cc Densan Co., Ltd.
+0:0:cd Allied Telesyn Research Ltd. [Industrial Research Limited]
+0:0:ce Megadata Corp.
+0:0:cf Hayes Microcomputer Products
+0:0:d Fibronics Ltd.
+0:0:d0 Develcon Electronics Ltd.
+0:0:d1 Adaptec Incorporated [Adaptec, Inc. "Nodem" product]
+0:0:d2 SBE, Inc.
+0:0:d3 Wang Laboratories Inc. [Wang Labs]
+0:0:d4 Pure Data Ltd. [Pure Data]
+0:0:d5 Micrognosis International
+0:0:d6 Punch Line Holding
+0:0:d7 Dartmouth College [Dartmouth College (NED Router)]
+0:0:d8 Novell, Inc. [old Novell NE1000's (before about 1987?) (also 3Com)]
+0:0:d9 Nippon Telegraph & Telephone
+0:0:da Atex
+0:0:db British Telecommunications PLC
+0:0:dc Hayes Microcomputer Products
+0:0:dd TCL Incorporated [Gould]
+0:0:de Cetia [Unigraph]
+0:0:df Bell & Howell Pub Sys Div
+0:0:e Fujitsu Limited [Fujitsu]
+0:0:e0 Quadram Corp.
+0:0:e1 Grid Systems [Hitachi (laptop built-in)]
+0:0:e2 Acer Technologies Corp. [Acer Counterpoint]
+0:0:e3 Integrated Micro Products Ltd
+0:0:e4 IN2 Groupe Intertechnique [mips?]
+0:0:e5 Sigmex Ltd.
+0:0:e6 Aptor Produits de Comm Indust
+0:0:e7 Star Gate Technologies
+0:0:e8 Accton Technology Corp. [Accton Technology Corporation]
+0:0:e9 Isicad, Inc.
+0:0:ea Upnod AB
+0:0:eb Matsushita Comm. Ind. Co. Ltd.
+0:0:ec Microprocess
+0:0:ed April
+0:0:ee Network Designers, Ltd. [Network Designers Limited [also KNX Ltd, a former division]]
+0:0:ef KTI [Alantec (now owned by Fore Systems)]
+0:0:f Next, Inc. [Ne XT]
+0:0:f0 Samsung Electronics Co., Ltd. [Samsung]
+0:0:f1 Magna Computer Corporation
+0:0:f2 Spider Communications [Spider Communications (Montreal, not Spider Systems)]
+0:0:f3 Gandalf Data Limited [Gandalf Data Ltd. - Canada]
+0:0:f4 Allied Telesyn International [Allied Telesis, Inc.]
+0:0:f5 Diamond Sales Limited
+0:0:f6 Applied Microsystems Corp. [A.M.C. (Applied Microsystems Corp.)]
+0:0:f7 Youth Keep Enterprise Co Ltd
+0:0:f8 Digital Equipment Corporation [DEC]
+0:0:f9 Quotron Systems Inc.
+0:0:fa Microsage Computer Systems Inc
+0:0:fb Rechner Zur Kommunikation
+0:0:fc Meiko
+0:0:fd High Level Hardware [High Level Hardware (Orion, UK)]
+0:0:fe Annapolis Micro Systems
+0:0:ff Camtec Electronics Ltd. [Camtec Electronics (UK) Ltd.]
+0:10:0 Cable Television Laboratories, Inc.
+0:10:1 MCK Communications
+0:10:10 Initio Corporation
+0:10:11 Cisco Systems, Inc. [Cisco Systems Cisco 75xx]
+0:10:12 Processor Systems (I) PVT Ltd
+0:10:13 Industrial Computer Source
+0:10:14 Cisco Systems, Inc.
+0:10:15 Oomon Inc.
+0:10:16 T.Sqware
+0:10:17 Micos GmbH
+0:10:18 Broadcom Corporation
+0:10:19 Sirona Dental Systems GmbH & Co. KG
+0:10:1a Picturetel Corp.
+0:10:1b Cornet Technology, Inc.
+0:10:1c OHM Technologies Intl, LLC
+0:10:1d Winbond Electronics Corp.
+0:10:1e Matsushita Electronic Instruments Corp.
+0:10:1f Cisco Systems, Inc. [Cisco Systems Catalyst 2901]
+0:10:2 Actia
+0:10:20 Welch Allyn, Data Collection
+0:10:21 Encanto Networks, Inc.
+0:10:22 Satcom Media Corporation
+0:10:23 Flowwise Networks, Inc.
+0:10:24 Nagoya Electric Works Co., Ltd
+0:10:25 Grayhill Inc.
+0:10:26 Accelerated Networks, Inc.
+0:10:27 L-3 Communications East
+0:10:28 Computer Technica, Inc.
+0:10:29 Cisco Systems, Inc. [Cisco Systems Catalyst 5000]
+0:10:2a ZF Microsystems, Inc.
+0:10:2b Umax Data Systems, Inc.
+0:10:2c Lasat Networks A/S
+0:10:2d Hitachi Software Engineering
+0:10:2e Network Systems & Technologies PVT. Ltd.
+0:10:2f Cisco Systems, Inc. [Cisco Systems Cisco 5000]
+0:10:3 Imatron, Inc.
+0:10:30 Wi-LAN, Inc.
+0:10:31 Objective Communications, Inc.
+0:10:32 Alta Technology
+0:10:33 Accesslan Communications, Inc.
+0:10:34 GNP Computers
+0:10:35 Elitegroup Computer Systems Co., Ltd
+0:10:36 Inter-TEL Integrated Systems
+0:10:37 CYQ've Technology Co., Ltd.
+0:10:38 Micro Research Institute, Inc.
+0:10:39 Vectron Systems AG
+0:10:3a Diamond Network Tech
+0:10:3b Hippi Networking Forum
+0:10:3c IC Ensemble, Inc.
+0:10:3d Phasecom, Ltd.
+0:10:3e Netschools Corporation
+0:10:3f Tollgrade Communications, Inc.
+0:10:4 The Brantley Coile Company,Inc
+0:10:40 Intermec Corporation
+0:10:41 Bristol Babcock, Inc.
+0:10:42 Alacritech
+0:10:43 A2 Corporation
+0:10:44 Innolabs Corporation
+0:10:45 Nortel Networks
+0:10:46 Alcorn Mcbride Inc.
+0:10:47 Echo Eletric Co. Ltd.
+0:10:48 Htrc Automation, Inc.
+0:10:49 Shoreline Teleworks, Inc.
+0:10:4a The Parvuc Corporation
+0:10:4b 3com Corporation [3Com 3C905-TX PCI]
+0:10:4c Computer Access Technology
+0:10:4d Surtec Industries, Inc.
+0:10:4e Ceologic
+0:10:4f Storage Technology Corporation
+0:10:5 UEC Commercial
+0:10:50 Rion Co., Ltd.
+0:10:51 Cmicro Corporation
+0:10:52 Mettler-Toledo (Albstadt) GmbH
+0:10:53 Computer Technology Corp.
+0:10:54 Cisco Systems, Inc.
+0:10:55 Fujitsu Microelectronics, Inc.
+0:10:56 Sodick Co., Ltd.
+0:10:57 Rebel.com, Inc.
+0:10:58 Arrowpoint Communications
+0:10:59 Diablo Research Co. LLC
+0:10:5a 3com Corporation [3Com Fast Etherlink XL in a Gateway 2000]
+0:10:5b Net Insight AB
+0:10:5c Quantum Designs (H.K.) Ltd.
+0:10:5d Draeger Medical
+0:10:5e Hekimian Laboratories, Inc.
+0:10:5f in-Snec
+0:10:6 Thales Contact Solutions Ltd.
+0:10:60 Billionton Systems, Inc. [Billington Novell NE200 Compatible]
+0:10:61 Hostlink Corp.
+0:10:62 NX Server, Ilnc.
+0:10:63 Starguide Digital Networks
+0:10:64 Dnpg, LLC
+0:10:65 Radyne Corporation
+0:10:66 Advanced Control Systems, Inc.
+0:10:67 Redback Networks, Inc.
+0:10:68 Comos Telecom
+0:10:69 Helioss Communications, Inc.
+0:10:6a Digital Microwave Corporation
+0:10:6b Sonus Networks, Inc.
+0:10:6c Infratec Plus GmbH
+0:10:6d Integrity Communications, Inc.
+0:10:6e Tadiran Com. Ltd.
+0:10:6f Trenton Technology Inc.
+0:10:7 Cisco Systems, Inc. [Cisco Systems Catalyst 1900]
+0:10:70 Caradon Trend Ltd.
+0:10:71 Advanet Inc.
+0:10:72 GVN Technologies, Inc.
+0:10:73 Technobox, Inc.
+0:10:74 Aten International Co., Ltd.
+0:10:75 Maxtor Corporation
+0:10:76 Eurem GmbH
+0:10:77 SAF Drive Systems, Ltd.
+0:10:78 Nuera Communications, Inc.
+0:10:79 Cisco Systems, Inc. [Cisco 5500 Router]
+0:10:7a Ambicom, Inc. [Ambicom (was Tandy?)]
+0:10:7b Cisco Systems, Inc. [Cisco Systems]
+0:10:7c P-Com, Inc.
+0:10:7d Aurora Communications, Ltd.
+0:10:7e Bachmann Electronic GmbH
+0:10:7f Crestron Electronics, Inc.
+0:10:8 Vienna Systems Corporation
+0:10:80 Metawave Communications
+0:10:81 DPS, Inc.
+0:10:82 JNA Telecommunications Limited
+0:10:83 Hewlett-Packard Company [HP-UX E 9000/889]
+0:10:84 K-BOT Communications
+0:10:85 Polaris Communications, Inc.
+0:10:86 Atto Technology, Inc.
+0:10:87 Xstreamis PLC
+0:10:88 American Networks Inc.
+0:10:89 Websonic
+0:10:8a Teralogic, Inc.
+0:10:8b Laseranimation Sollinger GmbH
+0:10:8c Fujitsu Telecommunications Europe, Ltd.
+0:10:8d Johnson Controls, Inc.
+0:10:8e Hugh Symons Concept Technologies Ltd.
+0:10:8f Raptor Systems
+0:10:9 Horo Quartz
+0:10:90 Cimetrics, Inc.
+0:10:91 NO Wires Needed BV
+0:10:92 Netcore Inc.
+0:10:93 CMS Computers, Ltd.
+0:10:94 Performance Analysis Broadband, Spirent plc
+0:10:95 Thompson Inc.
+0:10:96 Tracewell Systems, Inc.
+0:10:97 Winnet Metropolitan Communications Systems, Inc.
+0:10:98 Starnet Technologies, Inc.
+0:10:99 Innomedia, Inc.
+0:10:9a Netline
+0:10:9b Vixel Corporation
+0:10:9c M-System Co., Ltd.
+0:10:9d Clarinet Systems, Inc.
+0:10:9e Aware, Inc.
+0:10:9f Pavo, Inc.
+0:10:a Williams Communications Group
+0:10:a0 Innovex Technologies, Inc.
+0:10:a1 Kendin Semiconductor, Inc.
+0:10:a2 TNS
+0:10:a3 Omnitronix, Inc.
+0:10:a4 Xircom [Xircom Real Port 10/100 PC Card]
+0:10:a5 Oxford Instruments
+0:10:a6 Cisco Systems, Inc. [Cisco]
+0:10:a7 Unex Technology Corporation
+0:10:a8 Reliance Computer Corp.
+0:10:a9 Adhoc Technologies
+0:10:aa Media4, Inc.
+0:10:ab Koito Industries, Ltd.
+0:10:ac Imci Technologies
+0:10:ad Softronics USB, Inc.
+0:10:ae Shinko Electric Industries Co.
+0:10:af TAC Systems, Inc.
+0:10:b Cisco Systems, Inc. [Cisco Systems]
+0:10:b0 Meridian Technology Corp.