Hello, I also have some troubles to use diameter.Session-Id filters. For my part the semi-colon is not allowed by tshark in the command line. -R diameter.Subsession-Id=="65847;53642;517-02" returns : tshark: ";" was unexpected in this context. REGEXs, contains, matches, don't seem to be allowed as well ... Any idea to filter this AVP value ?? Thx asked 19 Nov '13, 03:31 AIex converted to question 19 Nov '13, 03:45 grahamb ♦ |
One Answer:
On Windows, if I use proper quoting, I get:
From the diameter display filter reference page:
This means that the answered 19 Nov '13, 07:01 cmaynard ♦♦ |
My mistake, I didn't paste the right AVP, I actually tried to filter the "diameter.Session-Id". Unfortunately the matter is still the same for this "Character string" AVP.
-R diameter.Session-Id=="65847;53642;517-02" tshark: ";" was unexpected in this context.
Try using proper quoting:
tshark.exe -Y "diameter.Session-Id==\"65847;53642;517-02\""
tshark -Y 'diameter.Session-Id=="65847;53642;517-02"'
It works with this quoting format
'diameter.Session-Id=="65847;53642;517-02"'
Thanks a lot !!!