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

Annotation of src/etc/remote, Revision 1.6

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