On Saturday, October 8, 2016 at 11:25:31 PM UTC-4, Sam Roza wrote: > > Not sure what happened there...any ideas? >
i do not know what made it start working, but that is what working output looks like. the OKOKOKOK is simply multiple OK responses from the interceptor. we do not care about that, so you can send it to /dev/null. put the working capture into a shell script, say capture.sh, like this: #!/bin/sh ngrep -l -q -d eth0 '0004a369e0d6' | sed '/mac=/!d' | xargs -n 1 curl http://localhost:9999 -s -d then run the script like this: sudo capture.sh > /dev/null as for the interceptor, the stack trace is from a string value of '365' for uv that did not get converted to int. the continued capture by the socket server is due to improper shutdown. both of these are fixed in interceptor 0.12. 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.
