sync
[bitrig.git] / share / man / man5 / sysctl.conf.5
blob810f126a26ef289dcc72e6e3559f5e7ca9bbe03a
1 .\" $OpenBSD: sysctl.conf.5,v 1.11 2007/05/31 19:19:58 jmc Exp $
2 .\"
3 .\" Copyright (c) 1998 Todd C. Miller <Todd.Miller@courtesan.com>
4 .\"
5 .\" Permission to use, copy, modify, and distribute this software for any
6 .\" purpose with or without fee is hereby granted, provided that the above
7 .\" copyright notice and this permission notice appear in all copies.
8 .\"
9 .\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 .\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 .\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 .\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 .\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 .\"
17 .Dd $Mdocdate: May 31 2007 $
18 .Dt SYSCTL.CONF 5
19 .Os
20 .Sh NAME
21 .Nm sysctl.conf
22 .Nd sysctl variables to set at system startup
23 .Sh DESCRIPTION
24 .Nm
25 contains a list of
26 .Xr sysctl 8
27 variable assignments that is read at system startup by
28 .Xr rc 8
29 early on in the boot sequence.
30 .Pp
31 The file is made up of
32 .Xr sysctl 8
33 variable assignments
34 .Pq Ar variable Ns = Ns Ar value
35 with comments designated by a hash mark
36 .Pq Sq # .
37 .Sh FILES
38 .Bl -tag -width /etc/sysctl.conf -compact
39 .It Pa /etc/sysctl.conf
40 .El
41 .Sh EXAMPLES
42 To turn on IP forwarding, one would use the following line:
43 .Bd -literal -offset indent
44 net.inet.ip.forwarding=1
45 .Ed
46 .Pp
47 To cause the kernel to reboot on a panic, instead of dropping into
48 the debugger, the following can be used:
49 .Bd -literal -offset indent
50 ddb.panic=0
51 .Ed
52 .Sh SEE ALSO
53 .Xr rc 8 ,
54 .Xr sysctl 8
55 .Sh HISTORY
57 .Nm
58 file first appeared in
59 .Ox 2.3 .