1
0
Fork 0
mirror of https://github.com/pavel-odintsov/fastnetmon synced 2024-05-07 05:36:12 +02:00

Fixed netmap guide

This commit is contained in:
Pavel Odintsov 2017-12-03 21:59:42 +00:00 committed by GitHub
parent 5fe0479464
commit f5c8396403
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,53 +1,4 @@
Build netmap on Debian 7 Wheezy with ixgbe 10GE NIC (82599):
### Installing Netmap
If you want _stable_ driver with all modern features, please use this reference instead [here](http://www.stableit.ru/2014/10/netmap-debian-7-wheezy-intel-82599.html)
Get kernel sources:
```bash
cd /usr/src
apt-get source linux-image-3.2.0-4-amd64
```
Download netmap kernel module code:
```bash
cd /usr/src
git clone https://code.google.com/p/netmap/
cd netmap/LINUX/
```
Build netmap with drivers:
```
./configure --kernel-sources=/usr/src/linux-3.2.65 --drivers=ixgbe
make
make install
```
Load modules:
```
insmod ./netmap.ko
modprobe mdio
modprobe ptp
modprobe dca
insmod ixgbe/ixgbe.ko
```
Enable interfaces:
```bash
ifconfig eth0 up
ifconfig eth0 promisc
```
Add to /etc/rc.local:
```bash
rmmod ixgbe
insmod /usr/src/netmap/LINUX/netmap.ko
modprobe mdio
modprobe ptp
modprobe dca
insmod /usr/src/netmap/LINUX/ixgbe/ixgbe.ko
ifconfig eth0 up
ifconfig eth0 promisc
```
You could use this script for automatic install netmap with all required drivers: https://gist.github.com/pavel-odintsov/6353bfd3bfd7dba2d99a
You could use this script for automatic install Netmap with all required drivers: https://gist.github.com/pavel-odintsov/6353bfd3bfd7dba2d99a