Re: [OpenSIPS-Users] Restart=always and After=mysql.service

2015-09-08 Thread Peter Lemenkov
Hello All!
Nabeel, you're very much mistaken :)
OpenSIPS provides a systemd script for years (at least from 1.8.x).
You should have check ./packaging/fedora first, since systemd was
introduced there initially.

* https://github.com/OpenSIPS/opensips/tree/1.8/packaging/fedora
* https://github.com/OpenSIPS/opensips/tree/1.10/packaging/fedora
* https://github.com/OpenSIPS/opensips/tree/master/packaging/fedora


2015-09-07 21:14 GMT+03:00 Nabeel :
> Hi,
>
> Most of my services have a .service file located at /usr/lib/systemd/system
> where I can set 'Restart=always' or 'After=mysql.service' /
> 'After=mariadb.service' to make sure the server starts at the appropriate
> times.
>
> However, there is no such .service file for OpenSIPS.  Please advise how to
> create this .service file for OpenSIPS.  I heard about 'respawn' but don't
> know how exactly to use this and would prefer to use a .service file like
> other services.
>
> ___
> Users mailing list
> Users@lists.opensips.org
> http://lists.opensips.org/cgi-bin/mailman/listinfo/users
>



-- 
With best regards, Peter Lemenkov.

___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users


Re: [OpenSIPS-Users] is it possible to drop non-provisional reply?

2015-08-21 Thread Peter Lemenkov
Thanks for the tip!
It seems that you're reading my mind - because that's exactly what's needed!

2015-08-21 19:02 GMT+03:00 Bogdan-Andrei Iancu :
> Hi Peter,
>
> Well, you do not want to drop the reply, but to replace it guess, right ?
>
> If so, you can use a failure route and do:
>
> failure_route[bla] {
> if (t_check_status([3][0-9][0-9]) {
> t_reply("404","Not found");
> exit;
> }
> }
>
> This will replace all 3xx you get with a 404 Not Found reply.
>
> Regards,
>
> Bogdan-Andrei Iancu
> OpenSIPS Founder and Developer
> http://www.opensips-solutions.com
>
>
> On 21.08.2015 18:16, Peter Lemenkov wrote:
>>
>> Hello All!
>> Sorry for the dumb question. I'm aware that it's possible to drop
>> provisional replies using drop() in onreply_route. Is there a way to
>> drop non-provisional ones?
>>
>> I'm trying to block some 3xx and 4xx replies completely. I could do it
>> with my custom B2BUA but maybe OpenSIPS could do this as well?
>>
>



-- 
With best regards, Peter Lemenkov.

___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users


[OpenSIPS-Users] is it possible to drop non-provisional reply?

2015-08-21 Thread Peter Lemenkov
Hello All!
Sorry for the dumb question. I'm aware that it's possible to drop
provisional replies using drop() in onreply_route. Is there a way to
drop non-provisional ones?

I'm trying to block some 3xx and 4xx replies completely. I could do it
with my custom B2BUA but maybe OpenSIPS could do this as well?

-- 
With best regards, Peter Lemenkov.

___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users


Re: [OpenSIPS-Users] What rtpproxy version should i be using

2015-08-14 Thread Peter Lemenkov
Hello All!

I'd say stay with 1.2.1 if unsure / if something goes wrong with 2.x.x
Btw are you using rtpproxy from EPEL repository or you compiled it by yourself?

2015-08-14 15:53 GMT+03:00 Trevor Steyn :
> Hi Opensips Users,
>
> I am running opensips 2.1 and am having some issues with rtpproxy I have
> tried both 1.2.1 and 2.0.0 with different results.
>
> Keep in mind i am using rtpproxy in bridge mode and using the
> re-packetization feauture also both IP's in the bridge are on the same
> physical interface just on differant vlans.
>
> My OS is Cenots 6
>
> 1.2.1
>
> Works great the only issue i see is 100% CPU usage i have not had any
> bad quality with this version its just very worrying seeing 100% CPU
> usage all the time.
>
> 2.0.0
>
> The CPU issue is resolved almost no CPU usage with a bunch of calls but
> when i turn on re-packetization the quality of the audio stream is terrible.
>
> I would like to choose a version and work on the issues alternativly if
> there is another version recommended for opensips i would like to go
> that route, I see there is a version on opensips.org
>
> http://opensips.org/pub/rtpproxy/
>
> But this version seems very old and Readme states its for Opnesips 1.6.4.
>
> Any guidance on my issues would be very much appreciated.
>
>
> Regards
> Trevor Steyn
>
>
> ___
> Users mailing list
> Users@lists.opensips.org
> http://lists.opensips.org/cgi-bin/mailman/listinfo/users



-- 
With best regards, Peter Lemenkov.

___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users


Re: [OpenSIPS-Users] Protocol header changing with OpenSIPS

2015-06-28 Thread Peter Lemenkov
Short answer - no.
Long answer - it's possible with few additional components and some
additional software development. You need additional media proxy
(RTPproxy, rtpengine, Asterisk, SEMS), your own B2BUA, and some spare
time.

2015-06-28 13:32 GMT+03:00 H Yavari :
> Hi,
>
> It is possible to change the protocol header of RTP before sending and
> change it after receiving? It is possible to compress RTP packets with
> OpenSIPS?
> Any one can give me some point about this solutions?
>
> Regards,
> H.Yavari
>
>
> ___
> Users mailing list
> Users@lists.opensips.org
> http://lists.opensips.org/cgi-bin/mailman/listinfo/users
>



-- 
With best regards, Peter Lemenkov.

___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users


Re: [OpenSIPS-Users] Save info about codecs

2013-12-12 Thread Peter Lemenkov
2013/12/12 Alexander Mustafin :
> Hello!
>
> I need to save info about all codecs in INVITE and 200 ОК messages(presence
> and their position). I was tried to use some functions in sipmsgops module,
> like codec_exists, but manual comparison with some list is so annoying :)
>
> Can you hint me more simple solution for it?

