home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #1 / monster.zip / monster / BBS_UTIL / NIXG100A.ZIP / GATEWAY.BAT < prev    next >
DOS Batch File  |  1994-01-26  |  1KB  |  25 lines

  1. @Echo off
  2.  
  3. REM Sample batch file for running NIX/Gate with the X00 fossil driver
  4. REM Note that this makes use of the TASK environment variable to handle
  5. REM multinode systems.  This example is using port 1, which in fossil
  6. REM terms, is actually COM2.
  7.  
  8. REM Make sure gateway port is set up properly!  We'll use the XU utility
  9. REM which comes with the X00 fossil driver package.  This example sets up
  10. REM our gateway port as locked at 19200, at standard 8N1.  This may vary
  11. REM based upon your flavor and configuration of UNIX.
  12.  
  13. REM Note that we are passing -b126, which means use the tilde (ASCII 126)
  14. REM as our escape key.  If the user presses the key, he/she will be returned
  15. REM to your BBS.  It is up to them to ensure that they properly log off the
  16. REM UNIX system before exiting!  If you do not pass the -b switch, no break
  17. REM out key will be enabled, essentially denying them re-entry back to the
  18. REM BBS system.
  19.  
  20. xu set:1:19200:8N1
  21.  
  22. cd\bbs\gateway
  23. nixgate -g1 -b126 -n%TASK% -l
  24.  
  25.