First time here? Check out the FAQ!

Ask Your Question
0

how to register a new LUA based dissector only to udp src port

asked Feb 27 '18

BMWE gravatar image

Hello,

I'd like to register my new dissector only to a udp src port

Therefore using following code

udp_table = DissectorTable.get("udp.port")
udp_table:add(7777,trivial_proto)

is not a good idea. I'd be glad to have an example how to do it to a specific udp source port (or destination port).

Thank you all

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
0

answered Mar 26 '18

MarkoPaul0 gravatar image

I don't believe it is possible to register your dissector for a source port as opposed to a destination port. You can only register your dissector for "a port". However, what you can do is register your UDP dissector for that port and then in your dissector return 0 if you detect that the src_port is actually not what you want. Let me give you an example:

local p_triv = Proto.new("triv", "Trivial Protocol")

function p_triv.dissector(buf, pinfo, tree)
    if pinfo.src_port ~= 77777 then
        return 0;  --lets wireshark know nothing was dissected, other dissectors can be called
    end

    --Dissect your trivial protocol packet here
end
udp_table = DissectorTable.get("udp.port")
udp_table:add(7777,trivial_proto)

I hope this helps!

Preview: (hide)
link

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: Feb 27 '18

Seen: 2,597 times

Last updated: Mar 26 '18