None I'm aware of. Actually your request sounds a bit weird - looks
like you're trying to fix an entirely different issue, not this
particular one.

Could you please elaborate why do you need to save somewhere this info
in realtime?

-- 
With best regards, Peter Lemenkov.

___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users


[OpenSIPS-Users] RTPproxy support in Wireshark

2013-11-07 Thread Peter Lemenkov
Hello All!
First of all I'm sorry for the crossposting.

For those who unaware of what's going inside Wireshark project - I'm
working on a "classic" RTPproxy protocol dissector. Most of the
patches already accepted, and Wireshark's RTPproxy parser is already
usable. Few more patches should land in trunk quite soon.

As for rtpproxy-ng - I plan to add support for its protocol as well
(right after I finish with this one).

If you're using Fedora Linux, then Wireshark from the repository
already compiled with RTPproxy protocol dissection support.

-- 
With best regards, Peter Lemenkov.

___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users


Re: [OpenSIPS-Users] [OpenSIPS-Devel] Migrating OpenSIPS to GitHub

2013-04-30 Thread Peter Lemenkov
Hello All!

2013/4/30 Răzvan Crainea :
> Hi all!
>
> Following the community desires[1] to migrate OpenSIPS repository and
> tracker to Github, we have compiled a schedule[2] for the upcoming weeks.

That's a really great news!

--
With best regards, Peter Lemenkov.

___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users


Re: [OpenSIPS-Users] [OpenSIPS-Devel] [RFC] migration to GIT

2013-02-18 Thread Peter Lemenkov
2013/2/18 Saúl Ibarra Corretgé :
>> Also I'd like to propose a switch to a new issue tracker at SF.net.
>> Just compare that one we have to use now with the newest one:
>>
>> * http://sourceforge.net/p/sipp/bugs/
>> * http://sourceforge.net/p/curl/bugs/
>>
>
> Does the new tracker have anything like the pull requests mechanism?

