Re: [OpenSIPS-Users] Media-proxy in bridging mode with openSIPS

2012-05-23 Thread SamyGo
Anyone please comment on this one !! On Tue, May 22, 2012 at 4:56 PM, SamyGo wrote: > Hello Carlos, > > I already know and use RTPproxy for this kind of setup and using I,E flags > in rtpproxy is a brilliant thing but for now I wanted to achieve setup > using media-proxy. I too have read alot an

[OpenSIPS-Users] Quota - CDRTool Question

2012-05-23 Thread dotnetdub
Hi List, I have defined a quota for a customer and their usage in the CDRTool quota is exceeded now. When I run quotacheck.php it tells me that no account has exceeded the quota. I think I need to define: OpenSIPSQuota In global.inc I have "UserQuotaClass" => "OpenSIPSQ

Re: [OpenSIPS-Users] Media-proxy in bridging mode with openSIPS

2012-05-23 Thread Saúl Ibarra Corretgé
Hi, On May 23, 2012, at 10:07 AM, SamyGo wrote: > Anyone please comment on this one !! > > On Tue, May 22, 2012 at 4:56 PM, SamyGo wrote: > Hello Carlos, > > I already know and use RTPproxy for this kind of setup and using I,E flags in > rtpproxy is a brilliant thing but for now I wanted to a

Re: [OpenSIPS-Users] Quota - CDRTool Question

2012-05-23 Thread dotnetdub
On 23 May 2012 09:11, dotnetdub wrote: > Hi List, > > I have defined a quota for a customer and their usage in the CDRTool quota > is exceeded now. > > When I run quotacheck.php it tells me that no account has exceeded the > quota. > > I think I need to define: OpenSIPSQuota > > In global.inc I h

Re: [OpenSIPS-Users] Quota - CDRTool Question

2012-05-23 Thread Tijmen de Mes
Hi Stephen What exactly needs to be defined in global.inc for the quota system to function correctly? A few things can be configured in global.inc. Please see look at http://cdrtool.ag-projects.com/projects/cdrtool/repository/entry/setup/global.inc.complex.sample Is there detailed documentatio

Re: [OpenSIPS-Users] Quota - CDRTool Question

2012-05-23 Thread dotnetdub
On 23 May 2012 10:06, Tijmen de Mes wrote: > > Hi Stephen > > >> What exactly needs to be defined in global.inc for the quota system to >> function correctly? > > A few things can be configured in global.inc. Please see look at > http://cdrtool.ag-projects.com/projects/cdrtool/repository/entry/s

Re: [OpenSIPS-Users] Quota - CDRTool Question

2012-05-23 Thread dotnetdub
On 23 May 2012 10:06, Tijmen de Mes wrote: > Hi Stephen > > >> What exactly needs to be defined in global.inc for the quota system to >> function correctly? > > A few things can be configured in global.inc. Please see look at > http://cdrtool.ag-projects.com/projects/cdrtool/repository/entry/setup

Re: [OpenSIPS-Users] Quota - CDRTool Question

2012-05-23 Thread dotnetdub
On 23 May 2012 12:35, dotnetdub wrote: > On 23 May 2012 10:06, Tijmen de Mes wrote: >> Hi Stephen >> >> >>> What exactly needs to be defined in global.inc for the quota system to >>> function correctly? >> >> A few things can be configured in global.inc. Please see look at >> http://cdrtool.ag-pr

[OpenSIPS-Users] B2B/Proxy Authentication

2012-05-23 Thread Marwan El-Sadek
Hello, I'm trying to implement the following scenario (Attached REGISTER.TXT) using OpenSIPS. The UA needs to register with the core IMS and wait for a 200OK, it cannot respond to the 401 sent from the server. Therefore, I want to put OpenSIPS in the middle to handle the authenticatio

Re: [OpenSIPS-Users] B2B/Proxy Authentication

2012-05-23 Thread Nick Altmann
Look here, it's my patch for transparent authentication: https://sourceforge.net/tracker/?func=detail&aid=3516387&group_id=232389&atid=1086412 -- Nick 2012/5/23 Marwan El-Sadek : > Hello, > > I'm trying to implement the following scenario (Attached REGISTER.TXT) using > OpenSIPS. The UA needs to

