No packets are captured from a tap interface #10713
-
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
I have had something Similar. If tap4 is your actual port it has to be setup like this: Hopefully this works for you. |
Beta Was this translation helpful? Give feedback.
-
So the culprit was that the tap interface for some reason was not being added to the bond0 interface. Checking via
And after simply typing the command
And now we can capture raw packets on the bond0 interface.
The file
|
Beta Was this translation helpful? Give feedback.
So the culprit was that the tap interface for some reason was not being added to the bond0 interface.
Checking via
cat /proc/net/bonding/bond0
And after simply typing the command
ifenslave bond0 tap4
we see that the bond0 status is now up.