PDA

View Full Version : Finding Serving Cell in E/// BSC via User IMSI



electron
2014-01-14, 10:36 PM
Hi guys,

Suppose we have a user IMSI and we want to see user is served by what cell in E/// BSC (Assume user is in dedicated mode). Would be appreciated if share the command sequences .


Cheers

Darko
2014-01-19, 08:59 PM
How about using MTR (Mobile Traffic Recording) ? There you can see not only the serving cell information but also analyze active connection etc.

34895

Dax.

electron
2014-01-19, 10:21 PM
I have no access to MTR in project there is another command sequences in BSC to find the user. I am looking for that.


Cheers
How about using MTR (Mobile Traffic Recording) ? There you can see not only the serving cell information but also analyze active connection etc.

34895

Dax.

Ericsson_RND
2014-03-10, 02:42 AM
Can any one help how to know the serving cell for IMSI

jorrgivarius
2014-03-10, 06:31 AM
Where can I find MTR?

fannakhosr
2014-03-10, 03:55 PM
dear
if your MSC is E/// also, please run this command to know the cell:
mgssp:imsi=xxxxxxxxxxxx;

consultant
2014-03-13, 08:38 PM
Hi,
Those are steps which I use to see serving cell on Ericcson MSCS

####HLR, find current MSISDN VLR
hgsdp:msisdn=xxxxxxxxxxxx,loc;

###MSCS
mgnmp:msc=all;
ctrai:msisdn=xxxxxxxxxxxx;
test system;
print var mtv xxxxx:h'147;
!MTV variable is ABCD H'dec cell code!
end test;

From previuos printout received Hexadecimal code of the serving cell.
Than convert hecadecimal code to the decimal and find it on the list of defined internal cells.
mgcep:cell=all;

reputation and thanks are welcome

Ericsson_RND
2014-03-14, 03:38 AM
Dears; can you please what are the xxxxx mentioned below and from where to be obtain.

print var mtv xxxxx:h'147;

consultant
2014-03-14, 05:06 PM
####HLR#####################
<hgsdp:msisdn=xxxxxxxxxxxx,loc;
HLR SUBSCRIBER DATA
SUBSCRIBER IDENTITY
MSISDN IMSI STATE AUTHD
xxxxxxxxxxxx yyyyyyyyyyyyyyy CONNECTED AVAILABLE


NAM IMEISV
0


LOCATION DATA
VLR ADDRESS MSRN MSC NUMBER LMSID
4-xxx650120000 xxx650120000

###From one MSCS list neighbouring MSCS and find the name of serving MSCS###############################
<mgnmp:msc=all;
MT NEIGHBOURING MSC DATA


MSC MSCADDR R MSCCAPA


VXX03S 4-xxx650120000 4MHOC1 MAPV-3

#### Connect with MML on serving MSCS VXX03S######################
WO VXX03S
<ctrai:msisdn=xxxxxxxxxxxx;
CALL PATH TRACING
XSS TRACING
IDX SWDEV DEV DEVIDX FID ENV SV
1 MTV-135964 H'0000 0001


#########On serving MSCS START TRACE ON MTV BLOCK RECEIVED FROM CTRAI: MTV-135964##################
<test system;
EXECUTED


<print var mtv 135964:h'147;

VARIABLE
MTV VAR H'02 131C:H'147=H'3AA0
END


<end test;
ORDERED


###### H'3AA0 is the cell code in hexadecimal format, DECIMAL=15008 ################
#### Again on serving MSCS list all internal cells and find Cell ID, example CID 15008##################<mgcep:cell=all;
MT CELL DATA


CELL CGI BSC CO RO NCS EA
XXXXA xxx-xxx-xxxxx-15008 ABCD 0 0 0



Hope that is clear now.

Regards

lechela
2014-08-05, 07:01 PM
Hi Consultant,
Would you say what H'147 is in the command?
Is it common for all operators or it depends on certain values?

consultant
2014-08-05, 07:29 PM
Hi,

This is variable pointer which stores Cell ID.
When check Plex and ASA according core network release You will find relevant pointer.

BR