blob: e658bbfb641fa643ce64be3c8515bff5f71a44a0 [file] [log] [blame]
Shen Feng760df932009-04-02 16:57:20 -07001Documentation for /proc/sys/net/* kernel version 2.4.0-test11-pre4
2 (c) 1999 Terrehon Bowden <terrehon@pacbell.net>
3 Bodo Bauer <bb@ricochet.net>
4 (c) 2000 Jorge Nerin <comandante@zaralinux.com>
5 (c) 2009 Shen Feng <shen@cn.fujitsu.com>
6
7For general info and legal blurb, please look in README.
8
9==============================================================
10
11This file contains the documentation for the sysctl files in
12/proc/sys/net and is valid for Linux kernel version 2.4.0-test11-pre4.
13
14The interface to the networking parts of the kernel is located in
15/proc/sys/net. The following table shows all possible subdirectories.You may
16see only some of them, depending on your kernel's configuration.
17
18
19Table : Subdirectories in /proc/sys/net
20..............................................................................
21 Directory Content Directory Content
22 core General parameter appletalk Appletalk protocol
23 unix Unix domain sockets netrom NET/ROM
24 802 E802 protocol ax25 AX25
25 ethernet Ethernet protocol rose X.25 PLP layer
26 ipv4 IP version 4 x25 X.25 protocol
27 ipx IPX token-ring IBM token ring
28 bridge Bridging decnet DEC net
Ying Xuecc79dd12013-06-17 10:54:37 -040029 ipv6 IP version 6 tipc TIPC
Shen Feng760df932009-04-02 16:57:20 -070030..............................................................................
31
321. /proc/sys/net/core - Network core options
33-------------------------------------------------------
34
Eric Dumazet0a148422011-04-20 09:27:32 +000035bpf_jit_enable
36--------------
37
38This enables Berkeley Packet Filter Just in Time compiler.
39Currently supported on x86_64 architecture, bpf_jit provides a framework
40to speed packet filtering, the one used by tcpdump/libpcap for example.
41Values :
42 0 - disable the JIT (default value)
43 1 - enable the JIT
44 2 - enable the JIT and ask the compiler to emit traces on kernel log.
45
Shan Weic60f6aa2012-04-26 16:52:52 +000046dev_weight
47--------------
48
49The maximum number of packets that kernel can handle on a NAPI interrupt,
50it's a Per-CPU variable.
51Default: 64
52
Eliezer Tamir2d48d672013-06-24 10:28:03 +030053low_latency_read
54----------------
55Low latency busy poll timeout for socket reads. (needs CONFIG_NET_LL_RX_POLL)
56Approximate time in us to spin waiting for packets on the device queue.
57This sets the default value of the SO_LL socket option.
58Can be set or overridden per socket by setting socket option SO_LL.
59Recommended value is 50. May increase power usage.
60Default: 0 (off)
61
Eliezer Tamir06021292013-06-10 11:39:50 +030062low_latency_poll
63----------------
Eliezer Tamir2d48d672013-06-24 10:28:03 +030064Low latency busy poll timeout for poll and select. (needs CONFIG_NET_LL_RX_POLL)
Eliezer Tamir06021292013-06-10 11:39:50 +030065Approximate time in us to spin waiting for packets on the device queue.
Eliezer Tamir2d48d672013-06-24 10:28:03 +030066Recommended value depends on the number of sockets you poll on.
67For several sockets 50, for several hundreds 100.
68For more than that you probably want to use epoll.
69Note that only sockets with SO_LL set will be busy polled, so you want to either
70selectively set SO_LL on those sockets or set sysctl.net.low_latency_read globally.
71May increase power usage.
Eliezer Tamir06021292013-06-10 11:39:50 +030072Default: 0 (off)
73
Shen Feng760df932009-04-02 16:57:20 -070074rmem_default
75------------
76
77The default setting of the socket receive buffer in bytes.
78
79rmem_max
80--------
81
82The maximum receive socket buffer size in bytes.
83
84wmem_default
85------------
86
87The default setting (in bytes) of the socket send buffer.
88
89wmem_max
90--------
91
92The maximum send socket buffer size in bytes.
93
94message_burst and message_cost
95------------------------------
96
97These parameters are used to limit the warning messages written to the kernel
98log from the networking code. They enforce a rate limit to make a
99denial-of-service attack impossible. A higher message_cost factor, results in
100fewer messages that will be written. Message_burst controls when messages will
101be dropped. The default settings limit warning messages to one every five
102seconds.
103
104warnings
105--------
106
107This controls console messages from the networking stack that can occur because
108of problems on the network like duplicate address or bad checksums. Normally,
109this should be enabled, but if the problem persists the messages can be
110disabled.
111
112netdev_budget
113-------------
114
115Maximum number of packets taken from all interfaces in one polling cycle (NAPI
116poll). In one polling cycle interfaces which are registered to polling are
Rami Rosen3cc75872013-05-17 09:10:34 +0000117probed in a round-robin manner.
Shen Feng760df932009-04-02 16:57:20 -0700118
119netdev_max_backlog
120------------------
121
122Maximum number of packets, queued on the INPUT side, when the interface
123receives packets faster than kernel can process them.
124
Eric Dumazet3b098e22010-05-15 23:57:10 -0700125netdev_tstamp_prequeue
126----------------------
127
128If set to 0, RX packet timestamps can be sampled after RPS processing, when
129the target CPU processes packets. It might give some delay on timestamps, but
130permit to distribute the load on several cpus.
131
132If set to 1 (default), timestamps are sampled as soon as possible, before
133queueing.
134
Shen Feng760df932009-04-02 16:57:20 -0700135optmem_max
136----------
137
138Maximum ancillary buffer size allowed per socket. Ancillary data is a sequence
139of struct cmsghdr structures with appended data.
140
1412. /proc/sys/net/unix - Parameters for Unix domain sockets
142-------------------------------------------------------
143
Li Xiaodong45dad7b2009-04-02 16:57:21 -0700144There is only one file in this directory.
145unix_dgram_qlen limits the max number of datagrams queued in Unix domain
Li Zefanca8b9952009-04-13 14:39:36 -0700146socket's buffer. It will not take effect unless PF_UNIX flag is specified.
Shen Feng760df932009-04-02 16:57:20 -0700147
148
1493. /proc/sys/net/ipv4 - IPV4 settings
150-------------------------------------------------------
151Please see: Documentation/networking/ip-sysctl.txt and ipvs-sysctl.txt for
152descriptions of these entries.
153
154
1554. Appletalk
156-------------------------------------------------------
157
158The /proc/sys/net/appletalk directory holds the Appletalk configuration data
159when Appletalk is loaded. The configurable parameters are:
160
161aarp-expiry-time
162----------------
163
164The amount of time we keep an ARP entry before expiring it. Used to age out
165old hosts.
166
167aarp-resolve-time
168-----------------
169
170The amount of time we will spend trying to resolve an Appletalk address.
171
172aarp-retransmit-limit
173---------------------
174
175The number of times we will retransmit a query before giving up.
176
177aarp-tick-time
178--------------
179
180Controls the rate at which expires are checked.
181
182The directory /proc/net/appletalk holds the list of active Appletalk sockets
183on a machine.
184
185The fields indicate the DDP type, the local address (in network:node format)
186the remote address, the size of the transmit pending queue, the size of the
187received queue (bytes waiting for applications to read) the state and the uid
188owning the socket.
189
190/proc/net/atalk_iface lists all the interfaces configured for appletalk.It
191shows the name of the interface, its Appletalk address, the network range on
192that address (or network number for phase 1 networks), and the status of the
193interface.
194
195/proc/net/atalk_route lists each known network route. It lists the target
196(network) that the route leads to, the router (may be directly connected), the
197route flags, and the device the route is using.
198
199
2005. IPX
201-------------------------------------------------------
202
203The IPX protocol has no tunable values in proc/sys/net.
204
205The IPX protocol does, however, provide proc/net/ipx. This lists each IPX
206socket giving the local and remote addresses in Novell format (that is
207network:node:port). In accordance with the strange Novell tradition,
208everything but the port is in hex. Not_Connected is displayed for sockets that
209are not tied to a specific remote address. The Tx and Rx queue sizes indicate
210the number of bytes pending for transmission and reception. The state
211indicates the state the socket is in and the uid is the owning uid of the
212socket.
213
214The /proc/net/ipx_interface file lists all IPX interfaces. For each interface
215it gives the network number, the node number, and indicates if the network is
216the primary network. It also indicates which device it is bound to (or
217Internal for internal networks) and the Frame Type if appropriate. Linux
218supports 802.3, 802.2, 802.2 SNAP and DIX (Blue Book) ethernet framing for
219IPX.
220
221The /proc/net/ipx_route table holds a list of IPX routes. For each route it
222gives the destination network, the router node (or Directly) and the network
223address of the router (or Connected) for internal networks.
Ying Xuecc79dd12013-06-17 10:54:37 -0400224
2256. TIPC
226-------------------------------------------------------
227
228The TIPC protocol now has a tunable for the receive memory, similar to the
229tcp_rmem - i.e. a vector of 3 INTEGERs: (min, default, max)
230
231 # cat /proc/sys/net/tipc/tipc_rmem
232 4252725 34021800 68043600
233 #
234
235The max value is set to CONN_OVERLOAD_LIMIT, and the default and min values
236are scaled (shifted) versions of that same value. Note that the min value
237is not at this point in time used in any meaningful way, but the triplet is
238preserved in order to be consistent with things like tcp_rmem.