Guys, Could you give me an example of how use this filter? radius.calling_station_id I have tried with colon (:), with hyphen (-), all together and none of these gives any info. radius.calling_station_id eq AA:BB:CC:DD:EE:FF radius.calling_station_id eq aa:bb:cc:dd:ee:ff radius.calling_station_id eq aa-bb-cc-dd-ee-ff radius.calling_station_id eq AA-BB-CC-DD-EE-FF radius.calling_station_id eq aabbccddeeff radius.calling_station_id eq AABBCCDDEEFF none of them works. but if I look directly I can see the MAC address is there. Thanks for your help. Cheers. asked 24 Nov '15, 11:39 Victor Tort |
One Answer:
I don't have a radius capture with Calling station ID AVP handy, but a general hint: go to the packet dissection pane, select the detail of the element you are interested in, right-click to open a context menu for it and use "Apply as Filter -> Selected" (or "Prepare Filter -> selected"). answered 24 Nov '15, 12:25 sindy |
Pretty good Sindy,
how it works is by using " " example
radius.Calling_Station_Id == "AA-BB-CC-DD-EE-FF"
cheers.