home *** CD-ROM | disk | FTP | other *** search
/ CD-X 3 / cdx_03.iso / shutils / dos / 300ter.arj / DOCS.EXE / NOVELL.DOC < prev    next >
Encoding:
Text File  |  1995-08-11  |  3.5 KB  |  78 lines

  1.  
  2. ┌───────────────────────────────────────────────────────────────────────────┐
  3. │ ░░░░ Using Terminate with Novell Netware Connect ░░░░░░░░░░░░░░░░░░░░░░░░░│
  4. └───────────────────────────────────────────────────────────────────────────┘
  5.  
  6.  While the PC Bios Interrupt 14 supports only speeds up to 9600 baud, the
  7.  NWC Interrupt 14 supports much higher speeds. Terminate is 100% PC Bios
  8.  100% compatible, so it will only support 9600 baud.
  9.  Therefore, Terminate will think that the speed is 9600 baud even when you
  10.  might be connected at a much faster rate. Don't let the statusbar fool you
  11.  :-) There are new program out there that allow you to use the fossil
  12.  support over the network, which will allow you to much higher baud rates.
  13.  
  14.  The first thing to do is to create a new device in Terminate:
  15.  At the main screen, press ALT-O and choose Communcation setup. There you
  16.  should choose a device which is not in use and set the following:
  17.  
  18.  Serial interface              =  Interrupt 14h
  19.  Comport                       =  (A free com-port)
  20.  Device Name                   =  Netware Connect
  21.  Baudrate                      =  9600 (doesn't matter)
  22.  
  23.  Then press ESC to return to the previous menu, where you press space if you
  24.  want Netware Connect to be your default port. Press ESC twice to exit the
  25.  options menu and then quit Terminate.
  26.  
  27.  Contact your system administrator to obtain the following information:
  28.  - the name of the server where the NWC resides
  29.  - the name of the group of modems you can use and
  30.  - the path to the NWC-programs (NASI and NINT14).
  31.  You will also have to ask him to grant you access rights to use the modems.
  32.  
  33.  According to this information, add the directory for the NWC-programs to
  34.  the PATH statement of your AUTOEXEC.BAT and reboot the computer. Create a
  35.  batch file (easier than always using the command line) which automaticly
  36.  makes a NASI-connection and creates an INT-14 interface to Terminate.
  37.  
  38.  Here is a sample batchfile to load NASI, Novell INT 14 before launching
  39.  Terminate and unloading the drivers after exiting Terminate.
  40.  
  41.  ----- NASITERM.BAT -----
  42.  @ECHO OFF
  43.  REM Don't echo commands on screen
  44.  REM Load the NASI-interface and prompt you for a username
  45.  lh NASI
  46.  REM Load the interrupt 14 interface
  47.  REM   /Ncorp1     'corp1' is the name of the server where NWC resides
  48.  REM   /Gpool1     'pool1' is the name of the modem-group you use.
  49.  REM   /C2         '2' is the comport number (the free one you have chosen
  50.  REM                  in Terminate).
  51.  REM   /I          Ignore commands from Terminate (to allow higher speeds
  52.  REM                  than 9600 baud).
  53.  lh NINT14 /Ncorp1 /Gpool1 /C2 /I
  54.  REM Load Terminate
  55.  TERMINAT
  56.  REM Unload the interrupt 14 interface.
  57.  NINT14 /U
  58.  REM Unload the NASI-interface.
  59.  NASI /U
  60.  REM Finished.
  61.  ----- NASITERM.BAT -----
  62.  
  63.  NASITERM has a significant drawback: If NINT14 fails to load, Terminate
  64.  will act strange. As NINT14 doesn't return an errorlevel, you'll have to
  65.  notice yourself if the driver has not been loaded and maybe check whether
  66.  Terminate should be launched. If you should use a DOS version prior to 6.0,
  67.  you will not have such an utility, but there are plenty to be found in the
  68.  shareware and freeware market.
  69.  
  70.  The same procedure should be followed under OS/2. With newer versions of
  71.  the Netware Requester, you'll have to load NINT14 under the boot-image of a
  72.  DOS-disk.
  73.  Novell has released a preconfigured image-file for use under OS/2 on
  74.  Netwire.
  75.  
  76.  Allan Beaufour
  77.  
  78.