Hello all !
ser-0.8.13-dev
Behind NAT - budgetone 101
Call from public address ip phone to budgetone/xlite - works fine
call form budgetone/xlite to ip public phone -
telephone ring but after pick up
"I won't send a reply for ACK!!"
nathelper.cfg directly from sip_router/etc/nathelper.cfg
Any ideas
Thanks
Andrzej
Hello,
are there any examples on how to setup/config/deploy a medium to large scale
SER
installation with loadbalancing, distributed servers etc?!
best regards,
Arnd
I have successfully implemented accounting to syslog,
but I would like to use MySQL to handle accounting. I
have read that # DEFS+=-DSQL_ACC must be uncommented
for database logging to work, but I installed from
RPM, how can I set up database accounting in this
situation?
By the way, I have ser-0.8.12-0.i386.rpm and
ser-mysql-0.8.12-0.i386.rpm installed on my system.
Thank you for your time.
__________________________________
Do you Yahoo!?
New Yahoo! Photos - easier uploading and sharing.
http://photos.yahoo.com/
Hi,
I have two questions about SER:
1) Is there any way of using ser in a calling card scenario (interrupting
the call when the user balance expires)?
2) Is there any way of forcing a user to listen a voice advertising before a
call is established?
Can anyone help me?
Thanks,
Edgar
Hello,
I want to ask if someone have already configured or have some idea how to
configure SER to behave as a S-CSCF from the UMTS Realease 5 IMS?
Thank you.
João Sampaio
Hello,
i am new to ser and i am currently testing the ser 0.8.13-dev-23-merged with
the supplied nathelper config and client authentication via mysql.
So far everything looks good.
Now i started to add some PSTN routing to the script. I replaced
---
if (!t_relay()) {
sl_reply_error();
};
---
with
---
# Route to PSTN Gateways(s)
if (uri=~"^sip:9[0-9]*@my.domain.net") { ## This assumes that
the caller is
log("Forwarding to PSTN\n"); ## registered in our
realm
t_relay_to( "my.psnt.gw.ip-addr", "5060" );
break;
}
else {
if (!t_relay()) {
sl_reply_error();
};
};
---
in the route[1] function of the nathelper config.
Allthough the tm.so module is installed (ser cant work without it, right)
i get the following error while starting ser:
---
Jan 9 08:36:17 gk ser: parse error (225,41-42): unknown command, missing
loadmodule?
---
Line 225 is
---
t_relay_to( "my.psnt.gw.ip-addr", "5060" );
---
and according to all examples and modules/tm/README this is the correct
syntax.
Any ideas?
best regards,
Arnd
Hi all,
I am a Computer Science Graduate student studying at University of Kentucky, USA. As part of my Master's project, I have installed and configured SER in my lab for routing calls between my Cisco SIP Phones.
I am interested to know if I could add some new feature/module to SER as part of my coding to my Master's project. I would appreciate if you could suggest me I can add some new feature/module to SER. I too have a deadline that I should be able to finsh that module in 1-2 months. Please say your suggestions on it.
Thanks,
Balaji
I was working very well with my ser server, and after one day I get this message
on my logs:
0(6057) pre_auth(): Credentials with given realm not found
I don't change anything on config file...
Does anyboy know what are wrong or how can I resolv this?
Regards
--
|o
|o Por que a palavra "grande" é menor do que a palavra "pequeno"?
|o
|o Fabio Silvestri
|o fabio(a)informatec.com.br
|o ICQ: 1667351
|o
Hello,
I recently installed ser 0.8.12. And after that, I reinstalled the database in MySQL.
Now, when I try to add a new user with:
serctl add user1 user1 user1(a)mydomain.com
I get the following message:
"error: overlap with an existing alias".
Although I checked the Subscriber and Aliases tables, and there's no entry for user1.
What can I do to correct this problem?
Thanks in advance
José Nunes
This is usable if you have Juha Heinanen's patches (in "unstable" as
of December 17, 2003) for multiple suffixes for ENUM lookups. This
is a "temporary" hack until ENUM is rolled out globally (zzzzzz....)
If anyone has a +1-800 gateway (North America) that they would like
to see added, please send me an NS PTR or NAPTR for it and we'll put
it in place.
JT
At 5:10 PM +0100 1/8/04, Michael Haberler wrote:
>Date: Thu, 08 Jan 2004 17:10:56 +0100
>To: [snip]
>From: Michael Haberler <mah(a)eunet.at>
>Subject: freenum.org - free "global" 800 service based on
> infrastructure ENUM
>
>Happy New Year!
>
>You will recall we discussed setting up a little infrastructure ENUM
>trial project. We would populate freenum.org with NAPTR records
>pointing to local gateway operators willing to gateway "free" calls.
>
>Ok, works for us now! Axel has completed the SIP express router
>setup for the at43 users, and Otmar has done the Asterisk part. The
>new enum module for SER is needed so arbitrary domain suffices can
>be used for lookup. A configuration snippet is attached. Any +43800
>number listed in freenum.org (or wildcards for ranges) will be
>terminated via a local Asterisk gateway.
>
>In simple words: add the below code between #start and #end and your
>users will be able to dial any Austrian +43 800 number. Try the
>nic.at number +43 800 888 888 to start with.
>
>We encourage you to try this out with your SIP setup, and maybe you
>can contribute some local termination of 800 or other free numbers.
>
>If you want to contribute termination, drop us a mail and we'll add
>the entries to freenum.org. Let us know before you inform a sizeable
>user base about this..
>
>This rocks - it is the easiest way for global free numbers I've seen so far!
>
>cheers,
>
>-Michael
>
>
>snippet from ser.cfg:
>
> # catch voice:sip ENUM entries, only if PSTN not forced
> if (enum_query("e164.arpa.", "voice")) {
> if (is_uri_host_local()) {
> route(5);
> break;
> };
> if (!t_relay()) {
> xlog("L_ERR", "%is [%Tf]: %rm %fu -> %ru [R4]: ENUM
>destination: relaying failed\n");
> sl_reply_error();
> break;
> };
> break;
> };
> #start
> # look up freenum.org ENUM entries
> if (enum_query("freenum.org")) {
> if (!t_relay()) {
> xlog("L_ERR", "%is [%Tf]: %rm %fu -> %ru [R4]:
>freenum.org destination: relaying failed\n");
> sl_reply_error();
> break;
> };
> xlog("L_ERR", "%is [%Tf]: %rm %fu -> %ru [R4]:
>freenum.org destination\n");
> break;
> };
> #end
> # nothing found, try PSTN
> if (method=="CANCEL" || method=="BYE" || method=="ACK") {
> xlog("L_INFO", "%is [%Tf]: %rm %fu -> %ru [R4]: just
>forwarding to PSTN");
> rewritehostport("1.2.3.4:5060");
> t_relay();
> break;
> };