0% found this document useful (0 votes)
563 views87 pages

Gran Rose

This document provides an introduction to anonymous FTP servers, which allow users to retrieve public information and software without needing a username and password. It describes how to log into an anonymous FTP server using the username "anonymous" and your email address as the password. It also discusses what types of files are commonly available on these servers, how to navigate directories, how to handle compressed and archived files, and etiquette for using anonymous FTP servers.

Uploaded by

Amber Mohanty
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
563 views87 pages

Gran Rose

This document provides an introduction to anonymous FTP servers, which allow users to retrieve public information and software without needing a username and password. It describes how to log into an anonymous FTP server using the username "anonymous" and your email address as the password. It also discusses what types of files are commonly available on these servers, how to navigate directories, how to handle compressed and archived files, and etiquette for using anonymous FTP servers.

Uploaded by

Amber Mohanty
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 87

Introduction to Anonymous FTP Servers

This section of the AIE describes how you can use FTP to connect
to remote FTP servers which allow you to anonymously retrieve
information and software.

Using Anonymous FTP - Start here. This selection contains a


general discussion of anonymous FTP.

Uncompressing Your FTP'd Files - Files retrieved from anonymous


FTP servers will most often be in a compressed format. This menu
provides information about uncompressing these files.

Finding Servers & Software - this selection tells you how to


locate anonymous FTP servers and software. It also describes the
usefulness of the next four selections in this menu, "Archie -
Search Service Intro", "Archie Users Manual", "Granrose FTP List",
and "Gleason Macintosh FTP List".

What is Anonymous FTP?

In general, FTP software allows you to transfer files between


computers connected to the Internet. You should have a basic
understanding of FTP before delving into the world of anonymous
FTP servers. For a discussion of basic FTP functions and commands,
see the selection on FTP in the "Learning About the Network" menu
(Keyword:LEARNFTP). The following discussion assumes you have a
basic understanding of FTP commands.

Anonymous FTP servers are the one of the richest sources of


information and public domain software on the Internet. Unlike FTP
servers where you must have a valid username and password,
anonymous FTP servers allow you to login as an anonymous user, to
transfer information, data and public domain software. There are
currently more than 600 of these anonymous FTP servers on the
Internet.

What's available?

A wide variety of information and software is available via


anonymous FTP. This includes thousands of public domain and
shareware applications for IBM PC, Macintosh, Unix, Next, Vax VMS,
IBM VM, Atari, Apple II and many other computer platforms. The
information and data available include such things as the CIA's
World Fact Book, up-to-date economic indices (e.g. GNP, housing
starts, some in LOTUS 1-2-3 format), general network information
documents, weekly listings of NIH grant opportunities, listings of
Internet accessible library catalogs, archives of discussion
groups, the complete text for Darwin's Origin of Species and many
graphic images (e.g. weather satellite data).

Logging into an Anonymous FTP Server

Anonymous FTP is just a special kind of FTP. To log into an


anonymous FTP server, you simply type "ANONYMOUS" as the username
rather than a your specific username.
When prompted for a password, you type your internet mail address
(i.e. [email protected]). While this isn't required,
organizations which provide anonymous FTP servers are often
interested in who is using there services. Proper network
etiquette dictates that you should supply your internet mail
address for this purpose.

An example follows:

$ ftp sumex-aim.stanford.edu <-- an anonymous FTP server

aqua.ucs.indiana.edu Wollongong FTP User Process (Version 5.1-01)


Connection Opened
Using 8-bit bytes.
220 sumex-aim FTP server (SunOS 4.0/3) ready.
Name (sumex-aim.stanford.edu:netinfo): anonymous <-type ANONYMOUS
331 Guest login ok, send mail address (user@host) as password.
Password: <- type your mail address (not echoed)
230 Guest connection 24 (of 25) accepted, access restrictions
apply.

Finding Your Way

Some anonymous FTP servers contain hundreds and hundreds of files.


Files are typically organized into subdirectories so that you can
follow the hierarchical structure to search for a specific type of
application. For example, if you were looking for a Macintosh
graphics application you might traverse a subdirectory structure
like: applications --> Macintosh--> graphics. The problem is that
you might find a hundred files in the graphics subdirectory, and
unfortunately a file name by itself often doesn't tell you much
about an application. The better anonymous FTP sites help with
this problem by providing "readme" files in each subdirectory.
These "readme" (or "index") files contain information about the
contents of each subdirectory; some actually provide short
descriptions for each file. Its a good idea to transfer and
examine these "readme" files first, unless you know exactly which
files you're looking for. An example from a Stanford FTP site:
*dir
200 PORT command successful.
150 ASCII data connection for /bin/ls (129.79.1.2,2774).
total 66
-rw-r--r-- 1 macmod info-mac 976 Aug 21 1990 00readme.txt
drwxr-xr-x 2 macmod info-mac 4096 Jul 15 15:55 app
...
drwxr-xr-x 2 macmod info-mac 1024 Jul 8 21:35 virus
226 ASCII Transfer complete.

Note the file "00readme.txt". The "00" prefix insures that this
file is first in the directory listing. "Readme" files often have
prefixes attached so that they will be listed first (e.g.
aareadme.txt, 0readme.txt, 00index.txt, etc).

File Compression and Archives

In order to conserve server disk space and the size of the files
that must be transferred, many files on anonymous FTP servers are
stored in a compressed format. This involves running the original
file through a specific compression program which can often
dramatically reduce the size of the file. For you to make use of
these compressed files once transferred to your computer, you must
run these compressed files through a complimentary uncompression
program.

In addition, anonymous FTP files are often archive files, that is,
a group of files bundled into a single file (e.g. a graphics
program, documentation and other support files stored as one
file). Again, you must have the appropriate software on your local
computer in order to disassemble these archives.

The good news is that there are a small number of "popular" file
compression and archive formats. Generally you will see only one
or two different compression/archive formats used for your
specific computer type (i.e. Unix systems, Macintosh, IBM PC). In
addition, the different compression/archive formats are easily
identified because standard file naming conventions are used. For
example:

Most Macintosh files are compressed and archived using an


application called Stuffit. Stuffit files always have .HQX and/or
.SIT on the end of the file names (e.g. app.SIT, app.HQX,
app.SIT.HQX).

Most compressed/archived IBM PC files have .ZIP as the last part


of there file name (e.g. app.ZIP) and must be uncompressed with an
application called PKUNZIP.

Unix files which are archived with the standard Unix tar program
will end with .TAR. They may also be compressed using the standard
Unix compress utility in which case they will end with .Z. Files
which have been both compressed and archived will end with .TAR.Z.
Standard Unix TAR and Uncompress utilities can be used to
disassemble these files.

For more information about compression and archiving, see the


choice in this menu called "Uncompressing Your FTP'd Files".

ASCII vs binary Transfer Modes

Files MUST be transferred from FTP servers using the right


transfer mode (e.g. ASCII or binary) or they will be worthless.
(Remember that by default, FTP transfers file in ASCII mode. The
command "BINARY" allows you to switch to binary transfers.) While
it is impossible to list all possible types of files and how they
should be transferred, some guidelines follow:

Text files (e.g. file.TXT) should always be transferred in ASCII


mode.

Macintosh .SIT, .HQX or .SIT.HQX files should always be


transferred in ASCII (or BINHEX) mode.

IBM PC .ZIP files should always be transferred in binary mode.

Files compressed using Unix compression and archive utilities


(e.g. file.Z, file.TAR, or file.TAR.Z) should always be
transferred in binary mode. Note that often text files come in
.TAR.Z format. While they are text files, they should still be
transferred in binary mode because of the compression/archive
techniques that have been applied to the files.

Don't be discouraged if you don't know whether to use ASCII or


binary modes to transfer a file. If you use the wrong mode, you
can always transfer the file again using the correct mode.

Anonymous FTP Etiquette

Anonymous FTP server provide a rich source of information and


software but only exist do to the kindness of universities and
corporations who choose to offer this type of service. You should
understand that while a given computer may host an anonymous FTP
service, that is not its primary function. These anonymous FTP
servers are often general purpose computers which must support a
large local user population for general purpose computing.
Therefore, you should avoid using anonymous FTP servers during
normal business hours (9am - 5pm) when these computers are being
heavily used by local users. FTP file transfers can have a
significant impact on a computer; if this FTP privilege is abused,
organizations may decide that they cannon afford to offer this
important service.

UN-ZIPPING FILES

All files with the extension .ZIP are archived, that is, their
contents have been compressed to save space and facilitate
transferral. To "un-zip" files you should first download
PKZ110.EXE, the most current version of the unzipping program.
To download this file, open up the 'Archiver/Anti-Virus' directory
in the 'AIE/IBMPDS' menu and follow the instructions. Refer to the
procedure outlined above in "DOWNLOADING A FILE" for information on
how to download files in general.

PKZ110.EXE is self-extracting. In other words, after you have


successfully downloaded the file, go to the drive or directory where
the file resides, type "PKZ110" and then press <RETURN>. The file will
"unzip" itself, providing you with a variety of helpful programs and
documentation. One of these programs, PKUNZIP.EXE, is the one you will
be using the most.

After downloading a "zipped" file, i.e. one with an extension


of .ZIP, copy it into a directory or onto a disk with PKUNZIP.EXE
program. Next, type "PKUNZIP FILENAME.ZIP" then <RETURN> at the DOS
prompt. For example, to unzip BASSTOUR.ZIP on a disk in the A drive
(A:), you would type the following:

A:\>PKUNZIP BASSTOUR.ZIP <ENTER>

The Archived file will unarchive and produce either a .EXE or a .COM
file, and usually a document file describing how to use the program.
These document files are often named README.TXT or, with Basstour,
BASSTOUR.DOC. Text files can be printed, viewed or edited as an
ascii text file with DOS or any word processor.
Uncompressing Your FTP'd Files

The most recent copy of this text may be anonymous ftp'd from
ux1.cso.uiuc.edu (128.174.5.59) in the directory /doc/pcnet as
as the file compression.
This file is maintained by David Lemson ([email protected]).
Please do not strip this note from this list when passing it on.
DECODING THIS CHART: This chart has been compacted to fit into 80 columns
so it can be viewed on-line. The first column is the name of the compression/
archiving technique. The next field is the file extension given to the
resulting file. After that are 5 columns each for a different operating system.
Each one of these consists of the name of the file/program to undo the given
compression/archiving style and a letter that tells where the file/program may
be obtained. All symbols and letters are decoded at the bottom portion of this
file.
ast Update: 5/14/91 Operating System/Unpackaging Program

NAME File DOS * Mac * Unix * VM/CMS * Amiga *


Extension
abe ? abe.exe N - abe Q - -
afio - - - afio ? - -
ar (any) - - ar L - -
ARC .ARC arc602.exe B ArcMac1.3c A arc521 B arcutil K Arc 0.23 Aa
ARJ .ARJ arj200.EXE B - - - -
BinHex .Hqx xbin23.zip B BinHex4.0 + A mcvert D binhex K -
binscii * - - - - -
BLU ? - - - - -
BOO .BOO msbpct.exe B ? ? - - -
msbmkb.exe
btoa (any)btoa N - btoa L - compress Ab
Bundle .bndl - Bundle E - - -
CardDump(any) - - - card K -
compact .C - - uncompact L - -
Compac-
tor .cpt - Compactor1.21 D - - -
Compac-
tor Pro .cpt - CompactorPro1.3 D - - -
compress.Z u16.zip A MacCompress3.2A compress L compress K compress Ac
comp430d.zip B
cpio ? pax2exe.zip H - cpio L - -
Crunch ? - - - arcutil K -
Diet (any)diet110a.zip B - - - -
Disk-
Doubler ? - DiskDoubler ? - - -
Disk- .DMS - - - - dms-102 T
Masher .EXE
DWC .DWC dwc-a501.exe B - - - -
FPack (any) ? ? FPack2.2 A ? ? - -
HPACK .HPK Beta test, not released yet - watch this space for more info *
HYPER .HYP hyper25.zip B - - - -
Imploder(any) - - - - imploder1.3 T
Larc .LZS larc333.zip B - - - -
LHA .LZH lha212.exe B - - - -
LHarc .LZH lh113c.exe H MacLHarc 0.41 D lharc102 I - LHarc Ad
LHWarp .LZW - - - - Lhwarp Ae
LU (LAR).LBR lue220.arc B - lar ? arcutil K -
LZari ? - MacLZAri 7-11 ? - - -
LZEXE .EXE lzexe91.zip A - - - -
LZSS .lzss ? ? LZSS 2.0b5 ? - - -
MDCD .MD mdcd10.arc B - - - -
nupack ? - - - - -
pack .Z - - unpack L - -
PackIt .pit UnPackIt ? PackIt3.1.3 A unpit ? - -
PAK .PAK pak250.exe H ? ? arc521 I - -
PKLITE .EXE pklte103.exe B - - - -
PKPAK .ARC pk361.exe A ArcMac1.3c A arc521 I arcutil K PKAX ?
PKZIP .ZIP pkz110eu.exe B UnZip1.02c D unzip401 B - PKAZip Af
Power- (any)
Packer .pp - - - - PowerPacker Ai
Scrunch .COM scrnch.arc B - - - -
Shark - - sh E
shell - .shar
archive toadshr1.arc B UnShar2.0 D unshar L - UnShar Ag
shrinkit.shk - - - - -
Shrink-
ToFit .stf - STF1.2 ? - - -
SPL ? - ? ? - - -
Squash .ARC squash.arc B - - - -
Squeeze .xQx sqpc131.arc B ? ? ? ? arcutil K Sq.Usq Ah
StuffIt .Sit mactopc. ? ? StuffIt 1.6 D unsit D - -
tar .tar tar.zip A UnTar2.0 D tar L - TarSplit Ai
tarread.arc I
pax.zoo J
pdtar.exe C
terse (any)terse.exe K - - terse K -
uuencode.UUE toaduu20.zip B UMCP-Tools1.0 ? uudecode L arcutil K uudecode Aj
Warp .WRP - - - - WarpUtil Ak
whap .AP - - yabbawhap M - -
xxencode.XXE toaduu20.zip B - xxdecode A xxdecode K -
yabba .Y - - yabbawhap M - -
ZOO .ZOO zoo201.exe A MacBooz2.1 D zoo201 B zoo K amigazoo A

Extended Chart:
VMS * Apple 2 * Atari * OS/2 * Windows3

abe ? - - - - -
afio - - - - - -
ar (any) - - - - -
ARC .arc arcvms.uue B dearc.bsq.Z B arc521b.arc R arc2.arc A -
ARJ .ARJ - - - - -
BinHex .Hqx - - - - -
binscii * - binscii.exe O - - -
BLU ? - ? - - -
BOO .BOO - - - - -
btoa (any) - - - - -
Bundle .bndl - - - - -
CardDump(any) - - - - -
compact .C - - - - -
Compac-
tor .cpt - - - - -
compress.Z lzcomp.exe P compress.shk J compress.arc R - -
cpio ? - - - - -
Crunch ? - - - - -
Disk-
Doubler ? - - - - -
DWC .DWC - - - - -
FPack (any) - - - - -
HPACK .HPK ? * ? * ? * ? * ? *

HYPER .HYP - - - - -
Larc .LZS - - - - -
LHarc .LZH - - lharc113.arc R clhar103 S -
LHWarp .LZW - - - - -
LU(LAR) .LBR vmssweep B - - - -
LZari ? - - - - -
LZEXE .EXE - - - - -
LZSS .lzss - - - - -
MDCD .MD - - - - -
nupack ? - nupack B - - -
PackIt .pit - - - - -
PAK .PAK - - - - -
PKPAK .ARC - - pkunarc.arc R - -
PKZIP .ZIP - - - pkz101-2.exe A -
Power-
Packer (any) - - - - -
Scrunch .COM - - - - -
shell-
archive .shar - unshar.shk J shar.arc R - -
shrinkit.shk - ? O - - -
Shrink-
ToFit .stf - - - - -
SPL ? - - - - -
Squash .ARC - - - - -
Squeeze ? vmsusq.pas B - ezsqueeze.arc R - -
StuffIt .Sit - - - - -
tar .tar vmstar Q - sttar.arc R - -
terse (any) - - - - -
uuencode.uue uudecode2.vmsB uu.en.decode J - - -
Warp .WRP - - - - -
xxencode.XXE - - - - -
ZOO .ZOO z201src1.arc B - booz.arc R booz.exe A -
z201src2.arc
WHERE TO GET THEM:
A. ux1.cso.uiuc.edu [128.174.5.59]
/pc/exec-pc/ {Zip, arc, lots of good stuff}
/pc/local
/mac/
/amiga/fish/(see individual references)

a ff070 b ff051 c ff051 d ff312 e ff305 f ff311 g ff345


h ff051 i ff053 j ff092 k ff243 i ff253

B. wuarchive.wustl.edu [128.152.135.4] (NFS mounted on uxa and mrcnext)


/mirrors/msdos/arc-lbr/ {arc, LHARC}
/filutl/ {msbpct - BOO, toadshr, DIET}
/sq-usq/ {NUSQ}
/mac/
/info-mac/util/
/unix-c/arc-progs/ {ARC, UNZIP}
/misc/vaxvms/

C. omnigate.clarkson.edu [128.153.4.2]
/pub/ncsa2.2tn/

D. sumex-aim.stanford.edu [36.44.0.6]
/info-mac/util/ {Stuffit classic, Compactor Pro, etc.}
/unix/ {unsit, mcvert}

E. uunet.uu.net [192.48.96.2]
/pub/
/ioccc/shar.1990.* {shark}

F. grape.ecs.clarkson.edu [128.153.28.129.]
- collection varies - see the file 'allfiles'

G. watsun.cc.columbia.edu [128.59.39.2]
Definitive source for KERMIT releases for all machines
/kermit/a/

H. wsmr-simtel20.army.mil [26.2.0.74]
Wuarchive's mirror is updated within 48 hours - recommended to
use wuarchive instead of simtel20.
cd pd1:<msdos.arc-lbr>

I. pc.usl.edu [130.70.40.3]
/pub/unix/

J. plains.nodak.edu [134.129.111.64]
/pub/appleII/GS/utils/
/nonGS/packers/

K. vmd.cso.uiuc.edu [128.174.5.98]
binhex - cd public.474
card - cd public.460
others - cd public.477

L. (should be available on all major unix systems including


wuarchive.wustl.edu in /unix-c/arc-progs)

M. comp.sources.unix archives
(varies, including wuarchive in /usenet/comp.sources.unix)

N. comp.binaries.ibm.pc archives
(varies, including wuarchive in /usenet/comp.binaries.ibm.pc)

O. tybalt.caltech.edu [131.215.139.100]
/pub/apple2/
/shrinkits/

P. kuhub.cc.ukans.edu [129.237.1.10]
/LZW/

Q. vmsa.oac.uci.edu [128.200.9.5]
/

R. terminator.cc.umich.edu [141.211.164.8]
/atari/archivers/

S. mtsg.ubc.ca [137.82.27.1]
/os2

T. ab20.larc.nasa.gov [128.155.23.64]
/amiga/utils/archivers/
NOTES:
Symbols: + means see the notes below for special information
- means that nothing exists to the best of my knowledge
? means that something exists but I do not know the name
of the program or where to get it
* means that e-mail should be sent to [email protected]
for details/explanation

Some uuencode/uudecode programs are able to read xxencode files.

When using tar.exe for PC's, the order of option flags is important.
For extraction, use tar -tvf <filename>.

ARC : From SEA, ARC 6.02 is the latest widespread shareware release.
It is available at A (ux1.cso.uiuc.edu).
Also, SEA has ARC 7.00, but it is commercial, not shareware.

When using binscii.exe for an Apple II, there are different file extensions
depending on the type of file being changed.

BinHexed files (with the extension .hqx) can be UnBinHexed with BinHex 4.0 or
Stuffit. BinHex5.0 format is a MacBinary format, while BinHex 4.0 files
are ASCII format.

The files listed are only guaranteed to uncompress/unarchive.


To make a compression/archive, further software may be needed.

USAGE NOTES:

There are certain "standard" combinations of compression used:


unix - .tar.Z
(often this will be .taz for PC's)
unix - tar.Z.btoa (abbrev. to .TZB sometimes) (aka "tarmail")

mac - .sit.hqx
- these must be undone in order starting at the end of the name

Sometimes an archive may be self-extracting. These will look like normal


executable programs. Simply run them to undo the archive.

LZEXE (PC), PKLITE(PC), Imploder(Amiga), and PowerPacker(Amiga)


are executable compressors.
They compress an executable file and attach an uncompressing header so that
the file can still be executed while in compressed form.
The listed programs for these utilities compress files, in order to uncompress
a file with these types of compression, just execute them.

DIET (PC) is a TSR program that compresses and decompresses both


executables and data files as needed.
DEFINITIVE SOURCES:

PKWARE Support BBS - avaliable 24 hours


(414) 352-7176

ZOO - author: Rahul Dhesi


source code in C on Usenet and GEnie's IBM PC Roundtable

ARC - SEA (System Enhancement Associates, Inc.)


21 New Street
Wayne, NJ 07470
[3] Uncompressing Your FTP'd Files [7] Granrose FTP List
[4] Finding Servers & Software [8] Gleason Macintosh FTP List

[M] Mail [H] Help [T] Top Menu [C] Comments [$] VMS Command
[A] Addresses [K] Keywords [-] Prev Menu [B] Back [V] Exit to VMS
[I] IU Events [O] AIE On/Off [N] Next [Q] Quit/Logout
What Anonymous FTP Servers are Available?

There are more than 600 anonymous FTP servers available on the
network and the number is growing. Two lists of FTP servers are
provided in this menu of the AIE to assist you in locating these
servers.

Granrose FTP list - This is a relatively complete list (at the


time it was updated) of the FTP servers available on the Internet.
Under many of the sites in this list you'll find descriptions of
the types of software you can expect to find at each server. This
is a very complete and informative list. Unfortunately, it is
unlikely that this list will be maintained much longer.

Gleason Macintosh FTP List - As the title indicates, this list


focuses on the Macintosh software that is available on anonymous
FTP sites (software for other machines is mentioned as well).
While this list isn't intended to be a comprehensive list, it is a
ood information source for users interested in Macintosh
software.

How do I Find the Type of Software or Information I'm Looking For?

This is a difficult question. At this time there is no service


that will answer questions like, "What public domain graphics
software is available for a Macintosh or IBM PC?", or "Where can I
get a listing of the US oil imports for the last five years?",
even though these applications and data may be readily available
from anonymous FTP servers if you knew where to look.

Archie represents one innovative approach to solving this problem.


Archie is an application developed at McGill University in Canada
which allows you to search a database of up-to-date information
about the files that are available on all the FTP servers on the
network. While Archie doesn't allow you to pose general questions
like the ones above, it does provide some sophisticated searching
apabilities. See the two selections, "Archie - Search Service
Intro" and "Archie Users Manual" for an introduction to Archie.

Recommended FTP Servers

While its difficult to know exactly which FTP server to connect to


transfer a given application, there are a few very large FTP sites
you should know about:

wsmr-simtel20.army.mil

This anonymous FTP server, maintained by the Army, is perhaps the


largest source for IBM-PC applications. Unfortunately, it is very
difficult to get into because they only allow a limited number of
simultaneous users and it is very popular.

sumex-aim.stanford.edu
This anonymous FTP site, maintained at Stanford, is perhaps the
largest source for Macintosh applications. All Macintosh
applications are in the "info-mac" subdirectory.

wuarchive.wustl.edu

This server, maintained at Washington University in St.Louis, is


one of the largest anonymous servers on the network. It contains
mirrors of both the simtel20 and sumex ftp sites described above.
(Mirrors are complete copies of the files on the other sites.
Sometimes it takes several days for new files to appear on the
mirror sites.) Rather than trying to get into the simtel20 FTP
server, you may want to connect to this Washington University site
instead.

-
Archie can be accessed via telnet to quiche.cs.mcgill.ca
Login as user: archie

Given the number of hosts being used as archive sites nowadays, there can
be great difficulty in finding needed software in a distributed
environment. You may know that the software that you need is out there, but
it can sometimes be difficult to find. The School of Computer Science at
McGill University has one solution to the problem - "archie".

Archie is a pair of software tools: the first maintains a list of about


600 Internet ftp archive sites. Each night software executes an
anonymous ftp to a subset of these sites and fetches a recursive
directory listing of each, which it stores in a database. We hit about
1/30th of the list each time, so each site gets updated about once a
month, hopefully balancing timely updates against unnecessary network
load. The "raw" listings are stored in compressed form on
quiche.cs.mcgill.ca (132.206.2.3), where they are made available via
anonymous ftp in the directory ~ftp/archie/listings.

The second tool is the interesting one as far as the users are concerned.
It consists of a program running on a dummy user code that allows
outsiders to log onto the archive server host to query the database.
This is in fact the program we call Archie.

Users can ask archie to search for specific name strings. For example,
"prog kcl" would find all occurences of the string "kcl" and tell you which
hosts have entries with this string, the size of the program, its last
modification date and where it can be found on the host along with some
other useful information. In this example, you could thus find those
archive sites that are storing Kyoto Common Lisp. With one central database
for all the archive sites we know about, archie greatly speeds the task of
finding a specific program on the net.

Complete anonymous ftp listings of the various sites that we keep in the
database may be obtained via the 'site' command and for a list of the
sites which we keep track of, see the 'list' command.

Archie also maintains a 'Software Description Database' which consists


of the names and descriptions of various software packages, documents
and datasets that are kept on anonymous ftp archive sites all around the
Internet. The 'whatis' command allows you to search this database.

Send comments, bug reports etc to

[email protected]

If you have a favourite anonymous ftp site that archie doesn't seem to
maintain, or if you have additions or corrections to the Software
Description database, send mail to

[email protected]

Archie was written and is maintained by Alan Emtage ([email protected])


and Bill Heelan ([email protected]). Peter Deutsch
([email protected]) provided (and continues to provide) ideas and
inspiration.

archie> help

Help gives you information about various topics, including all the
commands that are available and how to use them. Telling archie about
your terminal type and size (via the "term" variable) and to use the
pager (via the "pager" variable) is not necessary to use help, but
provides a somewhat nicer interface.

Currently, the available help topics are:


about - a blurb about archie
bugs - known bugs and undesirable features
bye - same as "quit"
email - how to contact the archie email interface
exit - same as "quit"
help - this message
list - list the sites in the archie database
mail - mail output to a user
nopager - *** use 'unset pager' instead
pager - *** use 'set pager' instead
prog - search the database for a file
quit - exit archie
set - set a variable
show - display the value of a variable
site - list the files at an archive site
term - *** use 'set term ...' instead
unset - unset a variable
whatis - search for keyword in the software description database

For information on one of these topics type:

help <topic>

A '?' at the help prompt will list the available sub-topics.

Help topics available:


about bugs bye email
list mail nopager pager
prog regex set show
site term unset whatis

Help topic?
NAME
archie - an Internet archive server listing service

SYNOPSIS
archie

DESCRIPTION
The archie system is a program which can query a database
maintained by the Computer Science Department of McGill
University. The database contains a list of software which
is available by means of anonymous ftp(1) to hosts connected
to the Internet network.

The system can be accessed in an interactive fashion or via


electronic mail (email). In order use the interactive sys-
tem:

1) Connect to host quiche.cs.mcgill.ca (132.206.2.3 or


132.206.51.1) with telnet(1).

