Huge thanks to our Platinum Members Endace and LiveAction,
and our Silver Member Veeam, for supporting the Wireshark Foundation and project.

Wireshark-users: Re: [Wireshark-users] Decode all UDP as RTP?

From: Benoit <benpaka.spam@xxxxxxxxx>
Date: Fri, 16 Jan 2009 11:02:45 +0100
You can try with this lua script:

-- register RTP to handle ports 50000-50011
do
    local udp_port_table = DissectorTable.get("udp.port")
    local rtp_dissector = Dissector.get("rtp")
    for port=50000,50011 do
        udp_port_table:add(port,rtp_dissector)
    end
end

Change the for loop to use more port : e.g. for port=1,65000 do ...
To add a lua script you can look at http://wiki.wireshark.org/Lua.


--
Benoit RAT
www.neub.co.nr


On Fri, Jan 16, 2009 at 3:32 AM, Guy Harris <guy@xxxxxxxxxxxx> wrote:

On Jan 15, 2009, at 4:11 PM, Brian Hanson wrote:

> Hmm... I tried that, but it didn't seem to have any effect.

If not, then either it wasn't turned on correctly or the packets in
question don't look enough like RTP for the RTP dissector to accept
them as such.

Can you either provide us with a capture file where this doesn't work,
or a small subset of that capture file that demonstrates the problem?

Also, what version of Wireshark are you using?
___________________________________________________________________________
Sent via:    Wireshark-users mailing list <wireshark-users@xxxxxxxxxxxxx>
Archives:    http://www.wireshark.org/lists/wireshark-users
Unsubscribe: https://wireshark.org/mailman/options/wireshark-users
            mailto:wireshark-users-request@xxxxxxxxxxxxx?subject=unsubscribe