Hi all,
A simple question about the db-only mode of usrloc (dbmode 3)
I've two proxy configured with db_mode 3 the second proxy it's unable to
do lookup on the db, there are no error in the debug log but it send reply
"404 not found" to the first proxy. I've noticed that when i do
lookup("location") on the second proxy it clean the location table and
even if the table is filled with the correct contact it reply with 404.
sometimes delete all contacts and sometimes contacts remain but failed
lookup.
what i'm doing wrong?
In first proxy i'm running openser-1.1.0 and in the second the latest
openser snapshot.
the modparam of usrloc on the two proxy are like:
modparam("usrloc|domain","db_url","mysql://SQL_USERNAME:SQL_PASSWORD@SQL_HOST/SQL_DB")
modparam("usrloc", "db_mode", 3)
modparam("usrloc", "matching_mode", 1)
thank you,
:tele
1) be sure you are using TM for request forwarding (r_relay)
2) be sure the *db* acc flag is set (and not the one for syslog acc) -
see the README
3) look into logs for possible errors.
regards,
bogdan
ShivaSankar Padhy wrote:
>
> Yah, The same thing now I am looking but also bit confused, I have
> used the
>
> modparam("acc", "log_flag", 2)
> and setflag(2)
> but I am not able to populate the acc table.
>
> What is the exact syntax, Can I get it from any where??
>
> Thanks a lot for any kind of Help.
> Shiva
>
> On 10/31/06, *Bogdan-Andrei Iancu* <bogdan(a)voice-system.ro
> <mailto:bogdan@voice-system.ro>> wrote:
>
> you can use mysql - see the docs of the acc module.
>
> regards
> bogdan
>
> ShivaSankar Padhy wrote:
>
> > Dear All,
> >
> > Can I implement the CDR without using the RADIUS Server.??I am using
> > openser 1.0.1 notls. Expecting a sooner reply,
> >
> > Thanks in Advance,
> > Shiva
> >
> >------------------------------------------------------------------------
> >
> >_______________________________________________
> >Users mailing list
> > Users(a)openser.org <mailto:Users@openser.org>
> >http://openser.org/cgi-bin/mailman/listinfo/users
> >
> >
>
>
when i send im in a script php i have this error
2(3549) ERROR: fifo_server: command must begin with :: MESSAGE
2(3549) **** done consume
2(3549) ERROR: fifo_server: command must have at least 3 chars
can help me
---------------------------------
Découvrez une nouvelle façon d'obtenir des réponses à toutes vos questions ! Profitez des connaissances, des opinions et des expériences des internautes sur Yahoo! Questions/Réponses.
Hello,
many thanks to all developers of the new presence server. Its a great
enhancement to OpenSER.
As a small contribution from my side I did some tests with Eyebeam clients.
Now I found, that the immediate NOTIFY according to RFC3265 § 3.1.6.2 is
missing.
To document the behaviour I have attached a trace-file from the server.
Frame 6 contains a SUBSCRIBE request which is not confirmed with an
immediate NOTIFY request. The first NOTIFY is sent only four minutes later
after the first presence state change of the presentity occurred (frame 30).
Cheers
Franz
Dear all,
Thank you for this chance.
All, I have tried to learn about how can TLS can secure communication in VoIP.
I must to understand it in order to responsible my openser server (working) with TLS to my lecturer.
But, I have still doubt.
Actually, what is encrypted in TLS system so the communication become secure? Does it encrypt the data (voise packet)? or The traffic (so the sniffer can not get the data? OR anything else?
I do hope anybody can help me :)
Thanks,
Ferianto
Note: I cryptography tutorials, I read that the cryptography system secure the message (text) by encrypting it using public key and private key. So, How about TLS in VoIP?
---------------------------------
Everyone is raving about the all-new Yahoo! Mail.
Hi,
I've been having a problem, where audio is lost either in one or both
directions when conversaion is taken off 'hold'. The parties are both behind
NAT and depending UA as whether one or both loose audio. From what I can tell
its to do with my loose route and nathelper, and how my ser.cfg deals with
the take off hold INVITE from the phones. When the call is taken off hold the
rtp streams aren't setup properly again (eg not using mediaproxy correctly).
What is the best way to solve this problem?
I've seen similarly posts to the mailing list about this problem with no
solution posted.
http://lists.iptel.org/pipermail/serusers/2006-March/027424.htmlhttp://lists.iptel.org/pipermail/serusers/2006-April/027885.htmlhttp://lists.iptel.org/pipermail/serusers/2006-May/028407.html
Thanks
Shaun
I have a similarly config to getting started guides ser.cfg
# -----------------------------------------------------------------
# Loose Route Section
# -----------------------------------------------------------------
if (loose_route()) {
if (!has_totag()) {
sl_send_reply("403", "Forbidden");
break;
};
if (method=="INVITE") {
if ((method=="INVITE" || method=="REFER")
&& !has_totag()) {
if (!proxy_authorize("","subscriber")) {
proxy_challenge("","0");
break;
} else if (!check_from()) {
sl_send_reply("403", "Use From=ID");
break;
};
consume_credentials();
};
if
(client_nat_test("3")||search("^Route:.*;nat=yes")) {
setflag(6);
use_media_proxy();
};
};
route(1);
break;
};