2) Login as user archie (no capitals, no password


required). The system prints a banner message and
status report.

3) Type ``help'' for further information.

In order to use the email interface, send requests to

[email protected]

Send the word ``help'' in a message for available commands


and features. Please note that this is an automated inter-
face: no human sees it. See "THE EMAIL INTERFACE" section
below.

Comments and suggestions should be sent to

[email protected]

Adimistrative requests such as adding a site to the database


or modifying the Software Description Database should be
sent to

[email protected]

THE INTERACTIVE INTERFACE


Variables

archie has a number of variables which modify its behavior.


The values of these variables may be changed using the set
command. archie distinguishes between three types of vari-
able:

boolean
which may be either set or unset.
numeric
representing an integer within a pre-determined range.

string
whose value is a string of characters (which may or may
not be restricted).

The following variables are currently recognized

autologout

By default, archie will exit after one hour of idle


time. This value can be changed though this variable,
which represents in minutes, the length of idle time
before you are automatically logged out.

The minimum and maximum values are 1 and 300,


representing one minute through five hours.

Example:

set autologout 45

will cause you to be automatically logged out after 45


minutes of idle time.

mailto

A string variable whose value is a mail address, or


comma-separated list of addresses. Note that there must
not be any spaces within the list of addresses. If this
is set and the mail command is issued with no argu-
ments, then the output of the last command is mailed to
that address.

Example:

set mailto [email protected]

Example:

set mailto [email protected],[email protected]

All the various Internet addressing styles are under-


stood. BITNET sites should use the convention

[email protected]

UUCP addresses can be specified as

[email protected]

maxhits

A numeric variable whose value is the maximum number of


matches you want the prog command to generate.
If archie seems to be slow, or you don't want a lot of
output this can be set to a small value. ``maxhits''
must be within the range 0 to 1000. The default value
is 1000.

Example:

set maxhits 100

prog will now stop after 100 matches have been found

pager

A boolean variable which, when set, tells archie to


filter all output through the pager less(1L). When
using the pager you may also want to set the term vari-
able to your terminal type (see term variable).

Example:

set pager

search

This variable determines the kind of search performed


on the database by the prog command, providing flexi-
bilty on search times and types.

search is a string variable whose value is one of the


following:

sub

Substring (case insensitive). A simple, everyday


substring search. A match occurs if the the file
(or directory) name in the database contains the
user-given substring.

Example:

The pattern ``is'' will match ``islington''


and ``this'' and ``poison''

subcase

Substring (case sensitive). As above but the case


of the strings involved becomes significant.

Example:

``TeX'' will match ``LaTeX'' but not ``Latex''


or ``TExTroff''.

exact

Exact match. The fastest search method of all.


The restriction is that the user string (the argu-
ment to the prog command) has to exactly match
(including case) the string in the database. This
is provided for those of who who know just what
you are looking for.

For example, if you wanted to know where all the


``xlock.tar.Z'' files were, this is the kind of
search to use.

regex

This is the default search method. Searches the


database with the user (search) string which is
given in the form of an ed(1) regular expression.

NOTE: Unless specifically anchored to the begin-


ning (with ^) or end (with $) of a line, ed(1)
regular expressions (effectively) have ``.*''
prepended and appended to them. For example, it is
not necessary to say

prog .*xnlock.*

since

prog xnlock

will suffice. Thus the regex match becomes a sim-


ple substring match.

sortby

This variable describes how the output from the prog


command is to be ordered. It can have one of 5 values
(and their associated reverse orders). For each method,
the ``natural'' sort order (or at least, what we con-
sider to be the natural order) is the default.

hostname

Output is sorted on the archive hostname in lexi-


cal order.

Reverse order rhostname

time

Output is sorted with the most recent modifcation


times of the found file/directory names coming
first (youngest -> oldest).

Reverse order rtime

size

Output is sorted by the size of the found


files/directories, largest first.

Reverse order rsize


filename

Sorted in file/directory name lexical order.

Reverse order rfilename

none

This is the DEFAULT order.

Unsorted. There is no reverse order although rnone


is accepted for symmetry.

Typing the keyboard interrupt character ( Ctl-C for


most people on UNIX) during a search will cause the
search to aborted. The results up to that time will be
sorted (determined by the value of the sortby variable)
and the results output. The output phase may itself be
aborted by typing the abort character a second time.

status

This boolean variable determines if the status-line


will be displayed while the prog command is searching
through the database. If set (which is the default
value) then the number of matches and percentage of the
database searched is displayed. Otherwise no output is
given until the search is complete.

term This variable tells archie what type of terminal you


are using, and optionally its size in rows and columns.
This information is used by the pager.

The usage is:

set term <terminal-type> [<#rows> [<#columns>]]

That is, the terminal type is required, but the number


of rows and columns is optional. You may specify a
value for rows only, but if you want to change the
number of columns you must give a value for both rows
and columns. The default values for rows and columns
are 24 and 80.

Examples:

set term vt100

set term xterm 60

set term xterm 24 100

Regular Expressions

archie uses ed(1) regular expressions in a number of


commands.
A regular expression, on the one hand, is a string like
any other; a sequence of characters. On the other
hand, special characters within the string have certain
functions which make regular expressions useful when
trying to match portions of other strings. In the fol-
lowing discussion and examples, a string containing a
regular expression will be called the ``pattern'', and
the string against which it is to be matched is called
the ``reference string''.

Regular expressions allow one to search for ``all


strings ending with the letters ize
'' or ``all strings beginning with a number between 1
and 3 and ending in a comma''.

In order to accomplish this, regular expressions co-opt


the use of some characters to have special meaning.
They also provide for these characters to lose their
special meaning if the user so desires. The rules for
regular expresssion are

c Any character c matches itself unless it has been


assigned other special meaning as listed below. Most
special characters can be escaped (made to lose its
special meaning), by placing the character '\' in front
of it. This doesn't apply to '{' which is non-special
until it is escaped. Thus although '*' normally has
special meaning the string '\*' matches itself.

Example:

The pattern

acdef

matches

s83acdeffff or acdefsecs or acdefsecs

but not

accdef or aacde1f

That is it will any string that contains ``acdef'' any-


where in the reference string.

Example:

Normally the characters '*' and '$' are special,


but the pattern

a\*bse\$

acts as above. That is any reference string containing


``*abse$'' as a substring will be flagged as a match.
. A period matches any character except the newline
character. This is known as the wildcard character.

Example:

The pattern

....

will match any 4 characters in the reference string,


except a newline character.

^ If `^' appears at the begining of the pattern then it


is said to ``anchor'' the match to the beginning of the
line. That is, the reference string must start with the
pattern following the `^'. If this character appears
anywhere else other than at the beginning of the line,
then it is no longer considered special, and matches
itself as any non-special character would. Similarly if
it starts a string but is escaped, it matches itself.

Example:

The pattern
------------------------------------------------------------------------------

^efghi

Will match

efghi or efghijlk

but not

abcefghi

That is the pattern will match only those reference


strings starting with ``efghi''. Just containing the
substring is not sufficient.

$ Occurring at the end of the pattern, this character


``anchors'' the pattern to the end of the line (refer-
ence string). A '$' occurring anywhere else in the pat-
tern is regarded as a non-special. Similarly if it is
at the end of the pattern but is escaped, it is non-
special.

Example:

The pattern

efghi$

Will match

efghi or abcdefghi
but not

efghijkl

That is the pattern will match only those reference


strings ending with ``efghi''. Just containing the sub-
string is not sufficient.

\< This sequence in the pattern causes the one character


regular expression following it only to match something
at the beginning of a word: the beginning of a line or
just before a letter, digit or underline character, or
just after a charcter which is not one of these.

Example:

The pattern

\<abc

would match the last 'abc' in the reference string

@hijabc#+abc

but not the first since the first 'abc' did not start
on a ``word'' boundary.

\> Constrains the one-character regular expression fol-


lowing it to be at the end of a ``word'' as defined
above.

[string]

One or more characters within square brackets. This


pattern matches any single character within the brack-
ets. The caret, '^', has a special meaning if it is the
first character in the series: the pattern will match
any character other than one in the list.

Example:

The pattern

[^abc]

Will match any character except 'a', 'b' or 'c'.

To match a right bracket, ']', in the list it must be


put first:

[]ab01]

For a caret, '^', in the list it can appear anywhere


but first.

In
[ab^01]

the caret loses its special meaning.

The '-' character is special within square brackets. It


is interpreted as a range of characters (in the ASCII
character set) and will match any single character
within that range. '[a-z]' matches any lower case
letter. The '-' can be made non special by placing it
first or last within the square brackets.

The characters '$', '*' and '.' are not special within
square brackets.

Example:

The pattern

[ab01]

matches a single occurence of a character from the set


'a', 'b', '0', '1'.

Example:

The pattern

[^ab01]

will match any single character other than 'a', 'b',


'0', '1'.

Example :

The pattern

[a0-9b]

which matches one of 'a', 'b' or a digit between 0 and


9 inclusive.

Example :

The pattern

[^a0-9b.$]

means any single character not 'a', 'b' '.' , '$' or a


digit between 0 and 9 inclusive.

* An asterisk following a regular expression in the pat-


tern has the effect of matching zero or more
occurrences of that expression.
Example:

The pattern

a*

means zero or more occurrences of the character 'a'.

Example:
The pattern

[A-Z]*

means zero or more occurrences of the upper case alpha-


bet.

\{m\}

\{m,\}

\{m,n\}

A one-character regular expression followed by one of


the three of these constructions causes a range of
occurrences of that regular expression to be matched.
If it is followed by \{m\} where m is a non-negative
integer between 0 and 255 (inclusive), then exactly m
occurrences of that regular expression are matched. If
followed by \{m,\}, then at least m occurrences are
matched. Finally, if it is followed by \{m,n\} (where
n is a non-negative integer between 0 and 255 and where
n > m), then between m and n occurrences of the expres-
sion are matched.

Example:

The pattern

ab\{3\}

would match any substring in the reference string of an


'a' followed by exactly 3 'b's.

Example:

The pattern

ab\{3,\}

would match any substring in the reference string of an


'a' followed by at least 3 'b's.

Example:
The pattern

ab\{3,5\}

would match any substring in the reference string of an


'a' followed by at least 3 but at most 5 'b's.

Common Problems with Regular Expression

(1) When matching a substring it is not necessary to use


the wildcard character to match the part of the refer-
ence string preceeding and following the substring.

Example:

The pattern

abcd

will match any reference string containing this pat-


tern. It is not necessary to use

.*abcd.*

as the pattern.

(2) In order to constrain a pattern to the entire reference


pattern, use the the construction:

^pattern$

(3) The easiest way to obtain case insensitivity in a regu-


lar expression is to use the '[]' operator. For exam-
ple, a pattern to match the word ``hello'' regarless of
the case of the letters would be:

[Hh][Ee][Ll][Ll][Oo]

Commands

Arguments to commands shown here in square brackets


'[]' are optional. All others are mandatory. help List
the valid archie commands.

list [pattern]
This command provides a list of the sites currently
stored in the database and the time at which they were
last updated. There is an optional regular expression
argument to limit the list to specific sites.

Note that the numerical (IP) address associated with a


site name is valid at the listed time, but since they
do occasionally change, it is possible that a
discrepancy may occur until that site is updated in our
database. Furthermore, the listed IP address is the
primary, as listed in the DNS database: secondary
addresses are not stored.

Example:

list

will list all sites in the database, while

list \.de$

lists all German sites.

mail [address1,[address2...]]
With an argument (or arguments) the output of the last
command is mailed to the specified address or comma-
separated list of addresses. No spaces must appear
anywhere in the address list.

Example:

mail [email protected],[email protected]

Without an argument the output of the last command is


sent to the address specified in the mailto variable.

Example:

mail

All the various Internet addressing styles are under-


stood. BITNET sites should use the convention

[email protected]

UUCP address can be specified as

[email protected]

prog pattern
Find all occurrences of programs with names matching
pattern. How pattern is interpreted depends on the
value of the search variable. The output lists the
names of hosts with matching entries, the size of the
matching program, its last modification date and its
path.

The results are sorted according to the value of ths


sortby variable, and are limited in number by the max-
hits variable.

set variable-name
This command allows you to set one of archie's vari-
ables. Their values affect how archie interacts with
the user.

boolean variables are either set or unset


Example:

set pager

numeric variables take a number within a certain range

Example:

set maxhits 500

string variables take a (possibly restricted) string


value

Example:

set sortby time

See entries on unset and show .

show [variable-name]
This command is used to display the value of a partic-
ular variable, or all variables. With an argument it
will display the value of that variable, without an
argument it will display the value of all variables.

Example:

show maxhits

site sitename
This command allows you to get a full listing of an
ftp(1) site in the archie database. The output format
is similar to that of UNIX ls(1) long recursive (-lR)
listing.

Example:

site col.hp.com

unset variable
This causes the specified variable to have no value.
This means that it will not be used by archie until it
has been given a value with the set command.

Note: this may cause ``counter-intuitive'' behaviour in


The server recognizes the following commands. If a message
not containing any valid requests or an empty message is
received, it will be considered to be a help request.

path path
This lets the requestor override the address that would
normally be extracted from the header. If you do not
hear from the archive server within a couple of hours
might consider adding a path command to your request.
The path describes how to mail a message from
cs.mcgill.ca to your address. cs.mcgill.ca is fully
connected to the Internet.

BITNET users can use the convention

[email protected]

UUCP user can use the convention

[email protected]

help Will send you a message describing how to use the email
interface (basically this section).

prog <reg expr1> [<reg exp2> ...]

A search of the archie database is performed with each


<reg exp> (a regular expression as defined by ed(1)) in
turn, and any matches found are returned to the reques-
tor. Note that multiple <reg exp> may be placed on one
line, in which case the results will be mailed back to
you in one message. If you have multiple prog lines,
then multiple messages will be returned, one for each
line [This doesn't work as expected at the moment...
stay tuned].

Any regular expression containing spaces must be quoted


with single (') or double (") quotes. ALL OTHER ed(1)
rules must be followed.

NOTE: The searches are CASE SENSITIVE. The ability to


change this will hopefully be added soon.

The prog command is currently executed as if the search


variable were set to regex.

site <site name> | <site IP address>

A listing of the given <site name> will be returned.


The fully qualified domain name or IP address may be
used.

compress

ALL of your files in the current mail message will run


through compress(1) and uuencode(1). When you receive
the reply, remove everything before the ``begin'' line
and run it through uudecode(1). This will produce a .Z
file. You can then run uncompress(1) on this file and
get the results of your request.
quit Nothing past this point is interpreted. This is pro-
vided so that the occasional lost soul whose signature
contains a line that looks like a command can still use
the server without getting a bogus response.

THE ARCHIE DATABASE


The archie database subsystem maintains a list of about 600
Internet ftp(1) archive sites. Each night, the database
subsystem executes an anonymous ftp(1) to a subset of these
sites and fetches a recursive directory listing (or a file
containing the recursive directory listing if this exists).

Currently, each site gets updated approximately once a


month. The directory listings are stored on
quiche.cs.mcgill.ca (132.206.2.3), where they are available
to the Internet community via anonymous ftp(1). They appear
in the directory ~ftp/archie/listings in compressed form.

BUGS
1) Only UNIX sites are included in the database.

2) The user can not limit searches to specific sites.

3) There is no graphical user interface.

4) There is no way to abort the help facility completely.

It is hoped that all these will change in coming versions.

LONG TERM PLANS


The archie system is regarded as being ``in development''
and is not being released to outside sites at present. The
current database requires about 70 MB of disk storage, and
the updates and searches put a noticeable load on the Sun
4/280 on which it operating. Eventually, we hope to distri-
bute archie to several sites around the world.

We welcome comments and suggestions; please send them to


[email protected].

SEE ALSO
ftp(1), telnet(1)

AUTHORS
Alan Emtage ([email protected]), McGill University.

Bill Heelan ([email protected]), McGill University.

Manual page by R. P. C. Rodgers, UCSF School of Pharmacy,


San Francisco, California 94143
([email protected]) and Alan Emtage.

***************************************************************************
****ATTENTION**** I am going to be away this summer (in Japan). This means
that any updates you send me will not be implemented until I return. I will
leave the list and mail server in place on pilot as usual, it just won't be
being updated. However, June 1 is the last time the mailing list will be
used. Otherwise I will have to worry about my mail file being full of bounced
copies of the list and I am trying to keep it as small as possible. I am also
using this break to start the beginning of the end of this list. Now that
archie is available, I feel that there is no longer any need for this list.
When I return in September I will put out one more list with all the updates
of the summer and then one more with fixes. So you can look for the last
anonymous ftp list from me on October 1, 1991.
***************************************************************************

So what is archie? archie is a neat interactive database of anonymous


ftp sites available via telnet and mail. There is a file called "archie" on
pilot that is also available via the mail server. Take a look at that if you
don't know what archie is.

If you have any questions, comments, or anything else feel free to mail
me, but please read the rest of this header first!

This is my list of Internet sites accepting anonymous ftp. It is dis-


tributed automatically once each month.

If you are sending this on to someone or in any other way providing this
for someone else, please leave this header intact. Otherwise I get many
questions which this would have answered. Feel free to make this list avail-
able anywhere you like, as we all benefit from a freer flow of information.

This list is posted to comp.misc, and comp.sources.wanted, on Usenet and


is distributed via anonymous FTP from pilot.njin.net (128.6.7.38) as well as
being available from several other FTP sites (see list). I am also running a
simple mail-server from my account on pilot. For more information about the
server, mail [email protected] with a subject of "listserv-request" and a
message body of "send help". Rather than requesting the latest list from me
by mail, simply send the request to the listserv. If you send me a request
for the latest list, I will send you the help file for the listserv.

Special thanks goes to Edward Vielmetti for all the work he does posting
new archive information to comp.archives and to David Katinsky, who allows me
to work on this list from pilot.

If there are any corrections/updates/etc to be made please mail me at


[email protected]. That also goes for descriptions of the archives. I
don't have time to personally check each and every site so if you use a site
regularly and can put together a better description, please tell me so I can
update this list. This is especially true for sites described as "unknown"
or with vague descriptions. Also, if you are providing updates, it is easi-
est on me if you either state "add/remove <whatever>" or simply supply me
with a complete new description of the site. This makes it easier for me to
make the changes without any errors, especially in the case of archives being
moved to different sites.

The last line for each site contains the date of last modification, and
the login and password in the form <login>/<password>. For the sites that
have "[email protected]" for the password, substitute your own mail address
([email protected]). It is suggested that you use your mail address as the
password wherever possible, even if it isn't required to let sites keep
better track of who is using their site. For those people who dislike the
date or the login and password there, grep it out yourself. If you can't
stand the format the list is in, the raw database is available from pilot and
you can write your own format program.

For those unfortunates who do not have ftp but do have mail, I have
included the mail address of an archive that will retrieve files for you
through the mail. Send "help" in a message to the server to find out the
exact commands necessary.

The only mail-ftp archive I know of is:

[email protected] (most well-known)

Please don't ask me how to use it, as it can explain itself better than I
can.

Thanks,
Jon Granrose
July 11, 1991
+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+
REMINDER: Anonymous FTP is a privilege, not a right. The site administrators
for the sites listed below have made their systems available out of the good-
ness of their hearts. Please respect their wishes and restrict your FTPing
to non-prime hours (1900 - 0600 hours local time for the site). This is
especially true for sites not in your country. Please keep that in mind when
you are FTPing. None of us want to see sites start to close down because a
few are being inconsiderate.

===============================================================================
a.cs.uiuc.edu 128.174.252.1 TeX, dvi2ps, gif, texx2.7,
a.cs.uiuc.edu amiga, GNUmake, GNU
a.cs.uiuc.edu 08/22/90 5 anonymous/[email protected]

a.psc.edu 128.182.66.105 GPLOT, GTEX


a.psc.edu 128.182.65.1
a.psc.edu 12/31/90 4 anonymous/[email protected]

aarnet.edu.au 130.56.4.16 Australian AARNET network


aarnet.edu.au stats
aarnet.edu.au 01/03/91 -12 anonymous/[email protected]

ab20.larc.nasa.gov 128.155.23.64 amiga, comp.sources.amiga,


ab20.larc.nasa.gov comp.binaries.amiga
ab20.larc.nasa.gov 04/01/91 4 anonymous/[email protected]

acd.ucar.edu 128.117.32.1 unknown


acd.ucar.edu 03/17/91 6 anonymous/[email protected]

acfcluster.nyu.edu 128.122.128.11 VMS UUCP, news, DECUS library

acfcluster.nyu.edu 128.122.128.17 catalog, vsmnet.sources,


acfcluster.nyu.edu 128.122.128.16 info-vax code segments
acfcluster.nyu.edu 01/02/91 4 anonymous/[email protected]

acns.nwu.edu 129.105.49.1 virus info/programs, maps


acns.nwu.edu 05/15/90 5 anonymous/[email protected]

acorn.cs.brandeis.edu 129.64.3.8 unknown


acorn.cs.brandeis.edu 12/31/90 5 anonymous/[email protected]

acsc.acsc.com 143.127.0.2 unknown


acsc.acsc.com 04/24/91 7 anonymous/[email protected]

addvax.llnl.gov 128.115.19.32 GNU Emacs


addvax.llnl.gov 02/21/91 7 anonymous/[email protected]

admin.viccol.edu.au 139.132.5.1 unknown


admin.viccol.edu.au 03/25/91 anonymous/[email protected]

ads.com 128.229.30.16 internet mailing lists,


ads.com vision-list, info-graphics
ads.com 05/15/90 7 anonymous/[email protected]

aelred-3.ie.org 192.48.115.36 enhanced billing design paper

aelred-3.ie.org 05/15/90 4 anonymous/[email protected]

aeneas.mit.edu 18.71.0.38 GNU emacs, kerberos


aeneas.mit.edu 05/15/90 4 anonymous/[email protected]

aerospace.aero.org 130.221.192.10 minix


aerospace.aero.org 05/31/90 7 anonymous/[email protected]

ahkcus.org 192.55.187.25 unknown


ahkcus.org 04/24/91 5 anonymous/[email protected]

ais.org 141.211.206.16 unknown


ais.org 12/31/90 7 anonymous/[email protected]

aisun1.ai.uga.edu 128.192.12.9 lisp, prolog, natural


aisun1.ai.uga.edu language processing, msdos
aisun1.ai.uga.edu utils
aisun1.ai.uga.edu 03/14/91 4 anonymous/[email protected]

aix.rpi.edu 128.113.26.50 aix/370 tcpip benchmarks


aix.rpi.edu 01/17/91 7 anonymous/[email protected]

aix370.rrz.uni-koeln.de 134.95.80.1 unknown


aix370.rrz.uni-koeln.de 134.95.132.2
aix370.rrz.uni-koeln.de 03/22/91 anonymous/[email protected]

ajpo.sei.cmu.edu 128.237.2.253 all the ADA you could ask for

ajpo.sei.cmu.edu 05/15/90 4 anonymous/[email protected]

akbar.cac.washington.edu 128.95.112.1 Next


akbar.cac.washington.edu 05/31/90 7 anonymous/[email protected]

albanycs.albany.edu 128.204.1.4 nothing


albanycs.albany.edu 06/18/90 4 anonymous/[email protected]

alcazar.cd.chalmers.se 129.16.48.100 TeX, amoeba, lpmud


alcazar.cd.chalmers.se 08/22/90 -1 anonymous/[email protected]

alex.stacken.kth.se 130.237.237.3 unknown


alex.stacken.kth.se 02/23/91 -2 anonymous/[email protected]
alfred.ccs.carleton.ca 134.117.1.1 unknown
alfred.ccs.carleton.ca 02/23/91 4 anonymous/[email protected]

allspice.berkeley.edu 128.32.150.27 unknown


allspice.berkeley.edu 02/23/91 7 anonymous/[email protected]

allspice.lcs.mit.edu 18.26.0.115 RFCs1056 (PCMAIL) stuff, MIT


allspice.lcs.mit.edu snmp
allspice.lcs.mit.edu 05/15/90 4 anonymous/[email protected]

altdorf.ai.mit.edu 18.43.0.246 c-scheme


altdorf.ai.mit.edu 03/28/91 4 anonymous/[email protected]

alumni.colorado.edu 128.138.243.32 eli, mactivation


alumni.colorado.edu 02/08/91 6 anonymous/[email protected]

alw.nih.gov 128.231.128.251 NIH Image 1.19


alw.nih.gov 05/15/90 4 anonymous/[email protected]

amarna.gsfc.nasa.gov 128.183.112.2 VAX/VMS VNEWS source


amarna.gsfc.nasa.gov 12/31/90 4 anonymous/[email protected]

amazonas.cs.columbia.edu 128.59.16.72 unknown


amazonas.cs.columbia.edu 12/26/90 4 anonymous/[email protected]

amelia.nas.nasa.gov 129.99.23.5 Perl2.0 Perl3.0


amelia.nas.nasa.gov 129.99.196.1
amelia.nas.nasa.gov 08/22/90 7 anonymous/[email protected]

ames.arc.nasa.gov 128.102.18.3 pcrrn, GNU grep, conf, grep,


ames.arc.nasa.gov iso.ps, mmdf, popd, sail,
ames.arc.nasa.gov xfer, zmodem, SCUBA, Space
ames.arc.nasa.gov archives, 3b2 source and info

ames.arc.nasa.gov 07/06/90 7 anonymous/[email protected]

amos.ucsd.edu 128.54.16.43 unknown


amos.ucsd.edu 05/31/90 7 anonymous/[email protected]

andy.bgsu.edu 129.1.1.2 Unix sysadm tools, Unix Vote


andy.bgsu.edu 129.1.2.2 by mail, Unix etc., College
andy.bgsu.edu hockey stats
andy.bgsu.edu 09/22/90 4 anonymous/[email protected]

andy.che.utexas.edu 128.83.162.5 unknown


andy.che.utexas.edu 01/17/91 5 anonymous/[email protected]

anna.stanford.edu 36.14.0.13 Anna (Annotated Ada) software

anna.stanford.edu and docs


anna.stanford.edu 04/07/91 7 anonymous/[email protected]

apocalypse.engr.ucf.edu 132.170.200.67 UCFImage


