How would Wireshark be used to capture RFID tag data from the Impinj Speedway Revolution R420 or R220 in order to write it out to a database or send it to the cloud? asked 16 Apr '13, 14:29 vimpinj edited 16 Apr '13, 14:47 grahamb ♦ |
One Answer:
Wireshark is able to decode the LLRP protocol. So, if you have a client that talks to the RFID reader via LLRP, you would be able to capture and analyze that traffic with Wireshark (http://wiki.wireshark.org/LLRP ). If the client does not use LLRP, there is no way to capture that communication with Wireshark. With tshark, you can also export the RFID tag (EPC code) from the LLRP messages:
Sample output:
The tags are separated by a comma (,). Regards answered 16 Apr '13, 15:50 Kurt Knochner ♦ edited 16 Apr '13, 16:06 |