Source code pulled from OpenBSD for OpenNTPD. The place to contribute to this code is via the OpenBSD CVS tree.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

75 lines
2.3 KiB

  1. # from: @(#)remote 8.1 (Berkeley) 6/10/93
  2. #
  3. # remote -- remote host description database
  4. # see tip(1), cgetcap(3), phones(5), remote(5)
  5. #
  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. # General definitions used in :tc=XXX: capabilities below
  47. #
  48. direct:\
  49. :dc:
  50. dialup:\
  51. :du:at=hayes:pn=\@:
  52. doshost:\
  53. :oe=^Z:tc=unixhost:
  54. unixhost:\
  55. :pa=none:br#9600:el=^U^C^R^O^D^S^Q:ie=%$:oe=^D:
  56. # Sample directly connected lines. Directly connected lines are
  57. # most commonly used for serial consoles.
  58. #
  59. tty00|For Amiga,i386,mac68k,mvmeppc,powerpc,vax,hp300:\
  60. :dv=/dev/tty00:tc=direct:tc=unixhost:
  61. ttya|For sun3,sparc,mvme68k:\
  62. :dv=/dev/ttya:tc=direct:tc=unixhost:
  63. # Sample dial out lines.
  64. #
  65. cua00|For Amiga,i386,mac68k,mvmeppc,powerpc,vax,hp300:\
  66. :dv=/dev/cua00:tc=dialup:tc=unixhost:
  67. cuaa|For sun3,sparc,mvme68k:\
  68. :dv=/dev/cuaa:tc=dialup:tc=unixhost: