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 - Monica Tepelus

Pages: 1 ... 8 9 [10] 11 12 ... 14
136
YateBTS / Re: Registration failed on gsm network
« on: May 14, 2015, 08:38:30 AM »
Hi,

What version of yatebts are you using? In older versions, nib script used subscribers.js file, not subscribers.conf

137
Hi,

You could apply some filters on specific messages but you need to first understand enough in order to be able to know the messages you care about:

http://docs.yate.ro/wiki/Debugging_and,_or_Investigation_of_messages#Apply_filter_messages_with_sniffer
http://docs.yate.ro/wiki/Debug_Output#Visibility

138
Linux / Re: GSM network is not detected by mobile phone
« on: April 10, 2015, 09:06:37 AM »
Hi,

Start your yatebts with debug on and maximum debug per mbts and ybts and sniffer on and then power off your phone (unlocked phone) and start it again and check the logs.


139
YateBTS / Re: NIB Test
« on: April 10, 2015, 09:03:46 AM »
HI,

Did you install libgsm1-dev (or it's equivalent on your distro)?

Where are you now?

140
It's not about what performs better it's about finding the right tool for a specific action :).
Getting results from a SELECT implies a very custom feature and this is usually implemented in javascript or from an external module.

If you can do this from register.conf then use it, otherwise you will need a piece of scripting. The power of Yate lies in the fact that you can mix existing modules and custom scripting.

141
Hi,

You can't do that from regexroute. Try using Javascript instead:

http://docs.yate.ro/wiki/How_to_access_a_database_from_Yate%27s_Javascript_module

142
YateBTS / Re: Error !! Could not open for writing on NIB (Regexp)
« on: March 16, 2015, 02:41:59 AM »
Hi,

You should enable the displaying of errors in php.ini:

display_errors = On
error_reporting = E_ALL | E_STRICT

Check on google if your distro has selinux or something similar.


143
YateBTS / Re: Error !! Could not open for writing on NIB (Regexp)
« on: March 13, 2015, 03:02:26 AM »
Hi,

Please make sure that the apache user has read/write rights in /usr/local/etc/yate where subscribers.conf is located.

You can run as root:
chmod a+rw /usr/local/etc/yate/

Also, make sure you don't have selinux or something similar that prevents apache to access other parts of the file system.

144
YateBTS / Re: Call Regfile extensions from nib phones
« on: March 09, 2015, 05:52:56 AM »
You can't specifically tell to send a call to regfile. You should just leave those call.route messages to be handled by regfile.  You don't do anything, it should just work.

145
Hi,

Do you want to use the line registered in accfile?

If so see below:

function MakeCall() {
        global $saved_ev;
        global $partycallid;

        $this->log->set(" partycallid -------> : " . $partycallid . "\n");

        $m = new Yate("chan.masquerade");

        $m->params = $saved_ev->params;

        $m->params["message"] = "call.execute";
        $route = "line/+5717455171";
        $m->params["callto"] = $route;
        $m->params["id"] = $partycallid;
        $m->params["line"] = "sapo";

        $this->log->set(" params -------> : " . var_export($m, true) . "\n");
        $m->Dispatch();
}

Also, from your log it seems that line "sapo" is not registered. So make sure it's first registered before sending calls to it.

146
This is how to enable message sniffer in yate

http://docs.yate.ro/wiki/Debugging_and,_or_Investigation_of_messages

147
Hi,

You can use RecStop() method with a maxlen(octets - not time). When that amount of data is transfered you will get a chan.notify.


148
Hi,

Please paste the relevant code a sniffer log.

149
Hi,

Callto is the resource to call not the phone number.
Ex: callto = sip/sip:404040@ip.port not just 404040. If you don't have this info in the script then you must send a call.route message and set in callto the retval of that message if it was handled.

To have logs: use "sniffer on" from telnet console.

150
Yate based projects / Re: yate for WIN
« on: March 03, 2015, 07:53:49 AM »
Hi,

We didn't test FreeSentral in IPv6 network, but I can tell you for sure that you can't use it on windows.

Pages: 1 ... 8 9 [10] 11 12 ... 14