Configurable
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. There are a few network parameters that can be tuned to better match
  2. the kernel to your system hardware and intended usage. The defaults
  3. are usually a good choice for 99% of the people 99% of the time, but
  4. you should be aware they do exist and can be changed.
  5. The current list of parameters can be found in the files:
  6. linux/net/TUNABLE
  7. linux/Documentation/networking/ip-sysctl.txt
  8. Some of these are accessible via the sysctl interface, and many more are
  9. scheduled to be added in this way. For example, some parameters related 
  10. to Address Resolution Protocol (ARP) are very easily viewed and altered.
  11. # cat /proc/sys/net/ipv4/arp_timeout
  12. 6000
  13. # echo 7000 > /proc/sys/net/ipv4/arp_timeout
  14. # cat /proc/sys/net/ipv4/arp_timeout
  15. 7000
  16. Others are already accessible via the related user space programs.
  17. For example, MAX_WINDOW has a default of 32 k which is a good choice for
  18. modern hardware, but if you have a slow (8 bit) Ethernet card and/or a slow
  19. machine, then this will be far too big for the card to keep up with fast 
  20. machines transmitting on the same net, resulting in overruns and receive errors.
  21. A value of about 4 k would be more appropriate, which can be set via:
  22. # route add -net 192.168.3.0 window 4096
  23. The remainder of these can only be presently changed by altering a #define
  24. in the related header file. This means an edit and recompile cycle.
  25. Paul Gortmaker 06/96