home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #16 / NN_1992_16.iso / spool / alt / gopher / 1033 < prev    next >
Encoding:
Internet Message Format  |  1992-07-21  |  17.8 KB

  1. Path: sparky!uunet!cs.utexas.edu!wupost!zaphod.mps.ohio-state.edu!sol.ctr.columbia.edu!The-Star.honeywell.com!umn.edu!news2.cis.umn.edu!gopher-news-request@boombox.micro.umn.edu
  2. From: lindner@mudhoney (Paul Lindner)
  3. Message-ID: <199207220129.AA25891@mudhoney.micro.umn.edu>
  4. Subject: Better Gopher->whois script available
  5. Original-To: gopher-news@boombox.micro.umn.edu (Gopher News Mailing List)
  6. Date: Tue, 21 Jul 92 20:29:55 CDT
  7. Reply-To: lindner@boombox.micro.umn.edu.
  8. X-Mailer: ELM [version 2.3 PL11]
  9. Newsgroups: alt.gopher
  10. Distribution: alt
  11. Sender: news@news2.cis.umn.edu
  12. Approved: alt.gopher@news.cis.umn.edu
  13. Lines: 845
  14.  
  15. As an example of what can be shoehorned into the old types I've
  16. reimplemented Roland Schemers gophertowhois script, using direct
  17. connections to whois servers, and also made it possible to service
  18. multiple whois servers with one script.  I've also added parsing to
  19. make more whois servers directly browsable.
  20.  
  21. The service has been installed on gopher.micro.umn.edu's Phone Books
  22. directory.  Have a look.
  23.  
  24. One interesting consequence of sticking with Type=7 items is that we
  25. can use a mindexd superserver to search a bunch of whois servers in
  26. parallel.  This is tomorrows project :-)
  27.  
  28.  
  29.  
  30. Here's a simple readme file I cobbled together.
  31. ------------------------------------------------
  32. In this distribution is a simple and relatively (ha!) readable Perl
  33. script called gtowhois.  The script implements an internet Gopher to
  34. WHOIS gateway.  Different whois servers are specified by links with
  35. the Path set to "qwhois <hostname>"
  36.  
  37. The gopher client connects to the gtowhois server and sends a query to
  38. it.  The server takes the query, sends it off to the whois server and
  39. then parses the resulting output.  The script understands a few of the
  40. more popular whois-gateways, including:
  41.  
  42.      X.500 whois gateway
  43.      Ph whois gateway
  44.      Weird Stanford Whois gateway
  45.      Horton (coming soon....)
  46.  
  47. One item is always returned, the raw search results.  If the script
  48. can parse the output of the search individual user entries are
  49. presented.
  50.  
  51. The script is designed to be run by inetd as a TCP daemon.
  52. The easiest way to explain how to set it up and how it works
  53. is to use an example.
  54.  
  55. Let us assume that we want to run a gopher to FTP gateway on
  56. a machine called hell.micro.umn.edu. 
  57.  
  58. 1.  You need to have Perl available on the machine.  If you don't you
  59. can ftp the sources from a variety of anonymous ftp sites including
  60.  
  61.     uunet.uu.net
  62.     jpl-devvax.jpl.nasa.gov
  63.     tut.cis.ohio-state.edu
  64.  
  65. 2.  Edit the first few, (marked) lines of the gtowhois file for your
  66. local configuration; in this case change the marked lines as follows:
  67.  
  68. #
  69. # Administrator parameters
  70. #
  71. $Gatehost     = "mudhoney.micro.umn.edu";
  72. $Port        = 4324;
  73.  
  74.  
  75. 3.  Become root and place the gtowhois file someplace nice (like
  76. /usr/local/bin or /usr/etc or wherever you place stuff like this);
  77. assume we put it in /usr/local/bin.  Make it owned by root and
  78. executable:
  79.  
  80.     chown root gtowhois
  81.     chmod 755 gtowhois
  82.  
  83. 4.  Update /etc/services by adding the following line to the
  84. /etc/services file (note it's tab between gtowhois and 4324):
  85.  
  86.     gtowhois    4324/tcp
  87.  
  88. Nothing sacred about 4324.  Run it at 6666 if you like...
  89. For SUNs running yp, you'll also want to do a make services:
  90.     cd /var/yp
  91.     make services
  92.  
  93. 5. Now update /etc/inetd.conf (for BSD-ish systems) or
  94. /etc/servers (on Ultrix or A/UX or others) depending on what you
  95. have.
  96. For /etc/inetd.conf, add a line:
  97.  
  98. gtowhois    stream    tcp    nowait    root    /usr/local/bin/gtowhois    gtowhois
  99.  
  100. For /etc/servers, add a line:
  101.  
  102. gtowhois    tcp    /usr/local/bin/gtowhois
  103.  
  104. Note tabs between fields.
  105.  
  106. 6.  Kill and restart the inetd daemon whatever the prescribed way
  107. to do that on your machine.
  108.  
  109. 7.  You can confirm that gtowhois is running now at port 4324 by
  110. telneting to hell.micro.umn.edu at port 4324. Type a hostname at 
  111. it (eg: boombox.micro.umn.edu), and it should respond by returning
  112. the anonymous ftp directories available at boombox.micro.umn.edu.
  113.  
  114. 8.  Now make some links from a regular gopher server to the gtowhois
  115. service.  On a unix server, the links could look like this (on a 
  116. Mac server, do the functional equivalent using Gopher's Helper):
  117.  
  118.  Name=Worcester Polytechnic Institute
  119.  Type=7
  120.  Port=4324
  121.  Path=qwhois wpi.wpi.edu
  122.  Host=mudhoney.micro.umn.edu
  123.  
  124.  
  125. Credit for the original idea goes to schemers@leland.Stanford.EDU
  126. (Roland Schemers).
  127.  
  128. ---gtowhois------------------snip------snip---------snip---------
  129.  
  130. #!/usr/local/bin/perl
  131.  
  132. #
  133. # Administrator parameters
  134. #
  135. $Gatehost     = "mudhoney.micro.umn.edu";
  136. $Port        = 4324;
  137.  
  138.  
  139. sub reply { print "$_[0]\r\n";}
  140.  
  141.  
  142. sub OpenWHOIS { 
  143.     local($them,$port,$query) = @_;
  144.     $them = 'localhost' unless them;
  145.     $port = 43 unless $port;
  146.  
  147.     $AF_INET = 2;
  148.     $SOCK_STREAM = 1;
  149.  
  150.     $SIG{'INT'} = 'dokill';
  151.  
  152.     $sockaddr = 'S n a4 x8';
  153.  
  154.     chop($hostname = `hostname`);
  155.  
  156.     ($name,$aliases,$proto) = getprotobyname('tcp');
  157.     ($name,$aliases,$port) = getservbyname($port,'tcp')
  158.         unless $port =~ /^\d+$/;;
  159.     ($name,$aliases,$type,$len,$thisaddr) = gethostbyname($hostname);
  160.     ($name,$aliases,$type,$len,$thataddr) = gethostbyname($them);
  161.  
  162.     $this = pack($sockaddr, $AF_INET, 0, $thisaddr);
  163.     $that = pack($sockaddr, $AF_INET, $port, $thataddr);
  164.  
  165.     # Make the socket filehandle.
  166.     socket(WHOIS, $AF_INET, $SOCK_STREAM, $proto) || die $!;
  167.  
  168.     # Give the socket an address.
  169.     bind(WHOIS, $this) || die $!;
  170.  
  171.     # Call up the server.
  172.     connect(WHOIS,$that) || die $!;
  173.  
  174.     # Set socket to be command buffered.
  175.     select(WHOIS); $| = 1; select(STDOUT);
  176.  
  177.     # send the whois query
  178.     print WHOIS "$query\r\n";
  179. }
  180.  
  181.  
  182.  
  183. $_ = <STDIN>; s/\r//; s/\n//;
  184.  
  185.  #
  186.  # This whois thingie doesn't support a blank thing
  187.  #
  188.  
  189.  if (/^$/) {
  190.     &reply("0Whois Help\twhois help\t$host\t$port");
  191.     &reply("7Query Whois\tqwhois\t$host\t$port");
  192.     &reply(".");
  193.     exit(0);
  194.  }
  195.  
  196.  #
  197.  # a straight whois query, expect format of "whois <hostname> query..."
  198.  #
  199.  
  200.   if (/^whois/) {
  201.     /^whois ([^\s]*)\s(.*)/;
  202.     $host  = $1;
  203.     $query = $2;
  204.     &OpenWHOIS($host,43,$query);
  205.     while(<WHOIS>) {
  206.         chop;
  207.         &reply($_);
  208.     }
  209.     &reply(".");
  210.     exit;
  211.   }
  212.  
  213.   if (/^qwhois/) {
  214.     /^qwhois (.*)\t(.*)/;
  215.     $host  = $1;
  216.     $query = $2;
  217.     &OpenWHOIS($host,43,$query);
  218.     
  219.     while(<WHOIS>) {
  220.         s/\n//;
  221.         s/\r//;
  222.         push(@lines,$_);
  223.     }
  224.  
  225.     #
  226.     # Always return the output of the whois search first
  227.     #
  228.  
  229.     &reply("0Raw Search Results\twhois $host $query\t$Gatehost\t$Port");
  230.  
  231.     #
  232.     # Test for some common formats
  233.     #
  234.  
  235.     #
  236.     # CSO gateway whois type servers
  237.     #
  238.  
  239.     foreach (@lines) {
  240.            if (/\s+name:\s+(.*)/) {
  241.               $newquery = $1;
  242.           $newquery =~ s/,//g; #remove commas
  243.               $newquery =~ s/\s+[A-z]$//; #remove trailing middle initial
  244.           &reply("0$1\twhois $host $newquery\t$Gatehost\t$Port");
  245.            }
  246.     }
  247.  
  248.     #
  249.     # nic.ddn.mil type whois servers
  250.     #
  251.  
  252.     foreach (@lines) {
  253.     if (/(.*)\((.*)\)\t(.*)$/) {
  254.         &reply("0$1\twhois $host !$2\t$Gatehost\t$Port");
  255.         }
  256.     }
  257.  
  258.     #
  259.     # format used by stanford.edu
  260.     #    
  261.     if ($lines[$#lines] =~ /^\(returned/) {
  262.        foreach (@lines) {
  263.            if (/(.*)<(.*)>.*\s+(.*)$/) {
  264.                $text=$1; $handle=$2; $rest = $3;
  265.                $text =~ s/\s+$//;
  266.                $rest =~ s/\s+/ /g;
  267.                &reply("0$text ($rest)\twhois $host $handle\t$Gatehost\t$Port");
  268.            }
  269.         }
  270.     }
  271.  
  272.     #
  273.     # format used by X.500 gateways.
  274.     #
  275.     if ($lines[0] =~ m/[0-9]+ matches found/) {
  276.         foreach (@lines) {
  277.              if (/^\s+[0-9]+\.(.*)\s+   (.*)$/) {
  278.                 $newname = $1;
  279.                 $newname =~ s/^\s+//;
  280.         $newname =~ s/\s+$//;
  281.         &reply("0$newname ($2)\twhois $host $newname\t$Gatehost\t$Port");
  282.              }
  283.         }
  284.     }
  285.  
  286.     #
  287.     # format used by horton: username@host  Name  Date
  288.     #
  289.  
  290.     foreach (@lines) {
  291.         if (/([\S]+@[\S]+).*([A-z][A-z][A-z] [A-z][A-z][A-z]\d\d \d\d\d\d)[\s]+$/) {
  292.         #Not implemented yet.
  293.         }
  294.     }
  295.  
  296.  
  297.     if ($lines[$#lines] eq 'NO MATCH' ||
  298.         $lines[$#lines] eq 'Unable to resolve name') {
  299.        &reply("0No Match Was Found!\twhois $host help\t$Gatehost\t$Port");
  300.        &reply(".");
  301.        exit(0);
  302.     }
  303.  
  304.     &reply(".");
  305.     exit(0);
  306.  
  307.   }
  308.  
  309. exit;
  310.  
  311. ---------.Links for whois servers
  312. Type=7
  313. Name=Bull HN Information Systems
  314. Path=qwhois bull.com
  315. Host=mudhoney.micro.umn.edu
  316. Port=4324
  317. #
  318. Type=7
  319. Name=Cambridge Computer Associates
  320. Path=qwhois camb.com
  321. Host=mudhoney.micro.umn.edu
  322. Port=4324
  323. #
  324. Type=7
  325. Name=GTE Laboratories
  326. Path=qwhois gte.com
  327. Host=mudhoney.micro.umn.edu
  328. Port=4324
  329. #
  330. Type=7
  331. Name=InterCon Systems Corporation
  332. Path=qwhois intercon.com
  333. Host=mudhoney.micro.umn.edu
  334. Port=4324
  335. #
  336. Type=7
  337. Name=Prime Computer
  338. Path=qwhois relay.prime.com
  339. Host=mudhoney.micro.umn.edu
  340. Port=4324
  341. #
  342. Type=7
  343. Name=Performance Systems International
  344. Path=qwhois wp.psi.com
  345. Host=mudhoney.micro.umn.edu
  346. Port=4324
  347. #
  348. Type=7
  349. Name=SRI International
  350. Path=qwhois sri.com
  351. Host=mudhoney.micro.umn.edu
  352. Port=4324
  353. #
  354. Type=7
  355. Name=Sunquest Information Systems
  356. Path=qwhois whois.sunquest.com
  357. Host=mudhoney.micro.umn.edu
  358. Port=4324
  359. #
  360. Type=7
  361. Name=University of California at Berkeley
  362. Path=qwhois mailhost.berkeley.edu
  363. Host=mudhoney.micro.umn.edu
  364. Port=4324
  365. #
  366. Type=7
  367. Name=California Institute of Technology
  368. Path=qwhois caltech.edu
  369. Host=mudhoney.micro.umn.edu
  370. Port=4324
  371. #
  372. Type=7
  373. Name=California Institute of Technology
  374. Path=qwhois horton.caltech.edu
  375. Host=mudhoney.micro.umn.edu
  376. Port=4324
  377. #
  378. Type=7
  379. Name=California State University - Fresno
  380. Path=qwhois csufres.csufresno.edu
  381. Host=mudhoney.micro.umn.edu
  382. Port=4324
  383. #
  384. Type=7
  385. Name=California State University - Hayward
  386. Path=qwhois csuhayward.edu
  387. Host=mudhoney.micro.umn.edu
  388. Port=4324
  389. #
  390. Type=7
  391. Name=California State University - Sacramento
  392. Path=qwhois csus.edu
  393. Host=mudhoney.micro.umn.edu
  394. Port=4324
  395. #
  396. Type=7
  397. Name=Florida State University
  398. Path=qwhois cc.fsu.edu
  399. Host=mudhoney.micro.umn.edu
  400. Port=4324
  401. #
  402. Type=7
  403. Name=Gettysburg College
  404. Path=qwhois gettysburg.edu
  405. Host=mudhoney.micro.umn.edu
  406. Port=4324
  407. #
  408. Type=7
  409. Name=George Mason University
  410. Path=qwhois gmu.edu
  411. Host=mudhoney.micro.umn.edu
  412. Port=4324
  413. #
  414. Type=7
  415. Name=Harvard University
  416. Path=qwhois whois.harvard.edu
  417. Host=mudhoney.micro.umn.edu
  418. Port=4324
  419. #
  420. Type=7
  421. Name=Indiana University
  422. Path=qwhois indiana.edu
  423. Host=mudhoney.micro.umn.edu
  424. Port=4324
  425. #
  426. Type=7
  427. Name=USC Information Sciences Institute
  428. Path=qwhois isi.edu
  429. Host=mudhoney.micro.umn.edu
  430. Port=4324
  431. #
  432. Type=7
  433. Name=Johns Hopkins University
  434. Path=qwhois jhunix.hcf.jhu.edu
  435. Host=mudhoney.micro.umn.edu
  436. Port=4324
  437. #
  438. Type=7
  439. Name=Merit Computer Network
  440. Path=qwhois merit.edu
  441. Host=mudhoney.micro.umn.edu
  442. Port=4324
  443. #
  444. Type=7
  445. Name=University of Miami, Rosentiel School of Marine and Atmospheric
  446. Path=qwhois whois.rsmas.miami.edu
  447. Host=mudhoney.micro.umn.edu
  448. Port=4324
  449. #
  450. Type=7
  451. Name=Massachusetts Institute of Technology
  452. Path=qwhois mit.edu
  453. Host=mudhoney.micro.umn.edu
  454. Port=4324
  455. #
  456. Type=7
  457. Name=Mississippi State University
  458. Path=qwhois whois.msstate.edu
  459. Host=mudhoney.micro.umn.edu
  460. Port=4324
  461. #
  462. Type=7
  463. Name=Northern Arizona University
  464. Path=qwhois nau.edu
  465. Host=mudhoney.micro.umn.edu
  466. Port=4324
  467. #
  468. Type=7
  469. Name=North Carolina State University
  470. Path=qwhois whois.ncsu.edu
  471. Host=mudhoney.micro.umn.edu
  472. Port=4324
  473. #
  474. Type=7
  475. Name=University of Notre Dame
  476. Path=qwhois nd.edu
  477. Host=mudhoney.micro.umn.edu
  478. Port=4324
  479. #
  480. Type=7
  481. Name=New Jersey Institute of Technology
  482. Path=qwhois earth.njit.edu
  483. Host=mudhoney.micro.umn.edu
  484. Port=4324
  485. #
  486. Type=7
  487. Name=New York University, Courant Institute
  488. Path=qwhois acfcluster.nyu.edu
  489. Host=mudhoney.micro.umn.edu
  490. Port=4324
  491. #
  492. Type=7
  493. Name=New York University
  494. Path=qwhois wp.nyu.edu
  495. Host=mudhoney.micro.umn.edu
  496. Port=4324
  497. #
  498. Type=7
  499. Name=Ohio Northern University
  500. Path=qwhois austin.onu.edu
  501. Host=mudhoney.micro.umn.edu
  502. Port=4324
  503. #
  504. Type=7
  505. Name=Oregon State University
  506. Path=qwhois orst.edu
  507. Host=mudhoney.micro.umn.edu
  508. Port=4324
  509. #
  510. Type=7
  511. Name=Ohio State University
  512. Path=qwhois osu.edu
  513. Host=mudhoney.micro.umn.edu
  514. Port=4324
  515. #
  516. Type=7
  517. Name=Portland State University
  518. Path=qwhois wp.pdx.edu
  519. Host=mudhoney.micro.umn.edu
  520. Port=4324
  521. #
  522. Type=7
  523. Name=University of Rochester
  524. Path=qwhois whois.cc.rochester.edu
  525. Host=mudhoney.micro.umn.edu
  526. Port=4324
  527. #
  528. Type=7
  529. Name=Rutgers University
  530. Path=qwhois whitepages.rutgers.edu
  531. Host=mudhoney.micro.umn.edu
  532. Port=4324
  533. #
  534. Type=7
  535. Name=San Diego State University
  536. Path=qwhois sdsu.edu
  537. Host=mudhoney.micro.umn.edu
  538. Port=4324
  539. #
  540. Type=7
  541. Name=Sonoma State University
  542. Path=qwhois sonoma.edu
  543. Host=mudhoney.micro.umn.edu
  544. Port=4324
  545. #
  546. Type=7
  547. Name=Stanford University
  548. Path=qwhois stanford.edu
  549. Host=mudhoney.micro.umn.edu
  550. Port=4324
  551. #
  552. Type=7
  553. Name=State University of New York, Stony Brook
  554. Path=qwhois sunysb.edu
  555. Host=mudhoney.micro.umn.edu
  556. Port=4324
  557. #
  558. Type=7
  559. Name=Syracuse University
  560. Path=qwhois syr.edu
  561. Host=mudhoney.micro.umn.edu
  562. Port=4324
  563. #
  564. Type=7
  565. Name=Baylor College of Medicine
  566. Path=qwhois whois.bcm.tmc.edu
  567. Host=mudhoney.micro.umn.edu
  568. Port=4324
  569. #
  570. Type=7
  571. Name=University of Cincinnati
  572. Path=qwhois uc.edu
  573. Host=mudhoney.micro.umn.edu
  574. Port=4324
  575. #
  576. Type=7
  577. Name=University of California at Davis
  578. Path=qwhois directory.ucdavis.edu
  579. Host=mudhoney.micro.umn.edu
  580. Port=4324
  581. #
  582. Type=7
  583. Name=University of Chicago
  584. Path=qwhois uchicago.edu
  585. Host=mudhoney.micro.umn.edu
  586. Port=4324
  587. #
  588. Type=7
  589. Name=University of California at Los Angeles
  590. Path=qwhois oac.ucla.edu
  591. Host=mudhoney.micro.umn.edu
  592. Port=4324
  593. #
  594. Type=7
  595. Name=University of California at San Diego
  596. Path=qwhois ucsd.edu
  597. Host=mudhoney.micro.umn.edu
  598. Port=4324
  599. #
  600. Type=7
  601. Name=University of Florida
  602. Path=qwhois whois.eng.ufl.edu
  603. Host=mudhoney.micro.umn.edu
  604. Port=4324
  605. #
  606. Type=7
  607. Name=University of Houston
  608. Path=qwhois whois.uh.edu
  609. Host=mudhoney.micro.umn.edu
  610. Port=4324
  611. #
  612. Type=7
  613. Name=University of Maryland
  614. Path=qwhois umd5.umd.edu
  615. Host=mudhoney.micro.umn.edu
  616. Port=4324
  617. #
  618. Type=7
  619. Name=University of Minnesota
  620. Path=qwhois umn.edu
  621. Host=mudhoney.micro.umn.edu
  622. Port=4324
  623. #
  624. Type=7
  625. Name=University of Nebraska at Lincoln
  626. Path=qwhois unl.edu
  627. Host=mudhoney.micro.umn.edu
  628. Port=4324
  629. #
  630. Type=7
  631. Name=University of Oregon
  632. Path=qwhois oregon.uoregon.edu
  633. Host=mudhoney.micro.umn.edu
  634. Port=4324
  635. #
  636. Type=7
  637. Name=University of Oregon
  638. Path=qwhois whois.uoregon.edu
  639. Host=mudhoney.micro.umn.edu
  640. Port=4324
  641. #
  642. Type=7
  643. Name=University of Pennsylvania
  644. Path=qwhois whois.upenn.edu
  645. Host=mudhoney.micro.umn.edu
  646. Port=4324
  647. #
  648. Type=7
  649. Name=University of Virginia
  650. Path=qwhois whois.virginia.edu
  651. Host=mudhoney.micro.umn.edu
  652. Port=4324
  653. #
  654. Type=7
  655. Name=University of Wisconsin
  656. Path=qwhois wisc.edu
  657. Host=mudhoney.micro.umn.edu
  658. Port=4324
  659. #
  660. Type=7
  661. Name=Worcester Polytechnic Institute
  662. Path=qwhois wpi.wpi.edu
  663. Host=mudhoney.micro.umn.edu
  664. Port=4324
  665. #
  666. Type=7
  667. Name=Lawrence Berkeley Laboratory
  668. Path=qwhois wp.lbl.gov
  669. Host=mudhoney.micro.umn.edu
  670. Port=4324
  671. #
  672. Type=7
  673. Name=Lawrence Livermore National Laboratory
  674. Path=qwhois llnl.gov
  675. Host=mudhoney.micro.umn.edu
  676. Port=4324
  677. #
  678. Type=7
  679. Name=NASA Ames Research Center
  680. Path=qwhois orion.arc.nasa.gov
  681. Host=mudhoney.micro.umn.edu
  682. Port=4324
  683. #
  684. Type=7
  685. Name=National Energy Research Supercomputer Center
  686. Path=qwhois wp.nersc.gov
  687. Host=mudhoney.micro.umn.edu
  688. Port=4324
  689. #
  690. Type=7
  691. Name=DDN Network Information Center
  692. Path=qwhois nic.ddn.mil
  693. Host=mudhoney.micro.umn.edu
  694. Port=4324
  695. #
  696. Type=7
  697. Name=Naval Research Laboratory
  698. Path=qwhois whois.nrl.navy.mil
  699. Host=mudhoney.micro.umn.edu
  700. Port=4324
  701. #
  702. Type=7
  703. Name=MCNC - Center for Communications
  704. Path=qwhois ncnoc.concert.net
  705. Host=mudhoney.micro.umn.edu
  706. Port=4324
  707. #
  708. Type=7
  709. Name=EASInet Operations Center
  710. Path=qwhois nis.easi.net
  711. Host=mudhoney.micro.umn.edu
  712. Port=4324
  713. #
  714. Type=7
  715. Name=Energy Sciences Network
  716. Path=qwhois wp.es.net
  717. Host=mudhoney.micro.umn.edu
  718. Port=4324
  719. #
  720. Type=7
  721. Name=New Jersey Intercampus Network
  722. Path=qwhois njin.net
  723. Host=mudhoney.micro.umn.edu
  724. Port=4324
  725. #
  726. Type=7
  727. Name=Reseaux IP Europeens
  728. Path=qwhois whois.ripe.net
  729. Host=mudhoney.micro.umn.edu
  730. Port=4324
  731. #
  732. Type=7
  733. Name=Wirtschaftsuniversitaet Wien
  734. Path=qwhois whois.wu-wien.ac.at
  735. Host=mudhoney.micro.umn.edu
  736. Port=4324
  737. #
  738. Type=7
  739. Name=University of Adelaide
  740. Path=qwhois wp.adelaide.edu.au
  741. Host=mudhoney.micro.umn.edu
  742. Port=4324
  743. #
  744. Type=7
  745. Name=University of Western Australia
  746. Path=qwhois uwa.edu.au
  747. Host=mudhoney.micro.umn.edu
  748. Port=4324
  749. #
  750. Type=7
  751. Name=University of Saskatchewan
  752. Path=qwhois whois.usask.ca
  753. Host=mudhoney.micro.umn.edu
  754. Port=4324
  755. #
  756. Type=7
  757. Name=University of Western Ontario
  758. Path=qwhois whohost.uwo.ca
  759. Host=mudhoney.micro.umn.edu
  760. Port=4324
  761. #
  762. Type=7
  763. Name=Gesellschaft fuer Mathematik und Datenverarbeitung
  764. Path=qwhois dfnnoc.gmd.de
  765. Host=mudhoney.micro.umn.edu
  766. Port=4324
  767. #
  768. Type=7
  769. Name=Dansk UNIX-system Bruger Gruppe
  770. Path=qwhois dkuug.dk
  771. Host=mudhoney.micro.umn.edu
  772. Port=4324
  773. #
  774. Type=7
  775. Name=Helsinki University of Technology
  776. Path=qwhois cs.hut.fi
  777. Host=mudhoney.micro.umn.edu
  778. Port=4324
  779. #
  780. Type=7
  781. Name=Tampere University of Technology
  782. Path=qwhois tut.fi
  783. Host=mudhoney.micro.umn.edu
  784. Port=4324
  785. #
  786. Type=7
  787. Name=Institut National de Recherche en Informatique et Automatique
  788. Path=qwhois inria.inria.fr
  789. Host=mudhoney.micro.umn.edu
  790. Port=4324
  791. #
  792. Type=7
  793. Name=Universite Claude Bernard Lyon I
  794. Path=qwhois whois.univ-lyon1.fr
  795. Host=mudhoney.micro.umn.edu
  796. Port=4324
  797. #
  798. Type=7
  799. Name=National Centre for Software Technology
  800. Path=qwhois sangam.ernet.in
  801. Host=mudhoney.micro.umn.edu
  802. Port=4324
  803. #
  804. Type=7
  805. Name=Association of Research Networks in Iceland
  806. Path=qwhois isgate.is
  807. Host=mudhoney.micro.umn.edu
  808. Port=4324
  809. #
  810. Type=7
  811. Name=University of Canterbury
  812. Path=qwhois cantsc.canterbury.ac.nz
  813. Host=mudhoney.micro.umn.edu
  814. Port=4324
  815. #
  816. Type=7
  817. Name=Victoria University, Wellington
  818. Path=qwhois vuw.ac.nz
  819. Host=mudhoney.micro.umn.edu
  820. Port=4324
  821. #
  822. Type=7
  823. Name=Waikato University
  824. Path=qwhois waikato.ac.nz
  825. Host=mudhoney.micro.umn.edu
  826. Port=4324
  827. #
  828. Type=7
  829. Name=Chalmers University of Technology
  830. Path=qwhois chalmers.se
  831. Host=mudhoney.micro.umn.edu
  832. Port=4324
  833. #
  834. Type=7
  835. Name=Swedish Institute of Computer Science
  836. Path=qwhois sics.se
  837. Host=mudhoney.micro.umn.edu
  838. Port=4324
  839. #
  840. Type=7
  841. Name=SUNET (Swedish University Network)
  842. Path=qwhois whois.sunet.se
  843. Host=mudhoney.micro.umn.edu
  844. Port=4324
  845. #
  846. Type=7
  847. Name=Imperial College
  848. Path=qwhois doc.ic.ac.uk
  849. Host=mudhoney.micro.umn.edu
  850. Port=4324
  851. #
  852.  
  853.  
  854.  
  855. -- 
  856.  | Paul Lindner | lindner@boombox.micro.umn.edu   | Slipping into madness
  857.  |              | Computer & Information Services | is good for the sake
  858.  | GopherMaster | University of Minnesota         | of comparision.
  859. ///// / / /    /////// / / / /  /  /  /   /      //// / / / /  /  /  /   /
  860.