apocalypse.engr.ucf.edu 04/24/91 4 anonymous/[email protected]

apple.com 130.43.2.2 tech-notes, worm papers


apple.com 05/15/90 7 anonymous/[email protected]

aramis.rutgers.edu 128.6.4.2 idea, RFCs


aramis.rutgers.edu 128.6.25.2
aramis.rutgers.edu 05/15/90 4 anonymous/[email protected]

archive.egr.msu.edu 35.8.8.177 info-pmdf archive,


archive.egr.msu.edu cmu-tek-tcp
archive.egr.msu.edu 02/06/91 5 anonymous/[email protected]

argus.stanford.edu 36.56.0.151 netinfo


argus.stanford.edu 08/22/90 7 anonymous/[email protected]

ariadne.csi.forth.gr 139.91.1.1 unknown


ariadne.csi.forth.gr 03/31/91 -4 anonymous/[email protected]

ariel.unm.edu 129.24.8.1 university networking ethics


ariel.unm.edu documents
ariel.unm.edu 05/15/90 6 anonymous/[email protected]

arisia.xerox.com 13.1.100.206 sunfixes, mac, LispUsers,


arisia.xerox.com tcp/ip, IDA sendmail kit,
arisia.xerox.com Portable Common Runtime
arisia.xerox.com 08/22/90 7 anonymous/[email protected]

armstrong.cs.buffalo.edu 128.205.32.3 rec.radio.amateur.* archives


armstrong.cs.buffalo.edu 128.205.36.1
armstrong.cs.buffalo.edu 03/31/91 4 anonymous/[email protected]

arp.anu.edu.au 130.56.4.90 F77 compress


arp.anu.edu.au 12/15/90 -10 anonymous/[email protected]

arthur.cs.purdue.edu 128.10.2.1 RCS, buildtex, deTeX, mac32,


arthur.cs.purdue.edu Purdue Tech Reports, xspeed
arthur.cs.purdue.edu 08/22/90 4 anonymous/[email protected]

ashley.cs.widener.edu 192.55.239.132 unknown


ashley.cs.widener.edu 12/26/90 4 anonymous/[email protected]

askhp.ask.uni-karlsruhe.de 192.67.194.33 unknown


askhp.ask.uni-karlsruhe.de 192.67.194.194
askhp.ask.uni-karlsruhe.de 04/24/91 anonymous/[email protected]

asuvax.eas.asu.edu 129.219.30.5 fidonet node list


asuvax.eas.asu.edu 07/10/90 6 anonymous/[email protected]

atari.archive.umich.edu 141.211.164.8 unknown


atari.archive.umich.edu 03/17/91 anonymous/[email protected]

atc.boeing.com 130.42.28.80 unknown


atc.boeing.com 04/24/91 7 anonymous/[email protected]

atc.sp.unisys.com 129.218.100.161 unknown


atc.sp.unisys.com 05/25/91 5 anonymous/[email protected]

athena.cs.uga.edu 128.192.4.49 gnu, elm, top, cops, etc.


athena.cs.uga.edu 05/25/91 4 anonymous/[email protected]

athena.erc.msstate.edu 130.18.80.23 fidonet node list


athena.erc.msstate.edu 07/10/90 6 anonymous/[email protected]

athos.rutgers.edu 128.6.4.4 dvidoc


athos.rutgers.edu 128.6.25.4
athos.rutgers.edu 05/15/90 4 anonymous/[email protected]

att-in.att.com 192.20.239.129 PSPreviewer


att-in.att.com 05/31/90 4 anonymous/[email protected]

audrey.sait.edu.au 130.220.16.88 unknown


audrey.sait.edu.au 03/31/91 -10 anonymous/[email protected]

augean.ua.oz.au 129.127.4.2 patches for gdb and gas


augean.ua.oz.au 129.127.28.4
augean.ua.oz.au 06/02/90 -11 anonymous/[email protected]

aupair.cs.athabascau.ca 131.232.4.1 unknown


aupair.cs.athabascau.ca 131.232.10.8
aupair.cs.athabascau.ca 04/24/91 6 anonymous/[email protected]

aurora.arc.nasa.gov 128.102.21.1 Rhosettastone


aurora.arc.nasa.gov 05/31/90 7 anonymous/[email protected]

avahi.inria.fr 138.96.24.30 xfedor


avahi.inria.fr 08/06/90 -2 anonymous/[email protected]

b.gp.cs.cmu.edu 128.2.242.8 unknown


b.gp.cs.cmu.edu 05/25/91 4 anonymous/[email protected]

b.psc.edu 128.182.66.102 GPLOT, GTEX


b.psc.edu 128.182.65.2
b.psc.edu 12/31/90 4 anonymous/[email protected]

b.scs.uiuc.edu 128.174.90.2 LaTex


b.scs.uiuc.edu 08/22/90 5 anonymous/[email protected]

ba.excelan.com 130.57.8.6 misc. (looking for


ba.excelan.com suggestions)
ba.excelan.com 08/22/90 7 anonymous/[email protected]

babar.mmwb.ucsf.edu 128.218.21.42 unknown


babar.mmwb.ucsf.edu 03/17/91 7 anonymous/[email protected]

bach.cs.umb.edu 192.12.26.23 web2c, TeX stuff


bach.cs.umb.edu 04/11/91 4 anonymous/[email protected]

bbn.com 128.89.0.122 uumap


bbn.com 05/16/90 4 anonymous/[email protected]

bcm.tmc.edu 128.249.2.1 nfs list, Texas UUCP maps


bcm.tmc.edu 05/15/90 5 anonymous/[email protected]

beach.cis.ufl.edu 128.227.224.2 Pink Floyd mailing list


beach.cis.ufl.edu archives
beach.cis.ufl.edu 02/04/91 4 anonymous/[email protected]

belch.berkeley.edu 128.32.152.202 tinymud help robot, tinymuck


belch.berkeley.edu 07/09/90 7 anonymous/[email protected]

belgica.stat.washington.edu 128.95.17.57 unknown


belgica.stat.washington.edu 02/23/91 7 anonymous/[email protected]
bert.cs.byu.edu 128.187.2.20 unknown
bert.cs.byu.edu 12/26/90 7 anonymous/[email protected]

bessel.clsc.utoronto.ca 128.100.104.6 unknown


bessel.clsc.utoronto.ca 02/23/91 4 anonymous/[email protected]

betwixt.cs.caltech.edu 131.215.128.4 unknown


betwixt.cs.caltech.edu 03/22/91 anonymous/[email protected]

bikini.cis.ufl.edu 128.227.224.1 comp.simulation, IBM RT BSD


bikini.cis.ufl.edu patches
bikini.cis.ufl.edu 05/15/90 4 anonymous/[email protected]

biom3.univ-lyon1.fr 134.214.100.42 ACNUC nucleic acid sequences


biom3.univ-lyon1.fr database
biom3.univ-lyon1.fr 02/21/91 -2 anonymous/[email protected]

birger.forut.no 128.39.63.102 IEEE P1157 MEDIX documents


birger.forut.no 04/11/91 -2 anonymous/[email protected]

bitnic.educom.edu 192.52.179.2 nicbbs archives


bitnic.educom.edu 12/24/90 4 anonymous/[email protected]

bitsy.mit.edu 18.72.0.3 mit worm paper


bitsy.mit.edu 05/15/90 4 anonymous/[email protected]

black.cerritos.edu 130.150.200.21 unknown


black.cerritos.edu 03/17/91 anonymous/[email protected]

blackbird.afit.af.mil 129.92.1.2 unknown


blackbird.afit.af.mil 05/25/91 4 anonymous/[email protected]

blackbox.mit.edu 18.80.0.55 unknown


blackbox.mit.edu 04/24/91 4 anonymous/[email protected]

bmc1.bmc.uu.se 130.238.4.81 VMS news, drivers over


bmc1.bmc.uu.se Decnet, X25 and SLIP for CMU
bmc1.bmc.uu.se TCP/IP v6.3
bmc1.bmc.uu.se 08/22/90 -2 anonymous/[email protected]

bnlux0.bnl.gov 130.199.128.1 looking for suggestions


bnlux0.bnl.gov 05/15/90 4 anonymous/[email protected]

bobcat.bbn.com 128.89.2.103 nothing


bobcat.bbn.com 08/22/90 5 anonymous/[email protected]

bongo.cc.utexas.edu 128.83.186.13 unknown


bongo.cc.utexas.edu 05/25/91 5 anonymous/[email protected]

boole.stanford.edu 36.8.0.65 concurrency models, algebra


boole.stanford.edu 04/10/91 7 anonymous/[email protected]

boombox.micro.umn.edu 128.101.95.95 networking stuff (POPmail,


boombox.micro.umn.edu Mailstop)
boombox.micro.umn.edu 08/22/90 7 anonymous/[email protected]

boulder.civ.toronto.edu 128.100.14.11 unknown


boulder.civ.toronto.edu 10/09/90 4 anonymous/[email protected]
boulder.colorado.edu 128.138.240.1 unix-pc, sun, Esperanto,
boulder.colorado.edu 128.138.238.18 ghostscript
boulder.colorado.edu 12/31/90 6 anonymous/[email protected]

brazos.rice.edu 128.42.42.2 pub/X11R3/core.src


brazos.rice.edu 05/15/90 5 anonymous/[email protected]

bric-a-brac.apple.com 130.43.2.3 unknown


bric-a-brac.apple.com 05/25/91 7 anonymous/[email protected]

brillig.cs.umd.edu 128.8.128.79 icons


brillig.cs.umd.edu 10/25/90 4 anonymous/[email protected]

brokaw.lcs.mit.edu 18.30.0.33 pc-omega, bison, scheme util


brokaw.lcs.mit.edu 05/15/90 4 anonymous/[email protected]

brolga.cc.uq.oz.au 130.102.128.5 comp.sources.amiga,


brolga.cc.uq.oz.au comp.sources.games,
brolga.cc.uq.oz.au comp.sources.misc,
brolga.cc.uq.oz.au comp.sources.sun,
brolga.cc.uq.oz.au comp.sources.unix,
brolga.cc.uq.oz.au comp.windows.news, gnu, RFCs,

brolga.cc.uq.oz.au isode, pp
brolga.cc.uq.oz.au 01/17/91 -12 anonymous/[email protected]

brownvm.brown.edu 128.148.128.40 mac, tn3270


brownvm.brown.edu 08/22/90 4 anonymous/[email protected]

bu.edu 128.197.2.6 RFCs, mail utils


bu.edu 05/15/90 4 anonymous/[email protected]

buacca.bu.edu 128.197.2.4 unknown


buacca.bu.edu 08/22/90 4 anonymous/[email protected]

bugs.nosc.mil 128.49.16.1 Minix, ada math


bugs.nosc.mil 05/29/90 7 anonymous/[email protected]

buhub.bradley.edu 136.176.10.9 u3g (univ. unix users group)


buhub.bradley.edu 03/17/91 anonymous/[email protected]

bull.cs.williams.edu 137.165.5.2 ParaGraph


bull.cs.williams.edu 05/31/90 4 anonymous/[email protected]

bulldog.cs.yale.edu 128.36.0.3 ispell, ease report


bulldog.cs.yale.edu 130.132.1.2
bulldog.cs.yale.edu 08/05/90 4 anonymous/[email protected]

burdvax.prc.unisys.com 128.126.10.33 diana


burdvax.prc.unisys.com 05/29/90 4 anonymous/[email protected]

byron.u.washington.edu 128.95.48.32 unknown


byron.u.washington.edu 01/17/91 anonymous/[email protected]

c.scs.uiuc.edu 128.174.90.3 adventure, dungeon, world,


c.scs.uiuc.edu some astronomy gifs
c.scs.uiuc.edu 01/02/91 5 anonymous/[email protected]

cadillac.siemens.com 129.73.2.39 unknown


cadillac.siemens.com 04/24/91 4 anonymous/[email protected]

cadvax.clarkson.edu 128.153.4.11 unknown


cadvax.clarkson.edu 08/22/90 4 anonymous/[email protected]

caf.mit.edu 18.62.0.232 giraphe3


caf.mit.edu 05/29/90 4 anonymous/[email protected]

calpe.psc.edu 128.182.62.148 GPLOT, GTEX


calpe.psc.edu 05/29/90 4 anonymous/[email protected]

calvin.nmsu.edu 128.123.35.150 unknown


calvin.nmsu.edu 05/25/91 6 anonymous/[email protected]

casbah.acns.nwu.edu 129.105.113.52 unknown


casbah.acns.nwu.edu 03/22/91 5 anonymous/[email protected]

caticsuf.cati.csufresno.edu 129.8.100.15 Weather/Drought info for


caticsuf.cati.csufresno.edu California, International
caticsuf.cati.csufresno.edu Market Research, public
caticsuf.cati.csufresno.edu telnet login
caticsuf.cati.csufresno.edu 02/21/91 7 anonymous/[email protected]

cayuga.cs.rochester.edu 192.5.53.209 JOVE, NL-KR mail list


cayuga.cs.rochester.edu 09/22/90 4 anonymous/[email protected]

cc.sfu.ca 128.189.32.250 msdos, mac


cc.sfu.ca 08/22/90 4 anonymous/[email protected]

cc.tut.fi 128.214.23.10 unknown


cc.tut.fi 03/17/91 -3 anonymous/[email protected]

cc.utah.edu 128.110.48.3 nothing


cc.utah.edu 12/31/90 6 anonymous/[email protected]

ccadfa.cc.adfa.oz.au 131.236.1.2 unknown


ccadfa.cc.adfa.oz.au 10/09/90 -11 anonymous/[email protected]

ccb.ucsf.edu 128.218.1.13 comp.sources, GNU stuff,


ccb.ucsf.edu sound_list archives
ccb.ucsf.edu 10/30/90 7 anonymous/[email protected]

ccu1.aukuni.ac.nz 130.216.1.5 unknown


ccu1.aukuni.ac.nz 04/24/91 anonymous/[email protected]

