proc.txt
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:70k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. ------------------------------------------------------------------------------
  2.                        T H E  /proc   F I L E S Y S T E M
  3. ------------------------------------------------------------------------------
  4. /proc/sys         Terrehon Bowden <terrehon@pacbell.net>        October 7 1999
  5.                   Bodo Bauer <bb@ricochet.net>
  6. 2.4.x update   Jorge Nerin <comandante@zaralinux.com>      November 14 2000
  7. ------------------------------------------------------------------------------
  8. Version 1.3                                              Kernel version 2.2.12
  9.       Kernel version 2.4.0-test11-pre4
  10. ------------------------------------------------------------------------------
  11. Table of Contents
  12. -----------------
  13.   0     Preface
  14.   0.1 Introduction/Credits
  15.   0.2 Legal Stuff
  16.   1 Collecting System Information
  17.   1.1 Process-Specific Subdirectories
  18.   1.2 Kernel data
  19.   1.3 IDE devices in /proc/ide
  20.   1.4 Networking info in /proc/net
  21.   1.5 SCSI info
  22.   1.6 Parallel port info in /proc/parport
  23.   1.7 TTY info in /proc/tty
  24.   2 Modifying System Parameters
  25.   2.1 /proc/sys/fs - File system data
  26.   2.2 /proc/sys/fs/binfmt_misc - Miscellaneous binary formats
  27.   2.3 /proc/sys/kernel - general kernel parameters
  28.   2.4 /proc/sys/vm - The virtual memory subsystem
  29.   2.5 /proc/sys/dev - Device specific parameters
  30.   2.6 /proc/sys/sunrpc - Remote procedure calls
  31.   2.7 /proc/sys/net - Networking stuff
  32.   2.8 /proc/sys/net/ipv4 - IPV4 settings
  33.   2.9 Appletalk
  34.   2.10 IPX
  35. ------------------------------------------------------------------------------
  36. Preface
  37. ------------------------------------------------------------------------------
  38. 0.1 Introduction/Credits
  39. ------------------------
  40. This documentation is  part of a soon (or  so we hope) to be  released book on
  41. the SuSE  Linux distribution. As  there is  no complete documentation  for the
  42. /proc file system and we've used  many freely available sources to write these
  43. chapters, it  seems only fair  to give the work  back to the  Linux community.
  44. This work is  based on the 2.2.*  kernel version and the  upcoming 2.4.*. I'm
  45. afraid it's still far from complete, but we  hope it will be useful. As far as
  46. we know, it is the first 'all-in-one' document about the /proc file system. It
  47. is focused  on the Intel  x86 hardware,  so if you  are looking for  PPC, ARM,
  48. SPARC, APX, etc., features, you probably  won't find what you are looking for.
  49. It also only covers IPv4 networking, not IPv6 nor other protocols - sorry. But
  50. additions and patches  are welcome and will  be added to this  document if you
  51. mail them to Bodo.
  52. We'd like  to  thank Alan Cox, Rik van Riel, and Alexey Kuznetsov and a lot of
  53. other people for help compiling this documentation. We'd also like to extend a
  54. special thank  you to Andi Kleen for documentation, which we relied on heavily
  55. to create  this  document,  as well as the additional information he provided.
  56. Thanks to  everybody  else  who contributed source or docs to the Linux kernel
  57. and helped create a great piece of software... :)
  58. If you  have  any comments, corrections or additions, please don't hesitate to
  59. contact Bodo  Bauer  at  bb@ricochet.net.  We'll  be happy to add them to this
  60. document.
  61. The   latest   version    of   this   document   is    available   online   at
  62. http://skaro.nightcrawler.com/~bb/Docs/Proc as HTML version.
  63. If  the above  direction does  not works  for you,  ypu could  try the  kernel
  64. mailing  list  at  linux-kernel@vger.kernel.org  and/or try  to  reach  me  at
  65. comandante@zaralinux.com.
  66. 0.2 Legal Stuff
  67. ---------------
  68. We don't  guarantee  the  correctness  of this document, and if you come to us
  69. complaining about  how  you  screwed  up  your  system  because  of  incorrect
  70. documentation, we won't feel responsible...
  71. ------------------------------------------------------------------------------
  72. CHAPTER 1: COLLECTING SYSTEM INFORMATION
  73. ------------------------------------------------------------------------------
  74. ------------------------------------------------------------------------------
  75. In This Chapter
  76. ------------------------------------------------------------------------------
  77. * Investigating  the  properties  of  the  pseudo  file  system  /proc and its
  78.   ability to provide information on the running Linux system
  79. * Examining /proc's structure
  80. * Uncovering  various  information  about the kernel and the processes running
  81.   on the system
  82. ------------------------------------------------------------------------------
  83. The proc  file  system acts as an interface to internal data structures in the
  84. kernel. It  can  be  used to obtain information about the system and to change
  85. certain kernel parameters at runtime (sysctl).
  86. First, we'll  take  a  look  at the read-only parts of /proc. In Chapter 2, we
  87. show you how you can use /proc/sys to change settings.
  88. 1.1 Process-Specific Subdirectories
  89. -----------------------------------
  90. The directory  /proc  contains  (among other things) one subdirectory for each
  91. process running on the system, which is named after the process ID (PID).
  92. The link  self  points  to  the  process reading the file system. Each process
  93. subdirectory has the entries listed in Table 1-1.
  94. Table 1-1: Process specific entries in /proc 
  95. ..............................................................................
  96.  File    Content                                        
  97.  cmdline Command line arguments                         
  98.  cpu  Current and last cpu in wich it was executed (2.4)(smp)
  99.  cwd  Link to the current working directory
  100.  environ Values of environment variables      
  101.  exe  Link to the executable of this process
  102.  fd      Directory, which contains all file descriptors 
  103.  maps  Memory maps to executables and library files (2.4)
  104.  mem     Memory held by this process                    
  105.  root  Link to the root directory of this process
  106.  stat    Process status                                 
  107.  statm   Process memory status information              
  108.  status  Process status in human readable form          
  109. ..............................................................................
  110. For example, to get the status information of a process, all you have to do is
  111. read the file /proc/PID/status:
  112.   >cat /proc/self/status 
  113.   Name:   cat 
  114.   State:  R (running) 
  115.   Pid:    5452 
  116.   PPid:   743 
  117.   TracerPid:      0 (2.4)
  118.   Uid:    501     501     501     501 
  119.   Gid:    100     100     100     100 
  120.   Groups: 100 14 16 
  121.   VmSize:     1112 kB 
  122.   VmLck:         0 kB 
  123.   VmRSS:       348 kB 
  124.   VmData:       24 kB 
  125.   VmStk:        12 kB 
  126.   VmExe:         8 kB 
  127.   VmLib:      1044 kB 
  128.   SigPnd: 0000000000000000 
  129.   SigBlk: 0000000000000000 
  130.   SigIgn: 0000000000000000 
  131.   SigCgt: 0000000000000000 
  132.   CapInh: 00000000fffffeff 
  133.   CapPrm: 0000000000000000 
  134.   CapEff: 0000000000000000 
  135. This shows you nearly the same information you would get if you viewed it with
  136. the ps  command.  In  fact,  ps  uses  the  proc  file  system  to  obtain its
  137. information. The  statm  file  contains  more  detailed  information about the
  138. process memory usage. Its seven fields are explained in Table 1-2.
  139. Table 1-2: Contents of the statm files 
  140. ..............................................................................
  141.  File     Content                         
  142.  size     total program size              
  143.  resident size of memory portions         
  144.  shared   number of pages that are shared 
  145.  trs      number of pages that are 'code' 
  146.  drs      number of pages of data/stack   
  147.  lrs      number of pages of library      
  148.  dt       number of dirty pages           
  149. ..............................................................................
  150. 1.2 Kernel data
  151. ---------------
  152. Similar to  the  process entries, the kernel data files give information about
  153. the running kernel. The files used to obtain this information are contained in
  154. /proc and  are  listed  in Table 1-3. Not all of these will be present in your
  155. system. It  depends  on the kernel configuration and the loaded modules, which
  156. files are there, and which are missing.
  157. Table 1-3: Kernel info in /proc 
  158. ..............................................................................
  159.  File        Content                                           
  160.  apm         Advanced power management info                    
  161.  bus         Directory containing bus specific information     
  162.  cmdline     Kernel command line                               
  163.  cpuinfo     Info about the CPU                                
  164.  devices     Available devices (block and character)           
  165.  dma         Used DMS channels                                 
  166.  filesystems Supported filesystems                             
  167.  driver      Various drivers grouped here, currently rtc (2.4)
  168.  execdomains Execdomains, related to security (2.4)
  169.  fb      Frame Buffer devices (2.4)
  170.  fs      File system parameters, currently nfs/exports (2.4)
  171.  ide         Directory containing info about the IDE subsystem 
  172.  interrupts  Interrupt usage                                   
  173.  iomem      Memory map (2.4)
  174.  ioports     I/O port usage                                    
  175.  irq      Masks for irq to cpu affinity (2.4)(smp?)
  176.  isapnp      ISA PnP (Plug&Play) Info (2.4)
  177.  kcore       Kernel core image (can be ELF or A.OUT(deprecated in 2.4))   
  178.  kmsg        Kernel messages                                   
  179.  ksyms       Kernel symbol table                               
  180.  loadavg     Load average of last 1, 5 & 15 minutes                
  181.  locks       Kernel locks                                      
  182.  meminfo     Memory info                                       
  183.  misc        Miscellaneous                                     
  184.  modules     List of loaded modules                            
  185.  mounts      Mounted filesystems                               
  186.  net         Networking info (see text)                        
  187.  partitions  Table of partitions known to the system           
  188.  pci      Depreciated info of PCI bus (new way -> /proc/bus/pci/, 
  189.              decoupled by lspci (2.4)
  190.  rtc         Real time clock                                   
  191.  scsi        SCSI info (see text)                              
  192.  slabinfo    Slab pool info                                    
  193.  stat        Overall statistics                                
  194.  swaps       Swap space utilization                            
  195.  sys         See chapter 2                                     
  196.  sysvipc     Info of SysVIPC Resources (msg, sem, shm) (2.4)
  197.  tty      Info of tty drivers
  198.  uptime      System uptime                                     
  199.  version     Kernel version                                    
  200.  video      bttv info of video resources (2.4)
  201. ..............................................................................
  202. You can,  for  example,  check  which interrupts are currently in use and what
  203. they are used for by looking in the file /proc/interrupts:
  204.   > cat /proc/interrupts 
  205.              CPU0        
  206.     0:    8728810          XT-PIC  timer 
  207.     1:        895          XT-PIC  keyboard 
  208.     2:          0          XT-PIC  cascade 
  209.     3:     531695          XT-PIC  aha152x 
  210.     4:    2014133          XT-PIC  serial 
  211.     5:      44401          XT-PIC  pcnet_cs 
  212.     8:          2          XT-PIC  rtc 
  213.    11:          8          XT-PIC  i82365 
  214.    12:     182918          XT-PIC  PS/2 Mouse 
  215.    13:          1          XT-PIC  fpu 
  216.    14:    1232265          XT-PIC  ide0 
  217.    15:          7          XT-PIC  ide1 
  218.   NMI:          0 
  219. In 2.4.* a couple of lines where added to this file LOC & ERR (this time is the
  220. output of a SMP machine):
  221.   > cat /proc/interrupts 
  222.              CPU0       CPU1       
  223.     0:    1243498    1214548    IO-APIC-edge  timer
  224.     1:       8949       8958    IO-APIC-edge  keyboard
  225.     2:          0          0          XT-PIC  cascade
  226.     5:      11286      10161    IO-APIC-edge  soundblaster
  227.     8:          1          0    IO-APIC-edge  rtc
  228.     9:      27422      27407    IO-APIC-edge  3c503
  229.    12:     113645     113873    IO-APIC-edge  PS/2 Mouse
  230.    13:          0          0          XT-PIC  fpu
  231.    14:      22491      24012    IO-APIC-edge  ide0
  232.    15:       2183       2415    IO-APIC-edge  ide1
  233.    17:      30564      30414   IO-APIC-level  eth0
  234.    18:        177        164   IO-APIC-level  bttv
  235.   NMI:    2457961    2457959 
  236.   LOC:    2457882    2457881 
  237.   ERR:       2155
  238. NMI is incremented in this case because every timer interrupt generates a NMI
  239. (Non Maskable Interrupt) which is used by the NMI Watchdog to detect lookups.
  240. LOC is the local interrupt counter of the internal APIC of every CPU.
  241. ERR is incremented in the case of errors in the IO-APIC bus (the bus that
  242. connects the CPUs in a SMP system. This means that an error has been detected,
  243. the IO-APIC automatically retry the transmission, so it should not be a big
  244. problem, but you should read the SMP-FAQ.
  245. In this context it could be interesting to note the new irq directory in 2.4.
  246. It could be used to set IRQ to CPU affinity, this means that you can "hook" an
  247. IRQ to only one CPU, or to exclude a CPU of handling IRQs. The contents of the
  248. irq subdir is one subdir for each IRQ, and one file; prof_cpu_mask
  249. For example 
  250.   > ls /proc/irq/
  251.   0  10  12  14  16  18  2  4  6  8  prof_cpu_mask
  252.   1  11  13  15  17  19  3  5  7  9
  253.   > ls /proc/irq/0/
  254.   smp_affinity
  255. The contents of the prof_cpu_mask file and each smp_affinity file for each IRQ
  256. is the same by default:
  257.   > cat /proc/irq/0/smp_affinity 
  258.   ffffffff
  259. It's a bitmask, in wich you can specify wich CPUs can handle the IRQ, you can
  260. set it by doing:
  261.   > echo 1 > /proc/irq/prof_cpu_mask
  262. This means that only the first CPU will handle the IRQ, but you can also echo 5
  263. wich means that only the first and fourth CPU can handle the IRQ.
  264. The way IRQs are routed is handled by the IO-APIC, and it's Round Robin
  265. between all the CPUs which are allowed to handle it. As usual the kernel has
  266. more info than you and does a better job than you, so the defaults are the
  267. best choice for almost everyone.
  268. There are  three  more  important subdirectories in /proc: net, scsi, and sys.
  269. The general  rule  is  that  the  contents,  or  even  the  existence of these
  270. directories, depend  on your kernel configuration. If SCSI is not enabled, the
  271. directory scsi  may  not  exist. The same is true with the net, which is there
  272. only when networking support is present in the running kernel.
  273. The slabinfo  file  gives  information  about  memory usage at the slab level.
  274. Linux uses  slab  pools for memory management above page level in version 2.2.
  275. Commonly used  objects  have  their  own  slab  pool (such as network buffers,
  276. directory cache, and so on).
  277. 1.3 IDE devices in /proc/ide
  278. ----------------------------
  279. The subdirectory /proc/ide contains information about all IDE devices of which
  280. the kernel  is  aware.  There is one subdirectory for each IDE controller, the
  281. file drivers  and a link for each IDE device, pointing to the device directory
  282. in the controller specific subtree.
  283. The file  drivers  contains general information about the drivers used for the
  284. IDE devices:
  285.   > cat /proc/ide/drivers 
  286.   ide-cdrom version 4.53 
  287.   ide-disk version 1.08 
  288. More detailed  information  can  be  found  in  the  controller  specific
  289. subdirectories. These  are  named  ide0,  ide1  and  so  on.  Each  of  these
  290. directories contains the files shown in table 1-4.
  291. Table 1-4: IDE controller info in  /proc/ide/ide? 
  292. ..............................................................................
  293.  File    Content                                 
  294.  channel IDE channel (0 or 1)                    
  295.  config  Configuration (only for PCI/IDE bridge) 
  296.  mate    Mate name                               
  297.  model   Type/Chipset of IDE controller          
  298. ..............................................................................
  299. Each device  connected  to  a  controller  has  a separate subdirectory in the
  300. controllers directory.  The  files  listed in table 1-5 are contained in these
  301. directories.
  302. Table 1-5: IDE device information 
  303. ..............................................................................
  304.  File             Content                                    
  305.  cache            The cache                                  
  306.  capacity         Capacity of the medium (in 512Byte blocks) 
  307.  driver           driver and version                         
  308.  geometry         physical and logical geometry              
  309.  identify         device identify block                      
  310.  media            media type                                 
  311.  model            device identifier                          
  312.  settings         device setup                               
  313.  smart_thresholds IDE disk management thresholds             
  314.  smart_values     IDE disk management values                 
  315. ..............................................................................
  316. The most  interesting  file is settings. This file contains a nice overview of
  317. the drive parameters:
  318.   # cat /proc/ide/ide0/hda/settings 
  319.   name                    value           min             max             mode 
  320.   ----                    -----           ---             ---             ---- 
  321.   bios_cyl                526             0               65535           rw 
  322.   bios_head               255             0               255             rw 
  323.   bios_sect               63              0               63              rw 
  324.   breada_readahead        4               0               127             rw 
  325.   bswap                   0               0               1               r 
  326.   file_readahead          72              0               2097151         rw 
  327.   io_32bit                0               0               3               rw 
  328.   keepsettings            0               0               1               rw 
  329.   max_kb_per_request      122             1               127             rw 
  330.   multcount               0               0               8               rw 
  331.   nice1                   1               0               1               rw 
  332.   nowerr                  0               0               1               rw 
  333.   pio_mode                write-only      0               255             w 
  334.   slow                    0               0               1               rw 
  335.   unmaskirq               0               0               1               rw 
  336.   using_dma               0               0               1               rw 
  337. 1.4 Networking info in /proc/net
  338. --------------------------------
  339. The subdirectory  /proc/net  follows  the  usual  pattern. Table 1-6 shows the
  340. additional values  you  get  for  IP  version 6 if you configure the kernel to
  341. support this. Table 1-7 lists the files and their meaning.
  342. Table 1-6: IPv6 info in /proc/net 
  343. ..............................................................................
  344.  File       Content                                               
  345.  udp6       UDP sockets (IPv6)                                    
  346.  tcp6       TCP sockets (IPv6)                                    
  347.  raw6       Raw device statistics (IPv6)                          
  348.  igmp6      IP multicast addresses, which this host joined (IPv6) 
  349.  if_inet6   List of IPv6 interface addresses                      
  350.  ipv6_route Kernel routing table for IPv6                         
  351.  rt6_stats  Global IPv6 routing tables statistics                 
  352.  sockstat6  Socket statistics (IPv6)                              
  353.  snmp6      Snmp data (IPv6)                                      
  354. ..............................................................................
  355. Table 1-7: Network info in /proc/net 
  356. ..............................................................................
  357.  File          Content                                                         
  358.  arp           Kernel  ARP table                                               
  359.  dev           network devices with statistics                                 
  360.  dev_mcast     the Layer2 multicast groups a device is listening too
  361.                (interface index, label, number of references, number of bound
  362.                addresses). 
  363.  dev_stat      network device status                                           
  364.  ip_fwchains   Firewall chain linkage                                          
  365.  ip_fwnames    Firewall chain names                                            
  366.  ip_masq       Directory containing the masquerading tables                    
  367.  ip_masquerade Major masquerading table                                        
  368.  netstat       Network statistics                                              
  369.  raw           raw device statistics                                           
  370.  route         Kernel routing table                                            
  371.  rpc           Directory containing rpc info                                   
  372.  rt_cache      Routing cache                                                   
  373.  snmp          SNMP data                                                       
  374.  sockstat      Socket statistics                                               
  375.  tcp           TCP  sockets                                                    
  376.  tr_rif        Token ring RIF routing table                                    
  377.  udp           UDP sockets                                                     
  378.  unix          UNIX domain sockets                                             
  379.  wireless      Wireless interface data (Wavelan etc)                           
  380.  igmp          IP multicast addresses, which this host joined                  
  381.  psched        Global packet scheduler parameters.                             
  382.  netlink       List of PF_NETLINK sockets                                      
  383.  ip_mr_vifs    List of multicast virtual interfaces                            
  384.  ip_mr_cache   List of multicast routing cache                                 
  385. ..............................................................................
  386. You can  use  this  information  to see which network devices are available in
  387. your system and how much traffic was routed over those devices:
  388.   > cat /proc/net/dev 
  389.   Inter-|Receive                                                   |[... 
  390.    face |bytes    packets errs drop fifo frame compressed multicast|[... 
  391.       lo:  908188   5596     0    0    0     0          0         0 [...         
  392.     ppp0:15475140  20721   410    0    0   410          0         0 [...  
  393.     eth0:  614530   7085     0    0    0     0          0         1 [... 
  394.    
  395.   ...] Transmit 
  396.   ...] bytes    packets errs drop fifo colls carrier compressed 
  397.   ...]  908188     5596    0    0    0     0       0          0 
  398.   ...] 1375103    17405    0    0    0     0       0          0 
  399.   ...] 1703981     5535    0    0    0     3       0          0 
  400. In addition, each Channel Bond interface has it's own directory.  For
  401. example, the bond0 device will have a directory called /proc/net/bond0/.
  402. It will contain information that is specific to that bond, such as the
  403. current slaves of the bond, the link status of the slaves, and how
  404. many times the slaves link has failed.
  405. 1.5 SCSI info
  406. -------------
  407. If you  have  a  SCSI  host adapter in your system, you'll find a subdirectory
  408. named after  the driver for this adapter in /proc/scsi. You'll also see a list
  409. of all recognized SCSI devices in /proc/scsi:
  410.   >cat /proc/scsi/scsi 
  411.   Attached devices: 
  412.   Host: scsi0 Channel: 00 Id: 00 Lun: 00 
  413.     Vendor: IBM      Model: DGHS09U          Rev: 03E0 
  414.     Type:   Direct-Access                    ANSI SCSI revision: 03 
  415.   Host: scsi0 Channel: 00 Id: 06 Lun: 00 
  416.     Vendor: PIONEER  Model: CD-ROM DR-U06S   Rev: 1.04 
  417.     Type:   CD-ROM                           ANSI SCSI revision: 02 
  418. The directory  named  after  the driver has one file for each adapter found in
  419. the system.  These  files  contain information about the controller, including
  420. the used  IRQ  and  the  IO  address range. The amount of information shown is
  421. dependent on  the adapter you use. The example shows the output for an Adaptec
  422. AHA-2940 SCSI adapter:
  423.   > cat /proc/scsi/aic7xxx/0 
  424.    
  425.   Adaptec AIC7xxx driver version: 5.1.19/3.2.4 
  426.   Compile Options: 
  427.     TCQ Enabled By Default : Disabled 
  428.     AIC7XXX_PROC_STATS     : Disabled 
  429.     AIC7XXX_RESET_DELAY    : 5 
  430.   Adapter Configuration: 
  431.              SCSI Adapter: Adaptec AHA-294X Ultra SCSI host adapter 
  432.                              Ultra Wide Controller 
  433.       PCI MMAPed I/O Base: 0xeb001000 
  434.    Adapter SEEPROM Config: SEEPROM found and used. 
  435.         Adaptec SCSI BIOS: Enabled 
  436.                       IRQ: 10 
  437.                      SCBs: Active 0, Max Active 2, 
  438.                            Allocated 15, HW 16, Page 255 
  439.                Interrupts: 160328 
  440.         BIOS Control Word: 0x18b6 
  441.      Adapter Control Word: 0x005b 
  442.      Extended Translation: Enabled 
  443.   Disconnect Enable Flags: 0xffff 
  444.        Ultra Enable Flags: 0x0001 
  445.    Tag Queue Enable Flags: 0x0000 
  446.   Ordered Queue Tag Flags: 0x0000 
  447.   Default Tag Queue Depth: 8 
  448.       Tagged Queue By Device array for aic7xxx host instance 0: 
  449.         {255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255} 
  450.       Actual queue depth per device for aic7xxx host instance 0: 
  451.         {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1} 
  452.   Statistics: 
  453.   (scsi0:0:0:0) 
  454.     Device using Wide/Sync transfers at 40.0 MByte/sec, offset 8 
  455.     Transinfo settings: current(12/8/1/0), goal(12/8/1/0), user(12/15/1/0) 
  456.     Total transfers 160151 (74577 reads and 85574 writes) 
  457.   (scsi0:0:6:0) 
  458.     Device using Narrow/Sync transfers at 5.0 MByte/sec, offset 15 
  459.     Transinfo settings: current(50/15/0/0), goal(50/15/0/0), user(50/15/0/0) 
  460.     Total transfers 0 (0 reads and 0 writes) 
  461. 1.6 Parallel port info in /proc/parport
  462. ---------------------------------------
  463. The directory  /proc/parport  contains information about the parallel ports of
  464. your system.  It  has  one  subdirectory  for  each port, named after the port
  465. number (0,1,2,...).
  466. These directories contain the four files shown in Table 1-8.
  467. Table 1-8: Files in /proc/parport 
  468. ..............................................................................
  469.  File      Content                                                             
  470.  autoprobe Any IEEE-1284 device ID information that has been acquired.         
  471.  devices   list of the device drivers using that port. A + will appear by the
  472.            name of the device currently using the port (it might not appear
  473.            against any). 
  474.  hardware  Parallel port's base address, IRQ line and DMA channel.             
  475.  irq       IRQ that parport is using for that port. This is in a separate
  476.            file to allow you to alter it by writing a new value in (IRQ
  477.            number or none). 
  478. ..............................................................................
  479. 1.7 TTY info in /proc/tty
  480. -------------------------
  481. Information about  the  available  and actually used tty's can be found in the
  482. directory /proc/tty.You'll  find  entries  for drivers and line disciplines in
  483. this directory, as shown in Table 1-9.
  484. Table 1-9: Files in /proc/tty 
  485. ..............................................................................
  486.  File          Content                                        
  487.  drivers       list of drivers and their usage                
  488.  ldiscs        registered line disciplines                    
  489.  driver/serial usage statistic and status of single tty lines 
  490. ..............................................................................
  491. To see  which  tty's  are  currently in use, you can simply look into the file
  492. /proc/tty/drivers:
  493.   > cat /proc/tty/drivers 
  494.   pty_slave            /dev/pts      136   0-255 pty:slave 
  495.   pty_master           /dev/ptm      128   0-255 pty:master 
  496.   pty_slave            /dev/ttyp       3   0-255 pty:slave 
  497.   pty_master           /dev/pty        2   0-255 pty:master 
  498.   serial               /dev/cua        5   64-67 serial:callout 
  499.   serial               /dev/ttyS       4   64-67 serial 
  500.   /dev/tty0            /dev/tty0       4       0 system:vtmaster 
  501.   /dev/ptmx            /dev/ptmx       5       2 system 
  502.   /dev/console         /dev/console    5       1 system:console 
  503.   /dev/tty             /dev/tty        5       0 system:/dev/tty 
  504.   unknown              /dev/tty        4    1-63 console 
  505. ------------------------------------------------------------------------------
  506. Summary
  507. ------------------------------------------------------------------------------
  508. The /proc file system serves information about the running system. It not only
  509. allows access to process data but also allows you to request the kernel status
  510. by reading files in the hierarchy.
  511. The directory  structure  of /proc reflects the types of information and makes
  512. it easy, if not obvious, where to look for specific data.
  513. ------------------------------------------------------------------------------
  514. ------------------------------------------------------------------------------
  515. CHAPTER 2: MODIFYING SYSTEM PARAMETERS
  516. ------------------------------------------------------------------------------
  517. ------------------------------------------------------------------------------
  518. In This Chapter
  519. ------------------------------------------------------------------------------
  520. * Modifying kernel parameters by writing into files found in /proc/sys
  521. * Exploring the files which modify certain parameters
  522. * Review of the /proc/sys file tree
  523. ------------------------------------------------------------------------------
  524. A very  interesting part of /proc is the directory /proc/sys. This is not only
  525. a source  of  information,  it also allows you to change parameters within the
  526. kernel. Be  very  careful  when attempting this. You can optimize your system,
  527. but you  can  also  cause  it  to  crash.  Never  alter kernel parameters on a
  528. production system.  Set  up  a  development machine and test to make sure that
  529. everything works  the  way  you want it to. You may have no alternative but to
  530. reboot the machine once an error has been made.
  531. To change  a  value,  simply  echo  the new value into the file. An example is
  532. given below  in the section on the file system data. You need to be root to do
  533. this. You  can  create  your  own  boot script to perform this every time your
  534. system boots.
  535. The files  in /proc/sys can be used to fine tune and monitor miscellaneous and
  536. general things  in  the operation of the Linux kernel. Since some of the files
  537. can inadvertently  disrupt  your  system,  it  is  advisable  to  read  both
  538. documentation and  source  before actually making adjustments. In any case, be
  539. very careful  when  writing  to  any  of these files. The entries in /proc may
  540. change slightly between the 2.1.* and the 2.2 kernel, so if there is any doubt
  541. review the kernel documentation in the directory /usr/src/linux/Documentation.
  542. This chapter  is  heavily  based  on the documentation included in the pre 2.2
  543. kernels, and became part of it in version 2.2.1 of the Linux kernel.
  544. 2.1 /proc/sys/fs - File system data
  545. -----------------------------------
  546. This subdirectory  contains  specific  file system, file handle, inode, dentry
  547. and quota information.
  548. Currently, these files are in /proc/sys/fs:
  549. dentry-state
  550. ------------
  551. Status of  the  directory  cache.  Since  directory  entries  are  dynamically
  552. allocated and  deallocated,  this  file indicates the current status. It holds
  553. six values, in which the last two are not used and are always zero. The others
  554. are listed in table 2-1.
  555. Table 2-1: Status files of the directory cache 
  556. ..............................................................................
  557.  File       Content                                                            
  558.  nr_dentry  Almost always zero                                                 
  559.  nr_unused  Number of unused cache entries                                     
  560.  age_limit  
  561.             in seconds after the entry may be reclaimed, when memory is short 
  562.  want_pages internally                                                         
  563. ..............................................................................
  564. dquot-nr and dquot-max
  565. ----------------------
  566. The file dquot-max shows the maximum number of cached disk quota entries.
  567. The file  dquot-nr  shows  the  number of allocated disk quota entries and the
  568. number of free disk quota entries.
  569. If the number of available cached disk quotas is very low and you have a large
  570. number of simultaneous system users, you might want to raise the limit.
  571. file-nr and file-max
  572. --------------------
  573. The kernel  allocates file handles dynamically, but doesn't free them again at
  574. this time.
  575. The value  in  file-max  denotes  the  maximum number of file handles that the
  576. Linux kernel will allocate. When you get a lot of error messages about running
  577. out of  file handles, you might want to raise this limit. The default value is
  578. 4096. To change it, just write the new number into the file:
  579.   # cat /proc/sys/fs/file-max 
  580.   4096 
  581.   # echo 8192 > /proc/sys/fs/file-max 
  582.   # cat /proc/sys/fs/file-max 
  583.   8192 
  584. This method  of  revision  is  useful  for  all customizable parameters of the
  585. kernel - simply echo the new value to the corresponding file.
  586. The three  values  in file-nr denote the number of allocated file handles, the
  587. number of  used file handles, and the maximum number of file handles. When the
  588. allocated file  handles  come close to the maximum, but the number of actually
  589. used ones  is  far  behind,  you've  encountered  a peak in your usage of file
  590. handles and you don't need to increase the maximum.
  591. inode-state and inode-nr
  592. ------------------------
  593. The file inode-nr contains the first two items from inode-state, so we'll skip
  594. to that file...
  595. inode-state contains  two  actual numbers and five dummy values. The numbers
  596. are nr_inodes and nr_free_inodes (in order of appearance).
  597. nr_inodes
  598. ~~~~~~~~~
  599. Denotes the  number  of  inodes the system has allocated. This number will
  600. grow and shrink dynamically.
  601. nr_free_inodes
  602. --------------
  603. Represents the  number of free inodes. Ie. The number of inuse inodes is
  604. (nr_inodes - nr_free_inodes).
  605. super-nr and super-max
  606. ----------------------
  607. Again, super  block structures are allocated by the kernel, but not freed. The
  608. file super-max  contains  the  maximum  number  of super block handlers, where
  609. super-nr shows the number of currently allocated ones.
  610. Every mounted file system needs a super block, so if you plan to mount lots of
  611. file systems, you may want to increase these numbers.
  612. 2.2 /proc/sys/fs/binfmt_misc - Miscellaneous binary formats
  613. -----------------------------------------------------------
  614. Besides these  files, there is the subdirectory /proc/sys/fs/binfmt_misc. This
  615. handles the kernel support for miscellaneous binary formats.
  616. Binfmt_misc provides  the ability to register additional binary formats to the
  617. Kernel without  compiling  an additional module/kernel. Therefore, binfmt_misc
  618. needs to  know magic numbers at the beginning or the filename extension of the
  619. binary.
  620. It works by maintaining a linked list of structs that contain a description of
  621. a binary  format,  including  a  magic  with size (or the filename extension),
  622. offset and  mask,  and  the  interpreter name. On request it invokes the given
  623. interpreter with  the  original  program  as  argument,  as  binfmt_java  and
  624. binfmt_em86 and  binfmt_mz  do.  Since binfmt_misc does not define any default
  625. binary-formats, you have to register an additional binary-format.
  626. There are two general files in binfmt_misc and one file per registered format.
  627. The two general files are register and status.
  628. Registering a new binary format
  629. -------------------------------
  630. To register a new binary format you have to issue the command
  631.   echo :name:type:offset:magic:mask:interpreter: > /proc/sys/fs/binfmt_misc/register 
  632. with appropriate  name (the name for the /proc-dir entry), offset (defaults to
  633. 0, if  omitted),  magic, mask (which can be omitted, defaults to all 0xff) and
  634. last but  not  least,  the  interpreter that is to be invoked (for example and
  635. testing /bin/echo).  Type  can be M for usual magic matching or E for filename
  636. extension matching (give extension in place of magic).
  637. Check or reset the status of the binary format handler
  638. ------------------------------------------------------
  639. If you  do a cat on the file /proc/sys/fs/binfmt_misc/status, you will get the
  640. current status (enabled/disabled) of binfmt_misc. Change the status by echoing
  641. 0 (disables)  or  1  (enables)  or  -1  (caution:  this  clears all previously
  642. registered binary  formats)  to status. For example echo 0 > status to disable
  643. binfmt_misc (temporarily).
  644. Status of a single handler
  645. --------------------------
  646. Each registered  handler has an entry in /proc/sys/fs/binfmt_misc. These files
  647. perform the  same function as status, but their scope is limited to the actual
  648. binary format.  By  cating this file, you also receive all related information
  649. about the interpreter/magic of the binfmt.
  650. Example usage of binfmt_misc (emulate binfmt_java)
  651. --------------------------------------------------
  652.   cd /proc/sys/fs/binfmt_misc  
  653.   echo ':Java:M::xcaxfexbaxbe::/usr/local/java/bin/javawrapper:' > register  
  654.   echo ':HTML:E::html::/usr/local/java/bin/appletviewer:' > register  
  655.   echo ':Applet:M::<!--applet::/usr/local/java/bin/appletviewer:' > register 
  656.   echo ':DEXE:M::x0eDEX::/usr/bin/dosexec:' > register 
  657. These four  lines  add  support  for  Java  executables and Java applets (like
  658. binfmt_java, additionally  recognizing the .html extension with no need to put
  659. <!--applet> to  every  applet  file).  You  have  to  install  the JDK and the
  660. shell-script /usr/local/java/bin/javawrapper  too.  It  works  around  the
  661. brokenness of  the Java filename handling. To add a Java binary, just create a
  662. link to the class-file somewhere in the path.
  663. 2.3 /proc/sys/kernel - general kernel parameters
  664. ------------------------------------------------
  665. This directory  reflects  general  kernel  behaviors. As I've said before, the
  666. contents depend  on  your  configuration.  Here you'll find the most important
  667. files, along with descriptions of what they mean and how to use them.
  668. acct
  669. ----
  670. The file contains three values; highwater, lowwater, and frequency.
  671. It exists  only  when  BSD-style  process  accounting is enabled. These values
  672. control its behavior. If the free space on the file system where the log lives
  673. goes below  lowwater  percentage,  accounting  suspends.  If  it  goes  above
  674. highwater percentage,  accounting  resumes. Frequency determines how often you
  675. check the amount of free space (value is in seconds). Default settings are: 4,
  676. 2, and  30.  That is, suspend accounting if there is less than 2 percent free;
  677. resume it  if we have a value of 3 or more percent; consider information about
  678. the amount of free space valid for 30 seconds
  679. ctrl-alt-del
  680. ------------
  681. When the value in this file is 0, ctrl-alt-del is trapped and sent to the init
  682. program to  handle a graceful restart. However, when the value is greater that
  683. zero, Linux's  reaction  to  this key combination will be an immediate reboot,
  684. without syncing its dirty buffers.
  685. [NOTE]
  686.     When a  program  (like  dosemu)  has  the  keyboard  in  raw  mode,  the
  687.     ctrl-alt-del is  intercepted  by  the  program  before it ever reaches the
  688.     kernel tty  layer,  and  it is up to the program to decide what to do with
  689.     it.
  690. domainname and hostname
  691. -----------------------
  692. These files  can  be controlled to set the NIS domainname and hostname of your
  693. box. For the classic darkstar.frop.org a simple:
  694.   # echo "darkstar" > /proc/sys/kernel/hostname 
  695.   # echo "frop.org" > /proc/sys/kernel/domainname 
  696. would suffice to set your hostname and NIS domainname.
  697. osrelease, ostype and version
  698. -----------------------------
  699. The names make it pretty obvious what these fields contain:
  700.   > cat /proc/sys/kernel/osrelease 
  701.   2.2.12 
  702.    
  703.   > cat /proc/sys/kernel/ostype 
  704.   Linux 
  705.    
  706.   > cat /proc/sys/kernel/version 
  707.   #4 Fri Oct 1 12:41:14 PDT 1999 
  708. The files  osrelease and ostype should be clear enough. Version needs a little
  709. more clarification.  The  #4 means that this is the 4th kernel built from this
  710. source base and the date after it indicates the time the kernel was built. The
  711. only way to tune these values is to rebuild the kernel.
  712. panic
  713. -----
  714. The value  in  this  file  represents  the  number of seconds the kernel waits
  715. before rebooting  on  a  panic.  When  you  use  the  software  watchdog,  the
  716. recommended setting  is  60. If set to 0, the auto reboot after a kernel panic
  717. is disabled, which is the default setting.
  718. printk
  719. ------
  720. The four values in printk denote
  721. * console_loglevel,
  722. * default_message_loglevel,
  723. * minimum_console_level and
  724. * default_console_loglevel
  725. respectively.
  726. These values  influence  printk()  behavior  when  printing  or  logging error
  727. messages, which  come  from  inside  the  kernel.  See  syslog(2)  for  more
  728. information on the different log levels.
  729. console_loglevel
  730. ----------------
  731. Messages with a higher priority than this will be printed to the console.
  732. default_message_level
  733. ---------------------
  734. Messages without an explicit priority will be printed with this priority.
  735. minimum_console_loglevel
  736. ------------------------
  737. Minimum (highest) value to which the console_loglevel can be set.
  738. default_console_loglevel
  739. ------------------------
  740. Default value for console_loglevel.
  741. sg-big-buff
  742. -----------
  743. This file  shows  the size of the generic SCSI (sg) buffer. At this point, you
  744. can't tune  it  yet,  but  you  can  change  it  at  compile  time  by editing
  745. include/scsi/sg.h and changing the value of SG_BIG_BUFF.
  746. If you use a scanner with SANE (Scanner Access Now Easy) you might want to set
  747. this to a higher value. Refer to the SANE documentation on this issue.
  748. modprobe
  749. --------
  750. The location  where  the  modprobe  binary  is  located.  The kernel uses this
  751. program to load modules on demand.
  752. 2.4 /proc/sys/vm - The virtual memory subsystem
  753. -----------------------------------------------
  754. The files  in  this directory can be used to tune the operation of the virtual
  755. memory (VM)  subsystem  of  the  Linux  kernel.  In addition, one of the files
  756. (bdflush) has some influence on disk usage.
  757. bdflush
  758. -------
  759. This file  controls  the  operation of the bdflush kernel daemon. It currently
  760. contains nine  integer  values,  six of which are actually used by the kernel.
  761. They are listed in table 2-2.
  762. Table 2-2: Parameters in /proc/sys/vm/bdflush 
  763. ..............................................................................
  764.  Value      Meaning                                                            
  765.  nfract     Percentage of buffer cache dirty to  activate bdflush              
  766.  ndirty     Maximum number of dirty blocks to  write out per wake-cycle        
  767.  nrefill    Number of clean buffers to try to obtain  each time we call refill 
  768.  nref_dirt  buffer threshold for activating bdflush when trying to refill
  769.             buffers. 
  770.  dummy      Unused                                                             
  771.  age_buffer Time for normal buffer to age before we flush it                   
  772.  age_super  Time for superblock to age before we flush it                      
  773.  dummy      Unused                                                             
  774.  dummy      Unused                                                             
  775. ..............................................................................
  776. nfract
  777. ------
  778. This parameter  governs  the  maximum  number  of  dirty buffers in the buffer
  779. cache. Dirty means that the contents of the buffer still have to be written to
  780. disk (as  opposed  to  a  clean  buffer,  which  can just be forgotten about).
  781. Setting this  to  a  higher value means that Linux can delay disk writes for a
  782. long time, but it also means that it will have to do a lot of I/O at once when
  783. memory becomes short. A lower value will spread out disk I/O more evenly.
  784. ndirty
  785. ------
  786. Ndirty gives the maximum number of dirty buffers that bdflush can write to the
  787. disk at  one  time.  A high value will mean delayed, bursty I/O, while a small
  788. value can lead to memory shortage when bdflush isn't woken up often enough.
  789. nrefill
  790. -------
  791. This is  the  number  of  buffers  that  bdflush  will add to the list of free
  792. buffers when  refill_freelist()  is  called.  It is necessary to allocate free
  793. buffers beforehand,  since  the  buffers  are  often  different sizes than the
  794. memory pages  and some bookkeeping needs to be done beforehand. The higher the
  795. number, the  more  memory  will be wasted and the less often refill_freelist()
  796. will need to run.
  797. nref_dirt
  798. ---------
  799. When refill_freelist() comes across more than nref_dirt dirty buffers, it will
  800. wake up bdflush.
  801. age_buffer and age_super
  802. ------------------------
  803. Finally, the age_buffer and age_super parameters govern the maximum time Linux
  804. waits before  writing  out  a  dirty buffer to disk. The value is expressed in
  805. jiffies (clockticks),  the  number of jiffies per second is 100. Age_buffer is
  806. the maximum age for data blocks, while age_super is for filesystems meta data.
  807. buffermem
  808. ---------
  809. The three  values  in  this  file  control  how much memory should be used for
  810. buffer memory.  The  percentage  is calculated as a percentage of total system
  811. memory.
  812. The values are:
  813. min_percent
  814. -----------
  815. This is  the  minimum  percentage  of  memory  that  should be spent on buffer
  816. memory.
  817. borrow_percent
  818. --------------
  819. When Linux is short on memory, and the buffer cache uses more than it has been
  820. allotted, the  memory  management  (MM)  subsystem will prune the buffer cache
  821. more heavily than other memory to compensate.
  822. max_percent
  823. -----------
  824. This is the maximum amount of memory that can be used for buffer memory.
  825. freepages
  826. ---------
  827. This file contains three values: min, low and high:
  828. min
  829. ---
  830. When the  number  of  free  pages  in the system reaches this number, only the
  831. kernel can allocate more memory.
  832. low
  833. ---
  834. If the number of free pages falls below this point, the kernel starts swapping
  835. aggressively.
  836. high
  837. ----
  838. The kernel  tries  to  keep  up to this amount of memory free; if memory falls
  839. below this point, the kernel starts gently swapping in the hopes that it never
  840. has to do really aggressive swapping.
  841. kswapd
  842. ------
  843. Kswapd is  the  kernel  swap  out daemon. That is, kswapd is that piece of the
  844. kernel that  frees  memory when it gets fragmented or full. Since every system
  845. is different, you'll probably want some control over this piece of the system.
  846. The file contains three numbers:
  847. tries_base
  848. ----------
  849. The maximum  number  of  pages kswapd tries to free in one round is calculated
  850. from this  number.  Usually  this  number  will  be  divided  by  4  or 8 (see
  851. mm/vmscan.c), so it isn't as big as it looks.
  852. When you  need to increase the bandwidth to/from swap, you'll want to increase
  853. this number.
  854. tries_min
  855. ---------
  856. This is  the  minimum number of times kswapd tries to free a page each time it
  857. is called. Basically it's just there to make sure that kswapd frees some pages
  858. even when it's being called with minimum priority.
  859. swap_cluster
  860. ------------
  861. This is probably the greatest influence on system performance.
  862. swap_cluster is  the  number  of  pages kswapd writes in one turn. You'll want
  863. this value  to  be  large  so that kswapd does its I/O in large chunks and the
  864. disk doesn't  have  to  seek  as  often, but you don't want it to be too large
  865. since that would flood the request queue.
  866. overcommit_memory
  867. -----------------
  868. This file  contains  one  value.  The following algorithm is used to decide if
  869. there's enough  memory:  if  the  value of overcommit_memory is positive, then
  870. there's always  enough  memory. This is a useful feature, since programs often
  871. malloc() huge  amounts  of  memory 'just in case', while they only use a small
  872. part of  it.  Leaving  this value at 0 will lead to the failure of such a huge
  873. malloc(), when in fact the system has enough memory for the program to run.
  874. On the  other  hand,  enabling this feature can cause you to run out of memory
  875. and thrash the system to death, so large and/or important servers will want to
  876. set this value to 0.
  877. pagecache
  878. ---------
  879. This file  does exactly the same job as buffermem, only this file controls the
  880. amount of memory allowed for memory mapping and generic caching of files.
  881. You don't  want  the  minimum level to be too low, otherwise your system might
  882. thrash when memory is tight or fragmentation is high.
  883. pagetable_cache
  884. ---------------
  885. The kernel  keeps a number of page tables in a per-processor cache (this helps
  886. a lot  on  SMP systems). The cache size for each processor will be between the
  887. low and the high value.
  888. On a  low-memory,  single  CPU system, you can safely set these values to 0 so
  889. you don't  waste  memory.  It  is  used  on SMP systems so that the system can
  890. perform fast  pagetable allocations without having to acquire the kernel memory
  891. lock.
  892. For large  systems,  the  settings  are probably fine. For normal systems they
  893. won't hurt  a  bit.  For  small  systems  (  less  than  16MB ram) it might be
  894. advantageous to set both values to 0.
  895. swapctl
  896. -------
  897. This file  contains  no less than 8 variables. All of these values are used by
  898. kswapd.
  899. The first four variables
  900. * sc_max_page_age,
  901. * sc_page_advance,
  902. * sc_page_decline and
  903. * sc_page_initial_age
  904. are used  to  keep  track  of  Linux's page aging. Page aging is a bookkeeping
  905. method to  track  which pages of memory are often used, and which pages can be
  906. swapped out without consequences.
  907. When a  page  is  swapped in, it starts at sc_page_initial_age (default 3) and
  908. when the  page  is  scanned  by  kswapd,  its age is adjusted according to the
  909. following scheme:
  910. * If  the  page  was used since the last time we scanned, its age is increased
  911.   by sc_page_advance  (default  3).  Where  the  maximum  value  is  given  by
  912.   sc_max_page_age (default 20).
  913. * Otherwise  (meaning  it wasn't used) its age is decreased by sc_page_decline
  914.   (default 1).
  915. When a page reaches age 0, it's ready to be swapped out.
  916. The variables  sc_age_cluster_fract, sc_age_cluster_min, sc_pageout_weight and
  917. sc_bufferout_weight, can  be  used  to  control  kswapd's  aggressiveness  in
  918. swapping out pages.
  919. Sc_age_cluster_fract is used to calculate how many pages from a process are to
  920. be scanned by kswapd. The formula used is
  921. (sc_age_cluster_fract divided by 1024) times resident set size
  922. So if you want kswapd to scan the whole process, sc_age_cluster_fract needs to
  923. have a  value  of  1024.  The  minimum  number  of  pages  kswapd will scan is
  924. represented by sc_age_cluster_min, which is done so that kswapd will also scan
  925. small processes.
  926. The values  of  sc_pageout_weight  and sc_bufferout_weight are used to control
  927. how many  tries  kswapd  will make in order to swap out one page/buffer. These
  928. values can  be used to fine-tune the ratio between user pages and buffer/cache
  929. memory. When  you find that your Linux system is swapping out too many process
  930. pages in  order  to  satisfy  buffer  memory  demands,  you may want to either
  931. increase sc_bufferout_weight, or decrease the value of sc_pageout_weight.
  932. 2.5 /proc/sys/dev - Device specific parameters
  933. ----------------------------------------------
  934. Currently there is only support for CDROM drives, and for those, there is only
  935. one read-only  file containing information about the CD-ROM drives attached to
  936. the system:
  937.   >cat /proc/sys/dev/cdrom/info 
  938.   CD-ROM information, Id: cdrom.c 2.55 1999/04/25 
  939.    
  940.   drive name:             sr0     hdb 
  941.   drive speed:            32      40 
  942.   drive # of slots:       1       0 
  943.   Can close tray:         1       1 
  944.   Can open tray:          1       1 
  945.   Can lock tray:          1       1 
  946.   Can change speed:       1       1 
  947.   Can select disk:        0       1 
  948.   Can read multisession:  1       1 
  949.   Can read MCN:           1       1 
  950.   Reports media changed:  1       1 
  951.   Can play audio:         1       1 
  952. You see two drives, sr0 and hdb, along with a list of their features.
  953. 2.6 /proc/sys/sunrpc - Remote procedure calls
  954. ---------------------------------------------
  955. This directory  contains four files, which enable or disable debugging for the
  956. RPC functions NFS, NFS-daemon, RPC and NLM. The default values are 0. They can
  957. be set to one to turn debugging on. (The default value is 0 for each)
  958. 2.7 /proc/sys/net - Networking stuff
  959. ------------------------------------
  960. The interface  to  the  networking  parts  of  the  kernel  is  located  in
  961. /proc/sys/net. Table  2-3  shows all possible subdirectories. You may see only
  962. some of them, depending on your kernel's configuration.
  963. Table 2-3: Subdirectories in /proc/sys/net 
  964. ..............................................................................
  965.  Directory Content             Directory  Content            
  966.  core      General parameter   appletalk  Appletalk protocol 
  967.  unix      Unix domain sockets netrom     NET/ROM            
  968.  802       E802 protocol       ax25       AX25               
  969.  ethernet  Ethernet protocol   rose       X.25 PLP layer     
  970.  ipv4      IP version 4        x25        X.25 protocol      
  971.  ipx       IPX                 token-ring IBM token ring     
  972.  bridge    Bridging            decnet     DEC net            
  973.  ipv6      IP version 6                   
  974. ..............................................................................
  975. We will  concentrate  on IP networking here. Since AX15, X.25, and DEC Net are
  976. only minor players in the Linux world, we'll skip them in this chapter. You'll
  977. find some  short  info on Appletalk and IPX further on in this chapter. Review
  978. the online  documentation  and the kernel source to get a detailed view of the
  979. parameters for  those  protocols.  In  this  section  we'll  discuss  the
  980. subdirectories printed  in  bold letters in the table above. As default values
  981. are suitable for most needs, there is no need to change these values.
  982. /proc/sys/net/core - Network core options
  983. -----------------------------------------
  984. rmem_default
  985. ------------
  986. The default setting of the socket receive buffer in bytes.
  987. rmem_max
  988. --------
  989. The maximum receive socket buffer size in bytes.
  990. wmem_default
  991. ------------
  992. The default setting (in bytes) of the socket send buffer.
  993. wmem_max
  994. --------
  995. The maximum send socket buffer size in bytes.
  996. message_burst and message_cost
  997. ------------------------------
  998. These parameters  are used to limit the warning messages written to the kernel
  999. log from  the  networking  code.  They  enforce  a  rate  limit  to  make  a
  1000. denial-of-service attack  impossible. A higher message_cost factor, results in
  1001. fewer messages that will be written. Message_burst controls when messages will
  1002. be dropped.  The  default  settings  limit  warning messages to one every five
  1003. seconds.
  1004. netdev_max_backlog
  1005. ------------------
  1006. Maximum number  of  packets,  queued  on  the  INPUT  side, when the interface
  1007. receives packets faster than kernel can process them.
  1008. optmem_max
  1009. ----------
  1010. Maximum ancillary buffer size allowed per socket. Ancillary data is a sequence
  1011. of struct cmsghdr structures with appended data.
  1012. /proc/sys/net/unix - Parameters for Unix domain sockets
  1013. -------------------------------------------------------
  1014. There are  only  two  files  in this subdirectory. They control the delays for
  1015. deleting and destroying socket descriptors.
  1016. 2.8 /proc/sys/net/ipv4 - IPV4 settings
  1017. --------------------------------------
  1018. IP version  4  is  still the most used protocol in Unix networking. It will be
  1019. replaced by  IP version 6 in the next couple of years, but for the moment it's
  1020. the de  facto  standard  for  the  internet  and  is  used  in most networking
  1021. environments around  the  world.  Because  of the importance of this protocol,
  1022. we'll have a deeper look into the subtree controlling the behavior of the IPv4
  1023. subsystem of the Linux kernel.
  1024. Let's start with the entries in /proc/sys/net/ipv4.
  1025. ICMP settings
  1026. -------------
  1027. icmp_echo_ignore_all and icmp_echo_ignore_broadcasts
  1028. ----------------------------------------------------
  1029. Turn on (1) or off (0), if the kernel should ignore all ICMP ECHO requests, or
  1030. just those to broadcast and multicast addresses.
  1031. Please note that if you accept ICMP echo requests with a broadcast/multi-cast
  1032. destination address  your  network  may  be  used as an exploder for denial of
  1033. service packet flooding attacks to other hosts.
  1034. icmp_destunreach_rate, icmp_echoreply_rate, icmp_paramprob_rate and icmp_timeexeed_rate
  1035. ---------------------------------------------------------------------------------------
  1036. Sets limits  for  sending  ICMP  packets  to specific targets. A value of zero
  1037. disables all  limiting.  Any  positive  value sets the maximum package rate in
  1038. hundredth of a second (on Intel systems).
  1039. IP settings
  1040. -----------
  1041. ip_autoconfig
  1042. -------------
  1043. This file contains the number one if the host received its IP configuration by
  1044. RARP, BOOTP, DHCP or a similar mechanism. Otherwise it is zero.
  1045. ip_default_ttl
  1046. --------------
  1047. TTL (Time  To  Live) for IPv4 interfaces. This is simply the maximum number of
  1048. hops a packet may travel.
  1049. ip_dynaddr
  1050. ----------
  1051. Enable dynamic  socket  address rewriting on interface address change. This is
  1052. useful for dialup interface with changing IP addresses.
  1053. ip_forward
  1054. ----------
  1055. Enable or  disable forwarding of IP packages between interfaces. Changing this
  1056. value resets  all other parameters to their default values. They differ if the
  1057. kernel is configured as host or router.
  1058. ip_local_port_range
  1059. -------------------
  1060. Range of  ports  used  by  TCP  and UDP to choose the local port. Contains two
  1061. numbers, the  first  number  is the lowest port, the second number the highest
  1062. local port.  Default  is  1024-4999.  Should  be  changed  to  32768-61000 for
  1063. high-usage systems.
  1064. ip_no_pmtu_disc
  1065. ---------------
  1066. Global switch  to  turn  path  MTU  discovery off. It can also be set on a per
  1067. socket basis by the applications or on a per route basis.
  1068. ip_masq_debug
  1069. -------------
  1070. Enable/disable debugging of IP masquerading.
  1071. IP fragmentation settings
  1072. -------------------------
  1073. ipfrag_high_trash and ipfrag_low_trash
  1074. --------------------------------------
  1075. Maximum memory  used to reassemble IP fragments. When ipfrag_high_thresh bytes
  1076. of memory  is  allocated  for  this  purpose,  the  fragment handler will toss
  1077. packets until ipfrag_low_thresh is reached.
  1078. ipfrag_time
  1079. -----------
  1080. Time in seconds to keep an IP fragment in memory.
  1081. TCP settings
  1082. ------------
  1083. tcp_ecn
  1084. -------
  1085. This file controls the use of the ECN bit in the IPv4 headers, this is a new
  1086. feature about Explicit Congestion Notification, but some routers and firewalls
  1087. block trafic that has this bit set, so it could be necessary to echo 0 to
  1088. /proc/sys/net/ipv4/tcp_ecn, if you want to talk to this sites. For more info
  1089. you could read RFC2481.
  1090. tcp_retrans_collapse
  1091. --------------------
  1092. Bug-to-bug compatibility with some broken printers. On retransmit, try to send
  1093. larger packets to work around bugs in certain TCP stacks. Can be turned off by
  1094. setting it to zero.
  1095. tcp_keepalive_probes
  1096. --------------------
  1097. Number of  keep  alive  probes  TCP  sends  out,  until  it  decides  that the
  1098. connection is broken.
  1099. tcp_keepalive_time
  1100. ------------------
  1101. How often  TCP  sends out keep alive messages, when keep alive is enabled. The
  1102. default is 2 hours.
  1103. tcp_syn_retries
  1104. ---------------
  1105. Number of  times  initial  SYNs  for  a  TCP  connection  attempt  will  be
  1106. retransmitted. Should  not  be  higher  than 255. This is only the timeout for
  1107. outgoing connections,  for  incoming  connections the number of retransmits is
  1108. defined by tcp_retries1.
  1109. tcp_sack
  1110. --------
  1111. Enable select acknowledgments after RFC2018.
  1112. tcp_timestamps
  1113. --------------
  1114. Enable timestamps as defined in RFC1323.
  1115. tcp_stdurg
  1116. ----------
  1117. Enable the  strict  RFC793 interpretation of the TCP urgent pointer field. The
  1118. default is  to  use  the  BSD  compatible interpretation of the urgent pointer
  1119. pointing to the first byte after the urgent data. The RFC793 interpretation is
  1120. to have  it  point  to  the last byte of urgent data. Enabling this option may
  1121. lead to interoperatibility problems. Disabled by default.
  1122. tcp_syncookies
  1123. --------------
  1124. Only valid  when  the  kernel  was  compiled  with CONFIG_SYNCOOKIES. Send out
  1125. syncookies when  the  syn backlog queue of a socket overflows. This is to ward
  1126. off the common 'syn flood attack'. Disabled by default.
  1127. Note that  the  concept  of a socket backlog is abandoned. This means the peer
  1128. may not  receive  reliable  error  messages  from  an  over loaded server with
  1129. syncookies enabled.
  1130. tcp_window_scaling
  1131. ------------------
  1132. Enable window scaling as defined in RFC1323.
  1133. tcp_fin_timeout
  1134. ---------------
  1135. The length  of  time  in  seconds  it  takes to receive a final FIN before the
  1136. socket is  always  closed.  This  is  strictly  a  violation  of  the  TCP
  1137. specification, but required to prevent denial-of-service attacks.
  1138. tcp_max_ka_probes
  1139. -----------------
  1140. Indicates how  many  keep alive probes are sent per slow timer run. Should not
  1141. be set too high to prevent bursts.
  1142. tcp_max_syn_backlog
  1143. -------------------
  1144. Length of  the per socket backlog queue. Since Linux 2.2 the backlog specified
  1145. in listen(2)  only  specifies  the  length  of  the  backlog  queue of already
  1146. established sockets. When more connection requests arrive Linux starts to drop
  1147. packets. When  syncookies  are  enabled the packets are still answered and the
  1148. maximum queue is effectively ignored.
  1149. tcp_retries1
  1150. ------------
  1151. Defines how  often  an  answer  to  a  TCP connection request is retransmitted
  1152. before giving up.
  1153. tcp_retries2
  1154. ------------
  1155. Defines how often a TCP packet is retransmitted before giving up.
  1156. Interface specific settings
  1157. ---------------------------
  1158. In the directory /proc/sys/net/ipv4/conf you'll find one subdirectory for each
  1159. interface the  system  knows about and one directory calls all. Changes in the
  1160. all subdirectory  affect  all  interfaces,  whereas  changes  in  the  other
  1161. subdirectories affect  only  one  interface.  All  directories  have  the same
  1162. entries:
  1163. accept_redirects
  1164. ----------------
  1165. This switch  decides  if the kernel accepts ICMP redirect messages or not. The
  1166. default is 'yes' if the kernel is configured for a regular host and 'no' for a
  1167. router configuration.
  1168. accept_source_route
  1169. -------------------
  1170. Should source  routed  packages  be  accepted  or  declined.  The  default  is
  1171. dependent on  the  kernel  configuration.  It's 'yes' for routers and 'no' for
  1172. hosts.
  1173. bootp_relay
  1174. ~~~~~~~~~~~
  1175. Accept packets  with source address 0.b.c.d with destinations not to this host
  1176. as local ones. It is supposed that a BOOTP relay daemon will catch and forward
  1177. such packets.
  1178. The default  is  0,  since this feature is not implemented yet (kernel version
  1179. 2.2.12).
  1180. forwarding
  1181. ----------
  1182. Enable or disable IP forwarding on this interface.
  1183. log_martians
  1184. ------------
  1185. Log packets with source addresses with no known route to kernel log.
  1186. mc_forwarding
  1187. -------------
  1188. Do multicast routing. The kernel needs to be compiled with CONFIG_MROUTE and a
  1189. multicast routing daemon is required.
  1190. proxy_arp
  1191. ---------
  1192. Does (1) or does not (0) perform proxy ARP.
  1193. rp_filter
  1194. ---------
  1195. Integer value determines if a source validation should be made. 1 means yes, 0
  1196. means no.  Disabled by default, but local/broadcast address spoofing is always
  1197. on.
  1198. If you  set this to 1 on a router that is the only connection for a network to
  1199. the net,  it  will  prevent  spoofing  attacks  against your internal networks
  1200. (external addresses  can  still  be  spoofed), without the need for additional
  1201. firewall rules.
  1202. secure_redirects
  1203. ----------------
  1204. Accept ICMP  redirect  messages  only  for gateways, listed in default gateway
  1205. list. Enabled by default.
  1206. shared_media
  1207. ------------
  1208. If it  is  not  set  the kernel does not assume that different subnets on this
  1209. device can communicate directly. Default setting is 'yes'.
  1210. send_redirects
  1211. --------------
  1212. Determines whether to send ICMP redirects to other hosts.
  1213. Routing settings
  1214. ----------------
  1215. The directory  /proc/sys/net/ipv4/route  contains  several  file  to  control
  1216. routing issues.
  1217. error_burst and error_cost
  1218. --------------------------
  1219. These parameters  are used to limit the warning messages written to the kernel
  1220. log from  the  routing  code.  The  higher the error_cost factor is, the fewer
  1221. messages will  be written. Error_burst controls when messages will be dropped.
  1222. The default settings limit warning messages to one every five seconds.
  1223. flush
  1224. -----
  1225. Writing to this file results in a flush of the routing cache.
  1226. gc_elastic, gc_interval, gc_min_interval, gc_tresh, gc_timeout
  1227. --------------------------------------------------------------
  1228. Values to  control  the  frequency  and  behavior  of  the  garbage collection
  1229. algorithm for the routing cache.
  1230. max_size
  1231. --------
  1232. Maximum size  of  the routing cache. Old entries will be purged once the cache
  1233. reached has this size.
  1234. max_delay, min_delay
  1235. --------------------
  1236. Delays for flushing the routing cache.
  1237. redirect_load, redirect_number
  1238. ------------------------------
  1239. Factors which  determine  if  more ICPM redirects should be sent to a specific
  1240. host. No  redirects  will be sent once the load limit or the maximum number of
  1241. redirects has been reached.
  1242. redirect_silence
  1243. ----------------
  1244. Timeout for redirects. After this period redirects will be sent again, even if
  1245. this has been stopped, because the load or number limit has been reached.
  1246. Network Neighbor handling
  1247. -------------------------
  1248. Settings about how to handle connections with direct neighbors (nodes attached
  1249. to the same link) can be found in the directory /proc/sys/net/ipv4/neigh.
  1250. As we  saw  it  in  the  conf directory, there is a default subdirectory which
  1251. holds the  default  values, and one directory for each interface. The contents
  1252. of the  directories  are identical, with the single exception that the default
  1253. settings contain additional options to set garbage collection parameters.
  1254. In the interface directories you'll find the following entries:
  1255. base_reachable_time
  1256. -------------------
  1257. A base  value  used for computing the random reachable time value as specified
  1258. in RFC2461.
  1259. retrans_time
  1260. ------------
  1261. The time,  expressed  in  jiffies  (1/100 sec), between retransmitted Neighbor
  1262. Solicitation messages.  Used  for  address  resolution  and  to determine if a
  1263. neighbor is unreachable.
  1264. unres_qlen
  1265. ----------
  1266. Maximum queue  length  for a pending arp request - the number of packets which
  1267. are accepted from other layers while the ARP address is still resolved.
  1268. anycast_delay
  1269. -------------
  1270. Maximum for  random  delay  of  answers  to  neighbor solicitation messages in
  1271. jiffies (1/100  sec). Not yet implemented (Linux does not have anycast support
  1272. yet).
  1273. ucast_solicit
  1274. -------------
  1275. Maximum number of retries for unicast solicitation.
  1276. mcast_solicit
  1277. -------------
  1278. Maximum number of retries for multicast solicitation.
  1279. delay_first_probe_time
  1280. ----------------------
  1281. Delay for  the  first  time  probe  if  the  neighbor  is  reachable.  (see
  1282. gc_stale_time)
  1283. locktime
  1284. --------
  1285. An ARP/neighbor  entry  is only replaced with a new one if the old is at least
  1286. locktime old. This prevents ARP cache thrashing.
  1287. proxy_delay
  1288. -----------
  1289. Maximum time  (real  time is random [0..proxytime]) before answering to an ARP
  1290. request for  which  we have an proxy ARP entry. In some cases, this is used to
  1291. prevent network flooding.
  1292. proxy_qlen
  1293. ----------
  1294. Maximum queue length of the delayed proxy arp timer. (see proxy_delay).
  1295. app_solcit
  1296. ----------
  1297. Determines the  number of requests to send to the user level ARP daemon. Use 0
  1298. to turn off.
  1299. gc_stale_time
  1300. -------------
  1301. Determines how  often  to  check  for stale ARP entries. After an ARP entry is
  1302. stale it  will  be resolved again (which is useful when an IP address migrates
  1303. to another  machine).  When  ucast_solicit is greater than 0 it first tries to
  1304. send an  ARP  packet  directly  to  the  known  host  When  that  fails  and
  1305. mcast_solicit is greater than 0, an ARP request is broadcasted.
  1306. 2.9 Appletalk
  1307. -------------
  1308. The /proc/sys/net/appletalk  directory  holds the Appletalk configuration data
  1309. when Appletalk is loaded. The configurable parameters are:
  1310. aarp-expiry-time
  1311. ----------------
  1312. The amount  of  time  we keep an ARP entry before expiring it. Used to age out
  1313. old hosts.
  1314. aarp-resolve-time
  1315. -----------------
  1316. The amount of time we will spend trying to resolve an Appletalk address.
  1317. aarp-retransmit-limit
  1318. ---------------------
  1319. The number of times we will retransmit a query before giving up.
  1320. aarp-tick-time
  1321. --------------
  1322. Controls the rate at which expires are checked.
  1323. The directory  /proc/net/appletalk  holds the list of active Appletalk sockets
  1324. on a machine.
  1325. The fields  indicate  the DDP type, the local address (in network:node format)
  1326. the remote  address,  the  size of the transmit pending queue, the size of the
  1327. received queue  (bytes waiting for applications to read) the state and the uid
  1328. owning the socket.
  1329. /proc/net/atalk_iface lists  all  the  interfaces  configured for appletalk.It
  1330. shows the  name  of the interface, its Appletalk address, the network range on
  1331. that address  (or  network number for phase 1 networks), and the status of the
  1332. interface.
  1333. /proc/net/atalk_route lists  each  known  network  route.  It lists the target
  1334. (network) that the route leads to, the router (may be directly connected), the
  1335. route flags, and the device the route is using.
  1336. 2.10 IPX
  1337. --------
  1338. The IPX protocol has no tunable values in proc/sys/net.
  1339. The IPX  protocol  does,  however,  provide  proc/net/ipx. This lists each IPX
  1340. socket giving  the  local  and  remote  addresses  in  Novell  format (that is
  1341. network:node:port). In  accordance  with  the  strange  Novell  tradition,
  1342. everything but the port is in hex. Not_Connected is displayed for sockets that
  1343. are not  tied to a specific remote address. The Tx and Rx queue sizes indicate
  1344. the number  of  bytes  pending  for  transmission  and  reception.  The  state
  1345. indicates the  state  the  socket  is  in and the uid is the owning uid of the
  1346. socket.
  1347. The /proc/net/ipx_interface  file lists all IPX interfaces. For each interface
  1348. it gives  the network number, the node number, and indicates if the network is
  1349. the primary  network.  It  also  indicates  which  device  it  is bound to (or
  1350. Internal for  internal  networks)  and  the  Frame  Type if appropriate. Linux
  1351. supports 802.3,  802.2,  802.2  SNAP  and DIX (Blue Book) ethernet framing for
  1352. IPX.
  1353. The /proc/net/ipx_route  table  holds  a list of IPX routes. For each route it
  1354. gives the  destination  network, the router node (or Directly) and the network
  1355. address of the router (or Connected) for internal networks.
  1356. ------------------------------------------------------------------------------
  1357. Summary
  1358. ------------------------------------------------------------------------------
  1359. Certain aspects  of  kernel  behavior  can be modified at runtime, without the
  1360. need to  recompile  the kernel, or even to reboot the system. The files in the
  1361. /proc/sys tree  can  not only be read, but also modified. You can use the echo
  1362. command to write value into these files, thereby changing the default settings
  1363. of the kernel.
  1364. ------------------------------------------------------------------------------