How much load does promiscuous mode add to the server, when enabled on the main network public interface.
I had to create a bridge and while inspecting the traffic using something like:
tcpdump -n -e -ttt -i pflog0 inbound
I notice all requests of my "neighbors/servers" for example like all the attempts to ssh on port 22 etc.
By enabling promisc
mode does the NIC card delegates all the packages to the server, therefore, more CPU needs to be used to do the filtering etc?
Making an analogy could it be said that promiscuous mode puts the network card in bridge mode/bypass so that the network card capabilities are unused?