ccv1.bbn.com -+I 128.89.4.29 unknownM(gcve{-b*.-+mH"!II


03/17/91 4 anonymous/[email protected]
cdc1.cc.lehigh.edu 128.180.2.7 cybserv
cdc1.cc.lehigh.edu 128.180.2.17
cdc1.cc.lehigh.edu 09/22/90 -4 anonymous/guest
cecelia.media.mit.edu 18.85.0.104 unknown
cecelia.media.mit.edu 08/22/90 4 anonymous/[email protected]

cerl.cecer.army.mil 129.229.1.101 Pcomm and patches 1-8


cerl.cecer.army.mil 09/07/90 5 anonymous/[email protected]

cert.sei.cmu.edu 128.237.253.5 virus-l archives


cert.sei.cmu.edu 05/29/90 4 anonymous/[email protected]
chalmers.se 129.16.1.1 RFCs, sunet information (runs

chalmers.se whois server)


chalmers.se 08/22/90 -2 anonymous/[email protected]

chamartin.ai.mit.edu 18.43.0.171 liar, scheme


chamartin.ai.mit.edu 08/22/90 4 anonymous/[email protected]

chaos.swarthmore.edu 130.58.65.3 unknown


chaos.swarthmore.edu 10/09/90 4 anonymous/[email protected]

charly.bl.physik.tu-muenchen.de 129.187.160.10 unknown


charly.bl.physik.tu-muenchen.de 03/17/91 -2 anonymous/[email protected]

charon.mit.edu 18.70.0.224 perl+patches, xdvi, world map

charon.mit.edu data
charon.mit.edu 05/29/90 4 anonymous/[email protected]

chem.bu.edu 128.197.30.18 unknown


chem.bu.edu 08/20/90 4 anonymous/[email protected]

cheops.cis.ohio-state.edu 128.146.8.62 unknown


cheops.cis.ohio-state.edu 12/24/90 4 anonymous/[email protected]

chiris.stevens-tech.edu 192.12.216.114 TeX, ChTeX


chiris.stevens-tech.edu 07/09/90 4 anonymous/[email protected]

chmsr.gatech.edu 128.61.3.10 tamil font


chmsr.gatech.edu 08/22/90 4 anonymous/[email protected]

cica.cica.indiana.edu 129.79.20.22 misc unix, pc, NeXT updates,


cica.cica.indiana.edu ms windows
cica.cica.indiana.edu 03/01/91 4 anonymous/[email protected]

cicero.cs.umass.edu 128.119.40.189 large collection of digitized

cicero.cs.umass.edu images
cicero.cs.umass.edu 12/25/90 4 anonymous/[email protected]

cis.ohio-state.edu 128.146.8.62 NeWS, alt.gourmand, unix-pc,


cis.ohio-state.edu 128.146.8.60 comp.sources.misc,
cis.ohio-state.edu 128.146.8.61 comp.sources.unix,
cis.ohio-state.edu 128.146.8.98 comp.sources.x, idea, ien,
cis.ohio-state.edu netinfo, rfc
cis.ohio-state.edu 12/31/90 4 anonymous/[email protected]

citi.umich.edu 141.211.128.16 pathalias, CITI macIP


citi.umich.edu 09/22/90 4 anonymous/[email protected]

cli.com 192.31.85.1 akcl piton proof-checker


cli.com 08/22/90 7 anonymous/[email protected]

climate.gsfc.nasa.gov 128.183.46.16 unknown


climate.gsfc.nasa.gov 04/27/91 3 anonymous/[email protected]

clouso.crim.ca 192.26.210.1 RISQnet related documents,


clouso.crim.ca mail lists, reports, and
clouso.crim.ca announcements, awa: ca domain
clouso.crim.ca reg., RFCs, IEFT, etc.
clouso.crim.ca 05/29/90 4 anonymous/[email protected]

clover.ucdavis.edu 128.120.57.1 eepic, fig2epic, HOL


clover.ucdavis.edu 05/29/90 7 anonymous/[email protected]

clutx.clarkson.edu 128.153.4.3 BBSLists Batch ISETL


clutx.clarkson.edu MicroEmacs SmallTalk TurboC
clutx.clarkson.edu TurboPas Z100 aplc
clutx.clarkson.edu ghostscript uupc xlisp
clutx.clarkson.edu 06/03/90 4 anonymous/[email protected]

clvax1.cl.msu.edu 35.8.2.1 MS Windows


clvax1.cl.msu.edu 08/22/90 4 anonymous/[email protected]

cmns.think.com 131.239.2.100 Connection machine starlisp


cmns.think.com simulator, starlisp
cmns.think.com simulator, gmacs, thinking
cmns.think.com machines gmacs hacks, other
cmns.think.com connection machine softare
cmns.think.com 05/07/91 4 anonymous/[email protected]

cobalt.cco.caltech.edu 131.215.48.200 unknown


cobalt.cco.caltech.edu 03/31/91 7 anonymous/[email protected]

cod.nosc.mil 128.49.16.5 unknown


cod.nosc.mil 07/08/90 7 anonymous/[email protected]

cogsci.indiana.edu 129.79.238.6 unknown


cogsci.indiana.edu 04/24/91 5 anonymous/[email protected]

col.hp.com 15.255.240.16 NOS


col.hp.com 08/22/90 7 anonymous/[email protected]

columbia.edu 128.59.16.1 NEST network simulation


columbia.edu 128.59.32.1 testbed
columbia.edu 05/29/90 4 anonymous/[email protected]

connemara.math.arizona.edu 128.196.224.5 irisplot


connemara.math.arizona.edu 05/15/90 6 anonymous/[email protected]

convex.com 130.168.1.1 perl sources, perl examples


convex.com 02/19/91 5 anonymous/[email protected]

copernicus.berkeley.edu 128.32.240.37 unknown


copernicus.berkeley.edu 01/22/91 7 anonymous/[email protected]

coral.bucknell.edu 134.82.1.1 nothing


coral.bucknell.edu 12/31/90 4 anonymous/[email protected]

coral.hss.cmu.edu 128.2.229.218 MPW


coral.hss.cmu.edu 08/22/90 4 anonymous/[email protected]

corto.inria.fr 128.93.11.2 unknown


corto.inria.fr 12/26/90 -2 anonymous/[email protected]

cpsc.ucalgary.ca 136.159.2.1 unknown


cpsc.ucalgary.ca 03/31/91 6 anonymous/[email protected]
crl.dec.com 192.58.206.2 X11R4, neuralnets tinymud
crl.dec.com 05/31/90 4 anonymous/[email protected]

crvax.sri.com 128.18.10.1 RISKS Digest archive


crvax.sri.com 12/31/90 7 anonymous/[email protected]

cs-sun-fsa.cpsc.ucalgary.ca 136.159.2.1 xinterface, text compression


cs-sun-fsa.cpsc.ucalgary.ca 136.159.4.1 corpus, the reactive keyboard

cs-sun-fsa.cpsc.ucalgary.ca 10/25/90 6 anonymous/[email protected]

cs.arizona.edu 192.12.69.5 Icon, SR, SBprolog, SNOBOL4


cs.arizona.edu languages, xkernel
cs.arizona.edu communications kernel
cs.arizona.edu 05/15/90 6 anonymous/[email protected]

cs.bu.edu 128.197.2.1 conquer


cs.bu.edu 128.197.10.1
cs.bu.edu 03/22/91 4 anonymous/[email protected]

cs.columbia.edu 128.59.16.20 ispell


cs.columbia.edu 05/15/90 4 anonymous/[email protected]

cs.dal.ca 129.173.4.5 unknown


cs.dal.ca 05/25/91 3 anonymous/[email protected]

cs.nyu.edu 128.122.140.24 unknown


cs.nyu.edu 10/25/90 4 anonymous/[email protected]

cs.orst.edu 128.193.32.1 Xlisp, smalltalk, TOPS


cs.orst.edu Terminal, NeXT
cs.orst.edu 05/15/90 7 anonymous/[email protected]

cs.rpi.edu 128.213.1.1 Cellsim


cs.rpi.edu 12/31/90 4 anonymous/[email protected]

cs.stthomas.edu 140.209.5.1 unknown


cs.stthomas.edu 03/17/91 5 anonymous/[email protected]

cs.ucl.ac.uk 128.16.5.31 DIS CMIS/P


cs.ucl.ac.uk 08/22/90 -1 anonymous/[email protected]

cs.uni-sb.de 134.96.7.254 GNU, atari, RFCs, perl, misc


cs.uni-sb.de utils
cs.uni-sb.de 07/25/90 -2 anonymous/[email protected]

cs.uoregon.edu 128.223.4.13 raytracing archive (markv),


cs.uoregon.edu not much
cs.uoregon.edu 05/15/90 7 anonymous/[email protected]

cs.utah.edu 128.110.4.21 Worm Tour, amiga, forth, utah

cs.utah.edu raster, news service archive


cs.utah.edu 08/03/90 6 anonymous/[email protected]

cs.utexas.edu 128.83.139.9 QSIM, FIG


cs.utexas.edu 08/22/90 5 anonymous/[email protected]
cs.utk.edu 128.169.201.1 DECnet mail gateway for VAXen

cs.utk.edu and suns, mail11


cs.utk.edu 07/19/90 4 anonymous/[email protected]

cs.wm.edu 128.239.1.30 texsun, animal-rights,


cs.wm.edu pargen, ALV, raster images
cs.wm.edu 05/15/90 4 anonymous/[email protected]

csab.larc.nasa.gov 128.155.26.10 emacs18.54 ispell mush


csab.larc.nasa.gov 05/31/90 4 anonymous/[email protected]

csam.lbl.gov 128.3.254.6 nothing


csam.lbl.gov 05/31/90 7 anonymous/[email protected]

csc-sun.math.utah.edu 128.110.198.2 unknown


csc-sun.math.utah.edu 10/20/90 6 anonymous/[email protected]

csc2.anu.edu.au 130.56.4.25 sun-fixes, RFCs, NCSA, msdos,

csc2.anu.edu.au mac
csc2.anu.edu.au 01/17/91 -12 anonymous/[email protected]

cscihp.ecst.csuchico.edu 132.241.1.2 online chemistry manual


cscihp.ecst.csuchico.edu 03/20/91 7 anonymous/[email protected]

csd4.csd.uwm.edu 129.89.7.4 high-audio


csd4.csd.uwm.edu 05/15/90 5 anonymous/[email protected]

csdvax.gatech.edu 128.61.9.3 nothing


csdvax.gatech.edu 08/22/90 4 anonymous/[email protected]

cse.ogi.edu 129.95.10.2 suntools graphics tools, old


cse.ogi.edu 129.95.40.2 Kerberos, old mush,
cse.ogi.edu neuro-evolution mailing list
cse.ogi.edu archive, speech recognition
cse.ogi.edu archive
cse.ogi.edu 08/22/90 7 anonymous/[email protected]

csl.sri.com 192.12.33.2 Handhelds


csl.sri.com 05/31/90 7 anonymous/[email protected]

csli.stanford.edu 36.9.0.46 Gandalf


csli.stanford.edu 05/15/90 7 anonymous/[email protected]

csri.toronto.edu 128.100.2.30 nothing


csri.toronto.edu 08/22/90 4 anonymous/[email protected]

csus.edu 130.86.90.1 NeXT, vectrex


csus.edu 07/22/90 7 anonymous/[email protected]

csvax.cs.caltech.edu 131.215.131.131 p2c, M88K


csvax.cs.caltech.edu 01/17/91 7 anonymous/[email protected]

ctrsci.math.utah.edu 128.110.198.1 TeX fonts, make, Beebe VAX


ctrsci.math.utah.edu drivers
ctrsci.math.utah.edu 08/22/90 6 anonymous/[email protected]

cu-arpa.cs.cornell.edu 128.84.254.3 Isis, bromley


cu-arpa.cs.cornell.edu 05/15/90 4 anonymous/[email protected]

cunixf.cc.columbia.edu 128.59.40.130 MM mailer


cunixf.cc.columbia.edu 01/11/91 4 anonymous/[email protected]

curie.cs.unc.edu 128.109.136.151 GIF, graphics programs


curie.cs.unc.edu 08/22/90 4 anonymous/[email protected]

cuvmb.cc.columbia.edu 128.59.40.129 kermit, ibm tcp/ip mods


cuvmb.cc.columbia.edu 08/22/90 4 anonymous/[email protected]

cyclone.stanford.edu 36.83.0.188 nothing


cyclone.stanford.edu 06/01/90 7 anonymous/[email protected]

dabo.citi.umich.edu 141.211.168.73 unknown


dabo.citi.umich.edu 141.211.172.73
dabo.citi.umich.edu 03/23/91 7 anonymous/[email protected]

dagon.acc.stolaf.edu 130.71.192.18 NeXT


dagon.acc.stolaf.edu 05/15/90 7 anonymous/[email protected]

daimi.aau.dk 130.225.16.1 unknown


daimi.aau.dk 10/25/90 -2 anonymous/[email protected]

dartcms1.dartmouth.edu 129.170.16.19 unknown


dartcms1.dartmouth.edu 05/25/91 anonymous/[email protected]

dartvax.dartmouth.edu 129.170.16.4 dartmouth stuff (rn, mail,


dartvax.dartmouth.edu etc.)
dartvax.dartmouth.edu 05/15/90 4 anonymous/[email protected]

dcssparc.cl.msu.edu 35.8.1.6 unknown


dcssparc.cl.msu.edu 05/25/91 4 anonymous/[email protected]

deco.ucc.su.oz.au 129.78.64.6 unknown


deco.ucc.su.oz.au 04/24/91 anonymous/[email protected]

decoy.cc.uoregon.edu 128.223.32.19 VAX book, TeX Primer


decoy.cc.uoregon.edu 04/11/91 7 anonymous/[email protected]

decuac.dec.com 192.5.214.1 unknown


decuac.dec.com 16.67.32.1
decuac.dec.com 10/09/90 4 anonymous/[email protected]

dept.csci.unt.edu 129.120.1.2 Texas Packet Radio Society,


dept.csci.unt.edu MixView, GNUPlot
dept.csci.unt.edu 05/15/90 5 anonymous/[email protected]

derro.ucc.su.oz.au 129.78.64.5 unknown


derro.ucc.su.oz.au 12/31/90 -10 anonymous/[email protected]

devvax.tn.cornell.edu 128.84.252.200 tn3270, gated


devvax.tn.cornell.edu 192.35.82.200
devvax.tn.cornell.edu 05/15/90 4 anonymous/[email protected]

dftnic.gsfc.nasa.gov 128.183.10.3 VMS stuff, MacSecure, ALEX,


dftnic.gsfc.nasa.gov VNEWS vms newsreader
dftnic.gsfc.nasa.gov 01/03/91 anonymous/[email protected]
dftsrv.gsfc.nasa.gov 128.183.10.134 VMS & Unix stuff, MacSecure
dftsrv.gsfc.nasa.gov anti-virus pkg, ALEX util
dftsrv.gsfc.nasa.gov 01/03/91 4 anonymous/[email protected]

dg-rtp.dg.com 128.222.1.2 GDB, DG version of GNU C for


dg-rtp.dg.com 88K
dg-rtp.dg.com 08/22/90 7 anonymous/[email protected]

dimacs.rutgers.edu 128.6.75.16 unknown


dimacs.rutgers.edu 04/24/91 4 anonymous/[email protected]

dirt.cisco.com 131.108.1.111 Mac telnet w/slip


dirt.cisco.com 03/15/91 7 anonymous/[email protected]

ditmela.mel.dit.csiro.au 128.250.90.81 VMS isode


ditmela.mel.dit.csiro.au 08/22/90 -12 anonymous/[email protected]

dkuug.dk 129.142.96.41 unknown


dkuug.dk 09/08/90 -2 anonymous/[email protected]

dmssyd.syd.dms.csiro.au 130.155.96.1 unknown


dmssyd.syd.dms.csiro.au 01/17/91 -12 anonymous/[email protected]

doc.cso.uiuc.edu 128.174.33.105 msdos (pcsig), mac


doc.cso.uiuc.edu 05/15/90 4 anonymous/[email protected]

dolphin.mit.edu 18.86.0.5 X11r3 device driver for S,


dolphin.mit.edu LISA
dolphin.mit.edu 08/22/90 4 anonymous/[email protected]

dra.com 192.65.218.43 unknown


dra.com 12/31/90 5 anonymous/[email protected]

draci.cs.uow.edu.au 130.130.64.3 unknown


draci.cs.uow.edu.au 01/17/91 -12 anonymous/[email protected]

drycas.club.cc.cmu.edu 128.2.232.11 ANU_NEWS, TALK


drycas.club.cc.cmu.edu 128.2.232.229
drycas.club.cc.cmu.edu 12/31/90 4 anonymous/[email protected]

dsl.cis.upenn.edu 130.91.6.12 GIF, IBM


dsl.cis.upenn.edu 05/15/90 4 anonymous/[email protected]

dsrbg2.informatik.tu-muenchen.de 131.159.0.110 unknown


dsrbg2.informatik.tu-muenchen.de 05/25/91 -2 anonymous/[email protected]

dsrgsun.ces.cwru.edu 129.22.16.2 Minix, TOS Atari ST, gcc from

dsrgsun.ces.cwru.edu bammi
dsrgsun.ces.cwru.edu 08/22/90 4 anonymous/[email protected]

duke.cs.duke.edu 128.109.140.1 compress gnuplot


duke.cs.duke.edu 05/31/90 4 anonymous/[email protected]

durer.cme.nist.gov 129.6.32.4 8mm backup (Exabyte), pdes,


durer.cme.nist.gov microemacs 3.10
durer.cme.nist.gov 05/15/90 4 anonymous/[email protected]

eagle.cnsf.cornell.edu 128.84.201.1 unknown


eagle.cnsf.cornell.edu 10/10/90 4 anonymous/[email protected]

eba.eb.ele.tue.nl 131.155.20.25 Apollo info


eba.eb.ele.tue.nl 131.155.40.1
eba.eb.ele.tue.nl 08/22/90 -2 anonymous/[email protected]

ebony.educom.edu 192.52.179.1 bitnet files, paroute


ebony.educom.edu 08/15/90 4 anonymous/[email protected]

eddie.mit.edu 18.62.0.6 nothing


eddie.mit.edu 05/15/90 4 anonymous/[email protected]

ee.umr.edu 131.151.4.11 unknown


ee.umr.edu 03/17/91 5 anonymous/[email protected]

ee.uta.edu 129.107.2.51 NeXT


ee.uta.edu 01/23/91 5 anonymous/[email protected]

eecs.nwu.edu 129.105.5.103 unknown


eecs.nwu.edu 01/17/91 5 anonymous/[email protected]

eesun1.uta.edu unknown
eesun1.uta.edu 01/17/91 5 anonymous/[email protected]

eff.org 192.88.144.3 unknown


eff.org 05/25/91 4 anonymous/[email protected]

eklektik.cs.pitt.edu 130.49.2.135 rec.music.dylan archives


eklektik.cs.pitt.edu 05/26/91 anonymous/[email protected]

elbereth.rutgers.edu 128.6.7.26 SF-lovers archive


elbereth.rutgers.edu 128.6.4.61
elbereth.rutgers.edu 08/22/90 4 anonymous/[email protected]

elroy.cs.iastate.edu 129.186.3.15 mail servers


elroy.cs.iastate.edu 08/05/90 5 anonymous/[email protected]

elroy.jpl.nasa.gov 128.149.1.100 ANU_NEWS


elroy.jpl.nasa.gov 05/15/90 7 anonymous/[email protected]

elsie.nci.nih.gov 128.231.16.1 unknown


elsie.nci.nih.gov 12/31/90 4 anonymous/[email protected]

emsworth.andrew.cmu.edu 128.2.30.62 Andrew Toolkit


emsworth.andrew.cmu.edu 08/22/90 4 anonymous/[email protected]

emunix.emich.edu 192.73.75.2 Ultrix, VMS (soon)


emunix.emich.edu 05/15/90 4 anonymous/[email protected]

emx.utexas.edu 128.83.1.33 net directory


emx.utexas.edu 05/15/90 5 anonymous/[email protected]

enac5.enac.dgac.fr 143.196.3.5 unknown


enac5.enac.dgac.fr 143.196.22.2
enac5.enac.dgac.fr 03/25/91 -2 anonymous/[email protected]

encore.com 129.91.1.14 mach.doc, nfsstone benchmark


encore.com 05/15/90 4 anonymous/[email protected]
enh.nist.gov 129.6.16.1 ftp-list
enh.nist.gov 08/22/90 4 anonymous/[email protected]

ento.tamu.edu 128.194.43.65 VAX/VMS games


ento.tamu.edu 12/31/90 5 anonymous/[email protected]

eru.mt.luth.se 130.240.0.9 gnews 19, gated, plp,


eru.mt.luth.se gcc(old)
eru.mt.luth.se 08/22/90 -1 anonymous/[email protected]

ese3.ese.ogi.edu 129.95.20.62 grtool, xvgr, xmgr, SunView,


ese3.ese.ogi.edu Xview, Motif, XY plotting
ese3.ese.ogi.edu tools
ese3.ese.ogi.edu 03/15/91 7 anonymous/[email protected]

expo.lcs.mit.edu 18.30.0.212 unknown


expo.lcs.mit.edu 05/15/90 4 anonymous/[email protected]

export.lcs.mit.edu 18.30.0.238 X, portable bitmaps, CLX and


export.lcs.mit.edu CLUE, gwm
export.lcs.mit.edu 03/17/91 3 anonymous/[email protected]

extro.ucc.su.oz.au 129.78.64.1 images, gnu, icon, kermit,


extro.ucc.su.oz.au Ghostscript patches
extro.ucc.su.oz.au 07/08/90 -12 anonymous/[email protected]

f.ms.uky.edu 128.163.128.6 mac, msdos, unix-pc


f.ms.uky.edu 08/22/90 4 anonymous/[email protected]

faramir.informatik.uni-oldenburg.de134.106.1.9 irc
faramir.informatik.uni-oldenburg.de04/02/91 -2 anonymous/[email protected]

faui43.informatik.uni-erlangen.de 131.188.1.43 NeWS X11 amiga atari faces


faui43.informatik.uni-erlangen.de 131.188.34.43 games gnu hp28 irc iso lisp
faui43.informatik.uni-erlangen.de 131.188.44.43
faui43.informatik.uni-erlangen.de 08/13/90 -2 anonymous/[email protected]

fergvax.unl.edu 129.93.33.1 nothing yet


fergvax.unl.edu 05/15/90 5 anonymous/[email protected]

fg.sei.cmu.edu 128.237.2.163 serpent user interface


fg.sei.cmu.edu management system
fg.sei.cmu.edu 05/17/90 4 anonymous/[email protected]

fidji.informatik.uni-freiburg.de 132.230.30.80 unknown


fidji.informatik.uni-freiburg.de 03/17/91 -2 anonymous/[email protected]

files1zrz.zrz.tu-berlin.de 130.149.4.50 unknown


files1zrz.zrz.tu-berlin.de 03/15/91 anonymous/[email protected]

finsun.csc.fi 128.214.46.40 X11R4 ftp-list


finsun.csc.fi 06/01/90 -3 anonymous/[email protected]

fiol.uib.no 129.177.10.24 pcip packet driver


fiol.uib.no 05/15/90 -2 anonymous/[email protected]

fionavar.mit.edu 18.72.0.96 latex styles, jokes, online


fionavar.mit.edu consulting software (soon)
fionavar.mit.edu 10/15/90 4 anonymous/[email protected]
fits.cx.nrao.edu 192.33.115.8 FITS (astronomy image
fits.cx.nrao.edu transfer system)
fits.cx.nrao.edu 05/15/90 4 anonymous/[email protected]

flash.bellcore.com 192.4.13.90 mgr, spiff, RFCs, track


flash.bellcore.com 128.96.32.20
flash.bellcore.com 01/23/91 5 anonymous/[email protected]

flinders.cs.flinders.oz.au 129.96.2.1 GrowNet.dvi


flinders.cs.flinders.oz.au 129.96.3.1
flinders.cs.flinders.oz.au 05/31/90 -11 anonymous/[email protected]

flop.informatik.tu-muenchen.de 131.159.8.35 unknown


flop.informatik.tu-muenchen.de 12/26/90 -2 anonymous/[email protected]

flotsam.mit.edu 18.85.0.36 galatea cake


flotsam.mit.edu 05/31/90 4 anonymous/[email protected]

fnord.umiacs.umd.edu 128.8.120.3 misc DECstation stuff


fnord.umiacs.umd.edu 05/15/90 4 anonymous/[email protected]

foobar.colorado.edu 128.138.204.31 BDF fonts, xtex


foobar.colorado.edu 07/09/90 6 anonymous/[email protected]

forwiss.uni-passau.de 132.231.1.10 SML of NJ, GraphEd, amiga,


forwiss.uni-passau.de 132.231.20.10 atari st, minix, elisp, TeX
forwiss.uni-passau.de utils, misc
forwiss.uni-passau.de 02/05/91 -1 anonymous/[email protected]

freebie.engin.umich.edu 141.212.68.23 macintosh


freebie.engin.umich.edu 05/31/90 4 anonymous/[email protected]

freja.diku.dk 129.142.96.1 nn, gnu, x11r4, tex, isode,


freja.diku.dk scheme, sun rpc, rfc, ietf,
freja.diku.dk emacs archive
freja.diku.dk 08/01/90 -2 anonymous/[email protected]

fresnel.stanford.edu 36.10.0.77 X11R4 for Iris


fresnel.stanford.edu 07/09/90 7 anonymous/[email protected]

fsa.cpsc.ucalgary.ca 136.159.2.1 unknown


fsa.cpsc.ucalgary.ca 136.159.3.1
fsa.cpsc.ucalgary.ca 01/26/91 7 anonymous/[email protected]

ftp.brl.mil 128.63.16.158 info-iris, images, sgi demos,

ftp.brl.mil gifs
ftp.brl.mil 03/15/91 4 anonymous/[email protected]

ftp.cayman.com 143.137.50.5 unknown


ftp.cayman.com 04/24/91 anonymous/[email protected]

ftp.cs.toronto.edu 128.100.3.6 AIList, sun-Spots, many other

ftp.cs.toronto.edu 128.100.1.105 mailing list archives, CA


ftp.cs.toronto.edu domain reg. forms, RFCs,
ftp.cs.toronto.edu NETINFO, DOMAIN, IETF,
ftp.cs.toronto.edu INET-DRAFTS, Current C News,
ftp.cs.toronto.edu dvix, logging ftpd, Jove,
ftp.cs.toronto.edu sunOS SLIP et al, S/SL, TeX,
ftp.cs.toronto.edu UofT BIND, X applications
ftp.cs.toronto.edu 03/15/91 4 anonymous/[email protected]

ftp.pitt.edu 130.49.253.1 unknown


ftp.pitt.edu 130.49.254.250
ftp.pitt.edu 04/24/91 4 anonymous/[email protected]

ftp.vmars.tuwien.ac.at 128.130.39.19 unknown


ftp.vmars.tuwien.ac.at 04/24/91 -2 anonymous/[email protected]

funet.fi 128.214.1.1 FUNET/NORDUNET info


funet.fi 10/21/90 -3 anonymous/[email protected]

gaffa.mit.edu 18.85.0.15 various stuff


gaffa.mit.edu 05/31/90 4 anonymous/[email protected]

gandalf.umcs.maine.edu 130.111.112.21 MS windows 3.0 shareware and


gandalf.umcs.maine.edu freeware
gandalf.umcs.maine.edu 02/05/91 4 anonymous/[email protected]

gang-of-four.stanford.edu 36.8.0.118 schemer


gang-of-four.stanford.edu 05/31/90 7 anonymous/[email protected]

garbo.uwasa.fi 128.214.12.37 msdos, win3, ts-progs, unix,


garbo.uwasa.fi vms
garbo.uwasa.fi 03/02/91 -3 anonymous/[email protected]

gargoyle.uchicago.edu 128.135.20.100 named-kit, Odbol equational


gargoyle.uchicago.edu programming language
gargoyle.uchicago.edu 08/22/90 5 anonymous/[email protected]

gatekeeper.dec.com 16.1.0.2 X11, recipes, cron, map,


gatekeeper.dec.com Larry Wall stuff, STDWIN,
gatekeeper.dec.com lots of source
gatekeeper.dec.com 05/15/90 7 anonymous/[email protected]

genbank.bio.net 134.172.1.160 National Repository for Gene


genbank.bio.net 134.172.3.160 Sequence Data
genbank.bio.net 05/15/90 7 anonymous/[email protected]

genvax.psycha.upenn.edu 128.91.22.103 ranma


genvax.psycha.upenn.edu 08/22/90 4 anonymous/[email protected]

gipsy.vmars.tuwien.ac.at 128.130.39.16 unknown


gipsy.vmars.tuwien.ac.at 05/25/91 4 anonymous/[email protected]

girch1.hsch.utexas.edu 129.106.4.1 Physiological Research info


girch1.hsch.utexas.edu and programs
girch1.hsch.utexas.edu 08/22/90 6 anonymous/[email protected]

giza.cis.ohio-state.edu 128.146.8.61 X, PEX


giza.cis.ohio-state.edu 128.146.6.150
giza.cis.ohio-state.edu 05/16/90 4 anonymous/[email protected]

gjetost.cs.wisc.edu 128.105.2.33 unknown


gjetost.cs.wisc.edu 03/17/91 5 anonymous/[email protected]
gmu90x.gmu.edu 129.174.1.4 nothing
gmu90x.gmu.edu 05/15/90 4 anonymous/[email protected]

gmuvax2.gmu.edu 129.174.1.8 Intel Hypercube library, hp28

gmuvax2.gmu.edu software, statistical


gmuvax2.gmu.edu software
gmuvax2.gmu.edu 05/15/90 4 anonymous/[email protected]

godzilla.cgl.rmit.oz.au 131.170.14.2 unknown


godzilla.cgl.rmit.oz.au 02/23/91 -12 anonymous/[email protected]

gondor.cc.nd.edu 129.74.35.171 SUG tars (85-89), some NCSA


gondor.cc.nd.edu from Univ of Ill
gondor.cc.nd.edu 12/31/90 5 anonymous/[email protected]

gondwana.ecr.mu.oz.au 128.250.1.63 unknown


gondwana.ecr.mu.oz.au 128.250.63.1
gondwana.ecr.mu.oz.au 10/09/90 -10 anonymous/[email protected]

goober.phri.nyu.edu 128.122.136.10 cnews, nntp, kcl docs, psnup,

goober.phri.nyu.edu sequence analysis stuff


goober.phri.nyu.edu 08/22/90 7 anonymous/[email protected]

goya.dit.upm.es 138.4.2.2 artix/ixi, eunet, bbs on


goya.dit.upm.es spain, lotos, irc
goya.dit.upm.es 03/15/91 1 anonymous/[email protected]

grape.ecs.clarkson.edu 128.153.28.129 Opus BBS, msdos, graphics,


grape.ecs.clarkson.edu comp.binaries.ibm.pc,
grape.ecs.clarkson.edu Freemacs, packet drivers
grape.ecs.clarkson.edu 08/22/90 4 anonymous/[email protected]

grasp2.univ-lyon1.fr 134.214.100.33 unknown


grasp2.univ-lyon1.fr 04/24/91 -2 anonymous/[email protected]

gregorio.stanford.edu 36.8.0.11 vmtp-ip, ip-multicast


gregorio.stanford.edu 08/22/90 7 anonymous/[email protected]

grinch.umiacs.umd.edu 128.8.121.1 unclear


grinch.umiacs.umd.edu 128.8.120.2
grinch.umiacs.umd.edu 08/22/90 4 anonymous/[email protected]

gtss.gatech.edu 128.61.4.1 amiga rexx stuff


gtss.gatech.edu 08/22/90 4 anonymous/[email protected]

gumby.cc.wmich.edu 141.218.20.114 MAINT (VMS)


gumby.cc.wmich.edu 05/15/90 4 anonymous/[email protected]

gumby.dsd.trw.com 129.193.72.50 some RFCs, networking progs


gumby.dsd.trw.com 08/22/90 7 anonymous/[email protected]

gwen.cs.purdue.edu 128.10.2.8 unknown


gwen.cs.purdue.edu 128.10.3.8
gwen.cs.purdue.edu 11/09/90 4 anonymous/[email protected]

hamlet.caltech.edu 131.215.139.3 Nanny (VMS)


hamlet.caltech.edu 131.215.51.150
hamlet.caltech.edu 12/31/90 7 anonymous/[email protected]

hanauma.stanford.edu 36.51.0.16 sun, TeX, world-map, astro,


hanauma.stanford.edu cake, graphics (best of
hanauma.stanford.edu comp.graphics 86-89 archive),

hanauma.stanford.edu neptune pics, zhongwen


hanauma.stanford.edu 05/17/90 7 anonymous/[email protected]

handel.cs.colostate.edu 129.82.102.32 unknown


handel.cs.colostate.edu 05/25/91 anonymous/[email protected]

harbor.ecn.purdue.edu 128.46.154.76 unknown


harbor.ecn.purdue.edu 128.46.129.76
harbor.ecn.purdue.edu 05/25/91 5 anonymous/[email protected]

harry.waisman.wisc.edu 128.104.138.170 LZW


harry.waisman.wisc.edu 02/21/91 5 anonymous/[email protected]

harvard.harvard.edu 128.103.1.1 sendmail, rmtlib.shar, lots


harvard.harvard.edu of VMS
harvard.harvard.edu 05/15/90 4 anonymous/[email protected]

helens.stanford.edu 36.2.0.99 kjv, sultrix, secure.tar.Z


helens.stanford.edu 08/22/90 7 anonymous/[email protected]

helios.tn.cornell.edu 128.84.241.2 unknown


helios.tn.cornell.edu 05/25/91 4 anonymous/[email protected]

helios.ucsc.edu 128.114.130.37 unknown


helios.ucsc.edu 03/22/91 7 anonymous/[email protected]

hercules.csl.sri.com 192.12.33.51 Handhelds latex-figures


hercules.csl.sri.com 05/31/90 7 anonymous/[email protected]

herky.cs.uiowa.edu 128.255.28.100 theorem prover


herky.cs.uiowa.edu 05/15/90 5 anonymous/[email protected]

hmcvax.claremont.edu 134.173.4.32 cyrillic fonts


hmcvax.claremont.edu 134.173.80.32
hmcvax.claremont.edu 12/31/90 7 anonymous/[email protected]

hobbes.catt.ncsu.edu 128.109.153.75 digitized sounds


hobbes.catt.ncsu.edu 10/30/90 4 anonymous/[email protected]

hobbes.cs.umd.edu 128.8.128.41 homebrew C compiler, minix


hobbes.cs.umd.edu 08/22/90 4 anonymous/[email protected]

hobiecat.cs.caltech.edu 131.215.131.167 GNU


hobiecat.cs.caltech.edu 08/22/90 7 anonymous/[email protected]

hogg.cc.uoregon.edu 128.223.32.9 NorthWestNet site info


hogg.cc.uoregon.edu 05/15/90 7 anonymous/[email protected]

hp4nl.nluug.nl 192.16.202.2 GNU, ABC


hp4nl.nluug.nl 08/22/90 -2 anonymous/[email protected]

hp5.mcs.kent.edu 131.123.2.7 unknown


hp5.mcs.kent.edu 04/24/91 anonymous/[email protected]
hpcvaaz.cv.hp.com 15.255.72.15 MitX11R4 Motif
hpcvaaz.cv.hp.com 08/22/90 7 anonymous/[email protected]

hpcvbbs.cv.hp.com 15.255.72.16 unknown


hpcvbbs.cv.hp.com 10/25/90 7 anonymous/[email protected]

hplpm.hpl.hp.com 15.255.176.205 Neuron digest archives and


hplpm.hpl.hp.com software
hplpm.hpl.hp.com 08/22/90 7 anonymous/[email protected]

hplsci.hpl.hp.com 15.255.176.57 unknown


hplsci.hpl.hp.com 12/31/90 7 anonymous/[email protected]

hpserv1.cs.uit.no 128.39.70.50 unknown


hpserv1.cs.uit.no 02/02/91 7 anonymous/[email protected]

hpserv1.uit.no 128.39.60.50 HP stuff, X11, unix, etc.


hpserv1.uit.no 08/22/90 -1 anonymous/[email protected]

hscfsas1.harvard.edu 128.103.75.50 COPS


hscfsas1.harvard.edu 08/22/90 4 anonymous/[email protected]

hub.cs.jmu.edu 134.126.20.10 Mic-1 microarchitecture


hub.cs.jmu.edu simulator, package to boot
hub.cs.jmu.edu minix from hard drive
hub.cs.jmu.edu 05/15/90 4 anonymous/[email protected]

hub.ucsb.edu 128.111.24.40 UNISEX


hub.ucsb.edu 05/15/90 7 anonymous/[email protected]

hubcap.clemson.edu 130.127.8.1 RFCs


hubcap.clemson.edu 05/15/90 4 anonymous/[email protected]

hurratio.tde.lth.se 130.235.32.22 GNU stuff, some local elisp


hurratio.tde.lth.se stuff
hurratio.tde.lth.se 05/15/90 -2 anonymous/[email protected]

husc6.harvard.edu 128.103.1.56 pcip, appleII, uumap copy,


husc6.harvard.edu ucb tahoe
husc6.harvard.edu 05/15/90 4 anonymous/[email protected]

hydra.helsinki.fi 128.214.4.29 misc, TeX, X,


hydra.helsinki.fi comp.sources.misc,
hydra.helsinki.fi comp.sources.sun,
hydra.helsinki.fi comp.sources.unix,
hydra.helsinki.fi comp.bugs.4bsd.ucb-fixes,
hydra.helsinki.fi comp.binaries.ibm.pc
hydra.helsinki.fi 05/15/90 -3 anonymous/[email protected]

hydra.uwo.ca 129.100.2.13 some RFCs, vms stuff


hydra.uwo.ca 12/31/90 5 anonymous/[email protected]

iamsun.unibe.ch 130.92.64.10 ET++, GNU, graphics stuff


iamsun.unibe.ch 11/02/90 -2 anonymous/[email protected]

ibm1.cc.lehigh.edu 128.180.2.1 Virus-L programs/archives


ibm1.cc.lehigh.edu 08/22/90 4 anonymous/[email protected]
icaen.llnl.gov 128.115.2.100 VMS postscript
icaen.llnl.gov 128.115.2.99
icaen.llnl.gov 12/31/90 7 anonymous/[email protected]

icarus.riacs.edu 134.12.1.1 SLIP, chkpt, macdump, Xpostit

icarus.riacs.edu 128.102.16.8
icarus.riacs.edu 05/15/90 7 anonymous/[email protected]

icdc.llnl.gov 128.115.2.1 unknown


icdc.llnl.gov 12/31/90 7 anonymous/[email protected]

ics.uci.edu 128.195.1.1 perfect hash function gen.,


ics.uci.edu web-to-c,
ics.uci.edu Protoize/Unprotoize, Think C
ics.uci.edu 08/22/90 7 anonymous/[email protected]

icsic.berkeley.edu 128.32.201.55 unknown


icsic.berkeley.edu 10/09/90 7 anonymous/[email protected]

iear.arts.rpi.edu 128.113.6.10 star gifs, raytracers, RTN,


iear.arts.rpi.edu graphics gems, numerical
iear.arts.rpi.edu recipes, raytracing
iear.arts.rpi.edu bibliographies
iear.arts.rpi.edu 12/31/90 4 anonymous/[email protected]

iesd.auc.dk 130.225.48.4 amiga, mac, msdos, myth


iesd.auc.dk 08/05/90 -2 anonymous/[email protected]

ifi.informatik.uni-stuttgart.de 129.69.211.1 unknown


ifi.informatik.uni-stuttgart.de 08/22/90 -2 anonymous/[email protected]

ifi.uio.no 129.240.64.2 results of DS5400 vs. DS5810


ifi.uio.no 05/15/90 -2 anonymous/[email protected]

ils.nwu.edu 129.105.100.1 unknown


ils.nwu.edu 04/24/91 5 anonymous/[email protected]

indri.primate.wisc.edu 128.104.230.11 macintosh TransSkel


indri.primate.wisc.edu TransDisplay TransEdit, imake

indri.primate.wisc.edu 08/06/90 5 anonymous/[email protected]

indyvax.iupui.edu 134.68.1.2 unknown


indyvax.iupui.edu 12/31/90 5 anonymous/[email protected]

inria.inria.fr 128.93.8.1 RFCs, epelle, iepelle


inria.inria.fr 192.93.2.1
inria.inria.fr 08/15/90 -2 anonymous/[email protected]

interviews.stanford.edu 36.22.0.175 InterViews X toolkit


interviews.stanford.edu 08/22/90 7 anonymous/[email protected]

ipac.caltech.edu 131.215.139.35 gated, sendmail, named,


ipac.caltech.edu 134.4.10.10 kermit, ftp-list
ipac.caltech.edu 05/15/90 7 anonymous/[email protected]

iraun1.ira.uka.de 129.13.10.90 cisco, clover.ucdavis.edu,


iraun1.ira.uka.de comic, comp.sources.unix,
iraun1.ira.uka.de directories, doc, domain,
iraun1.ira.uka.de drafts, fig, fractals,
iraun1.ira.uka.de ftp-telnet-sw, games, gnu,
iraun1.ira.uka.de ham-radio, msdos, internet
iraun1.ira.uka.de accessible catalog, irc,
iraun1.ira.uka.de isode, kyoto common lisp,
iraun1.ira.uka.de mac, mail, misc, network,
iraun1.ira.uka.de news, osi.ncsl.nist.gov,
iraun1.ira.uka.de rolog, rfc, ripe, risks,
iraun1.ira.uka.de scheme, security, simtel20,
iraun1.ira.uka.de snmp, spims, src, sun, tex,
iraun1.ira.uka.de tiff, unix, vms, x11, x25
iraun1.ira.uka.de ftp-list
iraun1.ira.uka.de 04/24/91 -2 anonymous/[email protected]

ireq-robot.hydro.qc.ca 131.195.20.131 unknown


ireq-robot.hydro.qc.ca 03/17/91 4 anonymous/[email protected]

iris1.ucis.dal.ca 129.173.18.107 IRIS stuff, space gifs, off


iris1.ucis.dal.ca objects, movie, byu objects
iris1.ucis.dal.ca 12/21/90 3 anonymous/[email protected]

iris613.gsfc.nasa.gov 128.183.10.147 tn3270 for IRIS and HPUX,


iris613.gsfc.nasa.gov other IRIS programs
iris613.gsfc.nasa.gov 05/15/90 4 anonymous/[email protected]

irisa.irisa.fr 131.254.2.3 NFF, TeX, iPSC2, tcsh,


irisa.irisa.fr alt.sources,
irisa.irisa.fr comp.binaries.atari.st,
irisa.irisa.fr comp.binaries.ibm.pc,
irisa.irisa.fr comp.binaries.mac,
irisa.irisa.fr comp.sources.atari.st,
irisa.irisa.fr comp.sources.games,
irisa.irisa.fr comp.sources.mac,
irisa.irisa.fr comp.sources.misc,
irisa.irisa.fr comp.sources.sun,
irisa.irisa.fr comp.sources.unix,
irisa.irisa.fr comp.sources.x
irisa.irisa.fr 05/15/90 -2 anonymous/[email protected]

isca01.icaen.uiowa.edu 128.255.19.175 unknown


isca01.icaen.uiowa.edu 03/17/91 anonymous/[email protected]

isca01.isca.uiowa.edu 128.255.16.175 NFF, TeX, iPSC2, tcsh,


isca01.isca.uiowa.edu 128.255.19.175 alt.sources,
isca01.isca.uiowa.edu comp.binaries.atari.st,
isca01.isca.uiowa.edu comp.binaries.ibm.pc,
isca01.isca.uiowa.edu comp.binaries.mac,
isca01.isca.uiowa.edu comp.sources.atari.st,
isca01.isca.uiowa.edu comp.sources.games,
isca01.isca.uiowa.edu comp.sources.mac,
isca01.isca.uiowa.edu comp.sources.misc,
isca01.isca.uiowa.edu comp.sources.sun,
isca01.isca.uiowa.edu comp.sources.unix,
isca01.isca.uiowa.edu comp.sources.x
isca01.isca.uiowa.edu 05/15/90 -2 anonymous/[email protected]

isdres.er.usgs.gov 130.11.48.2 US Geological Survey Maps


isdres.er.usgs.gov 10/06/90 4 anonymous/[email protected]
isis.cshl.org 143.48.50.1 unknown
isis.cshl.org 05/25/91 4 anonymous/[email protected]

iskut.ucs.ubc.ca 137.82.27.61 unknown


iskut.ucs.ubc.ca 05/25/91 7 anonymous/[email protected]

iss.byu.edu 128.187.7.3 unknown


iss.byu.edu 05/18/91 4 anonymous/[email protected]

isy.liu.se 130.236.1.3 GNU stuff, screen 2.0, world


isy.liu.se map, ccmd, ftpd, TIFF
isy.liu.se library, Cellsim
isy.liu.se 05/15/90 -2 anonymous/[email protected]

itnsg1.cineca.it 130.186.1.194 NCSA software, Silcon


itnsg1.cineca.it Graphics, Graphics and
itnsg1.cineca.it Visualization, Unix
itnsg1.cineca.it 01/24/91 -2 anonymous/[email protected]

iubio.bio.indiana.edu 129.79.1.101 biology archive, molecular


iubio.bio.indiana.edu bio
iubio.bio.indiana.edu 12/31/90 4 anonymous/[email protected]

iuvax.cs.indiana.edu 129.79.254.192 ai biblio, artificial life,


iuvax.cs.indiana.edu faces bitmaps, scheme,
iuvax.cs.indiana.edu SIGPLAN, unix faq list,
iuvax.cs.indiana.edu usenet oracle, webster,
iuvax.cs.indiana.edu whitewater, et al
iuvax.cs.indiana.edu 02/19/91 4 anonymous/[email protected]

ix1.cc.utexas.edu 128.83.1.21 amiga


ix1.cc.utexas.edu 05/15/90 5 anonymous/[email protected]

ix2.cc.utexas.edu 128.83.1.29 amiga


ix2.cc.utexas.edu 05/15/90 5 anonymous/[email protected]

j.cc.purdue.edu 128.210.9.2 comp.sources.unix,


j.cc.purdue.edu 128.210.5.1 comp.sources.x,
j.cc.purdue.edu comp.sources.amiga, elm,
j.cc.purdue.edu uupc, comp.binaries.amiga,
j.cc.purdue.edu comp.sources.sun
j.cc.purdue.edu 11/02/90 4 anonymous/[email protected]

jade.tufts.edu 130.64.1.32 encore multimax, misc unix


jade.tufts.edu 03/26/91 4 anonymous/[email protected]

jaguar.cs.wisc.edu 128.105.1.202 unknown


jaguar.cs.wisc.edu 10/09/90 5 anonymous/[email protected]

jaguar.utah.edu 128.110.4.71 GNU


jaguar.utah.edu 05/31/90 6 anonymous/[email protected]

jec4a.its.rpi.edu 128.113.10.1 sun rasters, showtool,


jec4a.its.rpi.edu raytracer
jec4a.its.rpi.edu 02/06/91 4 anonymous/[email protected]

jhname.hcf.jhu.edu 128.220.2.7 sysV ports of BSD network


jhname.hcf.jhu.edu stuff
jhname.hcf.jhu.edu 08/06/90 4 anonymous/[email protected]

jhunix.hcf.jhu.edu 128.220.2.5 unknown


jhunix.hcf.jhu.edu 02/23/91 anonymous/[email protected]

jim.ultra.nyu.edu 128.122.129.21 gcc


jim.ultra.nyu.edu 05/31/90 4 anonymous/[email protected]

joker.optics.rochester.edu 128.151.240.1 nothing


joker.optics.rochester.edu 08/22/90 4 anonymous/[email protected]

jpl-devvax.jpl.nasa.gov 128.149.1.143 perl, patch, warp


jpl-devvax.jpl.nasa.gov 128.149.8.43
jpl-devvax.jpl.nasa.gov 05/15/90 7 anonymous/[email protected]

june.cs.washington.edu 128.95.1.4 TeXhax, dviapollo, SmallTalk,

june.cs.washington.edu web2c, gated, presto, maitrd


june.cs.washington.edu 05/15/90 7 anonymous/[email protected]

jyu.fi 128.214.7.5 unix, atari, amiga, mac,


jyu.fi etherprint, abermud, ularn,
jyu.fi conquer, knight, larn, moria,

jyu.fi nethack 3.0


jyu.fi 08/22/90 -3 anonymous/[email protected]

kampi.hut.fi 130.233.224.2 DES routines (unrestricted),


kampi.hut.fi GNU pascal
kampi.hut.fi 05/15/90 -3 anonymous/[email protected]

kappa.rice.edu 128.42.4.7 X11R3, GNU for Sequent S27,


kappa.rice.edu Sun3
kappa.rice.edu 05/15/90 5 anonymous/[email protected]

karazm.math.uh.edu 129.7.7.6 iPSC archives, mathematics


karazm.math.uh.edu and parallel codes,
karazm.math.uh.edu EFF-related files, GNU
karazm.math.uh.edu 05/25/91 5 anonymous/[email protected]

karron.med.nyu.edu 128.122.135.3 unknown


karron.med.nyu.edu 12/26/90 4 anonymous/[email protected]

kekule.osc.edu 128.146.36.48 unknown


kekule.osc.edu 05/25/91 4 anonymous/[email protected]

killington.dartmouth.edu 129.170.28.17 sunchip


killington.dartmouth.edu 05/31/90 4 anonymous/[email protected]

kl.sri.com 128.18.10.6 comp.os.vms archives


kl.sri.com 08/22/90 7 anonymous/[email protected]

kolvi.hut.fi 130.233.160.32 kermit stuff, radio amateur


kolvi.hut.fi stuff (ka9q etc.), memacs
kolvi.hut.fi 3.10, packet radio
kolvi.hut.fi 08/22/90 -3 anonymous/[email protected]

ksuvm.ksu.edu 129.130.1.1 VM/CMS tools, PCSIG


ksuvm.ksu.edu 11/06/90 5 anonymous/[email protected]
kth.se 130.237.72.201 SCIX, sendmail 5.61 w/ida
kth.se 08/02/90 -2 anonymous/[email protected]

kuhub.cc.ukans.edu 129.237.1.10 VMS news


kuhub.cc.ukans.edu 12/31/90 5 anonymous/[email protected]

kukulcan.berkeley.edu 128.32.131.190 moria archives


kukulcan.berkeley.edu 05/15/90 7 anonymous/[email protected]

kum.kaist.ac.kr 137.68.1.65 SDN info, ked


kum.kaist.ac.kr 03/28/91 -9 anonymous/[email protected]

kythera.nmsu.edu 128.123.1.14 ChTeX, misc X11 stuff,


kythera.nmsu.edu Chinese/Japanese X11 fonts,
kythera.nmsu.edu Chinese/Japanese utils
kythera.nmsu.edu 01/02/91 6 anonymous/[email protected]

l.cc.purdue.edu 128.210.2.8 nothing


l.cc.purdue.edu 05/15/90 4 anonymous/[email protected]

labrea.stanford.edu 36.8.0.47 GNU, X, official TeX sources,

labrea.stanford.edu lots of other stuff


labrea.stanford.edu 08/22/90 7 anonymous/[email protected]

lamont.ldgo.columbia.edu 129.236.10.30 parse, sunacct, pkunzip,


lamont.ldgo.columbia.edu boeing graph
lamont.ldgo.columbia.edu 08/22/90 4 anonymous/[email protected]

lampwick.berkeley.edu 128.32.131.141 nh3.0


lampwick.berkeley.edu 08/22/90 7 anonymous/[email protected]

lan_stuff.ucs.indiana.edu 129.79.16.96 ms windows packet drivers


lan_stuff.ucs.indiana.edu 08/22/90 5 anonymous/[email protected]

lancaster.andrew.cmu.edu 128.2.13.21 CMU PCIP, RFC1073 telnetd,


lancaster.andrew.cmu.edu RFC1048 bootp
lancaster.andrew.cmu.edu 05/15/90 4 anonymous/[email protected]

larry.cs.washington.edu 128.95.1.7 Poker


larry.cs.washington.edu 08/22/90 7 anonymous/[email protected]

larry.mcrcim.mcgill.edu 132.206.1.1 RFCs, X, local nameserver,


larry.mcrcim.mcgill.edu 132.206.4.3 games, scred (sun bitmap
larry.mcrcim.mcgill.edu editor)
larry.mcrcim.mcgill.edu 05/15/90 4 anonymous/[email protected]

latour.colorado.edu 128.138.204.19 resource discovery papers


latour.colorado.edu 01/17/91 6 anonymous/[email protected]

lcs.mit.edu 18.26.0.36 RFCs, Map, telecom archive


lcs.mit.edu 05/15/90 4 anonymous/[email protected]

lhc.nlm.nih.gov 130.14.1.128 mkmf


lhc.nlm.nih.gov 08/22/90 4 anonymous/[email protected]

lilac.berkeley.edu 128.32.136.12 POP3 for BSD/Ultrix/sunOS


lilac.berkeley.edu 05/15/90 7 anonymous/[email protected]
linc.cis.upenn.edu 130.91.6.8 psfig for ditroff, TeX,
linc.cis.upenn.edu unix-pc, Nethack sources
linc.cis.upenn.edu 08/31/90 4 anonymous/[email protected]

lll-crg.llnl.gov 128.115.1.1 X11R4


lll-crg.llnl.gov 05/15/90 7 anonymous/[email protected]

loke.idt.unit.no 129.241.1.103 mh 6.6, news, rrn, nntp,


loke.idt.unit.no 129.241.103.1 sun-spots, webster server,
loke.idt.unit.no GCC vms binaries, net
loke.idt.unit.no directories
loke.idt.unit.no 08/22/90 -2 anonymous/[email protected]

louie.udel.edu 128.175.1.3 net.exe, minix, NORD<>LINK,


louie.udel.edu 128.175.2.33 MH, amiga
louie.udel.edu 05/15/90 4 anonymous/[email protected]

lth.se 130.235.16.3 NeWS, cnews, bind, nntp,


lth.se sendmail, Poskanzer rasterxs,

lth.se X11R4
lth.se 05/16/90 -2 anonymous/[email protected]

ltisun.epfl.ch 128.178.119.94 xconq


ltisun.epfl.ch 09/01/90 -2 anonymous/[email protected]

lurch.stanford.edu 36.22.0.14 unknown


lurch.stanford.edu 04/24/91 7 anonymous/[email protected]

lut.fi 128.214.25.8 PD sources modified for


lut.fi hp-ux, PC antivirus, uEmacs
lut.fi 3.10, local research reports
lut.fi (neural nets, parallel
lut.fi computing, etc)
lut.fi 03/15/91 -2 anonymous/[email protected]

m2c.m2c.org 128.188.1.2 Archives for cavers mailing


m2c.m2c.org list
m2c.m2c.org 05/15/90 4 anonymous/[email protected]

m9-520-1.mit.edu 18.80.0.45 xim utils


m9-520-1.mit.edu 05/16/90 4 anonymous/[email protected]

macbeth.stanford.edu 36.21.0.13 nothing


macbeth.stanford.edu 08/22/90 7 anonymous/[email protected]

maccs.dcss.mcmaster.ca 130.113.1.1 GNU, fbm, pbmplus, sun fixes


maccs.dcss.mcmaster.ca 01/17/91 anonymous/[email protected]

mach.ncsc.org 128.109.178.3 unknown


mach.ncsc.org 128.109.173.243
mach.ncsc.org 11/24/90 4 anonymous/[email protected]

mach1.npac.syr.edu 128.230.7.14 unknown


mach1.npac.syr.edu 10/25/90 4 anonymous/[email protected]

maddog.llnl.gov 128.115.10.1 AWM X tutorial, PCP


maddog.llnl.gov preprocessor & libraries,
maddog.llnl.gov Generic MCPI environment, uw
maddog.llnl.gov for mac, plot library
maddog.llnl.gov 05/15/90 7 anonymous/[email protected]

madhaus.utcs.utoronto.ca 128.100.102.10 mac


madhaus.utcs.utoronto.ca 07/08/90 4 anonymous/[email protected]

mailhost.berkeley.edu 128.32.136.9 unknown


mailhost.berkeley.edu 128.32.206.9
mailhost.berkeley.edu 10/07/90 7 anonymous/[email protected]

mammoth.cs.unr.edu 134.197.40.241 STTNG program guide


mammoth.cs.unr.edu 10/21/90 7 anonymous/[email protected]

mandarin.mit.edu 18.82.0.21 astro


mandarin.mit.edu 07/22/90 4 anonymous/[email protected]

mango.miami.edu 129.171.0.18 VMS stuff


mango.miami.edu 05/31/90 4 anonymous/[email protected]

mango.rsmas.miami.edu 129.171.98.18 unknown


mango.rsmas.miami.edu 12/08/90 4 anonymous/[email protected]

marlin.jcu.edu.au 137.219.16.14 unknown


marlin.jcu.edu.au 03/17/91 -11 anonymous/[email protected]

mars.ee.msstate.edu 130.18.64.3 msdos, amiga, mac, atari,


mars.ee.msstate.edu pkracks, etc.
mars.ee.msstate.edu 01/03/91 5 anonymous/[email protected]

math.berkeley.edu 128.32.183.94 unknown


math.berkeley.edu 02/23/91 7 anonymous/[email protected]

math.princeton.edu 128.112.128.157 unknown


math.princeton.edu 128.112.16.1
math.princeton.edu 12/31/90 4 anonymous/[email protected]

math.ucla.edu 128.97.64.16 named, nettools, sendmail,


math.ucla.edu gap, pari
math.ucla.edu 09/22/90 7 anonymous/[email protected]

math.uni-heidelberg.de 129.206.103.100 mac


math.uni-heidelberg.de 01/11/91 -2 anonymous/[email protected]

mathinfo.ams.com 130.44.1.100 American Math Society TeX


mathinfo.ams.com archive - AMS-tex, ams-latex,

mathinfo.ams.com euler and other mathematical


mathinfo.ams.com metafonts
mathinfo.ams.com 11/02/90 4 anonymous/[email protected]

maths.su.oz.au 129.78.68.2 unknown


maths.su.oz.au 12/26/90 10 anonymous/[email protected]

max.physics.sunysb.edu 129.49.21.100 MGR for unix-pc


max.physics.sunysb.edu 01/17/91 4 anonymous/[email protected]

maxwell.physics.purdue.edu 128.46.135.3 King James Bible, Commodore


maxwell.physics.purdue.edu Kermit binary files
maxwell.physics.purdue.edu 08/22/90 5 anonymous/[email protected]

mbcrr.harvard.edu 134.174.79.60 protein library


mbcrr.harvard.edu 08/06/90 4 anonymous/[email protected]

mcclb0.med.nyu.edu 128.122.135.4 unknown


mcclb0.med.nyu.edu 02/23/91 5 anonymous/[email protected]

mclean-unisys.army.mil 26.13.0.17 nothing


mclean-unisys.army.mil 08/22/90 7 anonymous/[email protected]

mcnc.mcnc.org 128.109.130.3 ftpd bugfix, intro NIC docs,


mcnc.mcnc.org 128.109.131.1 VLSI CAD tool benchmarks,
mcnc.mcnc.org 129.109.131.1 some RFCs, triangle.jobs
mcnc.mcnc.org archive
mcnc.mcnc.org 1/23/91 4 anonymous/[email protected]

mcsun.eu.net 192.16.202.1 gnu, graphics, mail, misc


mcsun.eu.net network, znews, programming,
mcsun.eu.net ripe, text proc utils, uumap,

mcsun.eu.net windows, security,


mcsun.eu.net eurographics, bootstrap
mcsun.eu.net 01/11/91 -2 anonymous/[email protected]

mdaali.cancer.utexas.edu 129.106.1.6 locally written statistical


mdaali.cancer.utexas.edu software, msdos, mac
mdaali.cancer.utexas.edu 03/01/91 5 anonymous/[email protected]

me10.lbl.gov 128.3.128.110 X11 binaries for hp-ux, me10


me10.lbl.gov macros, bind for hp-ux, tex
me10.lbl.gov for hp-ux, misc hp-ux
me10.lbl.gov utilities
me10.lbl.gov 08/22/90 7 anonymous/[email protected]

meadow.stanford.edu 36.64.0.20 unknown


meadow.stanford.edu 05/15/90 7 anonymous/[email protected]

meap.uta.edu 129.107.2.20 msdos engineering/science sw


meap.uta.edu 04/24/91 anonymous/[email protected]

media-lab.media.mit.edu 18.85.0.2 unknown


media-lab.media.mit.edu 07/22/90 4 anonymous/[email protected]

menaik.cs.ualberta.ca 129.128.4.241 SMURPH


menaik.cs.ualberta.ca 09/01/90 5 anonymous/[email protected]

merit.edu 35.1.1.42 RFCs, ideas


merit.edu 08/22/90 4 anonymous/[email protected]

merlin.cs.purdue.edu 128.10.2.3 ConcurrenC, Xinu, mac


merlin.cs.purdue.edu 11/09/90 5 anonymous/[email protected]

methan.chemie.fu-berlin.de 130.133.2.81 unknown


methan.chemie.fu-berlin.de 05/25/91 0 anonymous/[email protected]

metro.ucc.su.oz.au 129.78.64.2 Internet Resource Guide


metro.ucc.su.oz.au 01/17/91 -12 anonymous/[email protected]
mibsrv.mib.eng.ua.edu 130.160.20.80 bitmaps, GIF, games
mibsrv.mib.eng.ua.edu 05/15/90 5 anonymous/[email protected]

midgard.ucsc.edu 128.114.14.6 amoeba, tr, us.constitution


midgard.ucsc.edu 06/02/90 7 anonymous/[email protected]

midway.uchicago.edu 128.135.12.73 OzTeX


midway.uchicago.edu 07/09/90 5 anonymous/[email protected]

miki.cs.titech.ac.jp 131.112.172.15 Nemacs


miki.cs.titech.ac.jp 08/22/90 -12 anonymous/[email protected]

mildred.lerc.nasa.gov 139.88.30.61 unknown


mildred.lerc.nasa.gov 03/17/91 anonymous/[email protected]

milton.u.washington.edu 128.95.136.1 commodore, star trek info,


milton.u.washington.edu dist point for Mentifex AI,
milton.u.washington.edu go
milton.u.washington.edu 12/24/90 7 anonymous/[email protected]

mims-iris.waterloo.edu 129.97.129.116 laser fonts & utilities


mims-iris.waterloo.edu 08/22/90 4 anonymous/[email protected]

mimsy.umd.edu 128.8.128.8 declarative languages bib,


mimsy.umd.edu SLIP, rn
mimsy.umd.edu 01/17/91 4 anonymous/[email protected]

mindseye.berkeley.edu 128.32.232.19 kanji


mindseye.berkeley.edu 05/31/90 7 anonymous/[email protected]

minnie.cs.adfa.oz.au 131.236.20.90 unknown


minnie.cs.adfa.oz.au 05/25/91 anonymous/[email protected]

mips.mips.com 130.62.14.10 comp.sys.mips archive


mips.mips.com 07/08/90 7 anonymous/[email protected]

mis1.mis.mcw.edu 141.106.64.11 decus uucp, anu-news


mis1.mis.mcw.edu 03/22/91 anonymous/[email protected]

mizar.docs.uu.se 130.238.4.1 gnu


mizar.docs.uu.se 130.238.8.6
mizar.docs.uu.se 05/31/90 -2 anonymous/[email protected]

mojo.eng.umd.edu 128.8.133.9 unknown


mojo.eng.umd.edu 10/25/90 4 anonymous/[email protected]

mondo.engin.umich.edu 141.212.68.14 unknown


mondo.engin.umich.edu 05/02/91 4 anonymous/[email protected]

monk.proteon.com 128.185.123.16 cc:mail to smtp gateway


monk.proteon.com 05/15/90 4 anonymous/[email protected]

monu1.cc.monash.edu.au 130.194.1.101 unix stuff, gnuplot


monu1.cc.monash.edu.au 130.194.96.22
monu1.cc.monash.edu.au 06/07/90 -10 anonymous/[email protected]

monu6.cc.monash.edu.au 130.194.32.106 unknown


monu6.cc.monash.edu.au 03/22/91 -11 anonymous/[email protected]
moose.cccs.umn.edu 128.101.133.53 icalc
moose.cccs.umn.edu 08/22/90 5 anonymous/[email protected]

mordred.cs.purdue.edu 128.10.2.2 unknown


mordred.cs.purdue.edu 08/22/90 5 anonymous/[email protected]

mrcnext.cso.uiuc.edu 128.174.201.12 amiga


mrcnext.cso.uiuc.edu 05/15/90 5 anonymous/[email protected]

msdos.archive.umich.edu 141.211.165.34 msdos, mac


msdos.archive.umich.edu 03/01/91 anonymous/[email protected]

mthvax.cs.miami.edu 129.171.32.5 homebrew, constitution, worm,

mthvax.cs.miami.edu elm, nn
mthvax.cs.miami.edu 08/22/90 4 anonymous/[email protected]

mtsg.ubc.ca 137.82.27.1 msdos, unix, amiga, os2


mtsg.ubc.ca 08/22/90 4 anonymous/[email protected]

mungarra.asis.unimelb.edu.au 128.250.150.2 unknown


mungarra.asis.unimelb.edu.au 01/17/91 -12 anonymous/[email protected]

munnari.oz.au 128.250.1.21 graphics progs (vogle, vopl,


munnari.oz.au 192.43.207.1 vort), cap, multigate
munnari.oz.au 192.43.207.15 archive, comp.sources.unix,
munnari.oz.au RFCs
munnari.oz.au 08/31/90 -10 anonymous/[email protected]

mvb.saic.com 139.121.19.1 unknown


mvb.saic.com 03/17/91 anonymous/[email protected]

n1dmm.cs.washington.edu 128.95.1.28 unknown


n1dmm.cs.washington.edu 03/31/91 7 anonymous/[email protected]

nada.kth.se 130.237.222.71 unknown


nada.kth.se 08/22/90 -2 anonymous/[email protected]

nanny.lysator.liu.se 130.236.254.13 irc, lpmud, primos, qnx


nanny.lysator.liu.se 08/23/90 -2 anonymous/[email protected]

ncbi.nlm.nih.gov 130.14.20.1 unknown


ncbi.nlm.nih.gov 10/09/90 4 anonymous/[email protected]

ncifcrf.gov 129.43.1.11 xtrek5.4


ncifcrf.gov 12/31/90 4 anonymous/[email protected]

ncnoc.concert.net 128.109.193.1 misc local network info


ncnoc.concert.net 192.101.21.1
ncnoc.concert.net 05/15/90 4 anonymous/[email protected]

nebula.systemsz.cs.yale.edu 128.36.13.1 haskell


nebula.systemsz.cs.yale.edu 05/31/90 4 anonymous/[email protected]

neon.stanford.edu 36.28.0.92 unknown


neon.stanford.edu 01/17/91 7 anonymous/[email protected]

nervm.nerdc.ufl.edu 128.227.212.10 VM tcpip mods, VM/SP VM/XA


nervm.nerdc.ufl.edu real time monitor
nervm.nerdc.ufl.edu 08/22/90 4 anonymous/[email protected]

netlab.usu.edu 129.123.1.11 netwatch, PC/IP


netlab.usu.edu 08/22/90 6 anonymous/[email protected]

network.ucsd.edu 128.54.16.3 anime gifs, anime stuff,


network.ucsd.edu columbia appletalk package
network.ucsd.edu 12/24/90 7 anonymous/[email protected]

newell.arc.nasa.gov 128.102.25.43 unknown


newell.arc.nasa.gov 08/22/90 7 anonymous/[email protected]

next.com 129.18.1.2 unknown


next.com 08/22/90 7 anonymous/[email protected]

nexus.yorku.ca 130.63.9.1 unknown


nexus.yorku.ca 03/17/91 anonymous/[email protected]

nic.cerf.net 192.102.249.3 CERFnet connectivity maps


nic.cerf.net 08/22/90 7 anonymous/[email protected]

nic.ddn.mil 192.67.67.20 netinfo, RFCs, IEN, IETF


nic.ddn.mil 08/22/90 7 anonymous/[email protected]

nic.funet.fi 128.214.6.100 GNU, X11, networking, msdos,


nic.funet.fi mac, amiga, atari, security
nic.funet.fi docs and software,
nic.funet.fi cryptography stuff, sony news

nic.funet.fi software
nic.funet.fi 08/22/90 -3 anonymous/[email protected]

nic.mr.net 137.192.1.5 Minnesota Regional Net


nic.mr.net traffic data
nic.mr.net 08/22/90 5 anonymous/[email protected]

nic.near.net 192.52.71.4 nearnet info (docs forms)


nic.near.net 05/31/90 4 anonymous/[email protected]

nic.switch.ch 130.59.1.40 news archive, GNU (swiss ftp


nic.switch.ch server)
nic.switch.ch 05/15/90 -2 anonymous/[email protected]

niord.shsu.edu 192.92.115.8 unknown


niord.shsu.edu 04/24/91 anonymous/[email protected]

nis.nsf.net 35.1.1.48 Merit info, NSFnet Link


nis.nsf.net Letter
nis.nsf.net 08/22/90 4 anonymous/guest
nisc.jvnc.net 128.121.50.7 misc info
nisc.jvnc.net 05/31/90 4 anonymous/[email protected]

nisca.ircc.ohio-state.edu 128.146.1.7 alt.fax


nisca.ircc.ohio-state.edu 05/15/90 4 anonymous/[email protected]

nnsc.nsf.net 192.31.103.6 Network Info, Internet


nnsc.nsf.net 128.89.1.178 Resource Guide
nnsc.nsf.net 128.89.1.2
nnsc.nsf.net 08/22/90 4 anonymous/[email protected]
noc.sura.net 192.80.214.100 various network maps
noc.sura.net 08/03/90 4 anonymous/[email protected]

nog.calstate.edu 130.150.102.100 network guides


nog.calstate.edu 08/22/90 7 anonymous/[email protected]

nova.cc.purdue.edu 128.210.7.22 Next archives


nova.cc.purdue.edu 11/02/90 4 anonymous/[email protected]

novell.macc.wisc.edu 128.104.30.31 MOKE (kanji/kana editor for


novell.macc.wisc.edu msdos)
novell.macc.wisc.edu 08/22/90 5 anonymous/[email protected]

nro.cs.athabascau.ca 131.232.1.1 unknown


nro.cs.athabascau.ca 131.232.6.1
nro.cs.athabascau.ca 05/25/91 6 anonymous/[email protected]

ns.nic.yorku.ca 130.63.7.3 unknown


ns.nic.yorku.ca 10/09/90 4 anonymous/[email protected]

nssdca.gsfc.nasa.gov 128.183.36.23 hubble space telescope images

nssdca.gsfc.nasa.gov 12/23/90 -5 anonymous/[email protected]

nuri.inria.fr 128.93.1.26 unknown


nuri.inria.fr 03/22/91 -2 anonymous/[email protected]

nyu.edu 128.122.128.2 mod.sources


nyu.edu 01/02/91 4 anonymous/[email protected]

ocf.berkeley.edu 128.32.184.254 OCF, Apollo software, Hello


ocf.berkeley.edu World archive
ocf.berkeley.edu 08/22/90 7 anonymous/[email protected]

oddjob.uchicago.edu 128.135.4.2 NNTP, Sendmail, utils,


oddjob.uchicago.edu 128.135.4.32 Ethernet stuff
oddjob.uchicago.edu 08/22/90 5 anonymous/[email protected]

oddput.efd.lth.se 130.235.48.4 xps (postscript previewer)


oddput.efd.lth.se 05/15/90 -2 anonymous/[email protected]

ogre.cica.indiana.edu 129.79.21.178 lpd


ogre.cica.indiana.edu 08/13/90 5 anonymous/[email protected]

okeeffe.berkeley.edu 128.32.130.3 nothing


okeeffe.berkeley.edu 08/22/90 7 anonymous/[email protected]

omnigate.clarkson.edu 128.153.4.2 PS maps of DNS, Clarkson NCSA

omnigate.clarkson.edu telnet
omnigate.clarkson.edu 05/15/90 4 anonymous/[email protected]

orc.olivetti.com 129.189.192.20 msdos fax netinfo rfc


orc.olivetti.com 05/31/90 7 anonymous/[email protected]

oregon.uoregon.edu 128.223.20.2 unknown


oregon.uoregon.edu 128.223.32.18
oregon.uoregon.edu 08/22/90 7 anonymous/[email protected]
orion.arc.nasa.gov 128.102.18.10 nothing
orion.arc.nasa.gov 128.102.128.2
orion.arc.nasa.gov 05/31/90 7 anonymous/[email protected]

orville.nas.nasa.gov 129.99.23.7 hyperchannel network device


orville.nas.nasa.gov 129.99.196.2 driver, panel-library (Sil.
orville.nas.nasa.gov Graph. workstation graphical
orville.nas.nasa.gov interface builder), Kyoto
orville.nas.nasa.gov Common Lisp for Cray2
orville.nas.nasa.gov 08/22/90 7 anonymous/[email protected]

osi.ncsl.nist.gov 129.6.48.100 misc OSI info


osi.ncsl.nist.gov 05/15/90 4 anonymous/[email protected]

osi3.ncsl.nist.gov 129.6.51.1 GOSIP


osi3.ncsl.nist.gov 129.6.55.3
osi3.ncsl.nist.gov 05/15/90 4 anonymous/[email protected]

osprey.telcom.arizona.edu 128.196.128.232 unknown


osprey.telcom.arizona.edu 10/25/90 7 anonymous/[email protected]

oswego.oswego.edu 129.3.1.1 GNU, mac, kermit


oswego.oswego.edu 08/22/90 4 anonymous/[email protected]

otax.tky.hut.fi 130.233.32.32 Mikkar accounting program


otax.tky.hut.fi 05/15/90 -3 anonymous/[email protected]

othello.dartmouth.edu 129.170.16.6 ATT 6300+ archive


othello.dartmouth.edu 07/06/90 4 anonymous/[email protected]

otis.stanford.edu 36.22.0.201 SELF language docs


otis.stanford.edu 01/17/91 7 anonymous/[email protected]

ouchem.chem.oakland.edu 141.210.108.5 unknown


ouchem.chem.oakland.edu 02/23/91 4 anonymous/[email protected]

oxy.edu unknown
oxy.edu 05/25/91 7 anonymous/[email protected]

p6xje.ldc.lu.se 130.235.133.7 NCSA telnet 2.2ds, PC


p6xje.ldc.lu.se networking etc.
p6xje.ldc.lu.se 08/22/90 -2 anonymous/[email protected]

pacific.mps.ohio-state.edu 128.146.39.2 dvi2ps


pacific.mps.ohio-state.edu 128.146.37.18
pacific.mps.ohio-state.edu 05/15/90 4 anonymous/[email protected]

paul.rutgers.edu 128.6.5.60 omega


paul.rutgers.edu 128.6.4.14
paul.rutgers.edu 05/15/90 4 anonymous/[email protected]

pc.usl.edu 130.70.40.3 pbmplus for amiga


pc.usl.edu 07/08/90 5 anonymous/[email protected]

peace.waikato.ac.nz 130.217.64.62 anu-news gnu msdos mac ncsa


peace.waikato.ac.nz x11r4
peace.waikato.ac.nz 08/22/90 -1 anonymous/[email protected]
pearl.tufts.edu 130.64.1.2 VMS goodies
pearl.tufts.edu 03/26/91 4 anonymous/[email protected]

pemrac.space.swri.edu 129.162.150.4 convex users group


pemrac.space.swri.edu 08/22/90 5 anonymous/[email protected]

peoplesparc.berkeley.edu 128.32.131.14 unknown


peoplesparc.berkeley.edu 01/22/91 7 anonymous/[email protected]

perelandra.cms.udel.edu 128.175.74.1 unknown


perelandra.cms.udel.edu 01/17/91 4 anonymous/[email protected]

pgd.adp.wisc.edu 128.104.198.22 unknown


pgd.adp.wisc.edu 08/22/90 5 anonymous/[email protected]

phoebus.nisc.sri.com 192.33.33.22 unknown


phoebus.nisc.sri.com 04/24/91 7 anonymous/[email protected]

phoibos.cs.kun.nl 131.174.81.1 ToalTex, rail, glammar, glass

phoibos.cs.kun.nl 131.174.32.1
phoibos.cs.kun.nl 02/21/91 -2 anonymous/[email protected]

piggy.cs.chalmers.se 129.16.2.25 unknown


piggy.cs.chalmers.se 03/31/91 -3 anonymous/[email protected]

piggy.ucsb.edu 128.111.72.50 coherent


piggy.ucsb.edu 09/01/90 6 anonymous/[email protected]

pilot.njin.net 128.6.7.38 Original distribution point


pilot.njin.net 128.6.18.38 of this ftp list
pilot.njin.net (pub/ftp-list)
pilot.njin.net 06/10/90 4 anonymous/[email protected]

pine.circa.ufl.edu 128.227.8.7 this list, RFCs, Internet


pine.circa.ufl.edu Worm reports
pine.circa.ufl.edu 08/22/90 4 anonymous/[email protected]

pion.lcs.mit.edu 18.26.0.64 clu


pion.lcs.mit.edu 05/31/90 4 anonymous/[email protected]

pisa.citi.umich.edu 141.211.168.74 unknown


pisa.citi.umich.edu 05/25/91 anonymous/[email protected]

pit-manager.mit.edu 18.72.1.58 stories (Alice's PDP-10, Mel


pit-manager.mit.edu and the drum memory), humor,
pit-manager.mit.edu firearms discussion (RKBA
pit-manager.mit.edu articles)
pit-manager.mit.edu 03/26/91 4 anonymous/[email protected]

pitt.edu 130.49.1.253 local nameserver source,


pitt.edu local decnet database,
pitt.edu National Institute of Health
pitt.edu Guide Online, RFCs, local
pitt.edu network docs
pitt.edu 08/22/90 4 anonymous/[email protected]

pittslug.sug.org 130.49.192.150 unknown


pittslug.sug.org 03/17/91 anonymous/[email protected]
plains.nodak.edu 134.129.111.64 apple, msdos, mac, amiga,
plains.nodak.edu ascii pics,
plains.nodak.edu comp.sys.handhelds, hp-28
plains.nodak.edu list archives
plains.nodak.edu 05/15/90 5 anonymous/[email protected]

poincare.geom.umn.edu 128.101.25.31 Differential Geometry Stuff


poincare.geom.umn.edu 06/01/90 5 anonymous/[email protected]

polaris.cognet.ucla.edu 128.97.50.3 unknown


polaris.cognet.ucla.edu 04/24/91 7 anonymous/[email protected]

polaris.llnl.gov 128.115.14.19 alt.archives, rfc


polaris.llnl.gov 05/31/90 7 anonymous/[email protected]

polaris.utu.fi 130.232.1.1 CLU sources


polaris.utu.fi 08/22/90 -3 anonymous/[email protected]

pollux.lu.se 130.235.132.89 ftp-sites, graphics, mac,


pollux.lu.se network
pollux.lu.se 08/22/90 -2 anonymous/[email protected]

polyslo.calpoly.edu 129.65.17.1 xtrek, top 2.0, spaceout,


polyslo.calpoly.edu cnews, nethack, nntp, uucp,
polyslo.calpoly.edu hosts, TR, RFCs, Conquer
polyslo.calpoly.edu Docs, usenix tape files,
polyslo.calpoly.edu short usenix files,
polyslo.calpoly.edu Hitchhikers guide to the
polyslo.calpoly.edu Internet, Internet Email list

polyslo.calpoly.edu 05/15/90 7 anonymous/[email protected]

pomona.claremont.edu 134.173.4.160 vms utils


pomona.claremont.edu 08/22/90 7 anonymous/[email protected]

ponder.csci.unt.edu 129.120.3.16 unknown


ponder.csci.unt.edu 09/29/90 5 anonymous/[email protected]

portnoy.cs.buffalo.edu 128.205.34.106 FSF


portnoy.cs.buffalo.edu 07/09/90 4 anonymous/[email protected]

postgres.berkeley.edu 128.32.149.1 University INGRES


postgres.berkeley.edu 08/22/90 7 anonymous/[email protected]

potemkin.cs.pdx.edu 131.252.20.145 Dylan, League for Programming

potemkin.cs.pdx.edu Freedom, Parker Lewis archive

potemkin.cs.pdx.edu 03/01/91 7 anonymous/[email protected]

pprg.unm.edu 192.31.154.1 bitmaps


pprg.unm.edu 129.24.13.10
pprg.unm.edu 05/16/90 6 anonymous/[email protected]

primost.cs.wisc.edu 128.105.2.115 comp.compilers


primost.cs.wisc.edu 05/15/90 5 anonymous/[email protected]

princeton.edu 128.112.128.1 web, standard ML


princeton.edu 07/19/90 4 anonymous/[email protected]

procyon.cis.ksu.edu 129.130.10.80 sun fixes, old xbbs, old


procyon.cis.ksu.edu citadel, u3g toolkit, old
procyon.cis.ksu.edu unix-pc, pd modula2, msdos,
procyon.cis.ksu.edu mac, amiga, misc
procyon.cis.ksu.edu 11/25/90 5 anonymous/[email protected]

puppsr.princeton.edu 128.112.128.165 unknown


puppsr.princeton.edu 03/17/91 4 anonymous/[email protected]

pyrite.rutgers.edu 128.6.4.15 Security mailing list


pyrite.rutgers.edu 128.6.60.15 archives
pyrite.rutgers.edu 05/15/90 4 anonymous/[email protected]

qed.rice.edu 128.42.4.38 GNU, X11R3, plot2ps sources


qed.rice.edu 05/15/90 5 anonymous/[email protected]

quartz.rutgers.edu 128.6.4.8 unknown


quartz.rutgers.edu 05/19/90 4 anonymous/[email protected]

quiche.cs.mcgill.ca 132.206.2.3 recursive listing of all ftp


quiche.cs.mcgill.ca 132.206.51.1 sites, msdos, bible, Hubble
quiche.cs.mcgill.ca GIF images
quiche.cs.mcgill.ca 06/16/90 4 anonymous/[email protected]

ra.nrl.navy.mil 128.60.0.21 mac engineering and science


ra.nrl.navy.mil shareware
ra.nrl.navy.mil 04/02/91 4 anonymous/[email protected]

rand.org 192.5.14.33 some esperanto


rand.org 07/10/90 7 anonymous/[email protected]

rascal.ics.utexas.edu 128.83.138.20 KCL, AKCL (full common lisp


rascal.ics.utexas.edu implementation)
rascal.ics.utexas.edu 10/04/90 5 anonymous/[email protected]

rata.vuw.ac.nz 130.195.2.11 mac, sun, robodoc


rata.vuw.ac.nz 02/05/91 -1 anonymous/[email protected]

relay.cdnnet.ca 192.73.5.1 CA domain registrations,


relay.cdnnet.ca fonts, MuTeX, raster files,
relay.cdnnet.ca RFCs, sun and usenet utils
relay.cdnnet.ca 08/20/90 7 anonymous/[email protected]

research.att.com 192.20.225.2 TeX, gcc, ghostscript, f2c


research.att.com 08/22/90 4 anonymous/[email protected]

retina.chem.psu.edu 128.118.30.113 mopac


retina.chem.psu.edu 06/02/90 4 anonymous/[email protected]

riacs.edu 128.102.16.8 unknown


riacs.edu 03/25/91 anonymous/[email protected]

rigel.efd.lth.se 130.235.48.3 VMS emacs, decwindows diffs


rigel.efd.lth.se 08/22/90 -2 anonymous/[email protected]

ringo.rutgers.edu 128.6.5.77 Omega sources


ringo.rutgers.edu 128.6.13.6
ringo.rutgers.edu 05/15/90 4 anonymous/[email protected]

rml2.sri.com 128.18.22.20 VMS gnu awk


rml2.sri.com 08/22/90 7 anonymous/[email protected]

rodan.acs.syr.edu 128.230.1.55 unix and mac stuff, novell


rodan.acs.syr.edu software
rodan.acs.syr.edu 02/21/91 4 anonymous/[email protected]

rogue.llnl.gov 128.115.2.99 DECnet security tools


rogue.llnl.gov 08/22/90 7 anonymous/[email protected]

rohini.telecomm.umn.edu 128.101.54.232 UMN hostables


rohini.telecomm.umn.edu 08/22/90 5 anonymous/[email protected]

roope.hut.fi 130.233.192.32 bib : dash, mosix, treads


roope.hut.fi 08/22/90 -3 anonymous/[email protected]

rover.umd.edu 128.8.2.73 unknown


rover.umd.edu 05/15/90 4 anonymous/[email protected]

rpi.edu 128.113.1.5 epelle


rpi.edu 08/15/90 4 anonymous/[email protected]

rrivax.rri.uwo.ca 129.100.7.2 unknown


rrivax.rri.uwo.ca 01/17/91 anonymous/[email protected]

rsa.com 192.80.211.13 unknown


rsa.com 02/23/91 7 anonymous/[email protected]

rtsg.ee.lbl.gov 128.3.254.68 flex, compressed SLIP


rtsg.ee.lbl.gov 08/22/90 7 anonymous/[email protected]

ruby.tufts.edu 130.64.1.8 mirror of pearl.tufts.edu


ruby.tufts.edu 03/26/91 4 anonymous/[email protected]

rusmv1.rus.uni-stuttgart.de 129.69.1.12 RFCs, X11, atari, amiga,


rusmv1.rus.uni-stuttgart.de msdos, unix, mathematics
rusmv1.rus.uni-stuttgart.de (Fortran)
rusmv1.rus.uni-stuttgart.de 05/15/90 -2 anonymous/[email protected]

rutgers.edu 128.6.4.7 comp.sources.sun


rutgers.edu 128.6.21.9
rutgers.edu 05/15/90 4 anonymous/[email protected]

rye.cs.ucla.edu 131.179.192.79 tgif


rye.cs.ucla.edu 06/02/90 7 anonymous/[email protected]

sa.cacs.usl.edu 130.70.40.11 Socket interface


sa.cacs.usl.edu 08/22/90 7 anonymous/[email protected]

sachiko.acc.stolaf.edu 130.71.192.17 g++


sachiko.acc.stolaf.edu 07/09/90 5 anonymous/[email protected]

samba.acs.unc.edu 128.109.157.30 unknown


samba.acs.unc.edu 04/24/91 4 anonymous/[email protected]

sao.aarnet.edu.au 130.56.5.21 VMS nntp server


sao.aarnet.edu.au 08/22/90 -11 anonymous/[email protected]
saqqara.cis.ohio-state.edu 128.146.8.98 SLIP sw, some NeWS
saqqara.cis.ohio-state.edu 12/24/90 4 anonymous/[email protected]

sauna.hut.fi 130.233.192.1 unix, athena docs, some FTP


sauna.hut.fi 130.233.200.1 dirs from US, elm, nntp, news

sauna.hut.fi 08/05/90 -3 anonymous/[email protected]

sayshell.umd.edu 128.8.2.88 version of KA9Q


sayshell.umd.edu 05/15/90 4 anonymous/[email protected]

sbcs.sunysb.edu 130.245.1.15 sun raster tools


sbcs.sunysb.edu 05/15/90 4 anonymous/[email protected]

scam.berkeley.edu 128.32.138.1 X sources,


scam.berkeley.edu rec.arts.startrek.info
scam.berkeley.edu archives, tk, tcl
scam.berkeley.edu 05/25/91 7 anonymous/[email protected]

schizo.samsung.com 134.228.1.2 alt.sources,


schizo.samsung.com comp.sources.games,
schizo.samsung.com comp.sources.misc,
schizo.samsung.com comp.sources.sun,
schizo.samsung.com comp.sources.unix,
schizo.samsung.com comp.sources.x, GNU, usenet
schizo.samsung.com news sw, unix mail sw,
schizo.samsung.com networking sw, msdos, gifs,
schizo.samsung.com RFCs
schizo.samsung.com 09/22/90 4 anonymous/[email protected]

science.utah.edu 128.110.192.2 TeX things, Hershey (tenex)


science.utah.edu 08/22/90 6 anonymous/[email protected]

sciences.sdsu.edu 130.191.224.2 SS-1 sounds


sciences.sdsu.edu 10/04/90 7 anonymous/[email protected]

sdcsvax.ucsd.edu 132.239.51.2 prep-p, GAucsd, LML


sdcsvax.ucsd.edu 03/22/91 7 anonymous/[email protected]

sds.sdsc.edu 132.249.20.22 supercomputer center info


sds.sdsc.edu 08/22/90 7 anonymous/[email protected]

seismo.css.gov 192.12.141.25 patches for 4.3 bsd slip


seismo.css.gov 140.162.1.25 driver, timed, and sendmail
seismo.css.gov 11/06/90 4 anonymous/[email protected]

seq.uncwil.edu 128.109.221.20 hp48 archives


seq.uncwil.edu 05/26/91 4 anonymous/[email protected]

serv1.cl.msu.edu 35.8.2.41 msu hosts files


serv1.cl.msu.edu 08/22/90 4 anonymous/[email protected]

sgi.com 192.48.153.1 IRIS stuff


sgi.com 05/15/90 7 anonymous/[email protected]

sh.cs.net 192.31.103.3 NetLists, NetMaps, RFCs, etc.

sh.cs.net 128.89.0.92
sh.cs.net 08/22/90 4 anonymous/[email protected]

shambhala.berkeley.edu 128.32.132.54 xrn, xgraph


shambhala.berkeley.edu 08/22/90 7 anonymous/[email protected]

shape.mps.ohio-state.edu 128.146.7.200 unknown


shape.mps.ohio-state.edu 05/16/90 4 anonymous/[email protected]

shasta.scl.cwru.edu 129.22.32.7 smail/pc, msdos, gif, packet


shasta.scl.cwru.edu drivers, gnu-c 386, ka9q,
shasta.scl.cwru.edu pc/ip, ncsa, pc/tex, uemacs,
shasta.scl.cwru.edu p2c, rn, dvi2ps, uupc
shasta.scl.cwru.edu 04/24/91 4 anonymous/[email protected]

shemp.cs.ucla.edu 131.179.128.34 XWIP


shemp.cs.ucla.edu 05/15/90 7 anonymous/[email protected]

shillelagh.cse.nd.edu 129.74.9.7 unknown


shillelagh.cse.nd.edu 03/17/91 4 anonymous/[email protected]

shiva.com 192.80.57.1 unknown


shiva.com 10/09/90 4 anonymous/[email protected]

shorty.cs.wisc.edu 128.105.2.8 Condor, cslip for Ultrix 4.0,

shorty.cs.wisc.edu lj2ps, xgremlin, xproof


shorty.cs.wisc.edu 08/21/90 5 anonymous/[email protected]

shrimp.cs.washington.edu 128.95.1.99 unknown


shrimp.cs.washington.edu 05/25/91 7 anonymous/[email protected]

shum.huji.ac.il 128.139.4.12 unknown


shum.huji.ac.il 03/17/91 anonymous/[email protected]

siam.unibe.ch 130.92.66.11 benchmark, c++, comm,


siam.unibe.ch databases, gnu, graphics,
siam.unibe.ch images, interviews,
siam.unibe.ch languages, mathematica,
siam.unibe.ch postscript, suntools,
siam.unibe.ch systemtools, tex, usenet,
siam.unibe.ch X11, emacs, ftp.list, games,
siam.unibe.ch sound
siam.unibe.ch 01/11/91 -2 anonymous/[email protected]

sics.se 192.16.123.90 calc, ft1, gated, interviews,

sics.se isode, mh, packet radio,


sics.se ping, pmake, printmail, sps,
sics.se Poskanzer bitmaps (runs whois

sics.se server)
sics.se 05/16/90 -2 anonymous/[email protected]

siegfried.vlsi.polymtl.ca 132.207.8.5 unknown


siegfried.vlsi.polymtl.ca 05/25/91 4 anonymous/[email protected]

sierra.stanford.edu 36.2.0.98 unknown


sierra.stanford.edu 05/04/91 4 anonymous/[email protected]
sirius.ucs.adelaide.edu.au 129.127.40.3 X11R4, bsd stuff, CERT,
sirius.ucs.adelaide.edu.au modula 3, msdos, aus.aarnet
sirius.ucs.adelaide.edu.au archive, URT (Utah RLE
sirius.ucs.adelaide.edu.au toolkit)
sirius.ucs.adelaide.edu.au 04/02/91 -9 anonymous/[email protected]

skippy.umiacs.umd.edu 128.8.120.23 sun-nets archive


skippy.umiacs.umd.edu 05/15/90 4 anonymous/[email protected]

skutt.cs.chalmers.se 129.16.2.7 some Constructive Type Theory

skutt.cs.chalmers.se stuff, LML v0.97, xlpmud,


skutt.cs.chalmers.se some Constructive Type Theory

skutt.cs.chalmers.se stuff, LML v0.97, xlpmud


skutt.cs.chalmers.se 06/06/90 -2 anonymous/[email protected]

slc2.ins.cwru.edu 129.22.8.104 bash


slc2.ins.cwru.edu 04/24/91 4 anonymous/[email protected]

slopoke.mlb.semi.harris.com 132.158.82.36 unknown


slopoke.mlb.semi.harris.com 03/31/91 4 anonymous/[email protected]

smaug.cs.hope.edu 35.197.146.1 unknown


smaug.cs.hope.edu 03/17/91 4 anonymous/[email protected]

smilodon.cs.wisc.edu 128.105.1.214 os9 68k and 6809 software


smilodon.cs.wisc.edu 12/24/90 5 anonymous/[email protected]

sn01.sncc.lsu.edu 130.39.128.20 unknown


sn01.sncc.lsu.edu 12/31/90 5 anonymous/[email protected]

snake.utah.edu 128.110.4.58 skill/snice


snake.utah.edu 06/02/90 6 anonymous/[email protected]

snow.white.toronto.edu 128.100.2.160 mg
snow.white.toronto.edu 05/15/90 4 anonymous/[email protected]

soda.berkeley.edu 128.32.131.179 unknown


soda.berkeley.edu 04/24/91 anonymous/[email protected]

sol.cs.ruu.nl 131.211.80.5 atari, GNU, HP-UX, TeX, Perl,

sol.cs.ruu.nl UMFT, elm


sol.cs.ruu.nl 08/01/90 -2 anonymous/[email protected]

sol.ctr.columbia.edu 128.59.64.40 Lots of networking programs +

sol.ctr.columbia.edu background, DES, sun


sol.ctr.columbia.edu checkpoint
sol.ctr.columbia.edu 05/15/90 4 anonymous/[email protected]

sol.deakin.oz.au 128.184.1.1 simtel20 and garbo shadows


sol.deakin.oz.au 04/02/91 -11 anonymous/[email protected]

sol.sura.net 128.167.1.10 anime gifs, scripts, ghod bbs

sol.sura.net 12/25/90 4 anonymous/[email protected]


solar.stanford.edu 36.10.0.4 local Stanford info
solar.stanford.edu 05/15/90 7 anonymous/[email protected]

solbourne.solbourne.com 141.138.2.2 unknown


solbourne.solbourne.com 05/25/91 anonymous/[email protected]

sonata.cc.purdue.edu 128.210.15.30 Next archives


sonata.cc.purdue.edu 11/02/90 3 anonymous/[email protected]

sparky2.esd.mun.ca 134.153.11.101 NewPet and QuikPlot msdos


sparky2.esd.mun.ca geological software
sparky2.esd.mun.ca 04/24/91 2 anonymous/[email protected]

sparkyfs.erg.sri.com 128.18.3.39 Improving the Security of


sparkyfs.erg.sri.com 128.18.4.39 your Unix system
sparkyfs.erg.sri.com 128.18.5.39
sparkyfs.erg.sri.com 10/13/90 7 anonymous/[email protected]

-------------------------------------------------------------------------------
sparta.spartacus.com 192.8.0.7 router items of interest,
sparta.spartacus.com knet info
sparta.spartacus.com 01/03/91 4 anonymous/[email protected]

spdcc.com 140.186.80.3 unknown


spdcc.com 05/02/91 4 anonymous/[email protected]

sperm.ocean.washington.edu 128.95.252.7 RWVector, gcc, gdb, kermit,


sperm.ocean.washington.edu libg++, liblinpack, liboops,
sperm.ocean.washington.edu oopsV2R2+, plot5, spinup,
sperm.ocean.washington.edu sungraph, superfilters,
sperm.ocean.washington.edu xmodem, xyplot
sperm.ocean.washington.edu 05/15/90 7 anonymous/[email protected]

splicer.cba.hawaii.edu 128.171.17.7 novell, comm sw, ncsa, telnet

splicer.cba.hawaii.edu mac, utilities


splicer.cba.hawaii.edu 09/22/90 anonymous/[email protected]

spot.colorado.edu 128.138.129.2 netinfo: stuff, RFCs


spot.colorado.edu 05/15/90 6 anonymous/[email protected]

squid.cs.ucla.edu 131.179.96.44 medical documentation


squid.cs.ucla.edu 08/22/90 7 anonymous/[email protected]

ssyx.ucsc.edu 128.114.133.1 some mac


ssyx.ucsc.edu 08/22/90 7 anonymous/[email protected]

stag.math.lsa.umich.edu 141.211.64.23 unknown


stag.math.lsa.umich.edu 05/16/90 4 anonymous/[email protected]

star.cs.vu.nl 192.31.231.42 vi tutorial, amoeba, minix


star.cs.vu.nl 130.37.24.6 demo, CVS, idraw, magtape,
star.cs.vu.nl Xserver, atari
star.cs.vu.nl 03/15/91 -2 anonymous/[email protected]

stat.wisc.edu 128.105.5.1 FACT, Statbib, S functions


stat.wisc.edu 128.105.2.250
stat.wisc.edu 05/15/90 5 anonymous/[email protected]
stolaf.edu 130.71.128.8 news, anime, bitmaps, amiga,
stolaf.edu 130.71.192.8 msods, mud, tex, dvi,
stolaf.edu net_spellbook, postscipt
stolaf.edu utils
stolaf.edu 07/16/90 5 anonymous/[email protected]

stout.atd.ucar.edu 128.117.80.30 unknown


stout.atd.ucar.edu 05/15/90 6 anonymous/[email protected]

stsci.edu 130.167.1.2 unknown


stsci.edu 10/09/90 4 anonymous/[email protected]

sumex-aim.stanford.edu 36.44.0.6 mac archives, Mycin (sun4),


sumex-aim.stanford.edu imap
sumex-aim.stanford.edu 05/15/90 7 anonymous/[email protected]

sun.cnuce.cnr.it 192.12.192.4 atalk, ka9q, GNU


sun.cnuce.cnr.it 08/22/90 -2 anonymous/[email protected]

sun.soe.clarkson.edu 128.153.12.3 Packet Driver, X11 fonts,


sun.soe.clarkson.edu TeX, PCIP, Freemacs, LaTeX
sun.soe.clarkson.edu styles
sun.soe.clarkson.edu 05/15/90 4 anonymous/[email protected]

sun1.ruf.uni-freiburg.de 132.230.1.1 unknown


sun1.ruf.uni-freiburg.de 05/15/90 -2 anonymous/[email protected]

suna.mqcc.mq.oz.au 137.111.161.1 unknown


suna.mqcc.mq.oz.au 01/17/91 -12 anonymous/[email protected]

suna.osc.edu 128.146.1.4 ape (animation production


suna.osc.edu environment)
suna.osc.edu 05/15/90 4 anonymous/[email protected]

sunbane.engrg.uwo.ca 129.100.100.12 Traveller mailing list


sunbane.engrg.uwo.ca archive, FrameMaker
sunbane.engrg.uwo.ca programs/utils
sunbane.engrg.uwo.ca 04/24/91 4 anonymous/[email protected]

suned.zoo.cs.yale.edu 128.36.21.1 games, utils, other hacks


suned.zoo.cs.yale.edu 05/15/90 4 anonymous/[email protected]

sunee.uwaterloo.ca 129.97.128.196 unknown


sunee.uwaterloo.ca 129.97.56.1
sunee.uwaterloo.ca 04/24/91 4 anonymous/[email protected]

sunic.sunet.se 192.36.125.2 RFCs, nntp, news, sendmail,


sunic.sunet.se 130.237.216.2 ntp, comp.sources.unix,
sunic.sunet.se comp.sources.games,
sunic.sunet.se comp.sources.misc,
sunic.sunet.se alt.sources, GNU
sunic.sunet.se 05/15/90 -2 anonymous/[email protected]

sutro.sfsu.edu 130.212.15.230 NeXT-related files, mazewar


sutro.sfsu.edu 05/15/90 7 anonymous/[email protected]

svax.cs.cornell.edu 128.84.254.2 TransFig, Fig-FS, NetHack


svax.cs.cornell.edu 05/15/90 4 anonymous/[email protected]
svin02.info.win.tue.nl 131.155.70.100 unknown
svin02.info.win.tue.nl 12/31/90 -2 anonymous/[email protected]

syn-gate-gw.synoptics.com 134.177.32.116 unknown


syn-gate-gw.synoptics.com 10/09/90 7 anonymous/[email protected]

syr.edu 128.230.1.49 misc


syr.edu 09/29/90 7 anonymous/[email protected]

szechuan.ncsc.org 128.109.178.3 marching cubes surface tiler


szechuan.ncsc.org 06/02/90 4 anonymous/[email protected]

tacky.cs.olemiss.edu 130.74.96.13 unknown


tacky.cs.olemiss.edu 04/24/91 5 anonymous/[email protected]

tandem.com 130.252.10.8 ham radio


tandem.com 05/15/90 7 anonymous/[email protected]

tank.uchicago.edu 128.135.136.2 mac, OzTex


tank.uchicago.edu 05/15/90 5 anonymous/[email protected]

tasman.cc.utas.edu.au 131.217.10.1 mac net news reader


tasman.cc.utas.edu.au 07/19/90 -10 anonymous/[email protected]

tau.sm.luth.se 130.240.0.3 comp.binaries.ibm.pc


tau.sm.luth.se 05/16/90 -2 anonymous/[email protected]

taunivm.tau.ac.il 132.66.32.4 PLP (Public line printer)


taunivm.tau.ac.il 08/22/90 5 anonymous/[email protected]

taylor.gsfc.nasa.gov 128.183.39.21 unknown


taylor.gsfc.nasa.gov 05/04/91 4 anonymous/[email protected]

tesla.ee.cornell.edu 128.84.253.11 tcsh


tesla.ee.cornell.edu 128.84.224.11
tesla.ee.cornell.edu 08/13/90 4 anonymous/[email protected]

tgv.com 192.41.228.65 multinet


tgv.com 08/22/90 4 anonymous/[email protected]

thalamus.sans.kth.se 130.237.219.100 unknown


thalamus.sans.kth.se 05/25/91 -2 anonymous/[email protected]

theory.tc.cornell.edu 128.84.181.1 unknown


theory.tc.cornell.edu 05/18/91 4 anonymous/[email protected]

think.com 131.239.2.1 pmdc, X11.2 Interviews 3d,


think.com 192.5.104.212 lisp simulator
think.com 08/06/90 4 anonymous/[email protected]

thor.acc.stolaf.edu 130.71.192.1 fj newsgroups, bible, GNU,


thor.acc.stolaf.edu some ps, etc.
thor.acc.stolaf.edu 08/22/90 5 anonymous/[email protected]

thor.atd.ucar.edu 128.117.81.51 unknown


thor.atd.ucar.edu 05/15/90 6 anonymous/[email protected]

thor.oar.net 131.187.1.135 unknown


thor.oar.net 05/26/91 4 anonymous/[email protected]
thumper.bellcore.com 128.96.41.1 official home of ka9q tcpip
thumper.bellcore.com 08/22/90 4 anonymous/[email protected]

ti.com 192.94.94.1 Explorer compress & en, CLUE,

ti.com CLX
ti.com 05/15/90 5 anonymous/[email protected]

ticsys.tamu.edu 128.194.43.66 gif, lpmud


ticsys.tamu.edu 08/31/90 5 anonymous/[email protected]

tik.vtt.fi 130.188.52.2 kjv, sultrix, secure.tar.Z


tik.vtt.fi 08/22/90 7 anonymous/[email protected]

titan.cc.tut.fi 128.214.23.9 supercomputing, benchmark,


titan.cc.tut.fi batch processing
titan.cc.tut.fi 12/23/90 -2 anonymous/[email protected]

titan.ksc.nasa.gov 128.159.4.20 unknown


titan.ksc.nasa.gov 128.159.1.1
titan.ksc.nasa.gov 05/26/91 anonymous/[email protected]

titan.rice.edu 128.42.1.30 sun-spots, amiga, ispell,


titan.rice.edu ofiles
titan.rice.edu 08/06/90 5 anonymous/[email protected]

titania.mathematik.uni-ulm.de 134.60.66.21 oberon, modula-2


titania.mathematik.uni-ulm.de 08/22/90 -3 anonymous/[email protected]

tmc.edu 128.249.1.1 FUBBS bbs list


tmc.edu 05/15/90 5 anonymous/[email protected]

tomcat.gsfc.nasa.gov 128.183.10.100 G8BPQ, desqview


tomcat.gsfc.nasa.gov 03/15/91 7 anonymous/[email protected]

topgun.agps.lanl.gov 192.12.184.72 Khoros, astro, scheme, NeWS,


topgun.agps.lanl.gov etc.
topgun.agps.lanl.gov 01/11/91 6 anonymous/[email protected]

trantor.harris-atd.com 26.13.0.98 unknown


trantor.harris-atd.com 05/15/90 4 anonymous/[email protected]

trantor.umd.edu 128.8.10.14 NTP


trantor.umd.edu 09/22/90 4 anonymous/[email protected]

trident.arc.nasa.gov 128.102.18.13 vms-nntp, trek73


trident.arc.nasa.gov 128.102.128.3
trident.arc.nasa.gov 05/15/90 7 anonymous/[email protected]

trix.ai.mit.edu 128.52.32.6 supdup, t3.1, tX11, series,


trix.ai.mit.edu 128.52.38.6 express windows, ftplist,
trix.ai.mit.edu g++, pdp8 lovers archive,
trix.ai.mit.edu The, xp, zmodem
trix.ai.mit.edu 05/15/90 4 anonymous/[email protected]

trout.nosc.mil 128.49.16.7 X11R3, benchmarks, popd, GNU


trout.nosc.mil 132.249.16.12 emacs
trout.nosc.mil 26.1.0.3
trout.nosc.mil 05/15/90 7 anonymous/[email protected]

trwind.trw.com 129.4.16.70 NNStat, cisco, ibmpc, isode,


trwind.trw.com ka9q, mac, named, sendmail,
trwind.trw.com sun-utils, traceroute,
trwind.trw.com unix-utils
trwind.trw.com 05/15/90 7 anonymous/[email protected]

turbo.bio.net 134.172.2.69 news.announce.newgroups


turbo.bio.net 134.172.3.69 archive
turbo.bio.net 08/06/90 7 anonymous/[email protected]

tut.cis.ohio-state.edu 128.146.8.60 GNU, tcsh, perl scripts


tut.cis.ohio-state.edu 06/02/90 4 anonymous/[email protected]

tut.fi 128.214.1.2 Images, lots of misc. unix


tut.fi 05/15/90 -3 anonymous/[email protected]

tybalt.caltech.edu 131.215.139.100 GraphWidget


tybalt.caltech.edu 131.215.48.100
tybalt.caltech.edu 05/15/90 7 anonymous/[email protected]

uafcseg.uark.edu 130.184.64.202 (login bbs. telnetable)


uafcseg.uark.edu 08/22/90 4 anonymous/[email protected]

uars.acd.ucar.edu 128.117.32.2 nethack sources


uars.acd.ucar.edu 09/01/90 6 anonymous/[email protected]

ub.cc.umich.edu 35.1.1.47 unknown


ub.cc.umich.edu 12/31/90 5 anonymous/[email protected]

uc.msc.edu 137.66.1.3 unknown


uc.msc.edu 137.66.11.3
uc.msc.edu 10/09/90 5 anonymous/[email protected]

ucbarpa.berkeley.edu 128.32.130.11 tn3270, pub/4.3, Exntended


ucbarpa.berkeley.edu DCG Prolog
ucbarpa.berkeley.edu 05/15/90 7 anonymous/[email protected]

ucbvax.berkeley.edu 128.32.133.1 nntp, gnews, awm, empire


ucbvax.berkeley.edu 128.32.137.3
ucbvax.berkeley.edu 05/15/90 7 anonymous/[email protected]

ucdavis.ucdavis.edu 128.120.2.1 POP2, NetHop, UCDwhois,


ucdavis.ucdavis.edu UCDMail, IETF-PPP records
ucdavis.ucdavis.edu 03/22/91 7 anonymous/[email protected]

uceng.uc.edu 129.137.33.1 VLSI Hardware Description


uceng.uc.edu Language
uceng.uc.edu 08/22/90 7 anonymous/[email protected]

uclapp.physics.ucla.edu 128.97.64.65 unknown


uclapp.physics.ucla.edu 128.97.64.122
uclapp.physics.ucla.edu 05/25/91 7 anonymous/[email protected]

ucrmath.ucr.edu 138.23.146.1 unknown


ucrmath.ucr.edu 03/22/91 7 anonymous/[email protected]

ucsd.edu 128.54.16.1 graphics programs and images,


ucsd.edu 132.239.1.1 ham radio stuff, MIDI
ucsd.edu programs and data, sound
ucsd.edu bites for Sparcstation,
ucsd.edu usenet sources
ucsd.edu 05/15/90 7 anonymous/[email protected]

udlapvms.pue.udlap.mx 140.148.1.1 unknown


udlapvms.pue.udlap.mx 08/22/90 7 anonymous/[email protected]

ugle.unit.no 129.241.1.97 unknown


ugle.unit.no 12/24/90 -2 anonymous/[email protected]

uhccux.uhcc.hawaii.edu 128.171.7.2 unknown


uhccux.uhcc.hawaii.edu 08/22/90 8 anonymous/[email protected]

uhecs.helsinki.fi 128.214.4.1 unknown


uhecs.helsinki.fi 08/22/90 -2 anonymous/[email protected]

uhura.cc.rochester.edu 128.151.224.17 nothing


uhura.cc.rochester.edu 05/15/90 4 anonymous/[email protected]

uicbert.eecs.uic.edu 128.248.166.25 AT&T stuff, unix-pc


uicbert.eecs.uic.edu 05/15/90 5 anonymous/[email protected]

uicsle.csl.uiuc.edu 128.174.30.5 not much


uicsle.csl.uiuc.edu 128.174.31.5
uicsle.csl.uiuc.edu 05/15/90 6 anonymous/[email protected]

uicvm.uic.edu 128.248.2.50 sas archive


uicvm.uic.edu 08/22/90 5 anonymous/[email protected]

um.cc.umich.edu 35.1.1.43 msdos, mac, apple, atari


um.cc.umich.edu 10/15/90 4 anonymous/[email protected]

umaxc.weeg.uiowa.edu 128.255.56.80 NCSA telnet, sendmail


umaxc.weeg.uiowa.edu 128.255.57.80
umaxc.weeg.uiowa.edu 05/15/90 5 anonymous/[email protected]

umd5.umd.edu 128.8.10.5 NeXT


umd5.umd.edu 05/15/90 4 anonymous/[email protected]

umigw.miami.edu 128.116.10.1 unknown


umigw.miami.edu 129.171.97.1
umigw.miami.edu 05/15/90 4 anonymous/[email protected]

umn-cs.cs.umn.edu 128.101.224.1 misc GNU, hypertext, news,


umn-cs.cs.umn.edu japanese
umn-cs.cs.umn.edu 05/15/90 5 anonymous/[email protected]

umnstat.stat.umn.edu 128.101.51.1 XlispStat, S Bayes


umnstat.stat.umn.edu 05/15/90 5 anonymous/[email protected]

umrisca.isc.umr.edu 131.151.8.1 unknown


umrisca.isc.umr.edu 05/16/90 5 anonymous/[email protected]

unicorn.cc.wwu.edu 140.160.240.10 GNU dbm


unicorn.cc.wwu.edu 11/03/90 4 anonymous/[email protected]
unidata.ucar.edu 128.117.140.3 unknown
unidata.ucar.edu 12/26/90 6 anonymous/[email protected]

unix.secs.oakland.edu 141.210.180.2 gcc, gas, gdb, and kermit for

unix.secs.oakland.edu xenix
unix.secs.oakland.edu 11/18/90 4 anonymous/[email protected]

unix2.macc.wisc.edu 128.104.30.1 hosts.txt


unix2.macc.wisc.edu 08/22/90 5 anonymous/[email protected]

unmvax.cs.unm.edu 129.24.16.1 getmaps


unmvax.cs.unm.edu 05/15/90 6 anonymous/[email protected]

unsvax.nevada.edu 131.216.1.11 ftp-list, autoftp, virus


unsvax.nevada.edu stuff, las vegas bbs list
unsvax.nevada.edu 12/26/90 7 anonymous/[email protected]

unx.ucc.okstate.edu 139.78.1.1 unknown


unx.ucc.okstate.edu 02/23/91 5 anonymous/[email protected]

uoft02.utoledo.edu 131.183.1.4 VMSTPC


uoft02.utoledo.edu 08/22/90 4 anonymous/[email protected]

uop.uop.edu 138.9.200.1 bnews, nn, irc


uop.uop.edu 08/22/90 7 anonymous/[email protected]

urth.acsu.buffalo.edu 128.205.7.9 trn


urth.acsu.buffalo.edu 08/06/90 4 anonymous/[email protected]

usc.edu 128.125.1.45 amd (automounter), decus TECO

usc.edu 192.5.10.133
usc.edu 01/17/91 7 anonymous/[email protected]

ut-chem.cm.utexas.edu 128.83.163.15 Ampac chemistry code for


ut-chem.cm.utexas.edu unix/cray
ut-chem.cm.utexas.edu 01/17/91 3 anonymous/[email protected]

utadnx.cc.utexas.edu 128.83.185.100 VMS sources (zetaps, laser,


utadnx.cc.utexas.edu sxlps)
utadnx.cc.utexas.edu 08/22/90 5 anonymous/[email protected]

utsun.s.u-tokyo.ac.jp 133.11.11.11 japanese/kanji software,


utsun.s.u-tokyo.ac.jp tron, gnu, info-mac, tex, x,
utsun.s.u-tokyo.ac.jp network-related stuff
utsun.s.u-tokyo.ac.jp 05/07/91 -9 anonymous/[email protected]

uu.psi.com 136.161.128.3 GNU Emacs, others, Nysernet,


uu.psi.com IETF, GOSIP
uu.psi.com 05/15/90 4 anonymous/[email protected]

uunet.uu.net 192.48.96.2 X, GNU, athena, bsd-sources,


uunet.uu.net 137.39.1.2 comp.sources.3b1, opinions,
uunet.uu.net comp.sources.amiga, nutshell,

uunet.uu.net comp.sources.games, faces,


uunet.uu.net comp.sources.misc, mach, sco,
uunet.uu.net comp.sources.reviewed, news,
uunet.uu.net comp.sources.unix, sun-fixes,

uunet.uu.net comp.sources.x, internet


uunet.uu.net docs, comp.std.unix, uumap,
uunet.uu.net networking galore, much more
uunet.uu.net 05/07/91 4 anonymous/[email protected]

uvaarpa.virginia.edu 128.143.2.7 u3g, whoisd, VERnet, uvapc,


uvaarpa.virginia.edu net docs and RFCs, misc net,
uvaarpa.virginia.edu etc.
uvaarpa.virginia.edu 06/04/90 4 anonymous/[email protected]

uvacs.cs.virginia.edu 128.143.8.29 unknown


uvacs.cs.virginia.edu 128.143.60.10
uvacs.cs.virginia.edu 05/26/91 4 anonymous/[email protected]

uwasa.fi 128.214.12.3 pc, ts-programs, unix, vms


uwasa.fi 12/23/90 -2 anonymous/[email protected]

uwm.edu 129.89.7.2 info-tahoe


uwm.edu 129.89.6.2
uwm.edu 05/15/90 5 anonymous/[email protected]

ux.acs.umn.edu 128.101.63.2 unknown


ux.acs.umn.edu 05/15/90 5 anonymous/[email protected]

ux1.cso.uiuc.edu 128.174.5.59 amiga, fish, amicus, cucug


ux1.cso.uiuc.edu 02/05/91 5 anonymous/[email protected]

uxc.cso.uiuc.edu 128.174.5.50 games, HitchHiker's Guide to


uxc.cso.uiuc.edu the Internet, recipes, GIF,
uxc.cso.uiuc.edu GNU, RFC, IEN, and more
uxc.cso.uiuc.edu 06/01/90 5 anonymous/[email protected]

vacs.uwp.wisc.edu 131.210.1.1 discographies, eclectic music

vacs.uwp.wisc.edu newsletter and tangerine


vacs.uwp.wisc.edu dream mailing list archive,
vacs.uwp.wisc.edu other music stuff
vacs.uwp.wisc.edu 09/22/90 5 anonymous/[email protected]

valhalla.ee.rochester.edu 128.151.160.11 RFCs, Network load balancer


valhalla.ee.rochester.edu 05/15/90 4 anonymous/[email protected]

vax.cs.pitt.edu 130.49.2.1 ka9q


vax.cs.pitt.edu 05/15/90 4 anonymous/[email protected]

vax.eedsp.gatech.edu 130.207.226.2 unknown


vax.eedsp.gatech.edu 05/26/91 4 anonymous/[email protected]

vax.ftp.com 128.127.2.100 FTP software, inc.


vax.ftp.com 05/15/90 4 anonymous/[email protected]

vax.ph-cip.uni-koeln.de 134.95.64.1 unknown


vax.ph-cip.uni-koeln.de 03/17/91 anonymous/[email protected]

vax1.cs.umass.edu 128.119.40.1 unknown


vax1.cs.umass.edu 08/22/90 4 anonymous/[email protected]
vax1.umkc.edu 134.193.1.1 network information
vax1.umkc.edu 08/22/90 5 anonymous/[email protected]

vax2.cs.umass.edu 128.119.40.2 unknown


vax2.cs.umass.edu 08/22/90 4 anonymous/[email protected]

vaxa.isi.edu 128.9.0.33 clf-act, X, db


vaxa.isi.edu 05/15/90 7 anonymous/[email protected]

vaxb.acs.unt.edu 129.120.1.4 vms, internet libraries list,

vaxb.acs.unt.edu msdos, amiga, midi, network


vaxb.acs.unt.edu info, articles
vaxb.acs.unt.edu 08/22/90 5 anonymous/[email protected]

vega.hut.fi 130.233.200.42 msdos, mac, Kermit, fusion


vega.hut.fi docs, food recipes (alt.
vega.hut.fi gourmand), SF author lists,
vega.hut.fi os2
vega.hut.fi 05/15/90 -3 anonymous/[email protected]

vela.acs.oakland.edu 141.210.10.2 unknown


vela.acs.oakland.edu 01/17/91 4 anonymous/[email protected]

venera.isi.edu 128.9.0.32 statspy (NNstat), GNU Chess


venera.isi.edu 05/15/90 7 anonymous/[email protected]

venus.ycc.yale.edu 130.132.1.5 SBTeX


venus.ycc.yale.edu 08/22/90 4 anonymous/[email protected]

vesta.sunquest.com 192.12.52.32 vms cryptodisk and virtual


vesta.sunquest.com 192.12.52.132 disk driver
vesta.sunquest.com 149.138.1.32
vesta.sunquest.com 08/22/90 7 anonymous/[email protected]

vision.mqcc.mq.oz.au 137.111.160.5 unknown


vision.mqcc.mq.oz.au 03/25/91 -11 anonymous/[email protected]

vlsi.cs.umn.edu 128.101.230.15 PLP (Public line printer)


vlsi.cs.umn.edu 08/22/90 5 anonymous/[email protected]

vm.tcs.tulane.edu 129.81.32.1 rfc, terminfo


vm.tcs.tulane.edu 08/22/90 5 anonymous/[email protected]

vm.utdallas.edu 129.110.102.2 lipphe ibm tcp/ip bit and


vm.utdallas.edu k200 drivers
vm.utdallas.edu 08/22/90 5 anonymous/[email protected]

vm1.nodak.edu 134.129.111.1 fixes minix, fixes ev1188,


vm1.nodak.edu QNS, medical newsletter
vm1.nodak.edu 08/22/90 5 anonymous/[email protected]

vmd.cso.uiuc.edu 128.174.5.98 weather sattelite gifs


vmd.cso.uiuc.edu 12/24/90 5 anonymous/[email protected]

vms.ecs.rpi.edu 128.113.5.15 Message Exchange


vms.ecs.rpi.edu 08/22/90 4 anonymous/[email protected]
vms.huji.ac.il 128.139.4.3 unknown
vms.huji.ac.il 04/24/91 anonymous/[email protected]

vms2.ecs.rpi.edu 128.113.5.14 NEWSRDR


vms2.ecs.rpi.edu 08/22/90 4 anonymous/[email protected]

vmsa.oac.uci.edu 128.200.9.5 VMS make, tar


vmsa.oac.uci.edu 02/21/91 7 anonymous/[email protected]

vmsa.technion.ac.il 132.68.1.40 unknown


vmsa.technion.ac.il 05/26/91 anonymous/[email protected]

vmsd.oac.uci.edu 128.200.15.2 VMS stuff


vmsd.oac.uci.edu 08/22/90 7 anonymous/[email protected]

vmtecmex.cem.itesm.mx 132.254.1.4 amiga, msdos, gif


vmtecmex.cem.itesm.mx 02/08/91 anonymous/[email protected]

vuwcom.vuw.ac.nz 130.195.2.10 kermit, mac, msdos, vms


vuwcom.vuw.ac.nz 02/05/91 anonymous/[email protected]

watcgl.waterloo.edu 129.97.128.64 unknown


watcgl.waterloo.edu 10/09/90 4 anonymous/[email protected]

watmath.waterloo.edu 129.97.128.1 lots of stuff


watmath.waterloo.edu 129.97.216.42
watmath.waterloo.edu 05/15/90 4 anonymous/[email protected]

watmsg.waterloo.edu 129.97.129.9 GNU, pd BSD, uSystem docs,


watmsg.waterloo.edu virus, cryptography
watmsg.waterloo.edu 05/15/90 4 anonymous/[email protected]

watnxt2.ucr.edu 192.31.146.189 unknown


watnxt2.ucr.edu 10/09/90 7 anonymous/[email protected]

watserv1.waterloo.edu 129.97.129.140 unknown


watserv1.waterloo.edu 08/22/90 4 anonymous/[email protected]

watsun.cc.columbia.edu 128.59.39.2 kermit


watsun.cc.columbia.edu 05/15/90 4 anonymous/[email protected]

wayback.cs.cornell.edu 128.84.254.7 unknown


wayback.cs.cornell.edu 04/24/91 4 anonymous/[email protected]

weedeater.math.yale.edu 130.132.23.17 rayshade, misc. raytracing


weedeater.math.yale.edu goodies
weedeater.math.yale.edu 05/15/90 4 anonymous/[email protected]

wilbur.stanford.edu 36.14.0.30 unknown


wilbur.stanford.edu 12/26/90 7 anonymous/[email protected]

willow.cs.wwu.edu 140.160.140.153 unknown


willow.cs.wwu.edu 03/22/91 anonymous/[email protected]

wilma.cs.brown.edu 128.148.31.66 Brown CS Field and Thread


wilma.cs.brown.edu packages, comp.robotics
wilma.cs.brown.edu 08/22/90 4 anonymous/[email protected]

winnie.princeton.edu 128.112.128.180 music software (unix & NeXT)


winnie.princeton.edu 08/22/90 4 anonymous/[email protected]

wlv.imsd.contel.com 26.5.0.103 unknown


wlv.imsd.contel.com 192.26.147.1
wlv.imsd.contel.com 05/26/91 7 anonymous/[email protected]

wolfen.cc.uow.edu.au 130.130.0.1 unknown


wolfen.cc.uow.edu.au 01/17/91 -10 anonymous/[email protected]

woodstock.andrew.cmu.edu 128.2.30.38 oopc


woodstock.andrew.cmu.edu 07/08/90 4 anonymous/[email protected]

world.std.com 192.74.137.5 OBI (Online Book Initiative -

world.std.com [ed: neat stuff]),


world.std.com comp.society, futures
world.std.com archives
world.std.com 04/24/91 anonymous/[email protected]

wpi.wpi.edu 130.215.24.1 dspl, anime, fusion, mac,


wpi.wpi.edu GNU, ash, DES, misc Unix,
wpi.wpi.edu TeX_DS3100, TeX_Umax, misc X
wpi.wpi.edu 05/15/90 4 anonymous/[email protected]

wsmr-simtel20.army.mil 192.88.110.20 msdos, unix, cpm, mac (tenex)

wsmr-simtel20.army.mil 26.2.0.74
wsmr-simtel20.army.mil 08/22/90 6 anonymous/[email protected]

wuarchive.wustl.edu 128.252.135.4 GNU, X.11R3, GIF, IEN, RFCs,


wuarchive.wustl.edu TeX, UUPC, info-mac,
wuarchive.wustl.edu 4.3BSD-Tahoe,
wuarchive.wustl.edu comp.binaries.amiga,
wuarchive.wustl.edu comp.binaries.apple2,
wuarchive.wustl.edu comp.binaries.atari.st,
wuarchive.wustl.edu comp.binaries.ibm.pc,
wuarchive.wustl.edu comp.sources.amiga,
wuarchive.wustl.edu comp.sources.atari.st,
wuarchive.wustl.edu comp.sources.games,
wuarchive.wustl.edu comp.sources.misc,
wuarchive.wustl.edu comp.sources.sun,
wuarchive.wustl.edu comp.sources.unix,
wuarchive.wustl.edu comp.sources.x, msdos,
wuarchive.wustl.edu simtel20, elm (24 hours/day)
wuarchive.wustl.edu 08/22/90 5 anonymous/[email protected]

xanth.cs.odu.edu 128.82.8.1 comp.sources.x,


xanth.cs.odu.edu 128.82.4.1 comp.sources.unix,
xanth.cs.odu.edu comp.sources.misc,
xanth.cs.odu.edu comp.sources.games, X10R4
xanth.cs.odu.edu 08/01/90 4 anonymous/[email protected]

xview.ucdavis.edu 128.120.1.150 xview


xview.ucdavis.edu 07/19/90 7 anonymous/[email protected]

yalevm.ycc.yale.edu 130.132.1.4 unknown


yalevm.ycc.yale.edu 08/22/90 4 anonymous/[email protected]

yallara.cs.rmit.oz.au 131.170.24.42 unknown


yallara.cs.rmit.oz.au 192.55.190.42
yallara.cs.rmit.oz.au 01/17/91 -12 anonymous/[email protected]

ymir.claremont.edu 134.173.4.23 lots of VMS, TeX-for-VMS,


ymir.claremont.edu 134.173.20.23 mainz fonts
ymir.claremont.edu 08/22/90 7 anonymous/[email protected]

z.andrew.cmu.edu 128.2.30.8 bugfixar + div


z.andrew.cmu.edu 05/15/90 4 anonymous/[email protected]

zap.mit.edu 18.72.0.126 Clue docs, Yow


zap.mit.edu 08/22/90 4 anonymous/[email protected]

zaphod.lanl.gov 128.165.44.202 unknown


zaphod.lanl.gov 02/23/91 6 anonymous/[email protected]

zaphod.ncsa.uiuc.edu 141.142.20.50 mac X programs, ncsa telnet,


zaphod.ncsa.uiuc.edu Heirarchical Data File
zaphod.ncsa.uiuc.edu system, misc graphics &
zaphod.ncsa.uiuc.edu scientific formats
zaphod.ncsa.uiuc.edu 08/13/90 5 anonymous/[email protected]

zariski.harvard.edu 128.103.28.10 macaulay


zariski.harvard.edu 05/15/90 4 anonymous/[email protected]

zerkalo.harvard.edu 128.103.40.201 traceroute


zerkalo.harvard.edu 05/15/90 4 anonymous/[email protected]

zeus.cs.umu.se 130.239.1.101 unknown


zeus.cs.umu.se 130.239.105.2
zeus.cs.umu.se 05/26/91 -2 anonymous/[email protected]

zeus.mgmt.purdue.edu 128.210.1.3 unknown


zeus.mgmt.purdue.edu 05/15/90 5 anonymous/[email protected]

zeus.unomaha.edu 137.48.1.1 cedit - column editor


zeus.unomaha.edu 02/21/91 5 anonymous/[email protected]

zurich.ai.mit.edu 18.26.0.176 liar, scheme, gif, fx


zurich.ai.mit.edu 18.43.0.176
zurich.ai.mit.edu 08/22/90 4 anonymous/[email protected]

===============================================================================

***************************************************************************
****ATTENTION**** I am going to be away this summer (in Japan). This means
that any updates you send me will not be implemented until I return. I will
leave the list and mail server in place on pilot as usual, it just won't be
being updated. However, June 1 is the last time the mailing list will be
used. Otherwise I will have to worry about my mail file being full of bounced
copies of the list and I am trying to keep it as small as possible. I am also
using this break to start the beginning of the end of this list. Now that
archie is available, I feel that there is no longer any need for this list.
When I return in September I will put out one more list with all the updates
of the summer and then one more with fixes. So you can look for the last
anonymous ftp list from me on October 1, 1991.
***************************************************************************
So what is archie? archie is a neat interactive database of anonymous
ftp sites available via telnet and mail. There is a file called "archie" on
pilot that is also available via the mail server. Take a look at that if you
don't know what archie is.

If you have any questions, comments, or anything else feel free to mail
me, but please read the rest of this header first!

This is my list of Internet sites accepting anonymous ftp. It is dis-


tributed automatically once each month.

If you are sending this on to someone or in any other way providing this
for someone else, please leave this header intact. Otherwise I get many
questions which this would have answered. Feel free to make this list avail-
able anywhere you like, as we all benefit from a freer flow of information.

This list is posted to comp.misc, and comp.sources.wanted, on Usenet and


is distributed via anonymous FTP from pilot.njin.net (128.6.7.38) as well as
being available from several other FTP sites (see list). I am also running a
simple mail-server from my account on pilot. For more information about the
server, mail [email protected] with a subject of "listserv-request" and a
message body of "send help". Rather than requesting the latest list from me
by mail, simply send the request to the listserv. If you send me a request
for the latest list, I will send you the help file for the listserv.

Special thanks goes to Edward Vielmetti for all the work he does posting
new archive information to comp.archives and to David Katinsky, who allows me
to work on this list from pilot.

If there are any corrections/updates/etc to be made please mail me at


[email protected]. That also goes for descriptions of the archives. I
don't have time to personally check each and every site so if you use a site
regularly and can put together a better description, please tell me so I can
update this list. This is especially true for sites described as "unknown"
or with vague descriptions. Also, if you are providing updates, it is easi-
est on me if you either state "add/remove <whatever>" or simply supply me
with a complete new description of the site. This makes it easier for me to
make the changes without any errors, especially in the case of archives being
moved to different sites.
The last line for each site contains the date of last modification, and
the login and password in the form <login>/<password>. For the sites that
have "[email protected]" for the password, substitute your own mail address
([email protected]). It is suggested that you use your mail address as the
password wherever possible, even if it isn't required to let sites keep
better track of who is using their site. For those people who dislike the
date or the login and password there, grep it out yourself. If you can't
stand the format the list is in, the raw database is available from pilot and
you can write your own format program.

For those unfortunates who do not have ftp but do have mail, I have
included the mail address of an archive that will retrieve files for you
through the mail. Send "help" in a message to the server to find out the
exact commands necessary.

The only mail-ftp archive I know of is:

Article 88
Subject: mac.ftp.list, march '91
From: [email protected] (_mike gleason)
Date: 4 Mar 91 04:24:21 GMT
Organization: University of Nebraska - Lincoln
Newsgroups: comp.sys.mac.announce
Distribution: comp
Sender: [email protected] (moderator pro tempore)
Path: cica!news.cs.indiana.edu!samsung!zaphod.mps.ohio-state.edu!wuarchive!mit-e

Message-ID: <231b3679.668060395@fergvax>
Lines: 364
Approved: [email protected] (moderator pro tempore)

Here's volume 1, #2 (March 1991) of the mac.ftp.list. There have been


numerous additions and bug fixes since the premiere release. I'm especially
sorry about all those errors. Most of them were due to file transfer
errors when I uploaded to my account.
Article 88
Subject: mac.ftp.list, march '91
From: [email protected] (_mike gleason)
Date: 4 Mar 91 04:24:21 GMT
Organization: University of Nebraska - Lincoln
Newsgroups: comp.sys.mac.announce
Distribution: comp
Sender: [email protected] (moderator pro tempore)
Path: cica!news.cs.indiana.edu!samsung!zaphod.mps.ohio-state.edu!wuarchive!mit-e

Message-ID: <231b3679.668060395@fergvax>
Lines: 364
Approved: [email protected] (moderator pro tempore)

Here's volume 1, #2 (March 1991) of the mac.ftp.list. There have been


numerous additions and bug fixes since the premiere release. I'm especially
sorry about all those errors. Most of them were due to file transfer
errors when I uploaded to my account.

I plan on posting revised editions as needed to comp.sys.mac.announce about


every month or so. I'll probably post the list the first of the month along
with the two other monthly posts, Frequently Asked Questions and About
Macintosh Newsgroups. New material is denoted by two asterisks, **.

Please send newly discovered sites (with IP numbers and directories to


check if possible), bug fixes, and comments to:

[email protected] (Mike Gleason)

My address changes periodically, since the administration would rather be


inefficient and assign new accounts to the same students every semester.
Hopefully, this bit of public service will convince them to give me a
permanent account with a name instead of a number ;-)

In case you're wondering, I did mail [email protected] and ask him to


just add the sites I had, but he hasn't gotten around to it yet. Besides,
grepping the ftp.list for 'mac' won't produce what I've come up with.

For folks new to ftp


-----------------------------------------------------------------------------
The first column of stuff in the data below is the site name. Usually
you can just run ftp and type open and then the site name. But some
computers don't like the names (or don't have all of them) and prefer the
next column of stuff, the IP addresses. If you try the open command with the
IP number and it doesn't bite, it isn't gonna work. Most mac ftp sites have
encoded their files with BinHex 4.0. These files will end in the suffix
'.hqx'. To decode these files, you can just download them to your mac, and
use Compact Pro or Stuffit to decode them. THEN, you will need to decompress
them. Files ending in '.cpt' are Compact Pro files, '.sit' files are
Stuffit's. You will probably need both Compact Pro and Stuffit since both
types are common. When it prompts you for a username and password, send
"anonymous" as the username, and your email address as the password, for me
it would be [email protected].
Here's a sample ftp session:

