Hi all, is it possible to set up a capture filter in wireshark for the decode as feature just like tshark -d option i.e. -d udp.port==8000,rudp, before to start capture ? This question is marked "community wiki". asked 08 Apr '11, 06:59 flap78 |
2 Answers:
You could do that using lua In your c:program filesWireshark directory find init.lua file. Comment out disable_lua line and at the end of the file add dofile("decodes.lua"). Then create a file in the same directory called decodes.lua Edit it to have contents like below
Now each time you start wireshark traffic on 8000 port will be decoded as rudp Instead of having it as permanent solution you can use command line option -Xlua_script:./decodes.lua when starting wireshark. answered 11 Apr '11, 09:01 izopizo |