tcpdump or pcap for embedded linux

I have been digging and digging and I can’t seem to find what I am looking for. I need a packet capture library/tool that works in the confined memory space of embedded linux on the 9210. Does this exist?

according to NS9210 hardware reference manual:
http://ftp1.digi.com/support/documentation/90000846_H.pdf
the processor has controlling bits to run ethernet in promiscous mode.

A look into the Linux ethernet driver:
linux/drivers/net/ns9xxx-eth.c search for ETH_SAF_PRO shows that those bits can be set, so its implemented in the driver.

next step would be to port/cross compile tcpdump for ARM and try to run it on the NS9210, presumed the package will not be to big to run from the Connect ME 9210 flash or RAM.

If its too big, maybe you could get a “tiny” version for busybox or similar thing. see e.g.:
http://lists.busybox.net/pipermail/busybox/2001-January/035558.html