% ftp
ftp> open sumex-aim.stanford.edu
Connected to sumex-aim.stanford.edu.
220 sumex-aim FTP server (SunOS 4.0/3) ready.
Name (sumex-aim.stanford.edu:231b3679): anonymous
Password (sumex-aim.stanford.edu:anonymous): [email protected]
331 Guest login ok, send mail address (user@host) as password.
230 Guest connection 17 (of 25) accepted, access restrictions apply.
ftp> cd info-mac
ftp> get ./help/recent-files.txt recentFiles
ftp> get ./game/cumulonimbus-110.hqx cn.hqx
ftp> quit
% sz cn.hqx

Power User Notes:


-----------------------------------------------------------------------------
Most files you'll get off ftp are in that pain in the butt format, binhex.
I usually download to our unix box, and then use an immensely useful utility
called "mcvert" to de-binhex them there. Not only is this faster, but it
doesn't tie up your own CPU :-) Stop over to sumex and grab it. After
mcvert'ing files, they'll turn into files with ".bin" suffix on them, meaning
they are in MacBinary format, and ready to download. If you think you
know what you are doing, you could also unstuff the files on your unix box
and download the unstuffed files from there, but then you'd need "unsit"
and "macbin", also available from sumex.

Here's a handy chart to keep track which archivers unmangle which formats:
.sit .sit unix
.cpt 1.5 dlx .hqx .zip .dd .lzh .Z .pit .arc .bin
Compact Pro X X X
Stuffit 1.5.1 X X X
Stuffit Classic X X X
Stuffit Deluxe X X X X X X X
Disk Doubler X X
DDExpand X X
Packit X
MacCompress X
MacLHarc X
ArcMac X
BinHex 4.0 X
BinHex 5.0 X
UnZip X

Opinion: If you distribute files to others, keep in mind these guidlines:


a. Everyone I know loathes Stuffit formats that are not 1.5.1 compatible.
(i.e. Stuffit Classic's and Deluxe's Molasses mode, er, "Best" mode)
b. Don't use Self-Extracting Archives (.sea's). They make file sizes
larger, and make it easier for virus transmission, since they have to
be applications.
c. Stuffit 1.5.1's format can be read on many machines besides Macs,
like MS-DOS, Unix, and Amiga.
d. Stuffit 1.5.1's format can be read by many other archivers besides
Stuffit.
e. Stuffit 1.5.1 format and Compact Pro format archives are
accepted by almost all FTP site maintainers.

You may also notice I've included C Style brackets. That's in case some
sed wizard can whip up a script to just extract all the data out of this
file, and not copy all this introductory crappola.

These sites have many mac files, and are still getting new ones:
-----------------------------------------------------------------------------
irisa.irisa.fr ** 131.254.2.3 /News/comp.binaries.mac (A)
ix1.cc.utexas.edu 128.83.1.21 /microlib/mac (B)
nic.funet.fi 128.214.6.100 /pub/mac (C)
rascal.ics.utexas.edu 128.83.138.20 /mac (D)
sumex-aim.stanford.edu 36.44.0.6 /info-mac (E)
ub-mts.cc.umich.edu 35.1.1.47 PC2: (F)
wsmr-simtel20.army.mil 26.2.0.74 PD3:<macintosh> ? (G)
ccu1.aukuni.ac.nz ** 130.216.1.5 /mac (Q)