No, it doesn't. But it's still much better than the current one.

-- 
With best regards, Peter Lemenkov.

___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users


Re: [OpenSIPS-Users] [RFC] migration to GIT

2013-02-18 Thread Peter Lemenkov
2013/2/18 Saúl Ibarra Corretgé :

>> What things need to be sorted out when moving to GIT:
>>
>
> First question: would it be a self-hosted Git repository or the GitHub 
> service?

"Why can't we have both?"

I personally don't see any issues here - It's possible to setup a
"primary" repo at SF and "secondary" at GitHub. To be honest I'd
prefer GitHub.

Also I'd like to propose a switch to a new issue tracker at SF.net.
Just compare that one we have to use now with the newest one:

* http://sourceforge.net/p/sipp/bugs/
* http://sourceforge.net/p/curl/bugs/

-- 
With best regards, Peter Lemenkov.

___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users


Re: [OpenSIPS-Users] [RFC] migration to GIT

2013-02-18 Thread Peter Lemenkov
2013/2/18 Bogdan-Andrei Iancu :
> Hi all,
>
> I would like to get some suggestions and help on the matter of migrating the
> code repository from SVN to GIT - the fact that such migration will bring
> value is for sure :)

YES! YES! YES!


-- 
With best regards, Peter Lemenkov.

___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users


Re: [OpenSIPS-Users] RTPProxy vs Mediaproxy ?

2012-11-12 Thread Peter Lemenkov
Hello.

2012/11/12 Pierre-Yves Marche :
> Hello Community,
>
> I'm currently using opensips + rtpproxy but I'm thinking of switching to
> Mediaproxy instead RTPProxy due to performance issue.

I wonder what kind of performance issues have you encountered?
-- 
With best regards, Peter Lemenkov.

___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users


[OpenSIPS-Users] OpenSIPS and TLS with wildcard certificates again

2012-09-14 Thread Peter Lemenkov
Hello All!

First of all - I've read a bit about TLS and certificates in OpenSIPS
but I still don't have a clue what's wrong with this.

My problem is - although openssl can verify certificate as well as it
can be loaded by opensips, client apps are refusing to connect.
Namely, empathy and Jitsi.

My setup is quite simple (well, I thought so). I've got a bunch of SIP
domains, lets,say sip0[0-9].domain.com fully resolvable via DNS (w/o
additional DNS SRV records - just domain names). I've got wildcard SSL
certificate from Thawte (for "*.domain.com" without quotes) and a CA
bundle from Thawte (
https://search.thawte.com/library/VERISIGN/ALL_OTHER/thawte%20ca/SSL_CA_Bundle.pem
). I appended it to the end of the system-wide certificate bundle (and
checked with openssl). And now here is my relevant config data (I
added "192.168.0.1 sip01.domain.com" to /etc/hosts for the sake of
simplicity):

disable_tls = 0
listen = tls:192.168.0.1:5051
tls_verify_server = 0
tls_verify_client = 0
tls_require_client_certificate = 0
tls_method = TLSv1

alias=sip01.domain.com:5051

tls_certificate = "./wildcard.domain.com.crt"
tls_private_key = "./wildcard.domain.com.key"
tls_ca_list = "./ca-bundle.crt" # system-wide CA bundle + SSL_CA_Bundle.pem


All I got so far is

Sep 14 16:02:29 [14877] ERROR:core:tls_accept: New TLS connection from
192.168.0.2:59588 failed to accept: rejected by client

Here is a confirmation from openssl:

work ~/work/OpenSIPS (git::1.8.x-ipport): openssl verify -CAfile
./ca-bundle.crt ./wildcard.domain.com.crt
./wildcard.domain.com.crt: OK
work ~/work/OpenSIPS (git::1.8.x-ipport):

