150472Speter# $FreeBSD$
238738Sbrian#
337Srgrimes#	@(#)remote	5.2 (Berkeley) 6/30/90
437Srgrimes#
537Srgrimes# remote -- remote host description file
637Srgrimes# see tip(1), remote(5)
737Srgrimes#
8121309Simp# at	ACU type
9121309Simp# br	bit rate (defaults to 9600)
10121309Simp# cu	call unit (default is dv)
11121309Simp# du	make a call flag (dial up)
1237Srgrimes# dv	device to use for the tty
1337Srgrimes# el	EOL marks (default is NULL)
14121309Simp# fs	frame size (default is BUFSIZ) -- used in buffering writes on
15121309Simp#	receive operations
16121309Simp# ie	input EOF marks (default is NULL)
17121309Simp# oe	output EOF string (default is NULL)
18121309Simp# pa	The parity type to use: even, odd, none, zero, one (default even)
1937Srgrimes# pn	phone numbers (@ =>'s search phones file; possibly taken from
2037Srgrimes#	PHONES environment variable)
2137Srgrimes# tc	to continue a capability
2237Srgrimes
23130151Sschweikh# Example systems
24121309Simpunixshell|Unix Access:\
25121309Simp	:pn=\@:tc=unix57600:
26121309Simpdosbbs|DOS-based BBS:\
27121309Simp	:pn=\@:tc=dos57600:
28292Salm
2937Srgrimes# UNIX system definitions
30121309Simpunix57600|57600 Baud dial-out to a UNIX system:\
31121309Simp	:el=^U^C^R^O^D^S^Q:ie=%$:oe=^D:tc=dial57600:
32121309Simpunix33600|33600 Baud dial-out to a UNIX system:\
33121309Simp	:el=^U^C^R^O^D^S^Q:ie=%$:oe=^D:tc=dial33600:
3437Srgrimes
35292Salm# DOS system definitions
36121309Simpdos57600|57600 Baud dial-out to a DOS system:\
37121309Simp	:el=^U^C^R^O^D^S^Q:ie=%$:oe=^Z:pa=none:tc=dial57600:
38292Salm
39121309Simp# 33.6k and 56k modems run the com port at 115200 bps to allow for the
40121309Simp# compression performed in the modem.  Note that some serial hardware
41121309Simp# does not support speeds above 38400 bps and that speeds above that have
42121309Simp# never been formally standardized.  Modern architectures with 16550 or
43121309Simp# better UARTs typically have no issues with the higher speeds.
44121309Simpdial57600|57600 Baud Hayes attributes:\
45121309Simp	br#115200:tc=dial:
46121309Simpdial33600|33600 Baud Hayes attributes:\
47121309Simp	br#115200:tc=dial:
48121309Simp# 14.4k and 28.8k modems ran the port at 4x.  Some rare 19.2 baud modems
49121309Simp# did too, but those aren't included in this example.
50121309Simpdial28800|28800 Baud Hayes attributes:\
51121309Simp	br#115200:tc=dial:
52121309Simpdial14400|14400 Baud Hayes attributes:\
53121309Simp	br#57600:tc=dial:
54121309Simpdial|Generic dialing parameters:\
55180615Smarcel	:dv=/dev/cuau0:cu=/dev/cuau0:at=hayes:du:pa=none:
5637Srgrimes
5737Srgrimes# Hardwired line
58180615Smarcelcuau0c|cua0c:dv=/dev/cuau0:br#9600:pa=none:
5972809Snik
6072809Snik# Finger friendly shortcuts
61180680Smarceluart0|com1:dv=/dev/cuau0:br#9600:pa=none:
62180680Smarceluart1|com2:dv=/dev/cuau1:br#9600:pa=none:
63180680Smarceluart2|com3:dv=/dev/cuau2:br#9600:pa=none:
64180680Smarceluart3|com4:dv=/dev/cuau3:br#9600:pa=none:
65180680Smarceluart4|com5:dv=/dev/cuau4:br#9600:pa=none:
66180680Smarceluart5|com6:dv=/dev/cuau5:br#9600:pa=none:
67180680Smarceluart6|com7:dv=/dev/cuau6:br#9600:pa=none:
68180680Smarceluart7|com8:dv=/dev/cuau7:br#9600:pa=none:
69184352Sthompsaucom1:dv=/dev/cuaU0:br#9600:pa=none:
70184352Sthompsaucom2:dv=/dev/cuaU1:br#9600:pa=none:
71184352Sthompsaucom3:dv=/dev/cuaU2:br#9600:pa=none:
72184352Sthompsaucom4:dv=/dev/cuaU3:br#9600:pa=none:
73184352Sthompsaucom5:dv=/dev/cuaU4:br#9600:pa=none:
74184352Sthompsaucom6:dv=/dev/cuaU5:br#9600:pa=none:
75184352Sthompsaucom7:dv=/dev/cuaU6:br#9600:pa=none:
76184352Sthompsaucom8:dv=/dev/cuaU7:br#9600:pa=none:
77