These sites have a lot of files, but do not get much new:
------------------------------------------------------------------------------
apple.com 130.43.2.2 /pub/dts (H)
doc.cso.uiuc.edu 128.174.33.105 /mac/MUG /pc+mac/mac/eudora (I)
ftp.apple.com 130.43.2.3 /nerdtools :-( (J)
giza.cis.ohio-state.edu ** 128.146.8.61 /pub/mac, /pub/oztex
mars.ee.msstate.edu 130.18.64.3 /files (K)
mcsun.eu.net 192.16.202.1 /comp/mac
plains.nodak.edu 134.129.111.64 /pub/mac/pub (L)
vega.hut.fi 130.233.200.42 /pub/mac

These sites are shadows archives (the same stuff) of something else:
------------------------------------------------------------------------------
dftnic.gsfc.nasa.gov 128.183.10.3 /mac.dir [dftsrv.gsfc.nasa.gov]
ditmela.mel.dit.csiro.au **128.250.90.81 /info-mac [sumex], /mac
isca.icaen.uiowa.edu 128.255.19.175 //isca01/bbs/files/infomac (M)
ix2.cc.utexas.edu 128.83.1.129 /microlib/mac [ix1.utexas]
jyu.fi 128.214.7.5 /maclib [sumex]
merlin.cs.purdue.edu 128.10.2.3 /pub/mac [sumex]
midway.uchicago.edu ** 128.135.12.73 /pub/OzTex [watmsg.waterloo]
oswego.oswego.edu 129.3.1.1 /pub/mac [sumex]
pollux.lu.se 130.235.132.89 /pub/mac [sumex]
sics.se 192.16.123.90 /pub/info-mac, /pub/mac
um.cc.umich.edu 35.1.1.43 PC2: [ub-mts]
utsun.s.u-tokyo.ac.jp 133.11.11.11 /Mac, /Mac/info-mac [sumex]
ux1.cso.uiuc.edu 128.174.5.59 /mac/MUG [doc.uiuc] ftp.list
wuarchive.wustl.edu 128.252.135.4 /systems/mac/info-mac [sumex]

These sites have just a few mac files:


------------------------------------------------------------------------------
freebie.engin.umich.edu 141.212.68.23 /pub/macfiles
garbo.uwasa.fi ** ? /mac
icarus.cns.syr.edu ** 128.230.1.49 /software/mac (w/ Unix_Mac list)
icarus.riacs.edu 134.12.1.1 /pub
jpl-mil.jpl.nasa.gov 128.149.1.101 /pub/Mac
procyon.cis.ksu.edu 129.130.10.80 /pub/MAC
shiva.com ** 192.80.57.1 /pub
splicer.cba.hawaii.edu 128.171.17.7 /mac
think.com ** 131.239.2.1 /mac
tolsun.oulu.fi 128.214.5.6 /pub/mac
ucsd.edu ** 128.54.16.1 /midi/software/macintosh, /pub/mac
zaphod.ncsa.uiuc.edu 128.174.20.50 /Mac

These sites are home to a few specific file(s):


------------------------------------------------------------------------------
accuvax.nwu.edu ** 129.105.49.1 /pub/tiff/mactonext2.sit.hqx
alw.nih.gov ** 128.231.128.251 /pub/image (Image & MacMeasure)
arthur.cs.purdue.edu 128.10.2.1 /pub/trinkle/mac32.tar.Z
aux.support.apple.com ** 130.43.6.2 / (A/UX stuff)
beach.gal.utexas.edu ** 129.109.1.207 /pub/virus/mac (VMS though)
bert.cs.byu.edu ** 128.187.2.20 /NCSA_Telnet (BYU's version)
boombox.micro.umn.edu ** 128.101.95.95 /pub (macisode, POPmail, addfinder)
brownvm.brown.edu 128.148.128.40 tn3270 with src in /
ccb.ucsf.edu ** 128.218.1.13 /Pub/Sound_list (Lots of Sounds)
citi.umich.edu 141.211.128.16 /pub/NetMac.sit
csc2.anu.edu.au 130.56.4.25 /pub/src/MAC (beaver, smtp0.87)
d31.rz0.stanford.edu ** 36.76.0.151 /Igor (Igor demos, utilities)
dartvax.dartmouth.edu ** 129.170.16.4 /pub/mac (Dartmouth XCMDs, etc)
dftsrv.gsfc.nasa.gov 128.183.10.134 /mac.dir/MacSecure3.hqx
dustbin.cisco.com 131.108.1.27 Mac telnet w/slip. Get the README.
ftp.acns.nwu.edu ** 129.105.113.52 /pub/disinfectant (Disinf HQ) (L)
ftp.cayman.com ** 143.137.1.2 /pub (GatorBox stuff)
ics.uci.edu 128.195.1.1 /mac/think-c (M)
imag.imag.fr ** 129.88.32.1 /pub/CABRI (Cabri Graph)
indri.primate.wisc.edu 128.104.230.11 /pub/mac (TransSkel & misc)
iraun1.ira.uka.de 129.13.10.90 /pub/mac (SingleShare)
linc.cis.upenn.edu ** 130.91.6.8 /pub/NH3.0/mac (Mac NetHack!)
maddog.llnl.gov 128.115.10.1 /pub/uw.tar.Z (unix windows for mac)
madhaus.utcs.utoronto.ca 128.100.102.10 /pub (MacSockets)
math.uni-heidelberg.de 129.206.103.100 /NetWork (N)
novamail.cerl.uiuc.edu ** 128.174.180.9 /pub/lime (Lime demo, for MIDI)
pcs15.andrew.cmu.edu ** 128.2.232.65 /pub (snds from the movie Heathers)
rata.vuw.ac.nz 130.195.2.11 /pub/Mac (some Igor stuff)
ssyx.ucsc.edu 128.114.133.1 /pub/mac (HyperUnix, ClientDA)
tasman.cc.utas.edu.au 131.217.10.1 /pub/mac (Mews, a netnews reader)
uunet.uu.net 137.39.1.2 /languages/abc (ABC prog lang)
watmsg.waterloo.edu ** 129.97.129.9 /pub/oztex (Mac TeX, with source)

I can't connect to these sites, which are supposed to have mac stuff:
------------------------------------------------------------------------------
peace.waikato.ac.nz 130.217.64.62 anu-news gnu msdos mac ncsa
slug.pws.bull.com 128.35.10.203 comp.binaries.mac
ucbvax.berkeley.edu ** 128.32.137.3 /pub/mac

These sites have nothing, despite what the global ftp list says:
------------------------------------------------------------------------------
acad3.fai.alaska.edu 137.229.10.33 yuck, it's a VMS...
arisia.xerox.com 13.1.100.206
cc.sfu.ca 128.189.32.250
cmns.think.com 131.239.2.100
f.ms.uky.edu 128.163.128.6
iesd.auc.dk 130.225.48.4
rodan.acs.syr.edu 128.230.1.55
trwind.trw.com 129.4.16.70
wpi.wpi.edu 130.215.24.1

A couple of miscellaneous sites (because it's my list :-)


------------------------------------------------------------------------------
iris1.ucis.dal.ca ** /pub/gif (NASA pictures)
kfps-roble6-dynamic.stanford.edu /image/simpsons (Simpsons' GIFs!)
(special: finger "[email protected]" to find IP address)
pilot.njin.net 128.6.7.38 /pub/ftp-list/ftp.list (The Biggie)

Notes on some of the above sites:


------------------------------------------------------------------------------

(A) irisa.irisa.fr **
I thought this site had nothing, but someone pointed out that if you
look in the /News directory, there are archives of comp.binaries.mac.
I recommend not doing a directory of it, but instead grabbing the index
file and looking through it offline. Also, since this site is in France,
it is both costly and very slow for folks outside of Europe.
ALL FILES: /News/comp.binaries.mac/index
XFER MODE: Use ASCII.

(B) ix1.cc.utexas.edu
Not a large site, but gets some unique files every so often.
e

You might also like