Users Guide

Table Of Contents
Linux* Driver Installation and Configuration
99
tel.com/design/network/applnots/ap450.htm.
l A descriptor describes a data buffer and attributes related to the data buffer. This information is accessed by
the hardware.
Additional Configurations
Configuring the Driver on Different Distributions
Configuring a network driver to load properly when the system is started is distribution dependent. Typically, the con-
figuration process involves adding an alias line to /etc/modules.conf or /etc/modprobe.conf as well as editing other system
start up scripts and/or configuration files. Many popular Linux distributions ship with tools to make these changes for you. To
learn the proper way to configure a network device for your system, refer to your distribution documentation. If during this pro-
cess you are asked for the driver or module name, the name for the Linux Base Driver for the device is ixgbevf.
For example, if you install the ixgbevf driver for two adapters (eth0 and eth1) and want to set the interrupt mode to MSI-X and
MSI, respectively, add the following to modules.conf or /etc/modprobe.conf:
# alias eth0 ixgbevf
# alias eth1 ixgbevf
# options ixgbevf IntMode=2,1
Viewing Link Messages
Link messages will not be displayed to the console if the distribution is restricting system messages. In order to see network
driver link messages on your console, set dmesg to eight by entering the following:
# dmesg -n 8
NOTE: This setting is not saved across reboots.
ethtool
The driver utilizes the ethtool interface for driver configuration and diagnostics, as well as displaying statistical information.
The latest ethtool version is required for this functionality. Download it at: https://kernel.org/pub/software/network/ethtool/
MACVLAN
This driver supports MACVLAN. Kernel support for MACVLAN can be tested by checking if the MACVLAN driver is loaded.
You can run 'lsmod | grep macvlan' to see if the MACVLAN driver is loaded or run 'modprobe macvlan' to try to load the
MACVLAN driver.
NOTE:
l In passthru mode, you can only set up one MACVLAN device. It will inherit the MAC address of the underlying
PF (Physical Function) device.
NAPI
This driver supports NAPI (Rx polling mode). For more information on NAPI, see https://wiki.linux-
foundation.org/networking/napi.