My frames MPLS headers are as follows:
I want to filter with respect to mpls header of only first mpls frame. If I use filter like 'mpls.label == 13746' wireshark filters even those frames where second mpls headers label is 13746 even though second mpls header is different. I How to achieve filtering with respect to only first mpls headers label field? This question is marked "community wiki". asked 09 Sep '14, 22:42 Chetan Ragi edited 10 Sep '14, 03:57 Jaap ♦ |
One Answer:
Use a distinguishing mark of the outer label, eg. MPLS Bottom Of Label Stack == 0. But this only helps if you always have two labels. A real solution would require an addition to the Wireshark display filter engine to be able to address the level at which the field occurs. answered 10 Sep '14, 03:57 Jaap ♦ |