Skip to content

Instantly share code, notes, and snippets.

@yoursunny
Last active August 29, 2015 14:18
Show Gist options
  • Save yoursunny/b7002336af5859737694 to your computer and use it in GitHub Desktop.
Save yoursunny/b7002336af5859737694 to your computer and use it in GitHub Desktop.
Wireshark dissector for NDN packet format

Wireshark dissector for NDN packet format

Wireshark is an open-source packet analyzer. It is widely used for network troubleshooting, software and communication protocol development, etc.

Wireshark understands the structure of different networking protocols. It can parse and display the fields, along with their meanings as specified by different networking protocols.
The parser of each protocol is called a dissector.
Wireshark is equipped with thousands of dissectors on different levels, including Ethernet, IPv4, UDP, SNMP, HTTP, and many more.
One can either write a dissector in C programming language and compile it into Wireshark binary, or write a dissector in Lua scripting language and load it when Wireshark starts.

The NDN packet format is a network layer protocol designed for Named Data Networking.
This project is to develop a Wireshark dissector for NDN packet format.

Requirements

The dissector should:

  1. recognize NDN network layer packets in UDP packets, TCP streams, and WebSocket frames
  2. parse a NDN network layer packet into nested Type-Length-Value structure
  3. tag each Type code with its name (eg. 0x0a is tagged "Nonce")
  4. generate a warning field if the NDN packet is invalid (eg. required field is missing, wrong order of fields)
  5. display the top-level Type ("Interest" or "Data") and the Name (as an ndn: URI) in "Info" column

References

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment