home *** CD-ROM | disk | FTP | other *** search
/ C!T ROM 5 / ctrom5b.zip / ctrom5b / CTSELECT / TERM151 / 0151TER2._XE / rar / DOCS.EXE / NOVELL.DOC < prev    next >
Text File  |  1994-12-02  |  3KB  |  80 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,
  7.  the NWC Interrupt 14 supports much higher speeds. Terminate is 100% PC
  8.  Bios 100% compatible so it will only support 9600 baud.
  9.  Therefore, Terminate will think that the speed is 9600 baud even though
  10.  you're connected at a much faster rate. Don't let the statusbar fool
  11.  you :-)
  12.  
  13.  Although you CAN the NWC Interrupt 14 to work with Terminate, you are
  14.  likely to have some problems with hanging up and detecting a connect.
  15.  These problems should be eliminated in the next version of Terminate.
  16.  
  17.  The first thing to do is to create a new device in Terminate:
  18.  At the main-screen press ALT-O and choose Communcation setup. There you
  19.  choose a device which is not used and set the following:
  20.  
  21.  Serial interface              =  Interrupt 14h
  22.  Comport                       =  (A free com-port)
  23.  Device Name                   =  Netware Connect
  24.  Baudrate                      =  9600 (doesn't matter)
  25.  
  26.  Then press ESC to return to the previus menu, where you press space if
  27.  you wan't Netware Connect to be your default port. Press ESC twice to
  28.  exit Terminate.
  29.  
  30.  Contact your system administrator to obtain the following information:
  31.  - the name of the server where the NWC resides
  32.  - the name of the group of modems you can use and
  33.  - the path to the NWC-programs (NASI and NINT14).
  34.  You will also have to ask him to give you access to use the modems.
  35.  
  36.  According to this information, add the directory  for the NWC-programs
  37.  in the PATH statement of your AUTOEXEC.BAT and reboot the computer.
  38.  Create a batch file (easier than always using the command line) which
  39.  automaticly gets a NASI-connection and creates an INT-14 interface to
  40.  Terminate.
  41.  
  42.  Here is a sample batchfile to load NASI, Novell INT 14 before launching
  43.  Terminate and unloading the drivers after exiting Terminate.
  44.  
  45.  ----- NASITERM.BAT -----
  46.  @ECHO OFF
  47.  REM Don't echo commands on screen
  48.  REM Load the NASI-interface and prompt you for a username
  49.  lh NASI
  50.  REM Load the interrupt 14 interface
  51.  REM   /Ncorp1     'corp1' is the name of the server where NWC resides
  52.  REM   /Gpool1     'pool1' is the name of the modem-group you use.
  53.  REM   /C2         '2' is the comport number (the free one you have chosen
  54.  REM                  in Terminate).
  55.  REM   /I          Ignore commands from Terminate (to allow higher speeds
  56.  REM                  than 9600 baud).
  57.  lh NINT14 /Ncorp1 /Gpool1 /C2 /I
  58.  REM Load Terminate
  59.  TERMINAT
  60.  REM Unload the interrupt 14 interface.
  61.  NINT14 /U
  62.  REM Unload the NASI-interface.
  63.  NASI /U
  64.  REM Finished.
  65.  ----- NASITERM.BAT -----
  66.  
  67.  NASITERM has a significant drawback: If NINT14 fails to load, Terminate
  68.  acts strange. As NINT14 doesn't return an errorlevel, you'll have to
  69.  notice yourself if the driver has not been loaded and maybe ask if
  70.  Terminate should be launched. But DOS doesn't offer that utility, so
  71.  you'll have to find one yourself.
  72.  
  73.  The same procedure should be followed under OS/2. With newer versions
  74.  of the Netware Requester you'll have to load NINT14 under a boot-image
  75.  of a DOS-disk. Novell has released a preconfigured image-file for use
  76.  under OS/2 on Netwire.
  77.  
  78.  Allan Beaufour
  79.  
  80.