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

Annotation of src/etc/remote, Revision 1.13

1.13    ! deraadt     1: #      $OpenBSD: remote,v 1.12 2010/06/29 17:17:53 nicm Exp $
1.5       krw         2: #      from: @(#)remote        8.1 (Berkeley) 6/10/93
1.1       deraadt     3: #
1.5       krw         4: # remote -- remote host description database
1.12      nicm        5: # see tip(1), cgetcap(3), remote(5)
1.1       deraadt     6: #
1.5       krw         7: # Capabilities used in examples:
                      8: #
                      9: #   br baud rate (defaults to 300)
                     10: #   dc direct connect
                     11: #   dv device to use for the tty
                     12: #   el EOL marks (default is NULL)
                     13: #   ie input EOF marks (default is NULL)
                     14: #   oe output EOF string (default is NULL)
                     15: #   pa parity
                     16: #   tc include the named system description
                     17: #
                     18: # Most OpenBSD architectures use /dev/tty00, /dev/cua00, etc.
                     19: # for the 'standard' serial ports. Some architectures use
                     20: # /dev/ttya, /dev/cuaa, etc. The samples provide descriptions
                     21: # for the first serial port in each style.
                     22: #
                     23: # A few architectures such as the Alpha, HPPA, or mvme88k either
                     24: # don't provide a serial port by default or have more complex
                     25: # naming conventions.
                     26: #
                     27: # In all cases make sure you are using the appropriate device
                     28: # name for the port you wish to access.
                     29: #
                     30: # System names can be anything, the samples use the device name
                     31: # for simplicity.
                     32: #
                     33: # NOTE:
                     34: #       a) Multiple :tc=XXX: capabilities are allowed, so that
                     35: #          various general pieces can be assembled into one
                     36: #          system description.
1.7       deraadt    37: #       b) Only the first capability with the same name is
1.10      jmc        38: #          used. So capabilities with :tc=XXX: can be
                     39: #          overridden by assigning them a value before
1.5       krw        40: #          including them. e.g. ":oe=^Z:" in doshost below.
                     41: #
                     42: # See cgetcap(3) for details on capability databases.
                     43: # --------------------------------------------------------------
                     44:
                     45: # General definitions used in :tc=XXX: capabilities below
                     46: #
                     47: direct:\
                     48:        :dc:
                     49:
                     50: doshost:\
                     51:        :oe=^Z:tc=unixhost:
                     52:
                     53: unixhost:\
                     54:        :pa=none:br#9600:el=^U^C^R^O^D^S^Q:ie=%$:oe=^D:
                     55:
1.13    ! deraadt    56: tty00|For hp300,i386,mac68k,macppc,vax:\
1.5       krw        57:        :dv=/dev/tty00:tc=direct:tc=unixhost:
                     58:
1.8       miod       59: ttya|For sparc,mvme68k:\
1.5       krw        60:        :dv=/dev/ttya:tc=direct:tc=unixhost: