home *** CD-ROM | disk | FTP | other *** search
/ Doom I/II Collection / DM12.ISO / serial / oldipx / doom123.faq < prev    next >
Text File  |  1994-02-22  |  6KB  |  134 lines

  1. IPX FAQ, version 1.23
  2. February 22, 1994
  3. By Steve Bonds
  4.  
  5.  
  6. There are a number of ways of getting IPX working with a given
  7. ethernet card.  One is to use a dedicated IPX driver for the card,
  8. another is to run an IPX converter over some other standard such as
  9. NDIS, ODI, or the packet driver standard.  If one method fails to
  10. work, try another one!  I have had good reliability with the IPX
  11. over Packet driver method, though it can sometimes be a challenge
  12. to get it running...  If you are already using Novell, then the IPX
  13. over ODI might be simpler to set up, though I have found it less
  14. reliable.
  15.  
  16. Before I get going, let me plead with everyone NOT TO USE DOOM 1.1
  17. OR 1.0 ON ANY NETWORK OTHERS ARE TRYING TO USE!!  Doom 1.2 is now
  18. available, so please use it rather than 1.1 or 1.0.  DOOM 1.0 and
  19. 1.1 really screw up networks.
  20.  
  21. Now that I have all my disclaimers out of the way... :)
  22.  
  23. To use this method of installing IPX you need two files, both of
  24. which are in the file PKTD11.ZIP, which can be had from
  25. oak.oakland.edu as/pub/msdos/pktdrvr/pktd11.zip.  I have seen some
  26. problems with this version (11) of the drivers, however, so it
  27. would be wise to test out the packet driver after it is loaded, or
  28. perhaps to try one which comes direct from the ethernet card
  29. manufacturer. (i.e. 3c5x9pd.com from ftp.3com.com)
  30.  
  31. If you have problems with these drivers, I have put together a
  32. collection of older versions of IPX and packet drivers which seem
  33. to work better with DOOM.  This package will be uploaded to
  34. ftp.uwp.edu as OLDIPX.ZIP.
  35.  
  36. The first file is specific to your ethernet hardware.  It is the
  37. packet driver software that converts packet-driver calls to
  38. commands your ethernet card can understand.  The INSTALL.DOC file
  39. included with the packet driver collection has details about which
  40. cards are supported and what sort of command-line parameters are
  41. needed for each packet driver.  I always load the packet driver
  42. using interrupt 0x60, a popular convention.  These drivers will not
  43. work well under Windows without tweaking, so read the INSTALL.DOC
  44. file for details.  There are also some useful packet utilities
  45. included.  Again details are in INSTALL.DOC.  (Got the hint yet? :)
  46.  
  47. EXAMPLES: 
  48.  
  49.      3Com 503 card on interrupt 5, I/O port 0x300, and the
  50.      internal transceiver. (twisted pair RJ-45 connector ON
  51.      THE CARD or coaxial BNC connector-- NOT the 15-pin AUI
  52.      connector) The shared memory area is automatically
  53.      determined-- but be sure to exclude the region from your
  54.      expanded memory manager, if used!
  55.  
  56.           3C503.COM 0x60 0x5 0x300 1
  57.  
  58.      3Com 509 card: These cards are entirely
  59.      software-configurable through the config/diagnostics on
  60.      your EtherDisk that came with the card.  If you have lost
  61.      the disk, all the needed files are available from
  62.      ftp.3com.com.
  63.  
  64.           3C509.COM 0x60
  65.  
  66.      AT&T StarLan cards: Almost like the 503 except the memory
  67.      location must be specified.
  68.  
  69.           AT&T.COM 0x60 0x2 0x360 0xD000
  70.  
  71. Once the packet driver is loaded and reports things correctly 
  72. (i.e.it does not give your ethernet address as
  73. FF:FF:FF:FF:FF:FF...) then just run PDIPX.COM to load IPX support. 
  74. The PDIPX.COM program is included with PKTD11.ZIP, but it is
  75. contained in a .ZIP file INSIDE of PKTD11.ZIP called PDIPX103.ZIP. 
  76. Run the .COM file with no parameters.
  77.  
  78. If you have problems with an "invalid mode" when loading PDIPX, you
  79. probably are trying to run other network software at the same time
  80. as the Packet Driver/IPX combination.  Strip down your CONFIG.SYS
  81. and your AUTOEXEC.BAT files to those shown below.  Do not load any
  82. additional TSR's!  Once this bare-bones configuration works, you
  83. can begin adding TSR's.  if your problems persist, try using the
  84. older versions of the packet driver and IPX-to-PD converter.  (They
  85. should be on ftp.uwp.edu.)
  86.  
  87. If nothing seems to work, try running the diagnostic program
  88. PKTWATCH.COM after getting everything set up.  If your screen fills
  89. with scrolling multicolor hexadecimal numbers then the packet
  90. driver is working OK.  If it just flashes a cursor at you, then you
  91. have problems UNLESS you are wired directly to another computer. 
  92. Hook your computer back up to an active network and see if you can
  93. receive anything then.  If you do not have an active network
  94. available, start DOOM on the OTHER computer while running PKTWATCH
  95. on the original computer.  Of course, the other (sending) computer
  96. needs to have IPX set up as well.
  97.  
  98. The simplest way to get all the drivers you need loaded and to
  99. exclude other drivers which may interfere is to create a boot disk
  100. with the correct startup files.  For example:
  101.  
  102.      CONFIG.SYS
  103.           device=a:\himem.sys
  104.           dos=high,noumb
  105.           files=30
  106.           buffers=30
  107.  
  108.      AUTOEXEC.BAT
  109.           prompt [DOOM Setup] $p$g
  110.           a:\3c503.com 0x60 0x5 0x300 1
  111.           rem change the above according to your card.
  112.           a:\pdipx.com
  113.  
  114. The ONLY line that will vary with what card you have is the
  115. "3c503.com" line.  I encourage you NOT to load an EMS driver since
  116. so many cards use shared memory and it is sometimes difficult to
  117. ensure that the proper area, and only the proper area, is excluded. 
  118. DOOM runs just fine with XMS, and you have the added benefit of
  119. loading DOS high to make room for things like mouse drivers.  DOOM
  120. does not NEED XMS to run, though.  Also, I like to change the DOS
  121. prompt to reflect my configuration whenever I am using a bizarre
  122. setup.
  123.  
  124. It might be a good idea to also scan your bootable floppy for
  125. viruses BEFORE booting the networked computer with it.  (Scan it on
  126. the NETWORKED computer, not your own...)  There are a number of
  127. common viruses spread by booting computers from infected disks.
  128. (Stoned, Form, and Michelangelo to name a few.)  Let's not give
  129. DOOM a bad name by booting network computers from infected disks! 
  130. (btw, F-prot from oak.oakland.edu as /pub/msdos/virus/fp-211.zip is
  131. an EXCELLENT antivirus program. <plug>)
  132.  
  133.   -- Steve Bonds
  134.