From 7f57c20dc7dfc8e395156c2bc4179be4b08cdeef Mon Sep 17 00:00:00 2001 From: Rod Whitby Date: Tue, 26 Jul 2005 04:00:18 +0000 Subject: Enabled INPUT and USB_HID modules in the OpenSlug kernel --- packages/linux/nslu2-kernel_2.6.12.2.bb | 2 +- packages/linux/openslug-kernel-2.6.12.2/defconfig | 37 +++++++++++++++++++++-- 2 files changed, 35 insertions(+), 4 deletions(-) diff --git a/packages/linux/nslu2-kernel_2.6.12.2.bb b/packages/linux/nslu2-kernel_2.6.12.2.bb index 6fbb5d02ae..d72015c29a 100644 --- a/packages/linux/nslu2-kernel_2.6.12.2.bb +++ b/packages/linux/nslu2-kernel_2.6.12.2.bb @@ -1,5 +1,5 @@ # Kernel for NSLU2 -PR = "r3" +PR = "r4" include nslu2-kernel.inc # N2K_EXTRA_PATCHES - list of patches to apply (can include diff --git a/packages/linux/openslug-kernel-2.6.12.2/defconfig b/packages/linux/openslug-kernel-2.6.12.2/defconfig index eb5be45af5..ba3744e2f5 100644 --- a/packages/linux/openslug-kernel-2.6.12.2/defconfig +++ b/packages/linux/openslug-kernel-2.6.12.2/defconfig @@ -618,12 +618,30 @@ CONFIG_NETCONSOLE=m # # Input device support # -# CONFIG_INPUT is not set +CONFIG_INPUT=m + +# +# Userland interfaces +# +CONFIG_INPUT_MOUSEDEV=n +# CONFIG_INPUT_JOYDEV is not set +# CONFIG_INPUT_TSDEV is not set +# CONFIG_INPUT_EVDEV is not set +# CONFIG_INPUT_EVBUG is not set + +# +# Input Device Drivers +# +CONFIG_INPUT_KEYBOARD=n +CONFIG_INPUT_MOUSE=n +# CONFIG_INPUT_JOYSTICK is not set +# CONFIG_INPUT_TOUCHSCREEN is not set +# CONFIG_INPUT_MISC is not set # # Hardware I/O ports # -# CONFIG_SERIO is not set +CONFIG_SERIO=n # CONFIG_GAMEPORT is not set # @@ -903,11 +921,24 @@ CONFIG_USB_STORAGE=y # # USB Input Devices # -# CONFIG_USB_HID is not set +CONFIG_USB_HID=m +CONFIG_USB_HIDINPUT=y +# CONFIG_HID_FF is not set +CONFIG_USB_HIDDEV=y # # USB HID Boot Protocol drivers # +# CONFIG_USB_KBD is not set +# CONFIG_USB_MOUSE is not set +# CONFIG_USB_AIPTEK is not set +# CONFIG_USB_WACOM is not set +# CONFIG_USB_KBTAB is not set +# CONFIG_USB_POWERMATE is not set +# CONFIG_USB_MTOUCH is not set +# CONFIG_USB_EGALAX is not set +# CONFIG_USB_XPAD is not set +# CONFIG_USB_ATI_REMOTE is not set # # USB Imaging devices -- cgit v1.2.3 From 2a4e6ec8d95359fb115611c3d44131faf5fddae7 Mon Sep 17 00:00:00 2001 From: Marcin Juszkiewicz Date: Thu, 28 Jul 2005 13:25:43 +0000 Subject: updated libssh to 0.11 --- packages/libssh/libssh_0.1.bb | 33 --------------------------------- packages/libssh/libssh_0.11.bb | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 33 insertions(+), 33 deletions(-) delete mode 100644 packages/libssh/libssh_0.1.bb create mode 100644 packages/libssh/libssh_0.11.bb diff --git a/packages/libssh/libssh_0.1.bb b/packages/libssh/libssh_0.1.bb deleted file mode 100644 index 0d3cd17d26..0000000000 --- a/packages/libssh/libssh_0.1.bb +++ /dev/null @@ -1,33 +0,0 @@ -SECTION = "libs" -DESCRIPTION = "The SSH library is a C library to authenticate in a \ -simple manner to one or more SSH servers. The goal of this project \ -is to provide a library much simpler to use than OpenSSHs one. It \ -includes SFTP support, and a sample SSH client is provided." -DEPENDS = "openssl" -LICENSE = "LGPL" - -SRC_URI = "http://www.0xbadc0de.be/projects/libssh/libssh-${PV}.tgz" - -inherit autotools - -EXTRA_OECONF = "--cache-file=${S}/config.cache" - -do_stage () { - set -x - install -d ${STAGING_INCDIR}/libssh - for i in crypto.h libssh.h sftp.h ssh2.h; do - install -m 0644 ${S}/include/libssh/$i ${STAGING_INCDIR}/libssh/ - done - oe_libinstall -so -C libssh libssh ${STAGING_LIBDIR} -} - -do_install () { - oe_runmake "prefix=${D}${prefix}" \ - "exec_prefix=${D}${exec_prefix}" \ - "bindir=${D}${bindir}" \ - "incldir=${D}${includedir}" \ - "infodir=${D}${infodir}" \ - "mandir=${D}${mandir}/man1" \ - "libdir=${D}${libdir}" \ - install -} diff --git a/packages/libssh/libssh_0.11.bb b/packages/libssh/libssh_0.11.bb new file mode 100644 index 0000000000..ab6949f409 --- /dev/null +++ b/packages/libssh/libssh_0.11.bb @@ -0,0 +1,33 @@ +SECTION = "libs" +DESCRIPTION = "The SSH library is a C library to authenticate in a \ +simple manner to one or more SSH servers. The goal of this project \ +is to provide a library much simpler to use than OpenSSHs one. It \ +includes SFTP support, and a sample SSH client is provided." +DEPENDS = "openssl" +LICENSE = "LGPL" + +SRC_URI = "http://www.0xbadc0de.be/libssh/libssh-${PV}.tgz" + +inherit autotools + +EXTRA_OECONF = "--cache-file=${S}/config.cache" + +do_stage () { + set -x + install -d ${STAGING_INCDIR}/libssh + for i in crypto.h libssh.h sftp.h ssh2.h; do + install -m 0644 ${S}/include/libssh/$i ${STAGING_INCDIR}/libssh/ + done + oe_libinstall -so -C libssh libssh ${STAGING_LIBDIR} +} + +do_install () { + oe_runmake "prefix=${D}${prefix}" \ + "exec_prefix=${D}${exec_prefix}" \ + "bindir=${D}${bindir}" \ + "incldir=${D}${includedir}" \ + "infodir=${D}${infodir}" \ + "mandir=${D}${mandir}/man1" \ + "libdir=${D}${libdir}" \ + install +} -- cgit v1.2.3 From b353ee375fa7edc6d95c8a702874c7b793b3ed68 Mon Sep 17 00:00:00 2001 From: Marcin Juszkiewicz Date: Thu, 28 Jul 2005 13:56:27 +0000 Subject: switched to fetching source from Debian 'stable' + patch from Debian to get it build with gcc 3.4 --- packages/atftp/atftp_0.7.bb | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/packages/atftp/atftp_0.7.bb b/packages/atftp/atftp_0.7.bb index ab51647096..67dd716a76 100644 --- a/packages/atftp/atftp_0.7.bb +++ b/packages/atftp/atftp_0.7.bb @@ -4,9 +4,10 @@ PRIORITY = "optional" MAINTAINER = "NSLU2 Linux " HOMEPAGE = "http://packages.debian.org/atftp" LICENSE = "GPL" -PR = "r1" +PR = "r2" -SRC_URI = "ftp://ftp.mamalinux.com/pub/atftp/atftp-${PV}.tar.gz \ +SRC_URI = "${DEBIAN_MIRROR}/main/a/atftp/atftp_${PV}.orig.tar.gz \ + ${DEBIAN_MIRROR}/main/a/atftp/atftp_${PV}-7.diff.gz;patch=1 \ file://atftpd.init" S = "${WORKDIR}/atftp-${PV}" -- cgit v1.2.3 From b0c0d8ed53809439a91271090768c55786ced2a3 Mon Sep 17 00:00:00 2001 From: Marcin Juszkiewicz Date: Thu, 28 Jul 2005 14:07:07 +0000 Subject: fixed SRC_URI for inputpipe, changed PV to something more normal --- packages/inputpipe/inputpipe_svn.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/inputpipe/inputpipe_svn.bb b/packages/inputpipe/inputpipe_svn.bb index 3f4001356b..7e19e51372 100644 --- a/packages/inputpipe/inputpipe_svn.bb +++ b/packages/inputpipe/inputpipe_svn.bb @@ -3,8 +3,8 @@ PRIORITY = "optional" DESCRIPTION = "Inputpipe is a network transparency layer for linux input devices" MAINTAINER = "Micah Dowty " LICENSE = "GPL" -PV = "svn-${CVSDATE}" -SRC_URI = "svn://navi.cx/svn/misc/trunk;module=inputpipe" +PV = "0.5+svn-${CVSDATE}" +SRC_URI = "svn://svn.navi.cx/misc/trunk;module=inputpipe;proto=http" S = "${WORKDIR}/inputpipe" -- cgit v1.2.3 From f3a58bb241a3259d9bd0131f96435c85c40686d0 Mon Sep 17 00:00:00 2001 From: Koen Kooi Date: Thu, 28 Jul 2005 14:12:15 +0000 Subject: Disable PARALLEL_MAKE for perl-native --- packages/perl/perl-native_5.8.7.bb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/perl/perl-native_5.8.7.bb b/packages/perl/perl-native_5.8.7.bb index 1f353a543a..cc2b7fc5b1 100644 --- a/packages/perl/perl-native_5.8.7.bb +++ b/packages/perl/perl-native_5.8.7.bb @@ -11,6 +11,9 @@ DEPENDS = "db3-native gdbm-native" SRC_URI = "http://ftp.funet.fi/pub/CPAN/src/perl-${PV}.tar.gz" S = "${WORKDIR}/perl-${PV}" +#perl is not parallel_make safe +PARALLEL_MAKE = "" + do_configure () { ./Configure \ -Dcc="${BUILD_CC}" \ -- cgit v1.2.3 From cf79e746ba1a0f5850c31914e6c94a10a9f977ac Mon Sep 17 00:00:00 2001 From: Marcin Juszkiewicz Date: Thu, 28 Jul 2005 14:17:52 +0000 Subject: added arpwatch 2.1a13 with some patches taken from Debian it needs some work - adding/removing "arpwatch" user in post(inst/rm) --- packages/arpwatch/.mtn2git_empty | 0 packages/arpwatch/arpwatch_2.1a13.bb | 47 + packages/arpwatch/files/.mtn2git_empty | 0 packages/arpwatch/files/05debian_fhs.patch | 103 + packages/arpwatch/files/06debian_manpages.patch | 337 + packages/arpwatch/files/arpwatch.conf | 13 + packages/arpwatch/files/arpwatch.default | 7 + packages/arpwatch/files/ethercodes.dat | 7665 +++++++++++++++++++++++ packages/arpwatch/files/init.d | 159 + packages/arpwatch/files/make.patch | 11 + 10 files changed, 8342 insertions(+) create mode 100644 packages/arpwatch/.mtn2git_empty create mode 100644 packages/arpwatch/arpwatch_2.1a13.bb create mode 100644 packages/arpwatch/files/.mtn2git_empty create mode 100644 packages/arpwatch/files/05debian_fhs.patch create mode 100644 packages/arpwatch/files/06debian_manpages.patch create mode 100644 packages/arpwatch/files/arpwatch.conf create mode 100644 packages/arpwatch/files/arpwatch.default create mode 100644 packages/arpwatch/files/ethercodes.dat create mode 100644 packages/arpwatch/files/init.d create mode 100644 packages/arpwatch/files/make.patch diff --git a/packages/arpwatch/.mtn2git_empty b/packages/arpwatch/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 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 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: +# +# +# +#... +# +# +# 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. +0:10:b1 for-A Co., Ltd. +0:10:b2 Coactive Aesthetics +0:10:b3 Nokia Multimedia Terminals +0:10:b4 Atmosphere Networks +0:10:b5 Accton Technology Corporation +0:10:b6 Entrata Communications Corp. +0:10:b7 Coyote Technologies, LLC +0:10:b8 Ishigaki Computer System Co. +0:10:b9 Maxtor Corp. +0:10:ba Martinho-Davis Systems, Inc. +0:10:bb Data & Information Technology +0:10:bc Aastra Telecom +0:10:bd The Telecommunication Technology Committee +0:10:be Telexis Corp. +0:10:bf Interair Wireless +0:10:c ITO Co., Ltd. +0:10:c0 Arma, Inc. +0:10:c1 OI Electric Co., Ltd. +0:10:c2 Willnet, Inc. +0:10:c3 CSI-Control Systems +0:10:c4 Media Links Co., Ltd. +0:10:c5 Protocol Technologies, Inc. +0:10:c6 USI +0:10:c7 Data Transmission Network +0:10:c8 Communications Electronics Security Group +0:10:c9 Mitsubishi Electronics Logistic Support Co. +0:10:ca Integral Access +0:10:cb Facit K.K. +0:10:cc CLP Computer Logistik Planung GmbH +0:10:cd Interface Concept +0:10:ce Volamp, Ltd. +0:10:cf Fiberlane Communications +0:10:d Cisco Systems, Inc. [Cisco Systems Catalyst 2924-XL] +0:10:d0 Witcom, Ltd. +0:10:d1 Top Layer Networks, Inc. +0:10:d2 Nitto Tsushinki Co., Ltd +0:10:d3 Grips Electronic GmbH +0:10:d4 Storage Computer Corporation +0:10:d5 Imasde Canarias, S.A. +0:10:d6 ITT - A/CD +0:10:d7 Argosy Research Inc. [Argosy EN 220 Fast Ethernet PCMCIA] +0:10:d8 Calista +0:10:d9 IBM Japan, Fujisawa MT+D +0:10:da Motion Engineering, Inc. +0:10:db Netscreen Technologies, Inc. +0:10:dc Micro-Star International Co., Ltd. +0:10:dd Enable Semiconductor, Inc. +0:10:de International Datacasting Corporation +0:10:df Rise Computer Inc. +0:10:e Micro Linear Coporation +0:10:e0 Cobalt Microserver, Inc. +0:10:e1 S.I. Tech, Inc. +0:10:e2 Arraycomm, Inc. +0:10:e3 Compaq Computer Corporation +0:10:e4 NSI Corporation +0:10:e5 Solectron Texas +0:10:e6 Applied Intelligent Systems, Inc. +0:10:e7 Breezecom +0:10:e8 Telocity, Incorporated +0:10:e9 Raidtec Ltd. +0:10:ea Adept Technology +0:10:eb Selsius Systems, Inc. +0:10:ec Rpcg, LLC +0:10:ed Sundance Technology, Inc. +0:10:ee CTI Products, Inc. +0:10:ef Dbtel Incorporated +0:10:f Industrial CPU Systems +0:10:f1 I-O Corporation +0:10:f2 Antec +0:10:f3 Nexcom International Co., Ltd. +0:10:f4 Vertical Networks, Inc. +0:10:f5 Amherst Systems, Inc. +0:10:f6 Cisco Systems, Inc. [Cisco] +0:10:f7 Iriichi Technologies Inc. +0:10:f8 Kenwood TMI Corporation +0:10:f9 Unique Systems, Inc. +0:10:fa Zayante, Inc. +0:10:fb Zida Technologies Limited +0:10:fc Broadband Networks, Inc. +0:10:fd Cocom A/S +0:10:fe Digital Equipment Corporation +0:10:ff Cisco Systems, Inc. +0:11:0 RAM Industries, LLC +0:11:1 CET Technologies Pte Ltd +0:11:10 Maxanna Technology Co., Ltd. +0:11:11 Intel Corporation +0:11:12 Honeywell Cmss +0:11:13 Fraunhofer Fokus +0:11:14 Everfocus Electronics Corp. +0:11:15 Epin Technologies, Inc. +0:11:16 Coteau Vert Co., Ltd. +0:11:17 Cesnet +0:11:18 BLX IC Design Corp., Ltd. +0:11:19 Solteras, Inc. +0:11:1a Motorola BCS +0:11:1b Targa Systems Div L-3 Communications Canada +0:11:1c Pleora Technologies Inc. +0:11:1d Hectrix Limited +0:11:1e Epsg (Ethernet Powerlink Standardization Group) +0:11:1f Doremi Labs, Inc. +0:11:2 Aurora Multimedia Corp. +0:11:20 Cisco Systems +0:11:21 Cisco Systems +0:11:22 Cimsys Inc +0:11:23 Appointech, Inc. +0:11:24 Apple Computer +0:11:25 IBM Corporation +0:11:26 Venstar Inc. +0:11:27 Tasi, Inc +0:11:28 Streamit +0:11:29 Paradise Datacom Ltd. +0:11:2a Niko NV +0:11:2b Netmodule +0:11:2c IZT GmbH +0:11:2d Guys Without Ties +0:11:2e Ceicom +0:11:2f Asustek Computer Inc. +0:11:3 Kawamura Electric inc. +0:11:30 Allied Telesis (Hong Kong) Ltd. +0:11:31 Unatech. Co.,Ltd +0:11:32 Synology Incorporated +0:11:33 Siemens Austria Simea +0:11:34 Mediacell, Inc. +0:11:35 Grandeye Ltd +0:11:36 Goodrich Sensor Systems +0:11:37 Aichi Electric Co., Ltd. +0:11:38 Taishin Co., Ltd. +0:11:39 Stoeber Antriebstechnik GmbH + Co. KG. +0:11:3a Shinboram +0:11:3b Micronet Communications Inc. +0:11:3c Micronas GmbH +0:11:3d KN Soltec Co.,Ltd. +0:11:3e JL Corporation +0:11:3f Alcatel di +0:11:4 Telexy +0:11:40 Nanometrics Inc. +0:11:41 Goodman Corporation +0:11:42 e-Smartcom Inc. +0:11:43 Dell Inc. (WW Pcba Test) +0:11:44 Assurance Technology Corp +0:11:45 Valuepoint Networks +0:11:46 Private +0:11:47 Secom-Industry co.Ltd. +0:11:48 Prolon Control Systems +0:11:49 Proliphix LLC +0:11:4a Kayaba Industry Co,.Ltd. +0:11:4b Francotyp-Postalia AG & Co. KG +0:11:4c Caffeina Applied Research ltd. +0:11:4d Atsumi Electric Co.,Ltd. +0:11:4e 690885 Ontario Inc. +0:11:4f US Digital Television, Inc +0:11:5 Sunplus Technology Co., Ltd. +0:11:50 Belkin Corporation +0:11:51 Mykotronx +0:11:52 Eidsvoll Electronics AS +0:11:53 Trident Tek, Inc. +0:11:54 Webpro Technologies Inc. +0:11:55 Sevis Systems +0:11:56 Pharos Systems NZ +0:11:57 of Networks Co., Ltd. +0:11:58 Nortel Networks +0:11:59 Matisse Networks Inc +0:11:5a Ivoclar Vivadent AG +0:11:5b Elitegroup Computer System Co. (ECS) +0:11:5c Cisco +0:11:5d Cisco +0:11:5e Prominent Dosiertechnik GmbH +0:11:5f Intellix Co., Ltd. +0:11:6 Siemens NV (Belgium) +0:11:60 Artdio Company Co., Ltd +0:11:61 Netstreams, LLC +0:11:62 Star Micronics Co.,Ltd. +0:11:63 System SPA Dept. Electronics +0:11:64 Acard Technology Corp. +0:11:65 Znyx Networks +0:11:66 Taelim Electronics Co., Ltd. +0:11:67 Integrated System Solution Corp. +0:11:68 Homelogic LLC +0:11:69 EMS Satcom +0:11:6a Domo Ltd +0:11:6b Digital Data Communications Asia Co.,Ltd +0:11:6c Nanwang Multimedia Inc.,Ltd +0:11:6d American Time and Signal +0:11:6e Peplink Ltd. +0:11:6f Netforyou Co., Ltd. +0:11:7 RGB Networks Inc. +0:11:70 GSC SRL +0:11:71 Dexter Communications, Inc. +0:11:72 Cotron Corporation +0:11:73 Adtron Corporation +0:11:74 Wibhu Technologies, Inc. +0:11:75 Pathscale, Inc. +0:11:76 Intellambda Systems, Inc. +0:11:77 Coaxial Networks, Inc. +0:11:78 Chiron Technology Ltd +0:11:79 Singular Technology Co. Ltd. +0:11:7a Singim International Corp. +0:11:7b Büchi Labortechnik AG +0:11:7c e-zy.net +0:11:7d ZMD America, Inc. +0:11:7e Progeny Inc. +0:11:7f Neotune Information Technology Corporation,.Ltd +0:11:8 Orbital Data Corporation +0:11:80 Motorola BCS +0:11:81 Interenergy Co.Ltd, +0:11:82 IMI Norgren Ltd +0:11:83 PSC Scanning, Inc +0:11:84 Humo Laboratory,Ltd. +0:11:85 Hewlett Packard +0:11:86 Prime Systems, Inc. +0:11:87 Category Solutions, Inc +0:11:88 Enterasys +0:11:89 Aerotech Inc +0:11:8a Viewtran Technology Limited +0:11:8b Netdevices Inc. +0:11:8c Missouri Department of Transportation +0:11:8d Hanchang System Corp. +0:11:8e Halytech Mace +0:11:8f Eutech Instruments Pte. Ltd. +0:11:9 Micro-Star International +0:11:90 Digital Design Corporation +0:11:91 CTS-Clima Temperatur Systeme GmbH +0:11:92 Cisco Systems +0:11:93 Cisco Systems +0:11:94 Chi Mei Communication Systems, Inc. +0:11:95 Alpha Networks Inc. +0:11:96 Actuality Systems, Inc. +0:11:97 Monitoring Technologies Limited +0:11:98 Prism Media Products Limited +0:11:99 2wcom GmbH +0:11:9a Alkeria srl +0:11:9b Telesynergy Research Inc. +0:11:9c EP&T Energy +0:11:9d Diginfo Technology Corporation +0:11:9e Solectron Brazil +0:11:9f Nokia Danmark A/S +0:11:a Hewlett Packard +0:11:a0 Vtech Engineering Canada Ltd +0:11:a1 Vision Netware Co.,Ltd +0:11:a2 Manufacturing Technology Inc +0:11:a3 Lanready Technologies Inc. +0:11:a4 Jstream Technologies Inc. +0:11:a5 Fortuna Electronic Corp. +0:11:a6 Sypixx Networks +0:11:a7 Infilco Degremont Inc. +0:11:a8 Quest Technologies +0:11:a9 Moimstone Co., Ltd +0:11:aa Uniclass Technology, Co., Ltd +0:11:ab Trustable Technology Co.,Ltd. +0:11:ac Simtec Electronics +0:11:ad Shanghai Ruijie Technology +0:11:ae Motorola BCS +0:11:af Medialink-i,Inc +0:11:b Franklin Technology Systems +0:11:b0 Fortelink Inc. +0:11:b1 Blueexpert Technology Corp. +0:11:b2 2001 Technology Inc. +0:11:b3 Yoshimiya Co.,Ltd. +0:11:b4 Westermo Teleindustri AB +0:11:b5 Shenzhen Powercom Co.,Ltd +0:11:b6 Open Systems International +0:11:b7 Melexis Nederland B.V. +0:11:b8 Liebherr - Elektronik GmbH +0:11:b9 Inner Range Pty. Ltd. +0:11:ba Elexol Pty Ltd +0:11:bb Cisco Systems +0:11:bc Cisco Systems +0:11:bd Bombardier Transportation +0:11:be AGP Telecom Co. Ltd +0:11:bf Aesys S.p.A. +0:11:c Atmark Techno, Inc. +0:11:c0 Aday Technology Inc +0:11:c1 4P Mobile Data Processing +0:11:c2 United Fiber Optic Communication +0:11:c3 Transceiving System Technology Corporation +0:11:c4 Terminales de Telecomunicacion Terrestre, S.L. +0:11:c5 Ten Technology +0:11:c6 Seagate Technology LLC +0:11:c7 Raymarine Group Ltd. +0:11:c8 Powercom Co., Ltd. +0:11:c9 MTT Corporation +0:11:ca Long Range Systems, Inc. +0:11:cb Jacobsons RKH AB +0:11:cc Guangzhou Jinpeng Group Co.,Ltd. +0:11:cd Axsun Technologies +0:11:ce Ubisense Limited +0:11:cf Thrane & Thrane A/S +0:11:d Sanblaze Technology, Inc. +0:11:d0 Tandberg Data ASA +0:11:d1 Soft Imaging System GmbH +0:11:d2 Perception Digital Ltd +0:11:d3 Nextgentel Holding ASA +0:11:d4 Netenrich, Inc +0:11:d5 Hangzhou Sunyard System Engineering Co.,Ltd. +0:11:d6 Handera, Inc. +0:11:d7 Ewerks Inc +0:11:d8 Asustek Computer Inc. +0:11:d9 Tivo +0:11:da Vivaas Technology Inc. +0:11:db Land-Cellular Corporation +0:11:dc Glunz & Jensen +0:11:dd Fromus Tec. Co., Ltd. +0:11:de Eurilogic +0:11:df Arecont Systems +0:11:e Tsurusaki Sealand Transportation Co. Ltd. +0:11:e0 U-Media Communications, Inc. +0:11:e1 Beko Electronics Co. +0:11:e2 Hua Jung Components Co., Ltd. +0:11:e3 Broadband Access Products +0:11:e4 Danelec Electronics A/S +0:11:e5 Kcodes Corporation +0:11:e6 Scientific Atlanta +0:11:e7 Worldsat - Texas de France +0:11:e8 Tixi.Com +0:11:e9 Starnex Co., Ltd. +0:11:ea Iwics Inc. +0:11:eb Innovative Integration +0:11:ec Avix Inc. +0:11:ed 802 Global +0:11:ee Estari, Inc. +0:11:ef Conitec Datensysteme GmbH +0:11:f Netplat,Inc. +0:11:f0 Wideful Limited +0:11:f1 Qinetiq Ltd +0:11:f2 Institute of Network Technologies +0:11:f3 Gavitec AG- Mobile Digit +0:11:f4 Woori-net +0:11:f5 Askey Computer Corp. +0:11:f6 Asia Pacific Microsystems , Inc. +0:11:f7 Shenzhen Forward Industry Co., Ltd +0:11:f8 Airaya Corp +0:11:f9 Nortel Networks +0:11:fa Rane Corporation +0:11:fb Heidelberg Engineering GmbH +0:11:fc Harting Electric GmbH & Co.KG +0:11:fd Korg Inc. +0:11:fe Keiyo System Research, Inc. +0:11:ff Digitro Tecnologia Ltda +0:12:0 Cisco +0:12:1 Cisco +0:12:10 Wideray Corp +0:12:11 Protechna Herbst GmbH & Co. KG +0:12:12 Plus Vision Corporation +0:12:13 Metrohm AG +0:12:14 Koenig & Bauer AG +0:12:15 Istor Networks, Inc. +0:12:16 ICP Internet Communication Payment AG +0:12:17 Cisco-Linksys, LLC +0:12:18 Aruze Corporation +0:12:19 Ahead Communication Systems Inc +0:12:2 Audio International Inc. +0:12:3 Activ Networks +0:12:4 u10 Networks, Inc. +0:12:5 Terrasat Communications, Inc. +0:12:6 Iquest (NZ) Ltd +0:12:7 Head Strong International Limited +0:12:8 Gantner Electronic GmbH +0:12:9 Fastrax Ltd +0:12:a Emerson Electric GmbH & Co. OHG +0:12:b Chinasys Technologies Limited +0:12:c CE-Infosys Pte Ltd +0:12:d Advanced Telecommunication Technologies, Inc. +0:12:e Abocom +0:12:f Ieee 802.3 +0:17:0 Kabel +0:1:0 Equip'Trans +0:1:1 Private +0:1:10 Gotham Networks +0:1:11 Idigm Inc. +0:1:12 Shark Multimedia Inc. +0:1:13 Olympus Corporation +0:1:14 Kanda Tsushin Kogyo Co., Ltd. +0:1:15 Extratech Corporation +0:1:16 Netspect Technologies, Inc. +0:1:17 Canal +0:1:18 EZ Digital Co., Ltd. +0:1:19 Action Controls Pty. Ltd. +0:1:1a EEH Datalink GmbH +0:1:1b Unizone Technologies, Inc. +0:1:1c Universal Talkware Corporation +0:1:1d Centillium Communications +0:1:1e Precidia Technologies, Inc. +0:1:1f RC Networks, Inc. +0:1:2 3com Corporation [BBN (Bolt Beranek and Newman, Inc.); internal usage (not registered)] +0:1:20 Oscilloquartz S.A. +0:1:21 Watchguard Technologies, Inc. +0:1:22 Trend Communications, Ltd. +0:1:23 Digital Electronics Corp. +0:1:24 Acer Incorporated +0:1:25 Yaesu Musen Co., Ltd. +0:1:26 PAC Labs +0:1:27 The Open Group Limited +0:1:28 Enjoyweb, Inc. +0:1:29 DFI Inc. +0:1:2a Telematica Sistems Inteligente +0:1:2b Telenet Co., Ltd. +0:1:2c Aravox Technologies, Inc. +0:1:2d Komodo Technology +0:1:2e PC Partner Ltd. +0:1:2f Twinhead International Corp +0:1:3 3com Corporation +0:1:30 Extreme Networks +0:1:31 Detection Systems, Inc. +0:1:32 Dranetz - BMI +0:1:33 Kyowa Electronic Instruments C +0:1:34 SIG Positec Systems AG +0:1:35 KDC Corp. +0:1:36 Cybertan Technology, Inc. +0:1:37 IT Farm Corporation +0:1:38 Xavi Technologies Corp. +0:1:39 Point Multimedia Systems +0:1:3a Shelcad Communications, Ltd. +0:1:3b BNA Systems +0:1:3c TIW Systems +0:1:3d Riscstation Ltd. +0:1:3e Ascom Tateco AB +0:1:3f Neighbor World Co., Ltd. +0:1:4 Dvico Co., Ltd. +0:1:40 Sendtek Corporation +0:1:41 Cable Print +0:1:42 Cisco Systems, Inc. +0:1:43 Cisco Systems, Inc. [IEEE 802] +0:1:44 Cereva Networks, Inc. +0:1:45 Winsystems, Inc. +0:1:46 Tesco Controls, Inc. +0:1:47 Zhone Technologies +0:1:48 X-Traweb Inc. +0:1:49 T.D.T. Transfer Data Test GmbH +0:1:4a Sony Corporation +0:1:4b Ennovate Networks, Inc. +0:1:4c Berkeley Process Control +0:1:4d Shin Kin Enterprises Co., Ltd +0:1:4e WIN Enterprises, Inc. +0:1:4f Luminous Networks, Inc. +0:1:5 Beckhoff GmbH +0:1:50 Gilat Communications, Ltd. [Megahertz (now 3com) modem] +0:1:51 Ensemble Communications +0:1:52 Chromatek Inc. +0:1:53 Archtek Telecom Corporation +0:1:54 G3M Corporation +0:1:55 Promise Technology, Inc. +0:1:56 Firewiredirect.Com, Inc. +0:1:57 Syswave Co., Ltd +0:1:58 Electro Industries/Gauge Tech +0:1:59 S1 Corporation +0:1:5a Digital Video Broadcasting +0:1:5b Italtel S.p.A/RF-UP-I +0:1:5c Cadant Inc. +0:1:5d Sun Microsystems, Inc +0:1:5e Best Technology Co., Ltd. +0:1:5f Digital Design GmbH +0:1:6 Tews Datentechnik GmbH +0:1:60 Elmex Co., Ltd. +0:1:61 Meta Machine Technology +0:1:62 Cygnet Technologies, Inc. +0:1:63 Cisco Systems, Inc. [NDC (National Datacomm Corporation)] +0:1:64 Cisco Systems, Inc. +0:1:65 Airswitch Corporation +0:1:66 TC Group A/S +0:1:67 Hioki E.E. Corporation +0:1:68 Vitana Corporation [W&G (Wandel & Goltermann); [incorrect according to W&G]] +0:1:69 Celestix Networks Pte Ltd. +0:1:6a Alitec +0:1:6b Lightchip, Inc. +0:1:6c Foxconn +0:1:6d Carriercomm Inc. +0:1:6e Conklin Corporation +0:1:6f Haitai Electronics Co., Ltd. +0:1:7 Leiser GmbH +0:1:70 ESE Embedded System Engineer'g +0:1:71 Allied Data Technologies +0:1:72 Technoland Co., Ltd. +0:1:73 JNI Corporation +0:1:74 Cyberoptics Corporation +0:1:75 Radiant Communications Corp. +0:1:76 Orient Silver Enterprises +0:1:77 Edsl +0:1:78 Margi Systems, Inc. +0:1:79 Wireless Technology, Inc. +0:1:7a Chengdu Maipu Electric Industrial Co., Ltd. +0:1:7b Heidelberger Druckmaschinen AG +0:1:7c AG-E GmbH +0:1:7d Thermoquest +0:1:7e Adtek System Science Co., Ltd. +0:1:7f Experience Music Project +0:1:8 Avlab Technology, Inc. +0:1:80 Aopen, Inc. +0:1:81 Nortel Networks +0:1:82 Dica Technologies AG +0:1:83 Anite Telecoms +0:1:84 Sieb & Meyer AG +0:1:85 Aloka Co., Ltd. +0:1:86 Disch GmbH +0:1:87 I2se GmbH +0:1:88 Lxco Technologies ag +0:1:89 Refraction Technology, Inc. +0:1:8a ROI Computer AG +0:1:8b Netlinks Co., Ltd. +0:1:8c Mega Vision +0:1:8d Audesi Technologies +0:1:8e Logitec Corporation +0:1:8f Kenetec, Inc. +0:1:9 Nagano Japan Radio Co., Ltd. +0:1:90 SMK-M +0:1:91 Syred Data Systems +0:1:92 Texas Digital Systems +0:1:93 Hanbyul Telecom Co., Ltd. +0:1:94 Capital Equipment Corporation +0:1:95 Sena Technologies, Inc. +0:1:96 Cisco Systems, Inc. +0:1:97 Cisco Systems, Inc. +0:1:98 Darim Vision +0:1:99 Heisei Electronics +0:1:9a Leunig GmbH +0:1:9b Kyoto Microcomputer Co., Ltd. +0:1:9c JDS Uniphase Inc. +0:1:9d E-Control Systems, Inc. +0:1:9e ESS Technology, Inc. +0:1:9f Phonex Broadband +0:1:a CIS Technology Inc. +0:1:a0 Infinilink Corporation +0:1:a1 Mag-Tek, Inc. +0:1:a2 Logical Co., Ltd. +0:1:a3 Genesys Logic, Inc. +0:1:a4 Microlink Corporation +0:1:a5 Nextcomm, Inc. +0:1:a6 Scientific-Atlanta Arcodan A/S +0:1:a7 Unex Technology Corporation +0:1:a8 Welltech Computer Co., Ltd. +0:1:a9 BMW AG +0:1:aa Airspan Communications, Ltd. +0:1:ab Main Street Networks +0:1:ac Sitara Networks, Inc. +0:1:ad Coach Master International d.b.a. CMI Worldwide, Inc. +0:1:ae Trex Enterprises +0:1:af Motorola Computer Group +0:1:b Space Cyberlink, Inc. +0:1:b0 Fulltek Technology Co., Ltd. +0:1:b1 General Bandwidth +0:1:b2 Digital Processing Systems, Inc. +0:1:b3 Precision Electronic Manufacturing +0:1:b4 Wayport, Inc. +0:1:b5 Turin Networks, Inc. +0:1:b6 Saejin T&M Co., Ltd. +0:1:b7 Centos, Inc. +0:1:b8 Netsensity, Inc. +0:1:b9 SKF Condition Monitoring +0:1:ba IC-Net, Inc. +0:1:bb Frequentis +0:1:bc Brains Corporation +0:1:bd Peterson Electro-Musical Products, Inc. +0:1:be Gigalink Co., Ltd. +0:1:bf Teleforce Co., Ltd. +0:1:c System Talks Inc. +0:1:c0 Compulab, Ltd. +0:1:c1 Vitesse Semiconductor Corporation +0:1:c2 ARK Research Corp. +0:1:c3 Acromag, Inc. +0:1:c4 Neowave, Inc. +0:1:c5 Simpler Networks +0:1:c6 Quarry Technologies +0:1:c7 Cisco Systems, Inc. +0:1:c8 Conrad Corp. [Thomas Conrad Corp.] +0:1:c9 Cisco Systems, Inc. +0:1:ca Geocast Network Systems, Inc. +0:1:cb EVR +0:1:cc Japan Total Design Communication Co., Ltd. +0:1:cd Artem +0:1:ce Custom Micro Products, Ltd. +0:1:cf Alpha Data Parallel Systems, Ltd. +0:1:d Coreco, Inc. +0:1:d0 Vitalpoint, Inc. +0:1:d1 Conet Communications, Inc. +0:1:d2 Macpower Peripherals, Ltd. +0:1:d3 Paxcomm, Inc. +0:1:d4 Leisure Time, Inc. +0:1:d5 Haedong Info & Comm Co., Ltd +0:1:d6 MAN Roland Druckmaschinen AG +0:1:d7 F5 Networks, Inc. +0:1:d8 Teltronics, Inc. +0:1:d9 Sigma, Inc. +0:1:da Wincomm Corporation +0:1:db Freecom Technologies GmbH +0:1:dc Activetelco +0:1:dd Avail Networks +0:1:de Trango Systems, Inc. +0:1:df Isdn Communications, Ltd. +0:1:e Bri-Link Technologies Co., Ltd +0:1:e0 Fast Systems, Inc. +0:1:e1 Kinpo Electronics, Inc. +0:1:e2 Ando Electric Corporation +0:1:e3 Siemens AG +0:1:e4 Sitera, Inc. +0:1:e5 Supernet, Inc. +0:1:e6 Hewlett-Packard Company +0:1:e7 Hewlett-Packard Company +0:1:e8 Force10 Networks, Inc. +0:1:e9 Litton Marine Systems B.V. +0:1:ea Cirilium Corp. +0:1:eb C-Com Corporation +0:1:ec Ericsson Group +0:1:ed Seta Corp. +0:1:ee Comtrol Europe, Ltd. +0:1:ef Camtel Technology Corp. +0:1:f Nishan Systems, Inc. +0:1:f0 Tridium, Inc. +0:1:f1 Innovative Concepts, Inc. +0:1:f2 Mark of the Unicorn, Inc. +0:1:f3 QPS, Inc. +0:1:f4 Enterasys Networks +0:1:f5 Erim S.A. +0:1:f6 Association of Musical Electronics Industry +0:1:f7 Image Display Systems, Inc. +0:1:f8 Adherent Systems, Ltd. +0:1:f9 Teraglobal Communications Corp. +0:1:fa Horoscas [Compaq (Page Marq printers)] +0:1:fb Dotop Technology, Inc. +0:1:fc Keyence Corporation +0:1:fd Digital Voice Systems, Inc. +0:1:fe Digital Equipment Corporation +0:1:ff Data Direct Networks, Inc. +0:1c:7c Perq Systems Corporation +0:20:0 Lexmark International, Inc. [Lexmark (Print Server)] +0:20:1 DSP Solutions, Inc. +0:20:10 Jeol System Technology Co. Ltd +0:20:11 Canopus Co., Ltd. +0:20:12 Camtronics Medical Systems +0:20:13 Diversified Technology, Inc. +0:20:14 Global View Co., Ltd. +0:20:15 Actis Computer SA +0:20:16 Showa Electric Wire & Cable Co +0:20:17 Orbotech +0:20:18 CIS Technology Inc. [Realtek] +0:20:19 Ohler GmbH +0:20:1a MRV Communications, Inc. [Nbase] +0:20:1b Northern Telecom/Network +0:20:1c Excel, Inc. +0:20:1d Katana Products +0:20:1e Netquest Corporation +0:20:1f Best Power Technology, Inc. +0:20:2 Seritech Enterprise Co., Ltd. +0:20:20 Megatron Computer Industries Pty, Ltd. +0:20:21 Algorithms Software PVT. Ltd. +0:20:22 Teknique, Inc. +0:20:23 T.C. Technologies Pty. Ltd +0:20:24 Pacific Communication Sciences +0:20:25 Control Technology, Inc. [Control Technology Inc (Industrial Controls and Network Interfaces)] +0:20:26 Amkly Systems, Inc. +0:20:27 Ming Fortune Industry Co., Ltd +0:20:28 West EGG Systems, Inc. [Bloomberg] +0:20:29 Teleprocessing Products, Inc. [Tele Processing CSU/DSU (now owned by ADC/Kentrox)] +0:20:2a N.V. Dzine +0:20:2b Advanced Telecommunications Modules, Ltd. [ATML (Advanced Telecommunications Modules, Ltd.)] +0:20:2c Welltronix Co., Ltd. +0:20:2d Taiyo Corporation +0:20:2e Daystar Digital +0:20:2f Zeta Communications, Ltd. +0:20:3 Pixel Power Ltd. +0:20:30 Analog & Digital Systems +0:20:31 Ertec GmbH +0:20:32 Alcatel Taisel +0:20:33 Synapse Technologies, Inc. +0:20:34 Rotec Industrieautomation GmbH +0:20:35 IBM Corporation [IBM (International Business Machines); mainframes, Etherjet printers] +0:20:36 BMC Software +0:20:37 Seagate Technology +0:20:38 VME Microsystems International Corporation +0:20:39 Scinets +0:20:3a Digital Bi0metrics Inc. +0:20:3b Wisdm Ltd. +0:20:3c Eurotime AB +0:20:3d Novar Electronics Corporation +0:20:3e Logican Technologies, Inc. +0:20:3f Juki Corporation +0:20:4 Yamatake-Honeywell Co., Ltd. +0:20:40 Motorola Broadband Communications Sector +0:20:41 Data Net +0:20:42 Datametrics Corp. +0:20:43 Neuron Company Limited +0:20:44 Genitech Pty Ltd +0:20:45 ION Networks, Inc. [Sol Com Systems Limited] +0:20:46 Ciprico, Inc. +0:20:47 Steinbrecher Corp. +0:20:48 Marconi Communications [Fore Systems Inc] +0:20:49 Comtron, Inc. +0:20:4a Pronet GmbH +0:20:4b Autocomputer Co., Ltd. +0:20:4c Mitron Computer Pte Ltd. +0:20:4d Inovis GmbH +0:20:4e Network Security Systems, Inc. +0:20:4f Deutsche Aerospace AG +0:20:5 Simple Technology [simpletech] +0:20:50 Korea Computer Inc. +0:20:51 Verilink Corporation +0:20:52 Ragula Systems +0:20:53 Huntsville Microsystems, Inc. +0:20:54 Eastern Research, Inc. +0:20:55 Altech Co., Ltd. +0:20:56 Neoproducts +0:20:57 Titze Datentechnik GmbH +0:20:58 Allied Signal Inc. +0:20:59 Miro Computer Products AG +0:20:5a Computer Identics +0:20:5b Kentrox, LLC +0:20:5c Internet Systems of Florida, Inc. +0:20:5d Nanomatic OY +0:20:5e Castle Rock, Inc. +0:20:5f Gammadata Computer GmbH +0:20:6 Garrett Communications, Inc. +0:20:60 Alcatel Italia S.p.A. +0:20:61 Dynatech Communications, Inc. +0:20:62 Scorpion Logic, Ltd. +0:20:63 Wipro Infotech Ltd. +0:20:64 Protec Microsystems, Inc. +0:20:65 Supernet Networking Inc. +0:20:66 General Magic, Inc. +0:20:67 Private [Node Runner Inc] +0:20:68 Isdyne +0:20:69 Isdn Systems Corporation +0:20:6a Osaka Computer Corp. +0:20:6b Konica Minolta Holdings, Inc. [Minolta Co., Ltd Network printers] +0:20:6c Evergreen Technology Corp. +0:20:6d Data Race, Inc. +0:20:6e Xact, Inc. +0:20:6f Flowpoint Corporation +0:20:7 SFA, Inc. +0:20:70 Hynet, Ltd. +0:20:71 IBR GmbH +0:20:72 Worklink Innovations +0:20:73 Fusion Systems Corporation +0:20:74 Sungwoon Systems +0:20:75 Motorola Communication Israel +0:20:76 Reudo Corporation +0:20:77 Kardios Systems Corp. +0:20:78 Runtop, Inc. +0:20:79 Mikron GmbH +0:20:7a Wise Communications, Inc. +0:20:7b Intel Corporation +0:20:7c Autec GmbH +0:20:7d Advanced Computer Applications +0:20:7e Finecom Co., Ltd. +0:20:7f Kyoei Sangyo Co., Ltd. +0:20:8 Cable & Computer Technology +0:20:80 Synergy (UK) Ltd. +0:20:81 Titan Electronics +0:20:82 Oneac Corporation +0:20:83 Presticom Incorporated +0:20:84 OCE Printing Systems, GmbH +0:20:85 Exide Electronics [3COM Super Stack II UPS management module] +0:20:86 Microtech Electronics Limited +0:20:87 Memotec Communications Corp. +0:20:88 Global Village Communication +0:20:89 T3plus Networking, Inc. +0:20:8a Sonix Communications, Ltd. +0:20:8b Lapis Technologies, Inc. [Focus Enhancements] +0:20:8c Galaxy Networks, Inc. +0:20:8d CMD Technology +0:20:8e Chevin Software ENG. Ltd. +0:20:8f ECI Telecom Ltd. +0:20:9 Packard Bell Elec., Inc. +0:20:90 Advanced Compression Technology, Inc. +0:20:91 J125, National Security Agency +0:20:92 Chess Engineering B.V. +0:20:93 Landings Technology Corp. +0:20:94 Cubix