home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 36 Tips / 36-Tips.zip / DLRNVL.FAX < prev    next >
Text File  |  1994-11-28  |  4KB  |  126 lines

  1. IBM DLR and NOVELL CLIENT coexistence           1/27/94
  2.  
  3. CONSIDERATIONS FOR LOADING DLR AND
  4. NOVELL CLIENT CONCURRENTLY USING ODI AND NETX
  5.  
  6.  
  7.  
  8. DESCRIPTION OF SYMPTOMS:
  9.     Can an IBM DOS LAN Requester and a Novell Client
  10.     coexist?
  11.  
  12. SUMMARY OF RESOLUTION:
  13.     Adjust the LASTDRIVE statement and the DXMT0MOD.SYS
  14.     driver in the CONFIG.SYS, create a NET.CFG file
  15.     in the same subdirectory as the Novell files, and
  16.     load DLR before the Novell client.
  17.  
  18. DETAILS OF RESOLUTION:
  19.     (Assumes DOS 5.0 or higher--for memory management--
  20.     and Novell NETX Version 3.26 or higher.)
  21.  
  22.     The following outlines the prime considerations in
  23.     loading IBM's DOS LAN Requester (DLR) and Novell's
  24.     Client concurrently on a PC DOS workstation:
  25.  
  26.     1.  The LASTDRIVE statement in the CONFIG.SYS must
  27.         be set to allow the Novell drives to be assigned
  28.         after the local and DLR assignments.
  29.  
  30.             Example:  LASTDRIVE=K
  31.  
  32.     2.  The ES parameter for the DXMT0MOD.SYS driver (in
  33.         the CONFIG.SYS) must be set high enough to allow
  34.         the Novell driver access to the token ring.
  35.  
  36.             Example:  ES=6 allows the 2 SAPs for DLR
  37.                       plus 4 SAPS for the Novell.
  38.                       (Novell may require only 1 SAP.)
  39.  
  40.     3.  Create a NET.CFG file in the same directory as the
  41.         Novell files.
  42.  
  43.             Example:
  44.                 NOTE:  The lines must be indented at least
  45.                        three spaces.  (Do not use a tab;
  46.                        when parsed, it only shows one space.)
  47.  
  48.                 PROTOCOL IPX
  49.                     BIND LANSUP
  50.                 LINK DRIVER LANSUP
  51.                     FRAME TOKEN-RING
  52.                     FRAME TOKEN-RING_SNAP
  53.                     SAPS 4
  54.  
  55.     4.  The DOS LAN Requester must be loaded before the
  56.         Novell Requester code.
  57.  
  58.     Following are examples of the CONFIG.SYS, DOSLAN.INI,
  59.     and AUTOEXEC.BAT.
  60.  
  61.     Sample CONFIG.SYS
  62.  
  63.         DEVICE=C:\DOS50\HIMEM.SYS
  64.         DOS=HIGH
  65.         DEVICEHIGH=C:\DOS50\SETVER.EXE
  66.         FILES=30
  67.         BUFFERS=20
  68.         SHELL=C:\DOS50\COMMAND.COM /E:2000 /P
  69.         LASTDRIVE=K
  70.         DEVICE=\LSP\PROTMAN.DOS /I:\LSP
  71.         DEVICE=\LSP\IBMTOK.DOS
  72.         DEVICEHIGH=\LSP\DXMA0MOD.SYS 001
  73.         DEVICEHIGH=\LSP\DXME0MOD.SYS
  74.         DEVICE=\LSP\DXMT0MOD.SYS O=N S=12 C=14 ST=12 ES=6 EST=2
  75.         DEVICE=C:\DOS50\SMARTDRV.EXE /DOUBLE_BUFFER
  76.         STACKS=0,0
  77.  
  78.     Sample AUTOEXEC.BAT
  79.  
  80.         C:\DOS50\SMARTDRV.EXE /L
  81.         @ECHO OFF
  82.         \LSP\NETBIND
  83.         SET COMSPEC=C:\DOS50\COMMAND.COM
  84.         PROMPT $p$g
  85.         PATH C:\DOS50;C:\EXCEL;C:\DLR30;E:\WIN30
  86.         SET TEMP=C:\DOS50
  87.         C:\DOS50\MOUSE.COM /Y
  88.         LOADHIGH C:\DOS50\DOSKEY.COM
  89.         @ECHO OFF
  90.         REM ******************************************
  91.         REM Prompt to start the DOS LAN Requester.
  92.         YNPROMPT Y N 30 Start DOS LAN Requester (Y/N)?
  93.         IF ERRORLEVEL 1 GOTO NODLR
  94.         NET START
  95.         IF ERROR LEVEL 1 GOTO NODLR
  96.         CALL INITFSI.BAT
  97.         :NODLR
  98.         REM ******************************************
  99.         REM Prompt for Start of Novell Client software.
  100.         YNPROMPT Y N 30 Start Novell Client (Y/N)?
  101.         IF ERRORLEVEL 1 GOTO NONOV
  102.         C:\NOVELL\DOSODI\LSL
  103.         C:\NOVELL\DOSODI\LANSUP
  104.         C:\NOVELL\DOSODI\IPXODI
  105.         C:\NOVELL\DOSODI\NETX
  106.         :NONOV
  107.  
  108.         NOTE: The LSL, LANSUP, IPXODI, and NETX can be either
  109.               .COM or .EXE files depending on the shell being
  110.               used.  The statement as written above should call
  111.               the applicable file.
  112.  
  113.     Sample DOSLAN.INI
  114.  
  115.         RCV TheMachineName DomainName
  116.         /SRV:8   /ASG:29   /NBC:4   /NBS:1K   /BBC:1   /BBS:4K
  117.         /PBC:4   /PBS:128  /PFS:32  /PFT:900  /PWT:250
  118.         /KUC:600 /KST:600  /API     /NMS:3    /MLO     /HIM
  119.         /WRK:111121101021210
  120.  
  121.  
  122. DATE LAST UPDATED:  01/27/94
  123. XA23009 - CPFPM
  124.  
  125. 12/31/99
  126.