e100.rst 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. ==============================================================
  2. Linux* Base Driver for the Intel(R) PRO/100 Family of Adapters
  3. ==============================================================
  4. June 1, 2018
  5. Contents
  6. ========
  7. - In This Release
  8. - Identifying Your Adapter
  9. - Building and Installation
  10. - Driver Configuration Parameters
  11. - Additional Configurations
  12. - Known Issues
  13. - Support
  14. In This Release
  15. ===============
  16. This file describes the Linux* Base Driver for the Intel(R) PRO/100 Family of
  17. Adapters. This driver includes support for Itanium(R)2-based systems.
  18. For questions related to hardware requirements, refer to the documentation
  19. supplied with your Intel PRO/100 adapter.
  20. The following features are now available in supported kernels:
  21. - Native VLANs
  22. - Channel Bonding (teaming)
  23. - SNMP
  24. Channel Bonding documentation can be found in the Linux kernel source:
  25. /Documentation/networking/bonding.txt
  26. Identifying Your Adapter
  27. ========================
  28. For information on how to identify your adapter, and for the latest Intel
  29. network drivers, refer to the Intel Support website:
  30. http://www.intel.com/support
  31. Driver Configuration Parameters
  32. ===============================
  33. The default value for each parameter is generally the recommended setting,
  34. unless otherwise noted.
  35. Rx Descriptors: Number of receive descriptors. A receive descriptor is a data
  36. structure that describes a receive buffer and its attributes to the network
  37. controller. The data in the descriptor is used by the controller to write
  38. data from the controller to host memory. In the 3.x.x driver the valid range
  39. for this parameter is 64-256. The default value is 256. This parameter can be
  40. changed using the command::
  41. ethtool -G eth? rx n
  42. Where n is the number of desired Rx descriptors.
  43. Tx Descriptors: Number of transmit descriptors. A transmit descriptor is a data
  44. structure that describes a transmit buffer and its attributes to the network
  45. controller. The data in the descriptor is used by the controller to read
  46. data from the host memory to the controller. In the 3.x.x driver the valid
  47. range for this parameter is 64-256. The default value is 128. This parameter
  48. can be changed using the command::
  49. ethtool -G eth? tx n
  50. Where n is the number of desired Tx descriptors.
  51. Speed/Duplex: The driver auto-negotiates the link speed and duplex settings by
  52. default. The ethtool utility can be used as follows to force speed/duplex.::
  53. ethtool -s eth? autoneg off speed {10|100} duplex {full|half}
  54. NOTE: setting the speed/duplex to incorrect values will cause the link to
  55. fail.
  56. Event Log Message Level: The driver uses the message level flag to log events
  57. to syslog. The message level can be set at driver load time. It can also be
  58. set using the command::
  59. ethtool -s eth? msglvl n
  60. Additional Configurations
  61. =========================
  62. Configuring the Driver on Different Distributions
  63. -------------------------------------------------
  64. Configuring a network driver to load properly when the system is started
  65. is distribution dependent. Typically, the configuration process involves
  66. adding an alias line to /etc/modprobe.d/*.conf as well as editing other
  67. system startup scripts and/or configuration files. Many popular Linux
  68. distributions ship with tools to make these changes for you. To learn
  69. the proper way to configure a network device for your system, refer to
  70. your distribution documentation. If during this process you are asked
  71. for the driver or module name, the name for the Linux Base Driver for
  72. the Intel PRO/100 Family of Adapters is e100.
  73. As an example, if you install the e100 driver for two PRO/100 adapters
  74. (eth0 and eth1), add the following to a configuration file in
  75. /etc/modprobe.d/::
  76. alias eth0 e100
  77. alias eth1 e100
  78. Viewing Link Messages
  79. ---------------------
  80. In order to see link messages and other Intel driver information on your
  81. console, you must set the dmesg level up to six. This can be done by
  82. entering the following on the command line before loading the e100
  83. driver::
  84. dmesg -n 6
  85. If you wish to see all messages issued by the driver, including debug
  86. messages, set the dmesg level to eight.
  87. NOTE: This setting is not saved across reboots.
  88. ethtool
  89. -------
  90. The driver utilizes the ethtool interface for driver configuration and
  91. diagnostics, as well as displaying statistical information. The ethtool
  92. version 1.6 or later is required for this functionality.
  93. The latest release of ethtool can be found from
  94. https://www.kernel.org/pub/software/network/ethtool/
  95. Enabling Wake on LAN* (WoL)
  96. ---------------------------
  97. WoL is provided through the ethtool* utility. For instructions on
  98. enabling WoL with ethtool, refer to the ethtool man page. WoL will be
  99. enabled on the system during the next shut down or reboot. For this
  100. driver version, in order to enable WoL, the e100 driver must be loaded
  101. when shutting down or rebooting the system.
  102. NAPI
  103. ----
  104. NAPI (Rx polling mode) is supported in the e100 driver.
  105. See https://wiki.linuxfoundation.org/networking/napi for more
  106. information on NAPI.
  107. Multiple Interfaces on Same Ethernet Broadcast Network
  108. ------------------------------------------------------
  109. Due to the default ARP behavior on Linux, it is not possible to have one
  110. system on two IP networks in the same Ethernet broadcast domain
  111. (non-partitioned switch) behave as expected. All Ethernet interfaces
  112. will respond to IP traffic for any IP address assigned to the system.
  113. This results in unbalanced receive traffic.
  114. If you have multiple interfaces in a server, either turn on ARP
  115. filtering by
  116. (1) entering:: echo 1 > /proc/sys/net/ipv4/conf/all/arp_filter
  117. (this only works if your kernel's version is higher than 2.4.5), or
  118. (2) installing the interfaces in separate broadcast domains (either
  119. in different switches or in a switch partitioned to VLANs).
  120. Support
  121. =======
  122. For general information, go to the Intel support website at:
  123. http://www.intel.com/support/
  124. or the Intel Wired Networking project hosted by Sourceforge at:
  125. http://sourceforge.net/projects/e1000
  126. If an issue is identified with the released source code on a supported kernel
  127. with a supported adapter, email the specific information related to the issue
  128. to e1000-devel@lists.sf.net.