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

Annotation of src/etc/remote, Revision 1.9

1.9     ! david       1: #      $OpenBSD$
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
                      5: # see tip(1), cgetcap(3), phones(5), remote(5)
1.1       deraadt     6: #
1.5       krw         7: # Capabilities used in examples:
                      8: #
                      9: #   at ACU type
                     10: #   br baud rate (defaults to 300)
                     11: #   dc direct connect
                     12: #   du make a call flag (dial up)
                     13: #   dv device to use for the tty
                     14: #   el EOL marks (default is NULL)
                     15: #   ie input EOF marks (default is NULL)
                     16: #   oe output EOF string (default is NULL)
                     17: #   pa parity
                     18: #   pn phone #, '\@' means use the phones(5) file
                     19: #   tc include the named system description
                     20: #
                     21: # Most OpenBSD architectures use /dev/tty00, /dev/cua00, etc.
                     22: # for the 'standard' serial ports. Some architectures use
                     23: # /dev/ttya, /dev/cuaa, etc. The samples provide descriptions
                     24: # for the first serial port in each style.
                     25: #
                     26: # A few architectures such as the Alpha, HPPA, or mvme88k either
                     27: # don't provide a serial port by default or have more complex
                     28: # naming conventions.
                     29: #
                     30: # In all cases make sure you are using the appropriate device
                     31: # name for the port you wish to access.
                     32: #
                     33: # System names can be anything, the samples use the device name
                     34: # for simplicity.
                     35: #
                     36: # NOTE:
                     37: #       a) Multiple :tc=XXX: capabilities are allowed, so that
                     38: #          various general pieces can be assembled into one
                     39: #          system description.
1.7       deraadt    40: #       b) Only the first capability with the same name is
1.5       krw        41: #          used. So capabilitites included a with :tc=XXX: can
1.7       deraadt    42: #          be overridden by assigning them a value before
1.5       krw        43: #          including them. e.g. ":oe=^Z:" in doshost below.
                     44: #
                     45: # See cgetcap(3) for details on capability databases.
                     46: # --------------------------------------------------------------
                     47:
                     48: # General definitions used in :tc=XXX: capabilities below
                     49: #
                     50: direct:\
                     51:        :dc:
                     52:
                     53: dialup:\
                     54:         :du:at=hayes:pn=\@:
                     55:
                     56: doshost:\
                     57:        :oe=^Z:tc=unixhost:
                     58:
                     59: unixhost:\
                     60:        :pa=none:br#9600:el=^U^C^R^O^D^S^Q:ie=%$:oe=^D:
                     61:
                     62: # Sample directly connected lines. Directly connected lines are
                     63: # most commonly used for serial consoles.
                     64: #
1.8       miod       65: tty00|For hp300,i386,mac68k,macppc,mvmeppc,vax:\
1.5       krw        66:        :dv=/dev/tty00:tc=direct:tc=unixhost:
                     67:
1.8       miod       68: ttya|For sparc,mvme68k:\
1.5       krw        69:        :dv=/dev/ttya:tc=direct:tc=unixhost:
1.1       deraadt    70:
1.5       krw        71: # Sample dial out lines.
1.1       deraadt    72: #
1.8       miod       73: cua00|For hp300,i386,mac68k,macppc,mvmeppc,vax:\
1.5       krw        74:        :dv=/dev/cua00:tc=dialup:tc=unixhost:
1.8       miod       75: cuaa|For sparc,mvme68k:\
1.5       krw        76:        :dv=/dev/cuaa:tc=dialup:tc=unixhost: