Tagged Questions
2
votes
5answers
2k views
Packet socket in promiscuous mode only receiving local traffic
I have a socket created with socket(PF_PACKET, SOCK_RAW, htons(ETH_P_ALL)), and I've set it into promiscuous mode using
struct ifreq ifr;
strncpy((char*)ifr.ifr_name, interface, IF_NAMESIZE);
...