[OpenSIPS-Users] opensips and rtpproxy

2012-05-23 Thread dpa
Hello! Opensips 1.6.4-2 There is one question. rtpp_notify_socket may be only unix socket? Or I can use UPD or TCP too? Thank you for any help <>___ Users mailing list Users@lists.opensips.org http://lists.opensips.org/cgi-bin/mail

Re: [OpenSIPS-Users] B2B/Proxy Authentication

2012-05-23 Thread Ovidiu Sas
Hello Marwan, You can implement the scenario that you want using b2b modules in "top hiding" mode: http://www.opensips.org/html/docs/modules/1.8.x/b2b_entities.html http://www.opensips.org/html/docs/modules/1.8.x/b2b_logic.html You will need to load first the uac_auth module and provision there a

Re: [OpenSIPS-Users] opensips and rtpproxy

2012-05-23 Thread Razvan Crainea
Hi, Denis! The socket can be UNIX or TCP according to the documentation[1]. [1] http://www.opensips.org/html/docs/modules/devel/rtpproxy.html#id250454 Regards, -- Răzvan Crainea OpenSIPS Developer http://www.opensips-solutions.com

[OpenSIPS-Users] queuing call

2012-05-23 Thread azza miled
Hi! I want to manage queuing call with opensips. I was googling and I found that OpenSIPS is not meant to do this. I have to manage a call center using OpenSIPS so it's very important to do queuing. If any one have any idea: a start point, a module, a discussion forum that could help, I will be ver

[OpenSIPS-Users] Performance's question

2012-05-23 Thread Jorge Ortea
Hi, I have a performance's question. What is more efficient? dp_translate function of dialplan module or a read query of MySQL ? I need found a ip adress of list from this way or another. Thanks. Regards. ___

Re: [OpenSIPS-Users] queuing call

2012-05-23 Thread Brett Nemeroff
Opensips isn't the right tool for this. If you insist on using a proxy for feature server functions, you may want to look at SEMS -Brett On May 23, 2012, at 8:48 AM, azza miled wrote: Hi! I want to manage queuing call with opensips. I was googling and I found that OpenSIPS is not meant to do th

Re: [OpenSIPS-Users] B2B/Proxy Authentication

2012-05-23 Thread Marwan El-Sadek
Hello, Thank you for your reply. Can you please elaborate more on this patch? In my case, the caller won't process any authentication info, OpenSIPS will handle all of this on his behalf. What I'm actually seeking is a function similar to "Surrogate registration". Thanks, Marwan From: marwan

Re: [OpenSIPS-Users] Performance's question

2012-05-23 Thread Ali Pey
Dial plan table is loaded in the memory so it will be quite faster. mysql read from DB would be slower. Ali On Wed, May 23, 2012 at 10:01 AM, Jorge Ortea wrote: > Hi, > > I have a performance's question. > > What is more efficient? dp_translate function of dialplan module or a read > query of

Re: [OpenSIPS-Users] Performance's question

2012-05-23 Thread Brett Nemeroff
The dialplan module is fantastic. I highly recommend it. Anything that loads data into memory is going to outperform a direct database read. You can combine a database lookup with memcache in many circumstances to gain performance. I'm not entirely sure what you are trying to do, but you may also

Re: [OpenSIPS-Users] opensips and rtpproxy

