Fix is simple, just modify getlhs.c and return ETHHDR_SIZE
Like this:
...
} else if ( strstr(ifname, "eth") ) {
linkhdr_size = ETHHDR_SIZE;
return 0;
} else if ( strstr(ifname, "br") ) { // << ADD THIS FOR YOUR BRIDGE DEVICES like br0
linkhdr_size = ETHHDR_SIZE;
return 0;
} else if (strstr(ifname, "ets")) {
...
Recompile, and you should be golden.
阅读(3332) | 评论(0) | 转发(0) |