home *** CD-ROM | disk | FTP | other *** search
/ Otherware / Otherware_1_SB_Development.iso / amiga / comms / network / amigauuc.lha / AmigaUUCP / man / Getty < prev    next >
Text File  |  1992-05-06  |  8KB  |  245 lines

  1.  
  2. NAME
  3.     Getty
  4.  
  5. SYNOPSIS
  6.     Getty -Sserialname -Uunit -Bbaud -Bbaud.. -Mc -bn -ln
  7.           -m1 -r0 -h0 -c0 -d0 -xn -A -7 -0 [modem-cmds]
  8.  
  9. FLASH!
  10.     Getty now works with multi-serial ports.  The 1.08 and 1.09
  11.     getty were broken due to bugs in the serial.device ... the 1.10
  12.     Getty now fixes this by introducing file locking constructs to
  13.     lock the serial port instead of intercepting the device vectors.
  14.  
  15.     IN ORDER TO BEHAVE WELL WITH GETTY, YOU MUST USE THE LockSerial
  16.     command to run any external programs that use that particular
  17.     serial port.  You can no longer run terminal programs direct
  18.     because they are no longer locked out by getty if getty is
  19.     accepting a call.  The program LOCKSERIAL may be used to
  20.     synchronously run terminal programs without requiring one to
  21.     kill Getty.
  22.  
  23.     HOWEVER, programs run *FROM* a password entry should NOT use
  24.     LockSerial becaues the port has already been locked by getty
  25.     for the program.
  26.  
  27.     NOTE: Programs run with lockserial must not auto-detach from the
  28.     CLI or lockserial will believe that they have exited and give the
  29.     port back to Getty, causing major problems.
  30.  
  31. DESCRIPTION
  32.     Getty hangs on the specified serial port (serial.device unit 0 by
  33.     default) waiting for connections via the connected modem.  Once
  34.     a connection is accepted Getty adjusts to the proper baud rate
  35.     using the CONNECT message, -B, -A options, then provides a
  36.     Login: request to the caller.
  37.  
  38.     NOTE: A CONNECT message from the modem with no baud rate specified
  39.     will cause Getty to use the first baud rate in the -B list.  If
  40.     the -A option is specified, Getty *always* uses the first baud
  41.     rate in the -B list and never switches to any other baud rate.
  42.  
  43.     Getty disconnects any caller who cannot provide a legal Login and
  44.     Password within 60 seconds.  It also allows only 5 login attempts
  45.     before disconnecting, and any illegal password will result in a
  46.     4 second delay before the next Login: prompt is output.
  47.  
  48.     Upon receiving a legal Login and and Password, verified via
  49.     GETTY:PASSWD, Getty will execute the program specified in
  50.     GETTY:PASSWD, usually UUCICO, and stay off the line until
  51.     UUCICO returns.  When UUCICO returns, Getty will disconnect
  52.     the caller and reset the modem, returning to its original state.
  53.  
  54.     The file GETTY:Getty-Header contains a couple lines of text
  55.     that are sent over the serial port before the Login: request.
  56.     In it you normally have your machine type, name, etc...
  57.  
  58.     Getty runs the specified program in the password entry adding
  59.     the following arguments:
  60.  
  61.         -Getty -DEVICE devicename -UNIT unitnumber
  62.  
  63.     (uucico will recognize said arguments and not attempt to
  64.      initialize / waitfor calls / hangup the modem itself, nor
  65.      will uucico attempt to lock the already locked serial port)
  66.  
  67. TECH NOTES
  68.     In order to monitor the request lock for the serial port (see
  69.     UUMAN:LockSerial and src/util/lockserial.c), GETTY must open
  70.     a file in T: for write and then close it every 3 seconds.  Thus,
  71.     T: should be in your RAM disk.
  72.  
  73. OPTIONS
  74.     Options are given on the command line when you run Getty.  You can
  75.     also UPDATE a currently running Getty's options by running Getty
  76.     for the same device and unit again with the options that need to
  77.     be changed.  Getty will detect whether another getty is already
  78.     running on that port and send the new options to the running getty,
  79.     then return.
  80.  
  81.  
  82.     -Sserialname        Specify serial device, default "serial.device"
  83.  
  84.     -Uunit            Specify unit number, default 0
  85.  
  86.     -Bbaud            Specify up to 32 baud rates
  87.  
  88.     -A            Specify modem will adjust to a single baud
  89.                 rate (locks the serial.device at the first
  90.                 baud rate in the -B list)
  91.  
  92.     -7            Use SERF_7WIRE protocol while online,
  93.                 else uses no protocol while online.  If
  94.                 you are using a modem with speed conversion
  95.                 you need this option or you will most likely
  96.                 overflow the modem's buffer!
  97.  
  98.     -Mc            Select Modem type,
  99.  
  100.                 c = m   Multimodem
  101.                 h   Hays
  102.                 d   Dumb  (no AT or +++ commands are
  103.                        sent to the modem ever).
  104.  
  105.     -mn            Set modem speaker level, default 0.
  106.                 (ATMn command)
  107.  
  108.     -rn            Set modem to answer on the Nth ring
  109.                 (modem must support ATMn).  0 disables
  110.                 answer capability.    The default is to
  111.                 answer on the second ring.
  112.  
  113.     -h0            Ignore CD (carrier detect).  If this option
  114.                 is specified a continuous carrier detect is
  115.                 assumed, causing Getty to request Login:'s
  116.                 over the line as soon as it receives a CONNECT
  117.                 message.
  118.  
  119.                 It is suggested you ONLY use this option
  120.                 when combined with -c0
  121.  
  122.     -c0            Do NOT look for a CONNECT message from the
  123.                 modem... useful for dumb modems.
  124.  
  125.     -d0            Normally Getty will disconnect by dropping
  126.                 DTR.  If this option is specified, Getty will
  127.                 use the less reliable +++ ATH0 sequence.
  128.  
  129.                 NOTE: If your modem has the capability to LOCK
  130.                 the COMPUTER'S SERIAL PORT baud rate, it is
  131.                 *strongly* suggested that you do this for +++
  132.                 to be reliable.
  133.  
  134.     -xn            Set debugging level to n.  If specified
  135.                 debugging messages are sent to stdout instead
  136.                 of GETTY:LOGFILE
  137.  
  138.                 Note: to avoid GETTY:LOGFILE getting too
  139.                 large for busy systems, you can always add
  140.                 an entry to your crontab to delete it once
  141.                 a week (or whenever), or use 'trimfile' to
  142.                 trim it.
  143.  
  144.     -l1            add -HLINK option to commands started by
  145.                 Getty.
  146.  
  147.     -b1            add -BAUD <baud> option to commands started by
  148.                 Getty, this informs the run command what the
  149.                 actual connect baud rate is regardless of the
  150.                 serial port communications baud rate (which is
  151.                 already preset by getty for the application)
  152.  
  153.     -0            Kill any already-running Getty for this
  154.                 serial port and unit.
  155.  
  156.     modem-cmds        You may specify up to 16 specific commands
  157.                 to be sent to the modem whenever it is
  158.                 initialized (usually after a disconnect
  159.                 and on startup).  Each command will be
  160.                 sent to the modem with a CR on the end and
  161.                 a seconds delay afterwords.  Example:
  162.  
  163.                 ATS2=.
  164.  
  165.                 This is useful for provided specialized
  166.                 modems with the appropriate initialization
  167.                 strings.
  168.  
  169. EXAMPLE
  170.     ;   Run a Getty for a MultiModem
  171.  
  172.     run >nil: <nil: Getty -Mm -A -B19200
  173.  
  174.     ;   Run a Getty for a Hays Modem
  175.  
  176.     run >nil: <nil: Getty -Mh -B1200 -B2400
  177.  
  178.     ;   Run a Getty for a Hays Modem and use +++ instead of DTR to
  179.     ;   hangup.  NOTE, when using -d0 you should lock the serial port
  180.     ;   baud rate (if possible) or +++ may be unreliable as a hangup
  181.     ;   method.
  182.  
  183.     run >nil: <nil: Getty -Mh -B2400 -d0
  184.  
  185.     ;   Modify options to a Getty already running in the background
  186.  
  187.     Getty -m1        ; Set speaker on during dialing
  188.     Getty -m0        ; speaker off at all times.
  189.     Getty -0        ; kill background Getty
  190.  
  191. EXAMPLE CRONTAB ENTRIES
  192.     Assuming a getty has been run in the background from your
  193.     startup sequence, the most common desire is to disable the
  194.     modem speaker while you are asleep, and enable it at other
  195.     times.    The following crontab entry will accomplish this:
  196.  
  197. 0    23    *    *    *    getty -m0
  198. 0    11    *    *    *    getty -m1
  199.  
  200.     You can also kill (getty -0) or restart getty from your
  201.     crontab, though the prefered method is to leave it running
  202.     and only disable/enable the autoanswer (-r option) for those
  203.     times you wish your modem to not accept calls.
  204.  
  205. EXAMPLE HARDWIRED ENTRY
  206.     Lets say you have two amigas connected together via a permanent
  207.     serial line.  To run AmigaUUCP between them you want to run Getty
  208.     on one of them (NOT BOTH!).  On machine A you would run Getty
  209.     as follows:
  210.  
  211.     (Machine A):
  212.  
  213.         run >nil: <nil: Getty -B9600 -Md -h0 -c0
  214.  
  215.     The Passwd entry for the remote machine would be something like:
  216.     (Machine A)
  217.  
  218.         machb,uupc,203,0,(UUCP-NOPAS),ram:,uucico -h0 -o
  219.  
  220.     Machine B would have an L.sys entry that looks like:
  221.  
  222.         macha Any SER: 9600 "" "" \r\r\c ogin: machb sword: uupc
  223.  
  224.     In the above configuration, with Getty running on Machine A, Machine
  225.     B would run uucico (usually every X minutes from dcron) using:
  226.  
  227.         1> uucico -smacha -h0 -o -xx
  228.  
  229.     UNFORTUNATELY, with a permanent serial line you cannot run Getty
  230.     on BOTH machines.  This will cause one Getty to echo the other's
  231.     login message and vise versa, causing an infinite loop.  So only
  232.     one machine can poll.
  233.  
  234. FILES/REQUIRES
  235.     GETTY:PASSWD
  236.     GETTY:Getty-Header
  237.     GETTY:LOGFILE
  238.  
  239.     The NULL: handler must be mounted
  240.  
  241. REFERENCES
  242.     Getty
  243.     Passwd
  244.  
  245.