In my Wireshark Network traffic I get both 2G and 3G data packets (gsm_map). How to filter only 2g or only 3g data packets? We usually concern about AnyTimeInterrogation message in GSM. asked 23 Oct '13, 05:43 pranitkothari |
3 Answers:
I found answer myself. In display filter, I need to use,
answered 23 Oct '13, 23:53 pranitkothari |
It might be possible to filter on AnyTimeInterrogationRes and values in SubscriberInfo like lastRAT-Type but the element is Optional so I'm not sure. answered 23 Oct '13, 08:02 Anders ♦ |
Pranitkothari, just make sure that you don't run into cases where the subscriber is reachable by UMTS but the SAI is not included in the ATI return. A few things to note about your approach here:
Those items might sound like paranoia if you're literally just looking for ATI responsees where the location returned was in UMTS coverage, but depending on your network environment that it's possible to be available in UMTS but not have an SAI included in ATI response to the interrogator. The solution may work for you depending on your case though. answered 24 Oct '13, 17:55 Quadratic edited 24 Oct '13, 17:58 @Quadratic: We are dealing with location related services, and it is ensured from our vendor that we will get SAI in UMTS packet if we request for ATI. You really seems to have good in-depth knowledge of GMS/UMTS. We work in location related services, can you please suggest good reference material and forum for GSM and UMTS? (24 Oct '13, 23:32) pranitkothari I asked the same question when I started in the mobile space. It's unfortunate, but the best resource out there I've ever been able to find has been the 3GPP whitepapers, with the second best probably being the paid training services of groups like Award Solutions. There's some youtube stuff out there but most is just intro and none that I've seen are very real-world. Aside from a lack of strong open training resources out there, there's also no real authority to point to for certifications to validate knowledge in mobile signaling theory, and from that there's a lack of a single sylabus and knowledge base to develop training materials around. For lack of a better analogy, there is no "CCNA of mobile wireless signaling" for everyone to turn to, no way to ask for that validation in an interview, and for those who want to learn you're largely faced with reading the 3GPP whitepapers and RFCs. Now, I don't consider myself a very effective teacher most of the time, since I have a hard time considering where the audience is coming from and they get lost in my analogies a lot, but I am trying to do something about this problem. I'm not focused on the UMTS side at the moment, but for the evolved packet core I am trying to complete a decent video series on everything from base call flows to mobility management to policy and credit control. It's been hard to find all the time to get it done on my own time, and another big difficulty is that I'm trying to make it very real-world but NDA agreements prevent most real-world examples or stories I could give, and it's very hard to find packet captures that could be used for that kind of training video exercise which wouldn't be barred by NDAs as well. (25 Oct '13, 17:48) Quadratic |
I got good hint from your answer. Final answer I have posted to my question. Thanks.