1125410Sgrehan#
2125410Sgrehan# $FreeBSD$
3125410Sgrehan#	@(#)ttys	5.1 (Berkeley) 4/17/89
4125410Sgrehan#
5125410Sgrehan# This file specifies various information about terminals on the system.
6125410Sgrehan# It is used by several different programs.  Common entries for the
7125410Sgrehan# various columns include:
8125410Sgrehan#
9125410Sgrehan# name  The name of the terminal device.
10125410Sgrehan#
11125410Sgrehan# getty The program to start running on the terminal.  Typically a
12125410Sgrehan#       getty program, as the name implies.  Other common entries
13125410Sgrehan#       include none, when no getty is needed, and xdm, to start the
14125410Sgrehan#       X Window System.
15125410Sgrehan#
16125410Sgrehan# type The initial terminal type for this port.  For hardwired
17125410Sgrehan#      terminal lines, this will contain the type of terminal used.
18199243Sed#      For virtual consoles, the correct type is typically xterm.
19220154Sed#      Other common values include dialup for incoming modem ports, and
20220154Sed#      unknown when the terminal type cannot be predetermined.
21125410Sgrehan#
22125410Sgrehan# status Must be on or off.  If on, init will run the getty program on
23125410Sgrehan#        the specified port.  If the word "secure" appears, this tty
24125410Sgrehan#        allows root login.
25125410Sgrehan#
26125410Sgrehan# name	getty				type	status		comments
27125410Sgrehan#
28125410Sgrehan# If console is marked "insecure", then init will ask for the root password
29125410Sgrehan# when going to single-user mode.
30125410Sgrehanconsole	none				unknown	off secure
31125410Sgrehan#
32199243Sedttyv0	"/usr/libexec/getty Pc"		xterm	on  secure
33125410Sgrehan# Virtual terminals
34199243Sedttyv1	"/usr/libexec/getty Pc"		xterm	on  secure
35199243Sedttyv2	"/usr/libexec/getty Pc"		xterm	on  secure
36199243Sedttyv3	"/usr/libexec/getty Pc"		xterm	on  secure
37199243Sedttyv4	"/usr/libexec/getty Pc"		xterm	on  secure
38199243Sedttyv5	"/usr/libexec/getty Pc"		xterm	on  secure
39199243Sedttyv6	"/usr/libexec/getty Pc"		xterm	on  secure
40199243Sedttyv7	"/usr/libexec/getty Pc"		xterm	on  secure
41170088Sdougb#ttyv8	"/usr/local/bin/xdm -nodaemon"	xterm	off secure
42125410Sgrehan# Serial terminals
43125410Sgrehan# The 'dialup' keyword identifies dialin lines to login, fingerd etc.
44166250Smarcelttyu0	"/usr/libexec/getty std.9600"	vt100	on  secure
45166250Smarcelttyu1	"/usr/libexec/getty std.9600"	dialup	off secure
46166250Smarcelttyu2	"/usr/libexec/getty std.9600"	dialup	off secure
47166250Smarcelttyu3	"/usr/libexec/getty std.9600"	dialup	off secure
48125410Sgrehan# Dumb console
49125410Sgrehandcons	"/usr/libexec/getty std.9600"	vt100	off secure
50