Info
- Zenoh Dissector: 1.9.0
- Zenoh Protocol: 1.9.0
- Wireshark Version: 4.6.0
Installation
Download and extract the corresponding zip file for your platform. The plugin path uses the Wireshark major.minor version format.
Linux
For Wireshark 4.6.0:
mkdir -p ~/.local/lib/wireshark/plugins/4.6.0/epan
cp libzenoh_dissector.so ~/.local/lib/wireshark/plugins/4.6.0/epan/libzenoh_dissector.somacOS
For Wireshark 4.6.0 (macOS uses dash format):
WIRESHARK_VER_MACOS=$(echo "4.6.0" | tr '.' '-')
mkdir -p ~/.local/lib/wireshark/plugins/$WIRESHARK_VER_MACOS/epan
cp libzenoh_dissector.so ~/.local/lib/wireshark/plugins/$WIRESHARK_VER_MACOS/epan/libzenoh_dissector.soWindows
For Wireshark 4.6.0:
$${empty}wireshark_ver = "4.6.0"
$${empty}epan_dir = "$${empty}Env:APPDATA\Wireshark\plugins\$${empty}wireshark_ver\epan"
if (-Not (Test-Path $${empty}epan_dir)) {
mkdir -p $${empty}epan_dir
}
cp zenoh_dissector.dll $${empty}epan_dirSHA256 Checksums
$SHA256SUMWhat's Changed
Documentation 📝
- Update Wireshark version from 4.4 to 4.6 in README by @fuzzypixelz in #134
Full Changelog: 1.8.0...1.9.0