Junxiao Shi | b2ff573 | 2015-06-26 14:09:02 -0700 | [diff] [blame] | 1 | # ndn-dissect |
| 2 | |
| 3 | **ndn-dissect** is an NDN packet format inspector. |
Davide Pesavento | a420e97 | 2021-02-25 00:56:25 -0500 | [diff] [blame^] | 4 | It reads zero or more NDN packets from either an input file or the standard |
| 5 | input, and displays the Type-Length-Value (TLV) structure of those packets |
| 6 | on the standard output. |
Junxiao Shi | b2ff573 | 2015-06-26 14:09:02 -0700 | [diff] [blame] | 7 | |
| 8 | Usage example: |
| 9 | |
Davide Pesavento | a420e97 | 2021-02-25 00:56:25 -0500 | [diff] [blame^] | 10 | 1. start NFD on the local machine |
| 11 | 2. run `echo 'HELLO WORLD' | ndnpoke /localhost/demo/hello` |
| 12 | 3. on another console, run `ndnpeek /localhost/demo/hello | ndn-dissect` |
Junxiao Shi | b2ff573 | 2015-06-26 14:09:02 -0700 | [diff] [blame] | 13 | |
| 14 | For more information, consult the manpage. |