Yes, I am using Ethereal, and the REGISTER message is coming all the time.
I don´t know why the server doesn't see them. Could it be a domain name
problem? I am using SIP_DOMAIN=localhost.
Sandra García Espada
DMR Consulting
Dana Olson
<rickaster@gmail. To: "sandra.garcia.espada(a)dmr-consulting.com"
com> <sandra.garcia.espada(a)dmr-consulting.com>
cc:
04/03/2005 15:14 Subject: Re: [Serusers] Server does not see REGISTER message
Please respond to
Dana Olson
Are the REGISTER messages even hitting your SER box? Run ethereal on
it and filter for sip and see if you can see them. If you don't run X
on your SER box, you can use tethereal -R "sip" in a console.
On Fri, 4 Mar 2005 11:43:04 +0100,
sandra.garcia.espada(a)dmr-consulting.com
<sandra.garcia.espada(a)dmr-consulting.com> wrote:
> Now I have installed the 0.8.14, and it is the same. What can I do?
>
>
> Sandra García Espada
> DMR Consulting
>
> _______________________________________________
> Serusers mailing list
> serusers(a)lists.iptel.org
> http://lists.iptel.org/mailman/listinfo/serusers
>
hi all,
Sorry i ever sent this mail last week without reply.
I do hope somebody could help me.
I set up ser + serweb + asterisk with 2 ip300 Polycom.
ip300 Polycom supporting SUBSCRIBE/NOTIFY/MESSAGE
methods.
When i set one phone offline (phone is powered and
registered in location table) i can't store IM in
msilo table.IM is sent to phone.
if i switch off phone IM is stored in msilo table but
when I switch on the phone IM is not dumped to phone.
Can we use presence (subscribe/notify) in order to
store IM and missed calls in serweb because of
hardphones don't have to be switched off !?
Regards
Harry
Découvrez le nouveau Yahoo! Mail : 250 Mo d'espace de stockage pour vos mails !
Créez votre Yahoo! Mail sur http://fr.mail.yahoo.com/
Hi,
I am quite new in ser, and I have a problem when implementing the accounting
module : I get and error message in the log file as soon as I include the
accounting module, even if if do not modifiy any "acc" param with modparam :
Mar 6 00:37:40 localhost ser[7929]: ERROR: acc: should_acc_reply: 0 request
If I try to activate accounting (see ser.cfg file below), ser crashes after one
or two minutes : probably I did something wrong, maybe at compilation time (I
did uncomment the SQL flag in the Acc Module makefile).
Any help would be greatly appreciated,
Thanks,
Thierry
#
# $Id: ser.cfg,v 1.21.4.1 2003/11/10 15:35:15 andrei 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
debug=7
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/ser_fifo"
# ------------------ module loading ----------------------------------
# Uncomment this if you want to use SQL database
loadmodule "/usr/local/lib/ser/modules/mysql.so"
loadmodule "/usr/local/lib/ser/modules/exec.so"
loadmodule "/usr/local/lib/ser/modules/sl.so"
loadmodule "/usr/local/lib/ser/modules/tm.so"
loadmodule "/usr/local/lib/ser/modules/acc.so"
loadmodule "/usr/local/lib/ser/modules/rr.so"
loadmodule "/usr/local/lib/ser/modules/maxfwd.so"
loadmodule "/usr/local/lib/ser/modules/usrloc.so"
loadmodule "/usr/local/lib/ser/modules/registrar.so"
# Uncomment this if you want digest authentication
# mysql.so must be loaded !
loadmodule "/usr/local/lib/ser/modules/auth.so"
loadmodule "/usr/local/lib/ser/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)
# -- acc params --
# set the reporting log level
modparam("acc", "db_url", "mysql://ser:heslo@localhost/ser")
modparam("acc", "db_flag", 1)
modparam("acc", "db_missed_flag", 1)
modparam("acc", "failed_transactions", 1)
modparam("acc", "report_cancels", 1)
modparam("acc", "log_fmt", "cdfimorstup")
modparam("acc", "log_level", 1)
modparam("acc", "report_ack", 0)
modparam("acc", "log_flag", 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");
break;
};
if ( msg:len > max_len ) {
sl_send_reply("513", "Message too big");
break;
};
# 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
record_route();
# 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("foo.bar", "subscriber")) {
www_challenge("foo.bar", "0");
break;
};
save("location");
break;
};
# labeled all transaction for accounting
# normally, we should record route invite. Anyway, in this
script, all
# transactions are record routed by default
if (method == INVITE || method == BYE) {
setflag(1);
}
# loose-route processing
if (loose_route()) {
t_relay();
break;
};
# native SIP destinations are handled using our USRLOC DB
if (!lookup("location")) {
sl_send_reply("404", "Not Found");
break;
};
};
# forward to current uri now; use stateful forwarding; that
# works reliably even if we forward from TCP to UDP
if (!t_relay()) {
sl_reply_error();
};
}
Bout the mysql problem with ser :
The problem was that at boot time, ser started before mysql.
Thx for all,
Regards,
Olivier
-----Message d'origine-----
De : serusers-bounces(a)iptel.org [mailto:serusers-bounces@lists.iptel.org] De la
part de serusers-request(a)lists.iptel.org
Envoyé : dimanche 6 mars 2005 12:00
À : serusers(a)lists.iptel.org
Objet : Serusers Digest, Vol 23, Issue 10
Send Serusers mailing list submissions to
serusers(a)lists.iptel.org
To subscribe or unsubscribe via the World Wide Web, visit
http://lists.iptel.org/mailman/listinfo/serusers
or, via email, send a message with subject or body 'help' to
serusers-request(a)lists.iptel.org
You can reach the person managing the list at
serusers-owner(a)lists.iptel.org
When replying, please edit your Subject line so it is more specific than
"Re: Contents of Serusers digest..."
---cut----
>
>Hello, folks,
>
>I`m new to this list and also new to SER.
>Can someone help me with this - ERROR: forward_reply: no 2nd via found in reply
>
>I get it when i try to connect to running ser on my localmachine with local kphone client.
>
>The ser.cfg is the standart with mysql support.
>My machine is running FreeBSD and SER is compiled from ports(source).
>
>
>Thanks in advance!
>
Hi!
Nobody came with this problem?
I found that this error is present only when using linphone.
When i tried kphone there was no error.
But i couldn`t connect to my SER server. I installed it with the INSTALL.txt instuctions with mysql support and a default password heslo.
when i start it in debug mode it says : Aliases: xxx.xx.xxx.net:5060 localhost:5060 name.com:5060
And i tried with SIP_DOMAIN=xxxxxx.xxxxxx..xx.(also name.com and localhost) but i couldn`t connect or register with kphone.
Some help needed!
Thanks in advance!
-----------------------------------------------------------------
http://gbg.bg/search - Изпробвайте още сега най-добрата българска търсачка!
I've noticed that if you remove then add the same alias to the aliases
table a couple of times in a row, it'll zombie on you. To be precise,
if you do an "serctl alias rm ..." followed by "serctl alias add..." a
few times in a row, the alias will vanish from the aliases table.
This happens regardless of whether the db_mod from usrloc is "1" or "2"
(in debug mode, you can see the vanished alias refered to in the log msg
- "removing spare zombie (wt)", which seems to indicate that the contact
record got flagged as zombie in the replication/deletion process.)
To play safe, I wrote my own perl/fifo script to do this. Still the
same error... (fifo files are -
:ul_rm:aliases\nfoo@bar.com\n\n
:ul_add:aliases\nfoo@bar.com\nsipbaz@veg.com\n0\n1.00\n0\n128\n\n
Any idea? Is this expected behaviour?
cheers
Hello, folks,
I`m new to this list and also new to SER.
Can someone help me with this - ERROR: forward_reply: no 2nd via found in reply
I get it when i try to connect to running ser on my localmachine with local kphone client.
The ser.cfg is the standart with mysql support.
My machine is running FreeBSD and SER is compiled from ports(source).
Thanks in advance!
-----------------------------------------------------------------
http://gbg.bg/search - Изпробвайте още сега най-добрата българска търсачка!
Hi: everyone,
Our team use ser_0.9.0 and serweb, the ser works well, but we find the
serweb can not make call to anyone online actually.....That means the
serweb is not a client-side of IP phone.... It is just an account
managment tool, isn't it?
Can anyone know it??
thanks
bin zhang
--
hubblezhang