1
0
mirror of https://github.com/pavel-odintsov/fastnetmon synced 2024-09-28 15:41:45 +02:00

Add remark about interface promisc mode

This commit is contained in:
Pavel Odintsov 2015-03-10 23:14:49 +03:00
parent b49b8f01e2
commit 5202d35cee

@ -29,6 +29,12 @@ modprobe dca
insmod ixgbe/ixgbe.ko
```
Enable interfaces:
```bash
ifconfig eth0 up
ifconfig eth0 promisc
```
Add to /etc/rc.local:
```bash
rmmod ixgbe
@ -37,4 +43,6 @@ modprobe mdio
modprobe ptp
modprobe dca
insmod /usr/src/netmap/LINUX/ixgbe/ixgbe.ko
ifconfig eth0 up
ifconfig eth0 promisc
```