igb.txt 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. Linux* Base Driver for Intel(R) Ethernet Network Connection
  2. ===========================================================
  3. Intel Gigabit Linux driver.
  4. Copyright(c) 1999 - 2013 Intel Corporation.
  5. Contents
  6. ========
  7. - Identifying Your Adapter
  8. - Additional Configurations
  9. - Support
  10. Identifying Your Adapter
  11. ========================
  12. This driver supports all 82575, 82576 and 82580-based Intel (R) gigabit network
  13. connections.
  14. For specific information on how to identify your adapter, go to the Adapter &
  15. Driver ID Guide at:
  16. http://support.intel.com/support/go/network/adapter/idguide.htm
  17. Command Line Parameters
  18. =======================
  19. The default value for each parameter is generally the recommended setting,
  20. unless otherwise noted.
  21. max_vfs
  22. -------
  23. Valid Range: 0-7
  24. Default Value: 0
  25. This parameter adds support for SR-IOV. It causes the driver to spawn up to
  26. max_vfs worth of virtual function.
  27. QueuePairs
  28. ----------
  29. Valid Range: 0-1
  30. Default Value: 1 (TX and RX will be paired onto one interrupt vector)
  31. If set to 0, when MSI-X is enabled, the TX and RX will attempt to occupy
  32. separate vectors.
  33. This option can be overridden to 1 if there are not sufficient interrupts
  34. available. This can occur if any combination of RSS, VMDQ, and max_vfs
  35. results in more than 4 queues being used.
  36. Node
  37. ----
  38. Valid Range: 0-n
  39. Default Value: -1 (off)
  40. 0 - n: where n is the number of the NUMA node that should be used to
  41. allocate memory for this adapter port.
  42. -1: uses the driver default of allocating memory on whichever processor is
  43. running insmod/modprobe.
  44. The Node parameter will allow you to pick which NUMA node you want to have
  45. the adapter allocate memory from. All driver structures, in-memory queues,
  46. and receive buffers will be allocated on the node specified. This parameter
  47. is only useful when interrupt affinity is specified, otherwise some portion
  48. of the time the interrupt could run on a different core than the memory is
  49. allocated on, causing slower memory access and impacting throughput, CPU, or
  50. both.
  51. EEE
  52. ---
  53. Valid Range: 0-1
  54. Default Value: 1 (enabled)
  55. A link between two EEE-compliant devices will result in periodic bursts of
  56. data followed by long periods where in the link is in an idle state. This Low
  57. Power Idle (LPI) state is supported in both 1Gbps and 100Mbps link speeds.
  58. NOTE: EEE support requires autonegotiation.
  59. DMAC
  60. ----
  61. Valid Range: 0-1
  62. Default Value: 1 (enabled)
  63. Enables or disables DMA Coalescing feature.
  64. Additional Configurations
  65. =========================
  66. Jumbo Frames
  67. ------------
  68. Jumbo Frames support is enabled by changing the MTU to a value larger than
  69. the default of 1500. Use the ifconfig command to increase the MTU size.
  70. For example:
  71. ifconfig eth<x> mtu 9000 up
  72. This setting is not saved across reboots.
  73. Notes:
  74. - The maximum MTU setting for Jumbo Frames is 9216. This value coincides
  75. with the maximum Jumbo Frames size of 9234 bytes.
  76. - Using Jumbo frames at 10 or 100 Mbps is not supported and may result in
  77. poor performance or loss of link.
  78. ethtool
  79. -------
  80. The driver utilizes the ethtool interface for driver configuration and
  81. diagnostics, as well as displaying statistical information. The latest
  82. version of ethtool can be found at:
  83. http://ftp.kernel.org/pub/software/network/ethtool/
  84. Enabling Wake on LAN* (WoL)
  85. ---------------------------
  86. WoL is configured through the ethtool* utility.
  87. For instructions on enabling WoL with ethtool, refer to the ethtool man page.
  88. WoL will be enabled on the system during the next shut down or reboot.
  89. For this driver version, in order to enable WoL, the igb driver must be
  90. loaded when shutting down or rebooting the system.
  91. Wake On LAN is only supported on port A of multi-port adapters.
  92. Wake On LAN is not supported for the Intel(R) Gigabit VT Quad Port Server
  93. Adapter.
  94. Multiqueue
  95. ----------
  96. In this mode, a separate MSI-X vector is allocated for each queue and one
  97. for "other" interrupts such as link status change and errors. All
  98. interrupts are throttled via interrupt moderation. Interrupt moderation
  99. must be used to avoid interrupt storms while the driver is processing one
  100. interrupt. The moderation value should be at least as large as the expected
  101. time for the driver to process an interrupt. Multiqueue is off by default.
  102. REQUIREMENTS: MSI-X support is required for Multiqueue. If MSI-X is not
  103. found, the system will fallback to MSI or to Legacy interrupts.
  104. MAC and VLAN anti-spoofing feature
  105. ----------------------------------
  106. When a malicious driver attempts to send a spoofed packet, it is dropped by
  107. the hardware and not transmitted. An interrupt is sent to the PF driver
  108. notifying it of the spoof attempt.
  109. When a spoofed packet is detected the PF driver will send the following
  110. message to the system log (displayed by the "dmesg" command):
  111. Spoof event(s) detected on VF(n)
  112. Where n=the VF that attempted to do the spoofing.
  113. Setting MAC Address, VLAN and Rate Limit Using IProute2 Tool
  114. ------------------------------------------------------------
  115. You can set a MAC address of a Virtual Function (VF), a default VLAN and the
  116. rate limit using the IProute2 tool. Download the latest version of the
  117. iproute2 tool from Sourceforge if your version does not have all the
  118. features you require.
  119. Support
  120. =======
  121. For general information, go to the Intel support website at:
  122. www.intel.com/support/
  123. or the Intel Wired Networking project hosted by Sourceforge at:
  124. http://sourceforge.net/projects/e1000
  125. If an issue is identified with the released source code on the supported
  126. kernel with a supported adapter, email the specific information related
  127. to the issue to e1000-devel@lists.sf.net