2012-05-23 Thread dpa
Hello Răzvan Thank you for replay. But one more question In man for rtpproxy I read "-n timeout_socket.. The socket should be created by another application, preferably before starting rtpproxy.." So as I understand "rtpp_notify_socket" should be like modparam("nathelper", "rtpp_notify_so

Re: [OpenSIPS-Users] B2B/Proxy Authentication

2012-05-23 Thread Marwan El-Sadek
Hello Ovidiu, Ok, I will look into these modules. Should I provision all the users within the script? I'll be having the same password for all users, but usernames are dynamically and regulary provisioned, it's not be practical to do it this way. Can I store/retrieve user credentials dynamical

Re: [OpenSIPS-Users] B2B/Proxy Authentication

2012-05-23 Thread Ovidiu Sas
At this point in time you cannot use a database for storing credentials. Regards, Ovidiu Sas -- VoIP Embedded, Inc. http://www.voipembedded.com On Wed, May 23, 2012 at 10:15 AM, Marwan El-Sadek wrote: > Hello Ovidiu, > > Ok, I will look into these modules. Should I provision all the users with

Re: [OpenSIPS-Users] B2B/Proxy Authentication

2012-05-23 Thread Marwan El-Sadek
Hello again, Another input is the OpenSIPS will need to regenerate the second REGISTER containing the digest response based on the first REGISTER sent from the caller, this means that it will also contains all the headers previously sent in the first REGISTER and not a new clean One! I hope I

Re: [OpenSIPS-Users] opensips and rtpproxy

2012-05-23 Thread Razvan Crainea
Hi, Denis! Try to use the same socket for both rtpproxy module and application: modparam("nathelper", "rtpp_notify_socket", "tcp:127.0.0.1:") rtpproxy -n tcp:127.0.0.1: Regards, -- Răzvan Crainea OpenSIPS Developer http://www.opensips-solutions.com

Re: [OpenSIPS-Users] opensips and rtpproxy

2012-05-23 Thread dpa
Result after timeout detection "May 23 18:30:10 kam rtpproxy[5925]: ERR:reconnect_timeout_handler: can't connect to timeout socket: Connection refused May 23 18:30:10 kam rtpproxy[5925]: ERR:do_timeout_notification: unable to send timeout notification" From: users-boun...@lists.opensips

Re: [OpenSIPS-Users] queuing call

2012-05-23 Thread azza miled
thaks for the response. The choice of OpenSIPS is not mine, it's the choice of the my supervisor, so I can't do nothing about that. I have already used FreeSWITCH for the media service, can it help me for queuing?? 2012/5/23 Brett Nemeroff > Opensips isn't the right tool for this. If you insist

Re: [OpenSIPS-Users] B2B/Proxy Authentication

2012-05-23 Thread Ovidiu Sas
Yes, it should (at least it's working for INVITE). You will need to define the headers that are passed between entities: http://www.opensips.org/html/docs/modules/1.8.x/b2b_logic.html#id250020 You will really need to test this out by yourself and evaluate if this is the path that you want to go.

[OpenSIPS-Users] Dialog profiles and flags not matching

2012-05-23 Thread Mariana Arduini
Hello all, I'm having problems with Dialog module, again... I tried the following: modparam("dialog", "profiles_no_value", "e164 ; domain") if(is_method("INVITE")) { create_dialog(); t_on_failure("INVITE"); } if (is_in_profile("e164")) { xlog("L_INFO","I'm e164"); } get_profile_siz

Re: [OpenSIPS-Users] Quota - CDRTool Question

2012-05-23 Thread Tijmen de Mes
On 05/23/2012 01:47 PM, dotnetdub wrote: Just one question. I want to enable a daily limit of 10% of the monthly limit. I've added "daily_quota"=> "10", to my global.inc I've noticed that in rating.php that this is here: var $daily_quota = 0; // by default do not check da

Re: [OpenSIPS-Users] Quota - CDRTool Question

2012-05-23 Thread dotnetdub
On 23 May 2012 16:17, Tijmen de Mes wrote: > On 05/23/2012 01:47 PM, dotnetdub wrote: >> >> Just one question. I want to enable a daily limit of 10% of the monthly >> limit. >> >> I've added "daily_quota"        =>  "10",  to my global.inc >> >> I've noticed that in rating.php that this is here: >

Re: [OpenSIPS-Users] Dialog profiles and flags not matching

2012-05-23 Thread Mariana Arduini
Ok, I've added match_dialog() before testing for the profile and now it works for the ACK, but not for the BYE. Even the profile size is set back to 0 when I get the BYE. Is that expected? Is the dialog finished before I can check any profile information? Thanks, Mariana On Wed, May 23, 2012 at

Re: [OpenSIPS-Users] B2BUA - Multiple Transfer/Refer issue

2012-05-23 Thread osiris123d
Issue is solved. Anca Vamanu looked at the issue and said there was already an answer for this issue. Here is her answer It seems that if you put the node, your problems with reusage of id will be solved. The scenario part will look like this: client2 ** Refer-To -- View this message in