Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Aldo T

Pages: [1]
1
Linux / YateENB
« on: October 14, 2017, 04:16:46 PM »
Hi Team,

I bought my Labkit LTE in your page, just I received a few days ago,

The problem there is that the YATE NIB is not more longer supported,

My question is; If you have a manual or the code to interact with this new interface,

Now I have complet my YateBTS project only the last one is fro LTE,

Please I will appreciate your help because the documentation is not in Internet page,

Best Regards,

//ALdo T


2
Other Yate server issues / YATE +MYSQL
« on: July 23, 2017, 03:14:23 AM »
Hi Team,

I try to use MySQL inside NIB.js, do you know if I need to install some additional library?

I want to create new data base with new user registration,

I will appreciate your help a lot,

Thanks in advance for your time and best regards,

//Aldo T

3
Linux / Re: telnet 127.0.0.1 5038 not reachable
« on: July 22, 2017, 03:52:42 PM »
Hi Monica,

Thanks for your help and sorry for my delay answer,

I had restart my PC and ran again the yate and the problem has solved,

Regards,

//Aldo T

4
Linux / telnet 127.0.0.1 5038 not reachable
« on: July 15, 2017, 05:15:00 PM »
Hi Team,

I want your help in order to know why I cannot connect to telnet services for YateBTS,

My printouts bellow:

root@XXXX:/home/XXXX# telnet 127.0.0.1 5038
Trying 127.0.0.1...
Connected to 127.0.0.1.
Escape character is '^]'.

Connection closed by foreign host.


After 1 minute ago I receive this answer to the terminal,

I will appreciate your help,

Best Regards,

//Aldo T

5
YateBTS / Re: Help to change NIB.JS
« on: July 13, 2017, 08:49:13 PM »
Hi,

Me again, Just to inform you... I'm using NIB interface

Regards,

//Aldo T

6
YateBTS / Re: Help to change NIB.JS
« on: July 13, 2017, 07:42:17 AM »
Thanks to take your time to analize mi code,

One more question.... How can I reload the nib.js ?

I stoped the yate and ran again, the result that I paste to you is the result that I got after stop and play again,

Is this te correct way to reload NIB.JS ?

Many thanks in advance and best regards,

//Aldo T

7
YateBTS / Re: Help to change NIB.JS
« on: July 12, 2017, 09:20:26 AM »
Thanks to much to answer me, I will explain with details:

Below you can see my tmisdata.conf, in this part I want to receive the date,
[tmsi]
last=007b000b

[ues]
3340202101XXXXX=007b000b,3590300645XXXXX,520187458,1500733238,ybts/TMSI007b000b,[object Date]

In my NIB.js I try to insert the date in the function saveUEinConf(imsi,subcriber)

function saveUEinConf(imsi,subscriber)
{
    if (subscriber!=undefined) {
   var fim = new Date();
   var fecha = fim.toString();
   var dia = fim.getDate();
   var mes = fim.getMonth();
   var año = fim.getFullYear();
   var hora = fim.getHours();
   var minuto = fim.getMinutes();
   var segundo = fim.getSeconds();
   var fields = subscriber["tmsi"]+","+subscriber["imei"]+","+subscriber["msisdn"]+","+subscriber["expires"]+","+subscriber["location"]+","+dia+","+mes+","+año+","+hora+","+minuto+","+segundo;
   
    } else
   conf.clearKey(ues,imsi);

    if (conf.save()==false)
   Engine.alarm(4, "Could not save tmsi in tmsidata.conf");
}

I dont know if is the correct part to insert this variable or please if you recommend me if I need to create one TXT with:

IMSI, IMEI, DATE, HOUR,

I will appreciate a lot if you can help me,

Again to much thanks,

Best regards,

//Aldo T

8
YateBTS / Help to change NIB.JS
« on: July 10, 2017, 02:34:24 PM »
Hi Team,

I want to receive your help because I'm stuck in one steep of my project,

I have installed correctly Yate and YateBTS, I'm using BladeRF, the problem that I have is:

-When I try to modify nib.js in order to create other field in tmsidata.conf I receive only the object that I create in the code,

The object that I need to insert is date, month, year, hours, minutes and seconds,

When I run yate -vvvv, I connect the cellphone and I receive the IMSI, IMEI, LOCATION and [object date]---this is the field that I declare in var TOTAL= new Date();

after I declare one by one:

var fecha=TOTAL.getDate();
var mes=TOTAL.getMonth();
var año=TOTAL.getFullYear();
var horas=TOTAL.getHours();
var minutos=TOTAL.getMinutes();
var segundos=TOTAL.getSeconds();


please I need your help,

Many thanks in advance and best regards,

//Aldo T

Pages: [1]