home *** CD-ROM | disk | FTP | other *** search
/ Network Support Encyclopedia 15 / novell-nsepro-1992-vol15.iso / download / acerom.txt < prev    next >
Text File  |  1992-03-30  |  4KB  |  99 lines

  1. (Note: The origin of this information may be internal or external to Novell. 
  2. Novell makes every effort within it's means to verify this information. 
  3. However, the information provided in this document is FOR YOUR INFORMATION
  4. only.  Novell makes no explicit claims to the validity of this information.)
  5.  
  6. Title: CDIS CDROM Driver and Access Server  
  7. Document #: FYI.S.27  
  8. Date: March 19, 1992  
  9. Product: Access Server  
  10. Product Version: 1.22    
  11. SUPERSEDES: NA  
  12. SYMPTOM: NA    
  13.  
  14.  
  15. ISSUE/PROBLEM
  16. The use of CDROM players with Access Server.
  17.  
  18.  
  19. SOLUTION
  20. The CBIS "CD Solution v2.20C" (100-user), production date 2/10/92 is reported
  21. to work with Access Server V1.2.
  22.  
  23. The configuration requirements are:
  24.  
  25. 1. A CONFIG.SYS file for the REMOTE workstation as shown below.  Note in
  26. particular the LASTDRIVE statement.  A LASTDRIVE statement must be inserted on
  27. the Access Service as well and the drive specification must be identical to
  28. that of the REMOTE workstation.  Failure to do this will allow access to the
  29. CD drives from the first session ONLY.  A session will terminate normally but
  30. upon reconnecting to the NAS, attempt to access the CD drives results in an
  31. error message and the NAS must be rebooted.
  32.  
  33.      FILES=30
  34.      BUFFERS=25
  35.      DEVICE=C:\CDSYS.SYS /D:MSCD001 /N:3
  36.      LASTDRIVE=H
  37.  
  38. 2. A CONFIG.SYS for the Access Server is show below.  Actual INCLUDE & EXCLUDE
  39. statements will vary from environment to environment and are not relevant to
  40. the CD Solution requirements.  Note that the CDSYS.SYS driver is ahead of the
  41. NASDISK.SYS drives.  This is required for proper drive pointer allocation.
  42.  
  43. DEVICE=C:\ACCESS\QEMM386.SYS MAPS=32 HANDLES=64 RAM I=D000-DFFF X=C800-C9FF
  44. DEVICE=C:\CDSYS.SYS /D:MSCD001 /N:3
  45. DEVICE=C:\ACCESS\NASDISK.SYS /P18 /S
  46. DEVICE=C:\ACCESS\NASDISK.SYS /P11 /S
  47. FILES=5
  48. BUFFERS=1
  49. LASTDRIVE=H
  50. STACKS 0,0
  51. DEVICE=C:\ACCESS\LPTDRV.SYS
  52. DEVICE=C:\ACCESS\STANDIO.SYS
  53. SHELL=C:\COMMAND.COM /E:1024 /P
  54.  
  55. The following batch file is for the workstations locally on the network.  They
  56. will allow normal use of the CD ROM drives by individuals local to the LAN. 
  57. Note that you do not have to use a CDUSE command as the line MSCDEX /D:MSCD001
  58. /L:E does this.  The /L:nn is the start letter for the sequence of redirected
  59. CD drives.  In this case our first CD drive is E:. The /D:MSCD001 is the CD
  60. device name from CBIS CD SERVER.  This batch file  accommodate IPX connections
  61. to the NAS.
  62.  
  63.      C:
  64.      CD\CBIS
  65.      MSCDEX /D:MSCD001 /L:E
  66.      CDFICHE
  67.  
  68. 3. A batch file on the NAS's C: drive as shown below.  Unfortunately, you must
  69. allow users rights to access the NAS's local drives.  This is accomplished by
  70. inserting a /LD parameter on the %1:SIGNON line in the NASSTART.BAT file. 
  71. This potentially presents a security issue.  Here we are using the CDREDIR and
  72. CDUSE commands as MSCDEX will attempt to redirect to drive A:.  CDUSE F: J:
  73. will redirect the CD drive J: from the CD server to a local drive F:.  The /O
  74. parameter is critical as it allows an override to previous redirection.  Not
  75. including the /O parameter will cause the batch file to run properly the first
  76. time, but subsequent attempts will result in an error message of duplicate
  77. redirection.  This batch file can be executed out of the LOGIN SCRIPT as EXIT
  78. 'CD.BAT'.  It applies to users connecting to the NAS via the WNIM+ board.  A
  79. conditional IF..THEN statement is recommended.
  80.  
  81.      @ECHO OFF
  82.      CDREDIR
  83.      CDUSE F: J: /O
  84.      CDUSE G: K: /O
  85.      CDUSE H: L: /O
  86.      CD\CBIS
  87.      CDFICHE
  88.      CD\
  89.  
  90. 4. A modification of the DVINTF.CFG file in the \ACCESS directory as shown
  91. below.  DVINTF.CFG may or may not be created during NASGEN.  It is a text file
  92. and may be created using an ASCII text editor.  
  93.  
  94. DEVICE=C:\CDSYS.SYS /D:MSCD001 /N:<number of active CD drives>
  95. LASTDRIVE=L
  96. MAX DV TASKS=<maximum number of active sessions allowed>
  97. MAX BUFFER LENGTH=<packet buffer size, max=1536, default=512>
  98.  
  99. NOTE: This is not a certification.  Further testing is still needed.