Jan,
Sorry about that.
Here is my config file and some trace....
Any functions that are not standard are own own developed one in a plugin.
Re the debug info, there was way too much to send in a mail, but the basic
gist is that, somewhere, possibly during the ACK (although it happens during
REGISTER and INVITE as well), is where the server gets caught in a loop, and
all other requests are blocked at this point.
A quick sample of the debug supplied after the config file.
My initial feelings is that there is something basically wrong with the
config file - maybe I'm not breaknig out at the right point.
The annoying thing is that sometimes, this doesn't happen. Sometimes, the
registration and call goes through fine.
BTW - if anyone else has a solution, feel free to suggest it.
TIA
Derek
# ------------------------- 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;
};
# This is when a UA wishes to register with the Server
if(method=="REGISTER")
{
log("Attempting to register a UA ...\n");
if (!performRegistration("4ecalls.com")) {
sl_send_reply("404", "Not Found");
break;
};
save("location");
sl_send_reply("200", "OK");
};
# This is when a call attempts to take place...
if(method=="INVITE")
{
log("Attempting to re-route call ...\n");
if (!lookup("location"))
{
log("Lookup failed - possibly a PSTN call...\n");
if (!performInvite("4ecalls.com"))
{
log("Am checking to see if it is in our
domain...\n");
if(uri=~"^sip:0[0-9]*@sip.4ecalls.com")
{
sl_send_reply("180", "Trying");
log("Am attempting to re-route call
\n");
# Forward to the SIP gateway
forward(x.x.x.x, 5060);
log("Have re-routed that call
...\n");
# Record so we get a return message
record_route();
break;
};
}
else
{
log("The call was not logged ...\n");
};
log("The call was redirected - hopefully ...\n");
}
else
{
performInvite("4ecalls.com");
};
setflag(1);
};
# An ACK can occur for many reasons
# DT : I think this is where the loop is starting to go awry
if(method=="ACK")
{
log("Processing for an ACK ...\n");
setStartTimeActiveCall("");
};
# User cancelled the call
if(method=="CANCEL")
{
log("Processing for an CANCEL ...\n");
removeActiveCall("");
};
# Call connected, and is now finished...
if(method=="BYE")
{
log("Processing for an BYE ...\n");
log("Found BYE message ...\n");
log("Checking to see if the destination is a SIP phone or
not ...\n");
if (!lookup("location"))
{
log("Destination is a PSTN number ...\n");
performBillingOperation("4ecalls.com");
}
else
{
removeActiveCall("");
};
};
# Only record route on an INVITE
if (method=="INVITE")
{
log("Processing for an INVITE ...\n");
record_route();
};
# loose-route processing
if (loose_route()) {
t_relay();
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();
};
}
Debug info:
========
The ip address 1.1.1.1 is the IP of the Ser server
The ip address 2.2.2.2 is the public IP of our network, from which my
softphone is running
The ip address 3.3.3.3 is the internal IP of the softphone
The ip address 4.4.4.4 is the IP of our MySQL database
This is a small sample, the rest of the loop is very ssimilar to this.
15(20655) SIP Request:
15(20655) method: <REGISTER>
15(20655) uri: <sip:sip.4ecalls.com>
15(20655) version: <SIP/2.0>
15(20655) parse_headers: flags=1
15(20655) Found param type 232, <branch> = <z9hG4bK2abf.6a379564.0>;
state=16
15(20655) end of header reached, state=5
15(20655) parse_headers: Via found, flags=1
15(20655) parse_headers: this is the first via
15(20655) After parse_msg...
15(20655) preparing to run routing scripts...
15(20655) DEBUG : is_maxfwd_present: searching for max_forwards header
15(20655) parse_headers: flags=128
15(20655) Found param type 232, <branch> = <z9hG4bK2abf.5a379564.0>;
state=16
15(20655) end of header reached, state=5
15(20655) parse_headers: Via found, flags=128
15(20655) parse_headers: this is the second via
15(20655) Found param type 232, <branch> = <z9hG4bK2abf.4a379564.0>;
state=16
15(20655) end of header reached, state=5
15(20655) parse_headers: Via found, flags=128
15(20655) Found param type 232, <branch> = <z9hG4bK2abf.3a379564.0>;
state=16
15(20655) end of header reached, state=5
15(20655) parse_headers: Via found, flags=128
15(20655) Found param type 232, <branch> = <z9hG4bK2abf.2a379564.0>;
state=16
15(20655) end of header reached, state=5
15(20655) parse_headers: Via found, flags=128
15(20655) Found param type 232, <branch> = <z9hG4bK2abf.1a379564.0>;
state=16
15(20655) end of header reached, state=5
15(20655) parse_headers: Via found, flags=128
15(20655) Found param type 232, <branch> = <z9hG4bK2abf.0a379564.0>;
state=16
15(20655) end of header reached, state=5
15(20655) parse_headers: Via found, flags=128
15(20655) Found param type 232, <branch> = <z9hG4bK2abf.f9379564.0>;
state=16
15(20655) end of header reached, state=5
15(20655) parse_headers: Via found, flags=128
15(20655) Found param type 232, <branch> = <z9hG4bK2abf.e9379564.0>;
state=16
15(20655) end of header reached, state=5
15(20655) parse_headers: Via found, flags=128
15(20655) Found param type 235, <rport> = <28044>; state=6
15(20655) Found param type 232, <branch> = <z9hG4bK212ae015>; state=16
15(20655) end of header reached, state=5
15(20655) parse_headers: Via found, flags=128
15(20655) end of header reached, state=9
15(20655) DEBUG: get_hdr_field: <To> [34]; uri=[sip:1004@sip.4ecalls.com]
15(20655) DEBUG: to body [Derek <sip:1004@sip.4ecalls.com> ]
15(20655) get_hdr_field: cseq <CSeq>: <2> <REGISTER>
15(20655) DEBUG: is_maxfwd_present: value = 61
15(20655) Attempting to register a UA ...
15(20655) performRegistration: Entered
15(20655) performRegistration: headers = Via: SIP/2.0/UDP
1.1.1.1;branch=z9hG4bK2abf.6a379564.0 Via: SIP/2.0/UDP
1.1.1.1;branch=z9hG4bK2abf.5a379564.0 Via: SIP/2.0/UDP
1.1.1.1;branch=z9hG4bK2abf.4a379564.0 Via: SIP/2.0/UDP
1.1.1.1;branch=z9hG4bK2abf.3a379564.0 Via: SIP/2.0/UDP
1.1.1.1;branch=z9hG4bK2abf.2a379564.0 Via: SIP/2.0/UDP
1.1.1.1;branch=z9hG4bK2abf.1a379564.0 Via: SIP/2.0/UDP
1.1.1.1;branch=z9hG4bK2abf.0a379564.0 Via: SIP/2.0/UDP
1.1.1.1;branch=z9hG4bK2abf.f9379564.0 Via: SIP/2.0/UDP
1.1.1.1;branch=z9hG4bK2abf.e9379564.0 Via: SIP/2.0/UDP
2.2.2.2:28044;rport=28044;branch=z9hG4bK212ae015 To: Derek
<sip:1004@sip.4ecalls.com> From: Derek
<sip:1004@sip.4ecalls.com>;tag=0b2f302e Call-ID:
a11e2f28e61050565418b228c70caf17(a)3.3.3.3 CSeq: 2 REGISTER Max-Forwards: 60
Expires: 0 Contact: <sip:1004@2.2.2.2:28044> User-Agent: SIP EyeP Phone
(Build: EMSipFtw 4.0.23 EM) Content-Length: 0
15(20655) parse_headers: flags=4
15(20655) parse_headers: flags=8
15(20655) parse_headers: flags=16
15(20655) parse_headers: flags=64
15(20655) parse_headers: flags=32
15(20655) performRegistration: - about to create RADIUSRequest...15(20655)
doRegistrationProcess(): Dealing with an REGISTER
15(20655) getSIPAttribute: endStr = '>;tag=0b2f302e Call-ID:
a11e2f28e61050565418b228c70caf17(a)3.3.3.3 CSeq: 2 REGISTER Max-Forwards: 60
Expires: 0 Contact: <sip:1004@2.2.2.2:28044> User-Agent: SIP EyeP Phone
(Build: EMSipFtw 4.0.23 EM) Content-Length: 0 '
15(20655) getSIPAttribute: startStr = '1004(a)sip.4ecalls.com>;tag=0b2f302e
Call-ID: a11e2f28e61050565418b228c70caf17(a)3.3.3.3 CSeq: 2 REGISTER
Max-Forwards: 60 Expires: 0 Contact: <sip:1004@2.2.2.2:28044> User-Agent:
SIP EyeP Phone (Build: EMSipFtw 4.0.23 EM) Content-Length: 0 '
15(20655) getSIPAttribute: return string = '1004(a)sip.4ecalls.com'
15(20655) doSoftphoneRegistration: email Address = '1004(a)sip.4ecalls.com'
15(20655) verifyEmailAddress: entered with = '1004(a)sip.4ecalls.com'
15(20655) verifyEmailAddress: Username = '854'
15(20655) verifyEmailAddress: PIN = ''
15(20655) verifyEmailAddress: Customer ID = '136135424'
15(20655) verifyEmailAddress: About to open connection
15(20655) verifyEmailAddress: Username username
15(20655) verifyEmailAddress: Password password
15(20655) verifyEmailAddress: Host 4.4.4.4
15(20655) verifyEmailAddress: Name radius
18(20672) DEBUG: timer routine:4,tl=0x422ef38c next=0x422f6b7c
18(20672) DEBUG: timer routine:4,tl=0x422f6b7c next=(nil)
18(20672) DEBUG: timer routine:5,tl=0x422de1ac next=0x422ce924
18(20672) DEBUG: timer routine:5,tl=0x422ce924 next=(nil)
-----Original Message-----
From: Jan Janak [mailto:jan@iptel.org]
Sent: Wednesday, June 16, 2004 11:03 AM
To: Derek Toner
Cc: 'serusers(a)lists.iptel.org'
Subject: Re: [Serusers] (newbie to) b2bua And Ser
Well, except problem description you did not send any additional information
for debugging, so how can we help you ? The problems can be anywhere in the
chain.
Jan.
On 15-06 15:02, Derek Toner wrote:
> Hi all,
>
> I am attempting to put together a system involving Ser, so that
> customers can make VoIP calls, and depending on the destination, they
> get billed. We would like to be able to cut people off if they run out
> of credit, so we have decided to use b2bua.
>
> >From what I've been reading about this (b2bua working with ser), it
> >would
> seem that it works.
> However, I'm having a few problems, and was kinda hoping someone would
> be good enough to spare some time to answer my questions.
>
> Currently, what we have is this (in a nutshell):
> Softphone <-----> Ser Server (+ developed Plugin) <-----> b2bua
> <---------> SIP Gateway.
>
> With the flow of call being as follows:
> Softphone initiates the call, and passes an INVITE message to the Ser
> The Ser does his biz on the message (the config file is available if
> required), and once all goes well, forwards the message to the b2bua
> b2bua does his biz again on the INVITE, and forwards the message to
> the Sip Gateway. Sip Gateway connects the call, and call proceeds
> until someone disconnects. Call is billed, if it is a PSTN call.
>
> All seems simple so far. However, my main problems are as follows:
> 1) Sometimes the messages (INVITE, ACK, BYE) seem to get caught in a
> vicious loop, and won't break out of it, even though the max forward
> headers is set to 10. I assume this is a bad config file error, and
> results in this loop. However, I've changed the file so amny times at
> this point, I'm not exactly sure where the loop is beginning.
>
> 2) Sometime when I make a call, the tmie it takes to connect results
> in the call being disconnected before it connects (or just after). As
> a result, the destination customer wouldn't humanly have enough time
> to get to the phone and answer it (unless they had the phone
> surgically attached to them). I feel that there is a bottleneck/delay
> somewhere (perhaps related to question 1), and as a result the time to
> connect is way too long. Is it a case of I have too many components,
> and there is a delay, or something similar.
>
> These problems are bad enough when I'm performing single user testing,
> but when we take on board 20/50/100/500 customers, it's going to
> become a rather large head-ache :-)
>
> Any help would be most appreciated.
> Regards,
> Derek
> _______________________________________________
> Serusers mailing list
> serusers(a)lists.iptel.org http://lists.iptel.org/mailman/listinfo/serusers
Ok.. thanks now it is working but when I am trying to login with admin and default password, it is saying incorrect login/password. Any other hint?
Thanks
&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*
C.M. Rahman Jr.
CTO
CCNP, MCSE Security "Secure your self by securing your System"
CompTI Security Plus Certified
CCS Internet
http://www.ccsi.com
13704 Research Blvd. Building O-Suite 4
Austin, TX 78750
Tel: 512-257-2274 Ex: 115
-----Original Message-----
From: Jan Janak [mailto:jan@iptel.org]
Sent: Wednesday, June 16, 2004 4:36 AM
To: CM Rahman
Cc: serusers(a)lists.iptel.org
Subject: Re: Re: [Serusers] problem logging in to serweb on freebsd 4.9
The files are not included in serweb, you are supposed to write them
yourself because they should contain site-specific stuff, logos,
stylesheets, graphics, and so on. If you don't need this then you can
simply create empty files.
Jan.
On 10-06 18:32, CM Rahman wrote:
> Anybody know why I am getting this error on serweb after installation ?
>
> Warning: virtual(): Unable to include '/prolog.html' - request execution failed in /usr/local/www/data-dist/serweb/page.php on line 48
> backup.ccsi.com User Management
> Warning: virtual(): Unable to include '/separator.html' - request execution failed in /usr/local/www/data-dist/serweb/page.php on line 50
>
> &*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*
> C.M. Rahman Jr.
> CTO
> CCNP, MCSE Security "Secure your self by securing your System"
> CompTI Security Plus Certified
> CCS Internet
> http://www.ccsi.com
> 13704 Research Blvd. Building O-Suite 4
> Austin, TX 78750
> Tel: 512-257-2274 Ex: 115
>
>
> -----Original Message-----
> From: serusers-bounces(a)iptel.org [mailto:serusers-bounces@lists.iptel.org] On Behalf Of Adrian Acosta
> Sent: Wednesday, June 09, 2004 11:34 PM
> To: serusers(a)lists.iptel.org
> Subject: FW: Re: [Serusers] problem logging in to serweb on freebsd 4.9
>
>
> Thank you very much Karel, its working now.
>
> You guys rock! Provide better support than big companies like lucent.
>
> kind regards,
>
> >From: Karel Kozlik <kozlik(a)kufr.cz>
> >To: Adrian Acosta <acosta789(a)hotmail.com>, serusers(a)lists.iptel.org
> >Subject: Re: [Serusers] problem logging in to serweb on freebsd 4.9
> >Date: Wed, 09 Jun 2004 22:57:26 +0200
> >
> >Hi Adrian,
> >FIRST: please reply to mailing list too, in order to other users can see
> >the answers
> >
> >I think you didn't edit the right file! Try create script phpinfo.php (for
> >example in directory user_interface - doesn't matter on it) containing
> >this:
> >
> ><? phpinfo(); ?>
> >
> >and open the page ..../serweb/user_interface/phpinfo.php in your browser.
> >At the begining of the page you can see path to php.ini which is php using
> >('Configuration File (php.ini) Path'). If the file doesn't exists, simply
> >rename php.ini-dist or php.ini-recommended to it.
> >
> >At the phpinfo page you can also see the value of register_globals. Don't
> >forget to restart apache after editing php.ini.
> >
> >regards Karel
> >
> >Adrian Acosta wrote:
> >
> >>Yes, I did set register_globals to on. But the config file in php4 is
> >>php.ini-recommended. there´s also a php.ini-dist file. I tried to set it
> >>in both, but the problem is still there.
> >>
> >>Adrian
> >>
> >> >From: Karel Kozlik <kozlik(a)kufr.cz>
> >> >To: Adrian Acosta <acosta789(a)hotmail.com>
> >> >CC: serusers(a)lists.iptel.org
> >> >Subject: Re: [Serusers] problem logging in to serweb on freebsd 4.9
> >> >Date: Wed, 09 Jun 2004 08:27:27 +0200
> >> >
> >> >Hi,
> >> >you have to set register_globals to on in your php.ini.
> >> >
> >> >regards Karel
> >> >
> >> >Adrian Acosta wrote:
> >> >>Hello guys, I have ser ver 0.8.12 from stable tree installed from
> >> >>source, mysql 4.0.15 and php 4-4.3.3. The web page opens ok with no
> >> >>errors, but when I type the username and password and click login
> >> >>nothing happens. What could be wrong??
> >> >>thanks!
> >> >>Adrian
> >> >>
> >>
> >> >>------------------------------------------------------------------------
> >> >>Add photos to your e-mail with MSN 8.
> >> >><http://g.msn.com/8HMBEN/2746??PS=47575> Get 2 months FREE*.
> >> >>
> >> >>
> >>
> >> >>------------------------------------------------------------------------
> >> >>
> >> >>_______________________________________________
> >> >>Serusers mailing list
> >> >>serusers(a)lists.iptel.org
> >> >>http://lists.iptel.org/mailman/listinfo/serusers
> >> >
> >>
> >>------------------------------------------------------------------------
> >>Protect your PC - Click here <http://g.msn.com/8HMBEN/2755??PS=47575> for
> >>McAfee.com VirusScan Online
> >
>
> _________________________________________________________________
> Help STOP SPAM with the new MSN 8 and get 2 months FREE*
> http://join.msn.com/?page=features/junkmail
>
> _______________________________________________
> 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
Make sure mysql server is running: try starting the service:
service msyql start
then try connecting to mysql using mysql client:
mysql -u root -p
see if this helps.
Freddy
-----Original Message-----
From: serusers-bounces(a)iptel.org [mailto:serusers-bounces@lists.iptel.org]On Behalf Of Harold Workman
Sent: Friday, June 18, 2004 4:37 PM
To: 'Gala, Dipen'
Cc: serusers(a)lists.iptel.org
Subject: RE: [Serusers] Mysql help
Dipen,
Do you already have mysql installed? You need to install it first. The script from iptel.org will build the tables for SER. It sounds like u either dont have mysql installed or running.
-----Original Message-----
From: Gala, Dipen [mailto:Dipen.Gala@FMR.com]
Sent: Friday, June 18, 2004 11:52 AM
To: hworkman(a)cytelcom.com
Cc: serusers(a)lists.iptel.org
Subject: RE: [Serusers] Mysql help
hey thks a lot
now when I am creating the MySQL database using
# ser_mysql.sh create
I get an error ---- cant connect local MySQL server through socket ' tmp/mysql.sock '
can you tell me what the problem and what am I suppose to do.
Dipen K Gala
Fidelity Investments System Company - Telecom
Phone: (617) 563-2729
Email: Dipen.Gala(a)FMR.com
-----Original Message-----
From: Harold Workman [mailto:hworkman@cytelcom.com]
Sent: Friday, June 18, 2004 12:36 PM
To: Gala, Dipen; serusers(a)lists.iptel.org
Subject: RE: [Serusers] Mysql help
http://cvs.berlios.de/cgi-bin/viewcvs.cgi/*checkout*/ser/sip_router/INSTALL
-----Original Message-----
From: serusers-bounces(a)iptel.org [mailto:serusers-bounces@lists.iptel.org]On Behalf Of Gala, Dipen
Sent: Friday, June 18, 2004 11:28 AM
To: serusers(a)lists.iptel.org
Subject: [Serusers] Mysql help
Hey guys I m trying to install n configure mysql and link it up with SER. But I am not sure what to do. How to create tables and fields and link it up with SER can nay1 help me out or can suggest some DOC or url where I can get more info. Pls provide a specific url since I hv spent my time on iptel.org, CVS, voip-info.com
thanks
Dipen K Gala
Fidelity Investments System Company - Telecom
Phone: (617) 563-2729
Email: Dipen.Gala(a)FMR.com
hey thks a lot
now when I am creating the MySQL database using
# ser_mysql.sh create
I get an error ---- cant connect local MySQL server through socket '
tmp/mysql.sock '
can you tell me what the problem and what am I suppose to do.
Dipen K Gala
Fidelity Investments System Company - Telecom
Phone: (617) 563-2729
Email: Dipen.Gala(a)FMR.com
-----Original Message-----
From: Harold Workman [mailto:hworkman@cytelcom.com]
Sent: Friday, June 18, 2004 12:36 PM
To: Gala, Dipen; serusers(a)lists.iptel.org
Subject: RE: [Serusers] Mysql help
http://cvs.berlios.de/cgi-bin/viewcvs.cgi/*checkout*/ser/sip_router/INST
ALL
-----Original Message-----
From: serusers-bounces(a)lists.iptel.org
[mailto:serusers-bounces@lists.iptel.org]On Behalf Of Gala, Dipen
Sent: Friday, June 18, 2004 11:28 AM
To: serusers(a)lists.iptel.org
Subject: [Serusers] Mysql help
Hey guys I m trying to install n configure mysql and
link it up with SER. But I am not sure what to do. How to create tables
and fields and link it up with SER can nay1 help me out or can suggest
some DOC or url where I can get more info. Pls provide a specific url
since I hv spent my time on iptel.org, CVS, voip-info.com
thanks
Dipen K Gala
Fidelity Investments System Company - Telecom
Phone: (617) 563-2729
Email: Dipen.Gala(a)FMR.com
Do I have to install and configure MySQL 4.x for serweb or I don't need
it..as if I cant configure mysql that is along with SER. So I though why
not use mysql 4.x since my main aim is to install serweb
Guys pls help me out
Dipen K Gala
Fidelity Investments System Company - Telecom
Phone: (617) 563-2729
Email: Dipen.Gala(a)FMR.com
Hey guys I m trying to install n configure mysql and link it up with
SER. But I am not sure what to do. How to create tables and fields and
link it up with SER can nay1 help me out or can suggest some DOC or url
where I can get more info. Pls provide a specific url since I hv spent
my time on iptel.org, CVS, voip-info.com
thanks
Dipen K Gala
Fidelity Investments System Company - Telecom
Phone: (617) 563-2729
Email: Dipen.Gala(a)FMR.com
Hi again,
I used a sip phone to register it with the sip server
using a radius authentification and a siph323 which is
a sip-h323 convertor ijn order to route the call to a
openh323GK, but I get the message:
"sip/2.0 403 Forbidden"
do you know about this message?
Thank you
--- "Gala, Dipen" <Dipen.Gala(a)FMR.com> a écrit : > Hey
sorry I have no clues abt the sip to h.323
> translator
>
> Dipen K Gala
> Fidelity Investments System Company - Telecom
> Phone: (617) 563-2729
> Email: Dipen.Gala(a)FMR.com
>
>
> -----Original Message-----
> From: Fathallah Soumaya [mailto:fathallahs@yahoo.fr]
>
> Sent: Friday, June 18, 2004 10:22 AM
> To: Gala, Dipen
> Subject: RE: [Serusers] help please!!!
>
>
>
> it is a translator sip-h323 , it is available in the
> page www.kom.e-technik.tu-darmstadt.de I think.
>
>
>
> --- "Gala, Dipen" <Dipen.Gala(a)FMR.com> a écrit : >
> Sorry cant help u there I have no clues what that
> > is......neways what r u trying to work on.....what
> r
> > u configuring???
> >
> > Dipen K Gala
> > Fidelity Investments System Company - Telecom
> > Phone: (617) 563-2729
> > Email: Dipen.Gala(a)FMR.com
> >
> >
> > -----Original Message-----
> > From: Fathallah Soumaya
> [mailto:fathallahs@yahoo.fr]
> >
> > Sent: Friday, June 18, 2004 10:15 AM
> > To: Gala, Dipen
> > Subject: RE: [Serusers] help please!!!
> >
> >
> > Hi,
> >
> > Thank you so much for your help, it works now, do
> > yopu
> > have an idea about simph323csgw?
> > I have it also installed and don t know how to use
> > it
> > how to start it? what should I know about it?
> >
> > Thank you again for your help:)
> >
> >
> >
> >
> > --- "Gala, Dipen" <Dipen.Gala(a)FMR.com> a écrit : >
> > Hey
> > forget start and stop
> > > At the console use this
> > > Killall ser -----stops the ser
> > > Ser --- starts the ser
> > >
> > > U can check if ser is working by using
> > > Ps -ef
> > >
> > > Hope this will help u
> > >
> > >
> > > Dipen K Gala
> > > Fidelity Investments System Company - Telecom
> > > Phone: (617) 563-2729
> > > Email: Dipen.Gala(a)FMR.com
> > >
> > >
> > > -----Original Message-----
> > > From: Fathallah Soumaya
> > [mailto:fathallahs@yahoo.fr]
> > >
> > > Sent: Friday, June 18, 2004 6:42 AM
> > > To: serusers(a)lists.iptel.org
> > > Subject: [Serusers] help please!!!
> > >
> > >
> > > Hello all,
> > >
> > > I am using a sip express server that I didn t
> > > install
> > > myself, I have no idea how to use it, I started
> it
> > > by
> > > "ser start" and to stop it by "ser stop" nothing
> > > happened, I dont manage to stop it!!
> > > can someone help me urgently about this??
> > >
> > > I would be very grateful
> > > Thank you very much!!
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > > Créez gratuitement votre Yahoo! Mail avec 100 Mo
> > de
> > > stockage !
> > > Créez votre Yahoo! Mail sur
> > > http://fr.benefits.yahoo.com/
> > >
> > > Dialoguez en direct avec vos amis grâce à Yahoo!
> > > Messenger !Téléchargez Yahoo! Messenger sur
> > > http://fr.messenger.yahoo.com
> > >
> > > _______________________________________________
> > > Serusers mailing list
> > > serusers(a)lists.iptel.org
> > > http://lists.iptel.org/mailman/listinfo/serusers
> > >
> >
> >
> >
> >
> >
> >
> > Créez gratuitement votre Yahoo! Mail avec 100 Mo
> de
> > stockage !
> > Créez votre Yahoo! Mail sur
> > http://fr.benefits.yahoo.com/
> >
> > Dialoguez en direct avec vos amis grâce à Yahoo!
> > Messenger !Téléchargez Yahoo! Messenger sur
> > http://fr.messenger.yahoo.com
> >
>
>
>
>
>
>
> Créez gratuitement votre Yahoo! Mail avec 100 Mo de
> stockage !
> Créez votre Yahoo! Mail sur
> http://fr.benefits.yahoo.com/
>
> Dialoguez en direct avec vos amis grâce à Yahoo!
> Messenger !Téléchargez Yahoo! Messenger sur
> http://fr.messenger.yahoo.com
>
Créez gratuitement votre Yahoo! Mail avec 100 Mo de stockage !
Créez votre Yahoo! Mail sur http://fr.benefits.yahoo.com/
Dialoguez en direct avec vos amis grâce à Yahoo! Messenger !Téléchargez Yahoo! Messenger sur http://fr.messenger.yahoo.com
Hi,
I'm running ser-0.8.12 and radiusclient-0.3.2 on Redhat Linux 8. SER has
radius authentication and accounting enabled.
I have configured an ATA 186 to register to SER. When the authentication
request is forwarded to the radius server, the ATA's LoginID and UID fields
values are forwarded correctly but the password (PWD field) is blank.
I have tested runnning the "radexample" radiusclient test script and it
works perfectly: userid and password are received by radius server.
Any ideas on how to solve this problem ? Is there a way for SER to force
the ATAs UID value to be it's password value when sending authentication
request to radius server ?
Thanks.
_________________________________________________________________
Tired of spam? Get advanced junk mail protection with MSN 8.
http://join.msn.com/?page=features/junkmail
I think you need to forward the ACK to complete the handoff and the CANCEL in case the user abandon the call in the mid-way.
-----Original Message-----
From: serusers-bounces(a)iptel.org [mailto:serusers-bounces@lists.iptel.org] On Behalf Of john
Sent: June 16, 2004 11:19 AM
To: jiri(a)iptel.org; klaus.mailinglists(a)pernau.at
Cc: serusers(a)lists.iptel.org
Subject: [Serusers] How to forward the call to PSTN GW
Hi Jiri,
I have a question.
I want to route all call start with 0026xxxxxxxxxxxxxxxxxxxx to the PSTN
gateway.
And I tried it with the command
if (uri=~"^sip:0026*@") {
forward(IP,5060);
break;
};
Is this correct?
Do I need to inculde this condition is the following condition statment:
if (method=="INVITE") {
if (uri=~"^sip:0026*@" {
forward(ip , 5060);
break;
};
};
Thanks for your help.
Regards
John
_______________________________________________
Serusers mailing list
serusers(a)lists.iptel.org
http://lists.iptel.org/mailman/listinfo/serusers
Hello all,
I am using a sip express server that I didn t install
myself, I have no idea how to use it, I started it by
"ser start" and to stop it by "ser stop" nothing
happened, I dont manage to stop it!!
can someone help me urgently about this??
I would be very grateful
Thank you very much!!
Créez gratuitement votre Yahoo! Mail avec 100 Mo de stockage !
Créez votre Yahoo! Mail sur http://fr.benefits.yahoo.com/
Dialoguez en direct avec vos amis grâce à Yahoo! Messenger !Téléchargez Yahoo! Messenger sur http://fr.messenger.yahoo.com