set a filter of packet length in wireshark
All these work on Wireshark’s filter frame.len==243 <- I use this ip.len==229 udp.length==209 data.len==201
All these work on Wireshark’s filter frame.len==243 <- I use this ip.len==229 udp.length==209 data.len==201
You can write dissectors using Wireshark’s LUA API. That way you can write a quick-and dirty dissector without downloading Wireshark’s code, or even a compiler. A very simple, yet powerful example is shown in the documentation. Such a LUA dissector is perfectly fine for debugging use, and even distribution with your project. If you intend … Read more
I don’t see a way to clear the window, but hitting ‘Restart the running live capture’ seems to work. You can therefore clear the window in WireShark by doing one of the following: Clicking on the green shark-fin to the right of the red Stop button Clicking on Capture > Restart Hitting Ctrl-R.
Just in case you are looking for an alternate way and the environment you use is Windows, Microsoft’s Network Monitor 3.3 is a good choice. It has the process name column. You easily add it to a filter using the context menu and apply the filter.. As usual the GUI is very intuitive…
Match destination: ip.dst == x.x.x.x Match source: ip.src == x.x.x.x Match either: ip.addr == x.x.x.x