TERMSERV.DOC
上传用户:sunrenlu
上传日期:2022-06-13
资源大小:1419k
文件大小:2k
源码类别:

操作系统开发

开发平台:

DOS

  1. TERMSERV 1.1 - an example terminal server
  2. Copyright (c) 1990, 1999 Erick Engelke
  3. TERMSERV.EXE (in binary form) is distributed freely in the hope that it
  4. may prove interesting or useful, but with no warrantee of any kind.
  5. Purpose
  6. =======
  7.     Termserv allows incoming TELNET sessions direct access to serial
  8.     ports in the local machine.
  9.     So one might hook up four modems and use this to TELNET to the modem
  10.     pool.  Or one may connect to the serial line of a network switch
  11.     and use this program to access the switch's console.
  12.     This program also includes an FTP server and a Web server, including
  13.     real-time generation of a usage graph.
  14.     Finally, this program will optionally Email to a specified Email address
  15.     each time it is restarted, and SYSLOG entries on restart, and as each
  16.     connection arrives and later departs.
  17. Configuration
  18. =============
  19.     Edit the TCP.CFG file and set the following parameters:
  20.   [settings]
  21.     ip=x.x.x.x              dotted IP address of this station, or BOOTP
  22.     netmask=255.255.255.0   or whatever is the appropriate network mask
  23.     gateway=x.x.x.x         dotted IP address of the router
  24.     nameserver=x.x.x.x      dotted IP address of the name server
  25.     smtp.gateway=x.x.x.x    dotted IP address of an Email relay host
  26.     smtp.hostname=blah.blah DNS name for this machine, required by
  27.                             many SMTP servers, must be set correctly
  28.     ftpd.password = "frog"  any case sensitive password for your FTP service
  29.     email.notify = "erick@ertos.com"  the Email address of recipient
  30.     syslog.host = x.x.x.x   option host to receive our syslog information
  31.     userid=joe              userid/password for web access
  32.     password=blow
  33.   [com1]                    repeat this section for com1 through com4
  34.     speed=9600
  35.     irq=4
  36. Programming
  37. ===========
  38.     This is a multithreaded program using the commercial eRTOS development
  39.     system.  eRTOS is great for developing embedded network and/or serial
  40.     applications - this program demonostrates both network and serial i/o
  41.     and is actually one of the example projects.
  42.     This entire program took less than three hours to write.  The non-web
  43.     part is two printed pages of C, and the web part (including graphics)
  44.     is another two pages.  eRTOS includes code to do graphics, and charts.
  45.     For more information about eRTOS, see http://www.ertos.com