[BACK]Return to remote CVS log [TXT][DIR] Up to [local] / src / etc

Diff for /src/etc/Attic/remote between version 1.4 and 1.5

version 1.4, 1997/09/03 21:26:19 version 1.5, 2001/08/11 00:05:53
Line 1 
Line 1 
 #       $OpenBSD$  #       from: @(#)remote        8.1 (Berkeley) 6/10/93
 #       @(#)remote      5.2 (Berkeley) 6/30/90  
 #  #
 # remote -- remote host description file  # remote -- remote host description database
 # see tip(1), remote(5)  # see tip(1), cgetcap(3), phones(5), remote(5)
 #  #
 # dv    device to use for the tty  # Capabilities used in examples:
 # el    EOL marks (default is NULL)  #
 # du    make a call flag (dial up)  #   at  ACU type
 # pn    phone numbers (@ =>'s search phones file; possibly taken from  #   br  baud rate (defaults to 300)
 #       PHONES environment variable)  #   dc  direct connect
 # at    ACU type  #   du  make a call flag (dial up)
 # ie    input EOF marks (default is NULL)  #   dv  device to use for the tty
 # oe    output EOF string (default is NULL)  #   el  EOL marks (default is NULL)
 # cu    call unit (default is dv)  #   ie  input EOF marks (default is NULL)
 # br    baud rate (defaults to 300)  #   oe  output EOF string (default is NULL)
 # fs    frame size (default is BUFSIZ) -- used in buffering writes on  #   pa  parity
 #       receive operations  #   pn  phone #, '\@' means use the phones(5) file
 # tc    to continue a capability  #   tc  include the named system description
   #
   # Most OpenBSD architectures use /dev/tty00, /dev/cua00, etc.
   # for the 'standard' serial ports. Some architectures use
   # /dev/ttya, /dev/cuaa, etc. The samples provide descriptions
   # for the first serial port in each style.
   #
   # A few architectures such as the Alpha, HPPA, or mvme88k either
   # don't provide a serial port by default or have more complex
   # naming conventions.
   #
   # In all cases make sure you are using the appropriate device
   # name for the port you wish to access.
   #
   # System names can be anything, the samples use the device name
   # for simplicity.
   #
   # NOTE:
   #       a) Multiple :tc=XXX: capabilities are allowed, so that
   #          various general pieces can be assembled into one
   #          system description.
   #       b) Only the first capability with the same name is
   #          used. So capabilitites included a with :tc=XXX: can
   #          be overridden by assigning them a value before
   #          including them. e.g. ":oe=^Z:" in doshost below.
   #
   # See cgetcap(3) for details on capability databases.
   # --------------------------------------------------------------
   
 # UNIX system definitions  # General definitions used in :tc=XXX: capabilities below
 unix19200|19200 Baud dial-out to another UNIX system:\  #
         :el=^U^C^R^O^D^S^Q:ie=%$:oe=^D:tc=dial1200:  direct:\
 unix1200|1200 Baud dial-out to another UNIX system:\          :dc:
         :el=^U^C^R^O^D^S^Q:ie=%$:oe=^D:tc=dial1200:  
 unix300|300 Baud dial-out to another UNIX system:\  
         :el=^U^C^R^O^D^S^Q:ie=%$:oe=^D:tc=dial300:  
   
 # General dialer definitions used below  dialup:\
           :du:at=hayes:pn=\@:
   
   doshost:\
           :oe=^Z:tc=unixhost:
   
   unixhost:\
           :pa=none:br#9600:el=^U^C^R^O^D^S^Q:ie=%$:oe=^D:
   
   # Sample directly connected lines. Directly connected lines are
   # most commonly used for serial consoles.
 #  #
 dialout:\  tty00|For Amiga,i386,mac68k,mvmeppc,powerpc,vax,hp300:\
         :dv=/dev/tty00:br#19200:cu=/dev/cua00:at=hayes:du:          :dv=/dev/tty00:tc=direct:tc=unixhost:
   
   ttya|For sun3,sparc,mvme68k:\
           :dv=/dev/ttya:tc=direct:tc=unixhost:
   
   # Sample dial out lines.
   #
   cua00|For Amiga,i386,mac68k,mvmeppc,powerpc,vax,hp300:\
           :dv=/dev/cua00:tc=dialup:tc=unixhost:
   cuaa|For sun3,sparc,mvme68k:\
           :dv=/dev/cuaa:tc=dialup:tc=unixhost:

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.5