I'm using the same certificate for https and it works quite fine in
Firefox. What did I miss so far?

-- 
With best regards, Peter Lemenkov.

___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users


Re: [OpenSIPS-Users] MediaProxy vs RTPProxy

2012-08-16 Thread Peter Lemenkov
Hello All.

2012/8/16 Ali Pey :
> Hello,
>
> This question has come out in the past but I don't see any recent comparison
> with the newer versions.
>
> What are the differences between these two media handling tools? Below I
> listed three aspects to discuss. Please add to the list as desired.
>
> 1- Performance and stability
> 2- Features they provide
> 3- Easy of use and configuration

I am a happy rtpproxy user (actually a not-so-happy rtpproxy protocol
user) and have little to zero experience with mediaproxy so my opinion
is highly biased.

Afaik they have two different approaches (correct me if I wrong) -
mediaproxy tries to manipulate RTP streams directly in kernel while
rtpproxy deals with them in userspace. None of these approaches is
better than other - they serve different purposes.

If you want a high speed low impact NAT traversal solution then you'd
better to look at that which routes media streams within kernel (I
don't mean mediaproxy - perhaps you should build your own one). If you
want to do something with RTP what depends on  your business logic
(transcoding, copying, mixing, playing back predefined prompt,
injecting your own messages, resampling, whatever) then you should
deal with RTP in userspace (again I don't mean rtpproxy in particular
- I ended up with my custom drop-in replacement).

-- 
With best regards, Peter Lemenkov.

___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users


Re: [OpenSIPS-Users] [Release] Planing 1.8.1 minor release

2012-08-14 Thread Peter Lemenkov
Hello All!

2012/8/13 Bogdan-Andrei Iancu :
> Hello all,
>
> We plan to have 1.8.1 minor version released by Wednesday 15th of August.
> Once again, a minor release includes only bug fixes (on the 1.8 major
> branch).

Great news!

Speaking of me - so far I've got only three patches in a queue which
could be interested for you. Two of them are just cherry-picked from
trunk (so I'm not sure whether this should bother you or not). The
remaining one is rather big one - a completely rewritten Oracle DB
module, which is still in a w.i.p. stage and still not ready for a
merge.

Just for the record - currently available db_oracle module works fine
now (all our critical patches were already merged - thanks for that!)
so this one isn't required for normal operation. We plan to split it
into smaller patches and improve it a bit - it contains some hardcoded
magic and several questionable changes thus it's not ready for mass
usage.

First two patches (simply backported from trunk so technically
OpenSIPS already has them):

* https://github.com/lemenkov/OpenSIPS/commit/0c03a3e
* https://github.com/lemenkov/OpenSIPS/commit/a8aebfb

Oracle-related one (not ready yet - just for the reference)

* https://github.com/lemenkov/OpenSIPS/commit/56b1863

And a complete tree (with unrelated stuff):

* https://github.com/lemenkov/OpenSIPS/commits/1.8.x-ipport


PS I still hope that you will consider switching OpenSIPS to Git someday.
-- 
With best regards, Peter Lemenkov.

___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users


Re: [OpenSIPS-Users] Module db_oracle - db_use_table

2012-06-26 Thread Peter Lemenkov
Hello again.

2012/6/26 Peter Lemenkov :

> * git clone git://github.com/lemenkov/OpenSIPS.git
> * cd OpenSIPS
> * git checkout -b oracle_fixes

I terribly sorry for typo. Last line must be

* git checkout -b origin/oracle_fixes
-- 
With best regards, Peter Lemenkov.

___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users


Re: [OpenSIPS-Users] Module db_oracle - db_use_table

2012-06-26 Thread Peter Lemenkov
2012/6/26 Gerald Weber :
> Hi,
>
> unfortunately my git knowledge ends at git pull and git clone.
> How can i get your oracle fixes into the local clone ?
> (i added your other patches by hand...)

* git clone git://github.com/lemenkov/OpenSIPS.git
* cd OpenSIPS
* git checkout -b oracle_fixes

and you're in a branch with all Oracle-related fixes. Now build it,
install, and run.

One additional detail - you need to properly setup TNS name within
opensips config. Something like:

modparam("auth_db", "db_url", "oracle://login:pass@/devnode")
modparam("usrloc", "db_url", "oracle://login:pass@/devnode")

Note - slash right after @ and before TNS name ("devnode" in my case).

> Ps: sorry for posting offtopic things...

No problem. I still hope we'll see a full complete switch to git
someday. I wonder why opensips devs still prefer svn nowadays?

-- 
With best regards, Peter Lemenkov.

___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users


[OpenSIPS-Users] Could someone review my pending OpenSIPS patches?

2012-06-26 Thread Peter Lemenkov
Hello.
Right now I've got more than a dozen pending opensips-related patches
in my queue and this complicates packaging for Fedora/EPEL. Could
someone, please, take a look at them  and see which patches are ready
to merge and which ones needs love.

I already opened a necessary tickets. Namely these ones:

* 
https://sourceforge.net/tracker/?func=detail&aid=3535148&group_id=232389&atid=1086412

This patchset is the simplest one - just a small fix and
non-destructive additions related to a RPM packaging wrt to a systemd.

* 
https://sourceforge.net/tracker/?func=detail&aid=3535151&group_id=232389&atid=1086412

This ticket contains fixes for a proper memory freeing of a column
data in a db library. Unless I missed something the memory resources
allocated to rows aree freed while memory resources for columns are
not freed entirely. Also the type of a resource should be set to NULL
after freeing. Please take a closer look at this since nor me neither
my colleague are familiar with OpenSIPS internals well enough.

* 
https://sourceforge.net/tracker/?func=detail&aid=3535153&group_id=232389&atid=1086412

This one needs a very very closer look from a opensips-expert. There
is definitely something wrong within a usrloc module -
https://github.com/lemenkov/OpenSIPS/commit/e675790 . Take a look -
although types of a vals2[3] and vals2[4] are set to DB_INT you
assigned a value to a bitmap_val members. if these objects are really
of a DB_INT type then you must assign these valuet to a int_val
members instead. However there is another possible approach - fix type
of these objects from DB_INT to DB_BITMAP. Please, take a look in the
meantime.

Also there is a first set of a patches agaist db_oracle module which
is entirely broken now. My colleague already made it working with a
few additional patches some of which are quite big and his work is
still ongoing. On a contrary these three patches looks quite safe and
simple so why not to apply them?

* 
https://sourceforge.net/tracker/?func=detail&aid=3535168&group_id=232389&atid=1086412



-- 
With best regards, Peter Lemenkov.

___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users


Re: [OpenSIPS-Users] Module db_oracle - db_use_table

2012-06-26 Thread Peter Lemenkov
Hello!

2012/6/21 Gerald Weber :
> Hi,
>
> thanks for your answer,
> i did a git clone from your repository as well as applying the 3 patches to 
> your git clone and the original svn.
> The db_use_table problem is gone, but now opensips starts crashing after 
> startup:

We added several additional patches (unfortunately I pushed them with --force)

https://github.com/lemenkov/OpenSIPS/tree/oracle_fixes

The biggest one - my fellow colleague completely dropped async Oracle
operations (it didn't work well after all so not a big deal).
-- 
With best regards, Peter Lemenkov.

___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users


Re: [OpenSIPS-Users] Module db_oracle - db_use_table

2012-06-21 Thread Peter Lemenkov
2012/6/21 Peter Lemenkov :
> Hello.
>
> 2012/6/21 Gerald Weber :
>> Hi,
>>
>> thanks for your answer,
>> i did a git clone from your repository as well as applying the 3 patches to 
>> your git clone and the original svn.
>> The db_use_table problem is gone, but now opensips starts crashing after 
>> startup:
>>
>> The last line in syslog before the crash:
>>
>> Jun 21 13:38:30 freeswitch /usr/local/opensips_test/sbin/opensips[22296]: 
>> INFO:db_oracle:db_oracle_new_connection: server version is Oracle Database 
>> 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production#012With the 
>> Partitioning, OLAP, Data Mining and Real Application Testing options
>> Jun 21 13:40:12 freeswitch opensips: INFO:core:daemonize: pre-daemon process 
>> exiting with -1
>>
>> I did a gdb ./opensips ... bt full...etc with this output:
>>
>> http://pastebin.com/kZspqVDq
>
> Have you applied these patches as well?
>
> * https://github.com/lemenkov/OpenSIPS/commit/074d77
> * https://github.com/lemenkov/OpenSIPS/commit/3a03e76
> * https://github.com/lemenkov/OpenSIPS/commit/257f3d4
>
> First one is related to get_columns (..) function.
>
> --
> With best regards, Peter Lemenkov.



-- 
With best regards, Peter Lemenkov.

___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users


Re: [OpenSIPS-Users] Module db_oracle - db_use_table

2012-06-21 Thread Peter Lemenkov
Hello.

2012/6/21 Gerald Weber :
> Hi,
>
> thanks for your answer,
> i did a git clone from your repository as well as applying the 3 patches to 
> your git clone and the original svn.
> The db_use_table problem is gone, but now opensips starts crashing after 
> startup:
>
> The last line in syslog before the crash:
>
> Jun 21 13:38:30 freeswitch /usr/local/opensips_test/sbin/opensips[22296]: 
> INFO:db_oracle:db_oracle_new_connection: server version is Oracle Database 
> 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production#012With the 
> Partitioning, OLAP, Data Mining and Real Application Testing options
> Jun 21 13:40:12 freeswitch opensips: INFO:core:daemonize: pre-daemon process 
> exiting with -1
>
> I did a gdb ./opensips ... bt full...etc with this output:
>
> http://pastebin.com/kZspqVDq

Have you applied these patches as well?

* https://github.com/lemenkov/OpenSIPS/commit/074d77
* https://github.com/lemenkov/OpenSIPS/commit/3a03e76
* https://github.com/lemenkov/OpenSIPS/commit/257f3d4

First one is related to get_columns (..) function.

-- 
With best regards, Peter Lemenkov.

___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users


Re: [OpenSIPS-Users] Module db_oracle - db_use_table

2012-06-21 Thread Peter Lemenkov
2012/6/21 Peter Lemenkov :
> Hello Gerald.
>
> 2012/6/21 Gerald Weber :
>> Hi all,
>>
>> just installed OpenSIPs from SVN (latest stable release 1.8) and configured
>> it to use db_oracle.
>
> The version from SVN is entirely broken.

Just for the record - I'm talking only about db_oracle module.


-- 
With best regards, Peter Lemenkov.

___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users


Re: [OpenSIPS-Users] Module db_oracle - db_use_table

2012-06-21 Thread Peter Lemenkov
Hello Gerald.

2012/6/21 Gerald Weber :
> Hi all,
>
> just installed OpenSIPs from SVN (latest stable release 1.8) and configured
> it to use db_oracle.

The version from SVN is entirely broken. Apply these patches first and
report about issues:

https://github.com/lemenkov/OpenSIPS/commits/oracle_fixes

I started submitting patches via OpenSIPS issue tracker:

http://sourceforge.net/tracker/?func=detail&aid=3535168&group_id=232389&atid=1086412

Btw I've got a totally aside question to the OpenSIPS developers team
- do you have any plants to switch to Git?

-- 
With best regards, Peter Lemenkov.

___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users


Re: [OpenSIPS-Users] OpenSIPS or Kamailio

2011-02-01 Thread Peter Lemenkov
2011/2/1 Toyima Dias :
> Hello Community,
>
> I've a question about OpenSIPS; Kamailio and OpenSIPS are the same
> application right? i mean, both are Proxy servers for high enterprise
> productions environmets...what i want to know is if there is any difference
> between them? why the Kamailio community is higher than OpenSIPS community,
> or at least seems to be like this...or not?

Well, I'm sure that Kamailio is a great software, but I spent several
hours fixing compilation errors and gave up after all :)

-- 
With best regards, Peter Lemenkov.

___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users


Re: [OpenSIPS-Users] Installing OpenSIPS on Red Hat

2011-01-31 Thread Peter Lemenkov
2011/1/31 Toyima Dias :
> Thanks Peter,
>
> Could you provide more information please?

http://fedoraproject.org/wiki/EPEL


-- 
With best regards, Peter Lemenkov.

___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users


Re: [OpenSIPS-Users] Installing OpenSIPS on Red Hat

2011-01-31 Thread Peter Lemenkov
2011/1/31 Toyima Dias :
> Hello,
>
> I've seen many information on how to install OpenSIPS in DEBIAN, but in my
> case i need to install it on Red Hat, i've found some information but not
> very well supported, i would like to have a very clean and stable
> installation for a very large and stable production server, is there any
> recommendations please?

Despite of FUD spreaded here for reasons unknown to me, OpenSIPs
packages does exists for RHEL 5 and RHEL 6 (via EPEL supplementary
repository). They are in a very good shape and several folks are
using them in a production environment.


-- 
With best regards, Peter Lemenkov.

___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users


Re: [OpenSIPS-Users] Is opensip on Centos

2010-12-07 Thread Peter Lemenkov
2010/12/7 Vic Jolin :
> Is opensip ok running on centos?

Yes, sure.

> We are trying centos from our lab but we can't even increase CPS to 50 even
> for a stateless configuration

Something is weird with your configuration (either opensips-related or
overall system may be misconfigured). We've got CPS numbers greater by
order of magnitudes.


-- 
With best regards, Peter Lemenkov.

___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users


Re: [OpenSIPS-Users] registration to other SIP proxies?

2010-12-02 Thread Peter Lemenkov
2010/12/2 Bogdan-Andrei Iancu :
> Hi Paul,
>
> OpenSIPS it self cannot register with other servers (the UAC capabilities
> are limited).
>
> But you can easily do that with sipsak - you can use this utility to
> register opensips's contact to another registrar server.

The sipsak utility may not provide necessary flexibility. I'm using
Sippy library for similar purposes.


-- 
With best regards, Peter Lemenkov.

___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users


Re: [OpenSIPS-Users] problem starting XCAP server on redhat linux

2009-10-07 Thread Peter Lemenkov
2009/10/7 Susheela :
>
> Hi,
>   I am new to openxcap, have installed Version 1.1.2 on redhat linux box,
> but having problem while starting the server.
>  looks like it is failing at "process.daemonize(pidFile)"

There are various possible reasons (perhaps, you'll need superuser's
privileges for creating pid-file - just my guess), so I cannot say
something valuable here.

However, I advice you to grab srpm-file from there and test it.

https://bugzilla.redhat.com/show_bug.cgi?id=525432

-- 
With best regards, Peter Lemenkov.

___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users


Re: [OpenSIPS-Users] RtpRroxy sturtup (init.d) script for redhat

2009-04-06 Thread Peter Lemenkov
Hello!

2009/4/6 Romanov Vladimir :
> Hi!
>
> Mybe this is usefull for someone.

Seems very interesting! I'll review it and will try to add this
functionality to Fedora/EPEL.

> This script detect CPU core count and start multiple copies of RtpProxy (one
> instance per core). Also this script divide port range between rtpproxy
> instances. I also have idea to automatically modify table in MySQL with list
> of running proxies
>
> -

-- 
With best regards!

___
Users mailing list
Users@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/users