diff options
author | Luca Deri <deri@ntop.org> | 2021-04-01 10:24:44 +0200 |
---|---|---|
committer | Luca Deri <deri@ntop.org> | 2021-04-01 10:24:44 +0200 |
commit | db5aeb0cb1fc8360a414c70fbbf843eb9d811c89 (patch) | |
tree | 203ef2ad3e2c529238b30c7db86f00ab6b52b6bf /wireshark | |
parent | 28879c570e700660e4eab7bbb72064d5e00fbf05 (diff) |
Readme update
Diffstat (limited to 'wireshark')
-rw-r--r-- | wireshark/README.md | 4 | ||||
-rw-r--r-- | wireshark/ndpi.lua | 5 |
2 files changed, 3 insertions, 6 deletions
diff --git a/wireshark/README.md b/wireshark/README.md index 1811c663e..b9b241a19 100644 --- a/wireshark/README.md +++ b/wireshark/README.md @@ -6,8 +6,8 @@ nDPI can provide Wireshark protocol dissection to complement internal protocol d ## Installation -- Copy the ndpiReader application (it is located under nDPI/example) to the Extcap path. See Wireshark -> About menu for identifying the extcap directory. Under OSX it is usually /Applications/Wireshark.app/Contents/MacOS/extcap -- Copy the ndpi.lua plugin under ~/.wireshark/plugins (or in the global Wireshark plugins directory) +- Copy the ndpiReader application (it is located under nDPI/example) to the Extcap path. See Wireshark -> About menu for identifying the "Personal Extcap path" directory. Under MacOS it is usually /Users/username/.wireshark/extcap +- Copy the ndpi.lua plugin under ~/.local/lib/wireshark/plugins ## Usage diff --git a/wireshark/ndpi.lua b/wireshark/ndpi.lua index 75ca95a70..47925fbb8 100644 --- a/wireshark/ndpi.lua +++ b/wireshark/ndpi.lua @@ -1,5 +1,5 @@ -- --- (C) 2017-18 - ntop.org +-- (C) 2017-21 - ntop.org -- -- This plugin is part of nDPI (https://github.com/ntop/nDPI) -- @@ -18,9 +18,6 @@ -- Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -- --- wireshark ~/Dropbox/discovery/Daniele/alexa_sonos_only.pcap --- cat /tmp/wireshark.sql | influx -database wireshark - local ndpi_proto = Proto("ndpi", "nDPI Protocol Interpreter") ndpi_proto.fields = {} |