On Wednesday, November 16, 2016 at 7:20:32 PM UTC-5, Pat Hayes wrote: > > Oh, BTW. Here is how I'm getting the data into the interceptor. > > tcpflow -C -i ens19 -s tcp dst port 80 | /root/combine-lines.pl | xargs -n > 1 curl http://192.168.1.42:9999 -s -d > > hard to say for certain without seeing debug log, but it looks like you're capturing http traffic other than that originating from the bridge. a simple GET / will result in an empty packet, i.e., no dateTime.
try updating to the latest version of the interceptor - it should reject packets that have no dateTime. also, you can prevent empty packets by being more restrictive with the pcap filter. instead of tcp dst port 80 try: src host x.x.x.x and dst port 80 that will capture only traffic coming from the bridge. m -- You received this message because you are subscribed to the Google Groups "weewx-user" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
