#
# $Id: openser.cfg,v 1.5 2005/10/28 19:45:33 bogdan_iancu Exp $
#
# simple quick-start config script
#
# ----------- global configuration parameters ------------------------
debug=3 # debug level (cmd line: -dddddddddd)
fork=yes
log_stderror=no # (cmd line: -E)
/* Uncomment these lines to enter debugging mode
fork=no
log_stderror=yes
*/
check_via=no # (cmd. line: -v)
dns=no # (cmd. line: -r)
rev_dns=no # (cmd. line: -R)
port=5060
children=4
fifo="/tmp/openser_fifo"
#
# uncomment the following lines for TLS support
#disable_tls = 0
#listen = tls:your_IP:5061
#tls_verify = 1
#tls_require_certificate = 0
#tls_method = TLSv1
#tls_certificate = "/usr/local/etc/openser/tls/user/user-cert.pem"
#tls_private_key = "/usr/local/etc/openser/tls/user/user-privkey.pem"
#tls_ca_list = "/usr/local/etc/openser/tls/user/user-calist.pem"
# ------------------ module loading ----------------------------------
# Uncomment this if you want to use SQL database
#loadmodule "/usr/local/lib/openser/modules/mysql.so"
loadmodule "/usr/local/lib/openser/modules/sl.so"
loadmodule "/usr/local/lib/openser/modules/tm.so"
loadmodule "/usr/local/lib/openser/modules/rr.so"
loadmodule "/usr/local/lib/openser/modules/maxfwd.so"
loadmodule "/usr/local/lib/openser/modules/usrloc.so"
loadmodule "/usr/local/lib/openser/modules/registrar.so"
loadmodule "/usr/local/lib/openser/modules/textops.so"
# Uncomment this if you want digest authentication
# mysql.so must be loaded !
#loadmodule "/usr/local/lib/openser/modules/auth.so"
#loadmodule "/usr/local/lib/openser/modules/auth_db.so"
# ----------------- setting module-specific parameters ---------------
# -- usrloc params --
modparam("usrloc", "db_mode", 0)
# Uncomment this if you want to use SQL database
# for persistent storage and comment the previous line
#modparam("usrloc", "db_mode", 2)
# -- auth params --
# Uncomment if you are using auth module
#
#modparam("auth_db", "calculate_ha1", yes)
#
# If you set "calculate_ha1" parameter to yes (which true in this config),
# uncomment also the following parameter)
#
#modparam("auth_db", "password_column", "password")
# -- rr params --
# add value to ;lr param to make some broken UAs happy
modparam("rr", "enable_full_lr", 1)
# ------------------------- request routing logic -------------------
# main routing logic
route{
# initial sanity checks -- messages with
# max_forwards==0, or excessively long requests
if (!mf_process_maxfwd_header("10")) {
sl_send_reply("483","Too Many Hops");
exit;
};
if (msg:len >= 2048 ) {
sl_send_reply("513", "Message too big");
exit;
};
# we record-route all messages -- to make sure that
# subsequent messages will go through our proxy; that's
# particularly good if upstream and downstream entities
# use different transport protocol
if (!method=="REGISTER")
record_route();
# subsequent messages withing a dialog should take the
# path determined by record-routing
if (loose_route()) {
# mark routing logic in request
append_hf("P-hint: rr-enforced\r\n");
route(1);
};
if (!uri==myself) {
# mark routing logic in request
append_hf("P-hint: outbound\r\n");
# if you have some interdomain connections via TLS
#if(uri=~"@tls_domain1.net") {
# t_relay_to_tls("IP_domain1","port_domain1");
# exit;
#} else if(uri=~"@tls_domain2.net") {
# t_relay_to_tls("IP_domain2","port_domain2");
# exit;
#}
route(1);
};
# if the request is for other domain use UsrLoc
# (in case, it does not work, use the following command
# with proper names and addresses in it)
if (uri==myself) {
if (method=="REGISTER") {
# Uncomment this if you want to use digest
authentication
#if (!www_authorize("openser.org", "subscriber")) {
# www_challenge("openser.org", "0");
# exit;
#};
save("location");
exit;
};
lookup("aliases");
if (!uri==myself) {
append_hf("P-hint: outbound alias\r\n");
route(1);
};
# native SIP destinations are handled using our USRLOC DB
if (!lookup("location")) {
sl_send_reply("404", "Not Found");
exit;
};
append_hf("P-hint: usrloc applied\r\n");
};
route(1);
}
route[1] {
# send it out now; use stateful forwarding as it works reliably
# even for UDP2TCP
if (!t_relay()) {
sl_reply_error();
};
exit;
}
_____
From: ram [mailto:talk2ram@gmail.com]
Sent: Friday, June 09, 2006 1:33 AM
To: Kelvin Williams
Subject: Re: [Users] openserctl error.
post ur config file to assist
ram
On 6/9/06, Kelvin Williams <kelvin-lists(a)williamschadwell.com> wrote:
This is a new OpenSER installation on a Solaris 10 box.
Any time we call openserctl we receive the following error:
/usr/local/sbin/openserctl: syntax error at line 1026: `GW_IP=$' unexpected
Line 26 of openserctl reads:
GW_IP=$(($1+$2*256+$3*65536+$4*16777216))
Any advice would be greatly appreciated!
Thanks,
kw
_______________________________________________
Users mailing list
Users(a)openser.org
http://openser.org/cgi-bin/mailman/listinfo/users
Hi All!
What is the correct operand in a condtional statement for negation?
I have a problem in a ser.cfg line:
if (uri=~"sip:0[1-9][0-9]*@.*" && uri!="sip:01234[6-9][0-9]@.*")
The SER doesn't take in consideration the 2nd part of the conditional
statement after the && operand.
What is wrong in this line?
Thanks!
Szasz Szabolcs
--
This message was scanned for spam and viruses by BitDefender.
For more information please visit http://linux.bitdefender.com/
Hi,
No, it's not leftover file or anything else.
Actually I think new CVS version has some problems with usrloc and domain database support.
Because I have the same problem when I use usrloc with db support on new source.
As a solution I used the old binary usrloc module with new ser.
Regards,
ilker
________________________________
From: serusers-bounces(a)lists.iptel.org [mailto:serusers-bounces@lists.iptel.org] On Behalf Of Greger V. Teigre
Sent: Friday, June 09, 2006 8:36 AM
To: Benjamin.George(a)t-systems.com
Cc: serusers(a)iptel.org
Subject: Re: [Serusers] mysql configuration issue
Good to hear. You probably had a leftover so file or something, making the db inconsistent with the binaries...
g-)
Benjamin.George(a)t-systems.com wrote:
Hi,
We tried in that way also ...but didn't work!
So we reinstalled the SER binary once again (debian packages including mysql module) after that it starts working properly.
Thanks!
Regards,
Benjamin.
________________________________
From: Greger V. Teigre [mailto:greger@teigre.com]
Sent: Friday, June 09, 2006 1:52 AM
To: George, Benjamin
Cc: serusers(a)iptel.org
Subject: Re: [Serusers] mysql configuration issue
:-) I just assumed you had run ser_mysql.sh and that maybe the error was a result of a connection error. But you're probably right. The value for register in the version needs to match what this version of SER register module requires. If you rename you ser DB and let ser_mysql.sh reinitialize it, you will have the reference.
g-)
Benjamin.George(a)t-systems.com wrote:
Hi,
I feel it is not a linking issue. This is something related to table version of table 'subscriber'/'domain'/'location', I think so. So it will be great if some body can throw some light in to this issue. Here go the error messages once again:
[
stateless - initializing
root@ubuntu:/usr/local/etc/ser # 0(0) Maxfwd module- initializing
textops - initializing
0(0) register_udomain(): Invalid table version (use ser_mysql.sh reinstall)
0(0) domain_fixup(): Error while registering domain
ERROR: error -1 while trying to fix configuration
]
My SER version is 0.9.x
And MySql version is 4.1.x
OS: Ubuntu linux
Thanks and regards,
Benjamin.
________________________________
From: Greger V. Teigre [mailto:greger@teigre.com]
Sent: Thursday, June 01, 2006 11:40 AM
To: George, Benjamin
Cc: serusers(a)iptel.org
Subject: Re: [Serusers] mysql configuration issue
Have you linked against the right libraries?
This is for 0.9.x on CentOS 4:
[greger@siprouter modules]$ ldd mysql.so
libmysqlclient.so.14 => /usr/lib/mysql/libmysqlclient.so.14 (0x00111000)
libz.so.1 => /usr/lib/libz.so.1 (0x002aa000)
libc.so.6 => /lib/tls/libc.so.6 (0x00c94000)
libcrypt.so.1 => /lib/libcrypt.so.1 (0x006a6000)
libnsl.so.1 => /lib/libnsl.so.1 (0x00376000)
libm.so.6 => /lib/tls/libm.so.6 (0x00530000)
libssl.so.4 => /lib/libssl.so.4 (0x00c0a000)
libcrypto.so.4 => /lib/libcrypto.so.4 (0x00e29000)
/lib/ld-linux.so.2 (0x00987000)
libgssapi_krb5.so.2 => /usr/lib/libgssapi_krb5.so.2 (0x00baa000)
libkrb5.so.3 => /usr/lib/libkrb5.so.3 (0x0022a000)
libcom_err.so.2 => /lib/libcom_err.so.2 (0x00faa000)
libk5crypto.so.3 => /usr/lib/libk5crypto.so.3 (0x003fc000)
libresolv.so.2 => /lib/libresolv.so.2 (0x00a5e000)
libdl.so.2 => /lib/libdl.so.2 (0x0028f000)
[greger@siprouter modules]$ rpm -q mysql
mysql-4.1.12-3.RHEL4.1
Benjamin.George(a)t-systems.com wrote:
Hi All,
Thanks Adam for providing the link.
But as mentioned by zhangshuai, I am also getting the same error after doing those procedures. Error messages are pasted below:
stateless - initializing
0(0) Maxfwd module- initializing
textops - initializing
root@ubuntu:/usr/local/sbin # 0(0) register_udomain(): Invalid table version (use ser_mysql.sh reinstall)
0(0) domain_fixup(): Error while registering domain
ERROR: error -1 while trying to fix configuration
It will be great somebody gives some pointer to resolve this issue.
Regards,
Benjamin.
-----Original Message-----
From: serusers-bounces(a)lists.iptel.org [mailto:serusers-bounces@lists.iptel.org] On Behalf Of zhangshuai
Sent: Thursday, June 01, 2006 6:57 AM
To: serusers
Subject: Re: Re: [Serusers] mysql configuration issue
Dear All,
I use mysql-4.1.15 and encountered the same error. After I did as the webpage said, I got another error: "invalid table version".
I compiled the source code from cvs:
cvs -d :pserver:anonymous@cvs.berlios.de:/cvsroot/ser checkout sip_router
Is it the latest stable version?
Thanks for your answers.
Benjamin.George(a)t-systems.com wrote:
*root@ubuntu:/usr/local/sbin # 0(0) new_connection(): Client does not
support authentication protocol requested by server; consider upgrading
MySQL client*
http://dev.mysql.com/doc/refman/5.0/en/old-client.html
Regards
Adam
_______________________________________________
Serusers mailing list
Serusers(a)lists.iptel.org
http://lists.iptel.org/mailman/listinfo/serusers
= = = = = = = = = = = = = = = = = = = =
_______________________________________________
Serusers mailing list
Serusers(a)lists.iptel.org
http://lists.iptel.org/mailman/listinfo/serusers
<http://387555.sigclick.mailinfo.com/sigclick/010B0604/04044901/04054D03/823…>
_____________________________________________________________________________________________________________________________________________
Bu e-posta mesaji kisiye ozel olup, gizli bilgiler iceriyor olabilir. Eger bu e-posta mesaji size yanlislikla ulasmissa, icerigini hic bir sekilde kullanmayiniz ve ekli dosyalari acmayiniz. Bu durumda lutfen e-posta mesajini kullaniciya hemen geri gonderiniz ve tum kopyalarini mesaj kutunuzdan siliniz. Bu e-posta mesaji, hic bir sekilde, herhangi bir amac icin cogaltilamaz, yayinlanamaz ve para karsiligi satilamaz. Bu e-posta mesaji viruslere karsi anti-virus sistemleri tarafindan taranmistir. Ancak yollayici, bu e-posta mesajinin - virus koruma sistemleri ile kontrol ediliyor olsa bile - virus icermedigini garanti etmez ve meydana gelebilecek zararlardan dogacak hicbir sorumlulugu kabul etmez.
This message is intended solely for the use of the individual or entity to whom it is addressed , and may contain confidential information. If you are not the intended recipient of this message or you receive this mail in error, you should refrain from making any use of the contents and from opening any attachment. In that case, please notify the sender immediately and return the message to the sender, then, delete and destroy all copies. This e-mail message, can not be copied, published or sold for any reason. This e-mail message has been swept by anti-virus systems for the presence of computer viruses. In doing so, however, sender cannot warrant that virus or other forms of data corruption may not be present and do not take any responsibility in any occurrence.
_____________________________________________________________________________________________________________________________________________
Hi
How can I do it in such a way maultiple phones behind a single NAT gateway
can call each other using rtpproxy and if these phone calls the PSTN it will
not use rtpproxy, i tried removing the if (isflagset(6)) route(1); on the
these part
if ((uri=~"^(sip:)?00[0-9]*@([a-z]+.)?mydomain.com") ||
(uri=~"^(sip:)?00[0-9]*@1.2.3.4")) {
but can't hear anything on the phones, but if i put if (isflagset(6))
route(1) back it will work. How can I do this? Thank You
Regards,
Nhadie
________________________________________________
Message sent using UebiMiau 2.7
Hi,
We tried in that way also ...but didn't work!
So we reinstalled the SER binary once again (debian packages including mysql module) after that it starts working properly.
Thanks!
Regards,
Benjamin.
_____
From: Greger V. Teigre [mailto:greger@teigre.com]
Sent: Friday, June 09, 2006 1:52 AM
To: George, Benjamin
Cc: serusers(a)iptel.org
Subject: Re: [Serusers] mysql configuration issue
:-) I just assumed you had run ser_mysql.sh and that maybe the error was a result of a connection error. But you're probably right. The value for register in the version needs to match what this version of SER register module requires. If you rename you ser DB and let ser_mysql.sh reinitialize it, you will have the reference.
g-)
Benjamin.George(a)t-systems.com <mailto:Benjamin.George@t-systems.com> wrote:
Hi,
I feel it is not a linking issue. This is something related to table version of table 'subscriber'/'domain'/'location', I think so. So it will be great if some body can throw some light in to this issue. Here go the error messages once again:
[
stateless - initializing
root@ubuntu:/usr/local/etc/ser # 0(0) Maxfwd module- initializing
textops - initializing
0(0) register_udomain(): Invalid table version (use ser_mysql.sh reinstall)
0(0) domain_fixup(): Error while registering domain
ERROR: error -1 while trying to fix configuration
]
My SER version is 0.9.x
And MySql version is 4.1.x
OS: Ubuntu linux
Thanks and regards,
Benjamin.
_____
From: Greger V. Teigre [mailto:greger@teigre.com <mailto:greger@teigre.com> ]
Sent: Thursday, June 01, 2006 11:40 AM
To: George, Benjamin
Cc: serusers(a)iptel.org <mailto:serusers@iptel.org>
Subject: Re: [Serusers] mysql configuration issue
Have you linked against the right libraries?
This is for 0.9.x on CentOS 4:
[greger@siprouter modules]$ ldd mysql.so
libmysqlclient.so.14 => /usr/lib/mysql/libmysqlclient.so.14 (0x00111000)
libz.so.1 => /usr/lib/libz.so.1 (0x002aa000)
libc.so.6 => /lib/tls/libc.so.6 (0x00c94000)
libcrypt.so.1 => /lib/libcrypt.so.1 (0x006a6000)
libnsl.so.1 => /lib/libnsl.so.1 (0x00376000)
libm.so.6 => /lib/tls/libm.so.6 (0x00530000)
libssl.so.4 => /lib/libssl.so.4 (0x00c0a000)
libcrypto.so.4 => /lib/libcrypto.so.4 (0x00e29000)
/lib/ld-linux.so.2 (0x00987000)
libgssapi_krb5.so.2 => /usr/lib/libgssapi_krb5.so.2 (0x00baa000)
libkrb5.so.3 => /usr/lib/libkrb5.so.3 (0x0022a000)
libcom_err.so.2 => /lib/libcom_err.so.2 (0x00faa000)
libk5crypto.so.3 => /usr/lib/libk5crypto.so.3 (0x003fc000)
libresolv.so.2 => /lib/libresolv.so.2 (0x00a5e000)
libdl.so.2 => /lib/libdl.so.2 (0x0028f000)
[greger@siprouter modules]$ rpm -q mysql
mysql-4.1.12-3.RHEL4.1
Benjamin.George(a)t-systems.com <mailto:Benjamin.George@t-systems.com> wrote:
Hi All,
Thanks Adam for providing the link.
But as mentioned by zhangshuai, I am also getting the same error after doing those procedures. Error messages are pasted below:
stateless - initializing
0(0) Maxfwd module- initializing
textops - initializing
root@ubuntu:/usr/local/sbin # 0(0) register_udomain(): Invalid table version (use ser_mysql.sh reinstall)
0(0) domain_fixup(): Error while registering domain
ERROR: error -1 while trying to fix configuration
It will be great somebody gives some pointer to resolve this issue.
Regards,
Benjamin.
-----Original Message-----
From: serusers-bounces(a)lists.iptel.org <mailto:serusers-bounces@lists.iptel.org> [mailto:serusers-bounces@lists.iptel.org <mailto:serusers-bounces@lists.iptel.org> ] On Behalf Of zhangshuai
Sent: Thursday, June 01, 2006 6:57 AM
To: serusers
Subject: Re: Re: [Serusers] mysql configuration issue
Dear All,
I use mysql-4.1.15 and encountered the same error. After I did as the webpage said, I got another error: "invalid table version".
I compiled the source code from cvs:
cvs -d :pserver:anonymous@cvs.berlios.de:/cvsroot/ser checkout sip_router
Is it the latest stable version?
Thanks for your answers.
Benjamin.George(a)t-systems.com <mailto:Benjamin.George@t-systems.com> wrote:
*root@ubuntu:/usr/local/sbin # 0(0) new_connection(): Client does not
support authentication protocol requested by server; consider upgrading
MySQL client*
http://dev.mysql.com/doc/refman/5.0/en/old-client.html <http://dev.mysql.com/doc/refman/5.0/en/old-client.html>
Regards
Adam
_______________________________________________
Serusers mailing list
Serusers(a)lists.iptel.org <mailto:Serusers@lists.iptel.org>
http://lists.iptel.org/mailman/listinfo/serusers <http://lists.iptel.org/mailman/listinfo/serusers>
= = = = = = = = = = = = = = = = = = = =
_______________________________________________
Serusers mailing list
Serusers(a)lists.iptel.org <mailto:Serusers@lists.iptel.org>
http://lists.iptel.org/mailman/listinfo/serusers <http://lists.iptel.org/mailman/listinfo/serusers>
Hi list,
I have a question about failure_route and onreply_route. Is there a
rule which comes first appear on ser.cfg? I have this experience that
my onreply_route is located before my failure_route and whenever I
call t_on_failure nothing happens. I decided to move failure_route
before onreply_route and it falls to the failure_route when I call
t_on_failure. Anybody could clarify this?
Thanks,
Ryan
thanks this seems to have fixed it....
---------------------
Sent with ChatterEmail
True push email for the Treo Smartphone
www.chatteremail.com
-----Original Message-----
From: Bogdan-Andrei Iancu <bogdan(a)voice-system.ro>
Date: Wednesday, Jun 7, 2006 9:39 pm
Subject: Re: [Users] ACC module detect-direction
Hi Glenn,
there was a bug which is now fixed on the CVS. Please update and let me know if it properly works now.
regards,
bogdan
Glenn Dalgliesh wrote:
>Ok, checked record-router and it is present with ftag but from to revesed . What debug output should I look at next.
---------------------
Sent with ChatterEmail
True push email for the Treo Smartphone
www.chatteremail.com
>
-----Original Message-----
From: Bogdan-Andrei Iancu <bogdan(a)voice-system.ro>
Date: Monday, Jun 5, 2006 8:19 pm
Subject: Re: [Users] ACC module detect-direction
>Hi Glenn,
>For this feature to work, you need to be sure that you do record_route() on the INVITE and that "append_fromtag" RR module param is not disable.
>regards,
bogdan
>Glenn Dalgliesh wrote:
>
>>modparam("acc", "detect_direction", 1) in CVS headI tried this option > >
thinking that it would cause radius records to maintain the same
values for username,to,from as the initial INVITE. ie. if the number
you called hangup and not you the would still reflect your username
and the called partyIs this correct? and if so this might be a bug
this it seems to have no effect...Thanks
>
>>_______________________________________________
> >
Users mailing list
Users(a)openser.org
http://openser.org/cgi-bin/mailman/listinfo/users
>
>
This is a new OpenSER installation on a Solaris 10 box.
Any time we call openserctl we receive the following error:
/usr/local/sbin/openserctl: syntax error at line 1026: `GW_IP=$' unexpected
Line 26 of openserctl reads:
GW_IP=$(($1+$2*256+$3*65536+$4*16777216))
Any advice would be greatly appreciated!
Thanks,
kw
Hello all,
I'm trying to get 'caller-id with Remote-Party-ID' work,
but I think I'm missing something..
What is the "saved value of the SIP URI received from radius" ?
(according to auth/README file).
What is supposed to be the RADIUS attribute/value in RADIUS user profile ?
Can someone send an example ?
thank you.
Hi,
I feel it is not a linking issue. This is something related to table version of table 'subscriber'/'domain'/'location', I think so. So it will be great if some body can throw some light in to this issue. Here go the error messages once again:
[
stateless - initializing
root@ubuntu:/usr/local/etc/ser # 0(0) Maxfwd module- initializing
textops - initializing
0(0) register_udomain(): Invalid table version (use ser_mysql.sh reinstall)
0(0) domain_fixup(): Error while registering domain
ERROR: error -1 while trying to fix configuration
]
My SER version is 0.9.x
And MySql version is 4.1.x
OS: Ubuntu linux
Thanks and regards,
Benjamin.
_____
From: Greger V. Teigre [mailto:greger@teigre.com]
Sent: Thursday, June 01, 2006 11:40 AM
To: George, Benjamin
Cc: serusers(a)iptel.org
Subject: Re: [Serusers] mysql configuration issue
Have you linked against the right libraries?
This is for 0.9.x on CentOS 4:
[greger@siprouter modules]$ ldd mysql.so
libmysqlclient.so.14 => /usr/lib/mysql/libmysqlclient.so.14 (0x00111000)
libz.so.1 => /usr/lib/libz.so.1 (0x002aa000)
libc.so.6 => /lib/tls/libc.so.6 (0x00c94000)
libcrypt.so.1 => /lib/libcrypt.so.1 (0x006a6000)
libnsl.so.1 => /lib/libnsl.so.1 (0x00376000)
libm.so.6 => /lib/tls/libm.so.6 (0x00530000)
libssl.so.4 => /lib/libssl.so.4 (0x00c0a000)
libcrypto.so.4 => /lib/libcrypto.so.4 (0x00e29000)
/lib/ld-linux.so.2 (0x00987000)
libgssapi_krb5.so.2 => /usr/lib/libgssapi_krb5.so.2 (0x00baa000)
libkrb5.so.3 => /usr/lib/libkrb5.so.3 (0x0022a000)
libcom_err.so.2 => /lib/libcom_err.so.2 (0x00faa000)
libk5crypto.so.3 => /usr/lib/libk5crypto.so.3 (0x003fc000)
libresolv.so.2 => /lib/libresolv.so.2 (0x00a5e000)
libdl.so.2 => /lib/libdl.so.2 (0x0028f000)
[greger@siprouter modules]$ rpm -q mysql
mysql-4.1.12-3.RHEL4.1
Benjamin.George(a)t-systems.com <mailto:Benjamin.George@t-systems.com> wrote:
Hi All,
Thanks Adam for providing the link.
But as mentioned by zhangshuai, I am also getting the same error after doing those procedures. Error messages are pasted below:
stateless - initializing
0(0) Maxfwd module- initializing
textops - initializing
root@ubuntu:/usr/local/sbin # 0(0) register_udomain(): Invalid table version (use ser_mysql.sh reinstall)
0(0) domain_fixup(): Error while registering domain
ERROR: error -1 while trying to fix configuration
It will be great somebody gives some pointer to resolve this issue.
Regards,
Benjamin.
-----Original Message-----
From: serusers-bounces(a)lists.iptel.org <mailto:serusers-bounces@lists.iptel.org> [mailto:serusers-bounces@lists.iptel.org <mailto:serusers-bounces@lists.iptel.org> ] On Behalf Of zhangshuai
Sent: Thursday, June 01, 2006 6:57 AM
To: serusers
Subject: Re: Re: [Serusers] mysql configuration issue
Dear All,
I use mysql-4.1.15 and encountered the same error. After I did as the webpage said, I got another error: "invalid table version".
I compiled the source code from cvs:
cvs -d :pserver:anonymous@cvs.berlios.de:/cvsroot/ser checkout sip_router
Is it the latest stable version?
Thanks for your answers.
Benjamin.George(a)t-systems.com <mailto:Benjamin.George@t-systems.com> wrote:
*root@ubuntu:/usr/local/sbin # 0(0) new_connection(): Client does not
support authentication protocol requested by server; consider upgrading
MySQL client*
http://dev.mysql.com/doc/refman/5.0/en/old-client.html <http://dev.mysql.com/doc/refman/5.0/en/old-client.html>
Regards
Adam
_______________________________________________
Serusers mailing list
Serusers(a)lists.iptel.org <mailto:Serusers@lists.iptel.org>
http://lists.iptel.org/mailman/listinfo/serusers <http://lists.iptel.org/mailman/listinfo/serusers>
= = = = = = = = = = = = = = = = = = = =
_______________________________________________
Serusers mailing list
Serusers(a)lists.iptel.org <mailto:Serusers@lists.iptel.org>
http://lists.iptel.org/mailman/listinfo/serusers <http://lists.iptel.org/mailman/listinfo/serusers>