Guys,
I modified some code in order do create a timer to control the time between
Trying and 18x. Do you think it's usefull? In case you think, I would like
to contribute.
Fernando Schmitt
Juha,
I'm new into C programming. Could you kindly let me know where this code
should be inserted?
yes, i implemented a function called move that turned 302 to invite, but
that code relied on a patch to tm module that gave me access to contact
header of reply in reply route.
i found the function and it is below. someone who needs this
functionality has to check if same kind of access to the contact header
of the reply is still possible or if the access method is now different
and modify the code accordingly.
also, all contacts would need to be taken from 302, not just the first.
contact_re was compiled during module initialization:
regcomp(&contact_re, "^Contact:(.*)$", REG_EXTENDED|REG_NEWLINE);
needless to say, i'm not proud of this code, but it gives an idea on how
it can be done.
-- juha
/*
* Appends a new branch to request using the first Contact URI of the (302)
* reply (if any) as the Request URI. Returns 1 if appending succeeded and
-1
* if it failed.
*/
int move(struct sip_msg* _m, char* _s1, char* _s2)
{
struct sip_msg* reply;
regmatch_t pmatch[2];
struct hdr_field hf;
contact_t* first;
reply = _m->final_reply;
if (!reply) {
LOG(L_ERR, "move(): No reply found\n");
return -1;
}
LOG(L_ERR, "move(): unparsed part of reply: %s\n", reply->unparsed);
if ((regexec(&contact_re, reply->unparsed, 2, &(pmatch[0]), 0) != 0)
||
(pmatch[1].rm_so == -1)) {
LOG(L_ERR, "move(): No Contact header found\n");
return -1;
}
hf.type = HDR_CONTACT;
hf.name.len = 0;
hf.body.len = pmatch[1].rm_eo - pmatch[1].rm_so - 1;
hf.body.s = &(reply->unparsed[pmatch[1].rm_so]);
hf.len = hf.body.len + 2;
hf.parsed = NULL;
hf.next = NULL;
LOG(L_ERR, "hf.body: '%.*s'\n", hf.body.len, hf.body.s);
if (parse_contact(&hf) < 0) {
LOG(L_ERR, "move(): Error while parsing Contact\n");
goto failure;
}
if (((contact_body_t*)hf.parsed)->star == 1) {
LOG(L_ERR, "move(): Contact is *\n");
goto failure;
}
first = ((contact_body_t*)hf.parsed)->contacts;
if (first) {
if (append_branch(_m, first->uri.s, first->uri.len) == 1) {
goto success;
} else {
LOG(L_ERR, "move(): Appending branch failed\n");
}
} else {
LOG(L_ERR, "move(): No contacts in Contact header\n");
}
failure:
if (hf.parsed) {
free_contact((contact_body_t**)(&(hf.parsed)));
}
return -1;
success:
free_contact((contact_body_t**)(&(hf.parsed)));
return 1;
}
Fernando Schmitt
Hi all,
Is there anyway that I can use forward, t_replicate, or t_relay command
without inserting a Via header?
What I am trying to do is to use OpenSER as a load balancer but just
filtering incoming messages and distribute to real server but not adding an
extra Via header.
Thanks for your help,
Patrick
_________________________________________________________________
Messenger Café open for fun 24/7. Hot games, cool activities served daily.
Visit now. http://cafemessenger.com?ocid=TXT_TAGHM_AugHMtagline
Hi all,
Can any help me out in running openser server with TLS support?
In openser conf file they have commented for TLS and given comment that we must uncomment it to run TLS support but unfortunately while I compile it's giving configuration error, have I want to do some more settings.
Thanks,
Vikas C.G.
-----Original Message-----
From: users-bounces(a)openser.org [mailto:users-bounces@openser.org] On Behalf Of Marc LEURENT
Sent: Thursday, August 09, 2007 7:19 PM
To: flavio
Cc: users(a)openser.org
Subject: Re: [OpenSER-Users] Re: How can it be simpler and working? CDRTool
YEAHHHHHH!
My problem was with the destination database. I didn't understand what was the destination ID, I thought it was just a random one!
I was probably too tired...
Hopefully, tomorrow; it's summer holidays
I owe you a beer!!
Are you going to Rome next September for VoIP conference?
ShowPrice From=sip:101@sd-7501.dedibox.fr To=sip:001305465768 Duration=599876
199.9587
App: audio
Destination: 1305 (TEST INTERNATIONAL)
Customer: default
Connect fee: 0.0000
--
Span: 1
Duration: 11931 s
StartTime: 2007-08-09 15:41:09 (Europe/Paris)
ProfileId: 441 for weekday
RateId: 441 for 8-19h
Rate: 0.0200 / 60 s
Price: 3.9770
--
Span: 2
Duration: 29931 s
StartTime: 2007-08-09 15:41:09 (Europe/Paris)
ProfileId: 441 for weekday
RateId: 442 for 19-24h
Rate: 0.0200 / 60 s
Price: 9.9770
--
Span: 3
Duration: 58731 s
StartTime: 2007-08-09 15:41:09 (Europe/Paris)
ProfileId: 441 for weekday
RateId: 442 for 0-8h
Rate: 0.0200 / 60 s
Price: 19.5770
Yes: "reportMissingRates"=> 1
flavio a écrit :
> Marc,
>
> Is the missing rates parameter of $CDRTool['rating'] equal to 1?
>
> rates.csv
> Ops,Gateway,Domain,Subscriber,Rate Id,Destination,Price,App,Connect
> 2,,192.168.1.160,,442,1305,200,audio,
> 2,,192.168.1.160,,441,1305,200,audio,
Ops,Gateway,Domain,Subscriber,Rate Id,Destination,Price,App,Connect
2,,sd-7501.dedibox.fr,,442,1305,200,audio,
2,,sd-7501.dedibox.fr,,441,1305,200,audio,
>
>
> profiles.csv
> Ops,Gateway,Domain,Subscriber,Profile Id,Rate Id1,00-H1,Rate
> Id2,H1-H2,Rate Id3,H2-H3,Rate Id4,H3-24
> 2,,192.168.1.160,,441,442,8,441,19,442,24,,0
> 2,,192.168.1.160,,442,442,24,442,19,441,24,,0
Ops,Gateway,Domain,Subscriber,Profile Id,Rate Id1,00-H1,Rate Id2,H1-H2,Rate Id3,H2-H3,Rate Id4,H3-24
2,,sd-7501.dedibox.fr,,442,442,24,442,19,442,24,,0
2,,sd-7501.dedibox.fr,,441,442,8,441,19,442,24,,0
>
>
> customer.csv
>
> Ops,Gateway,Domain,Subscriber,WeekDay,Fallback,WeekEnd,Fallback,Timezone,Incr,Minim
>
> 2,,,,441,,442,,Europe/Amsterdam,0,0
Ops,Gateway,Domain,Subscriber,WeekDay,Fallback,WeekEnd,Fallback,Timezone,Incr,Minim
2,,,,441,,442,,Europe/Paris,0,0
>
>
> I have made all the tests dialing 001305...... (Miami). (I have used
> 192.168.1.160 as the domain, change to yourdomain). It normalizes to
> 1305 striping two zeros as specified on cdrlib.phtml. Check if it is
> striping the digits to match the desired destination.
>
> class CDRS {
>
> var $CDR_class = 'CDR';
> var $intAccessCode = '00';
> var $natAccessCode = '0';
>
class CDRS {
var $CDR_class = 'CDR';
var $intAccessCode = '00';
var $natAccessCode = '0';
var $RatingEngineSocket = false;
var $maxrowsperpage = 15;
var $status = array();
var $normalizedField = 'Normalized';
var $DestinationIdField = 'DestinationId';
var $BillingIdField = 'UserName';
var $sipTraceDataSource = 'sip_trace';
var $defaults = array();
var $whereUnnormalized = '';
......................
......................
> Cheers,
>
> Flavio
> ----- Original Message ----- From: "Marc LEURENT" <lftsy(a)free.fr>
> To: "flavio" <flavio(a)asteriskguide.com>
> Sent: Thursday, August 09, 2007 9:41 AM
> Subject: Re: [OpenSER-Users] Re: How can it be simpler and working? CDRTool
>
>
>> Hello flavio,
>> I would be very grateful if you can send me just the .csv of your
>> tables about your internal calls, the simpliest one for you that is
>> working...
>> Best Regards!
>>
>> Marc, desperate
>>
>> Marc LEURENT a écrit :
>>> I've got a running tail -f /var/lig/messages and I haven't seen a
>>> single error...
>>> It's just that it calculates 0.0000 for the price
>>>
>>> I have already added the $CDRTool['rating'] parameter..
>>>
>>> Id don't have the same message:
>>> Aug 9 14:00:02 sd-7501 CDRTool[18946]: ShowPrice Id=3
>>> Timestamp=1186660750 Duration=11 inputTraffic=0 outputTraffic=0
>>> From=sip:106@sd-7501.dedibox.fr
>>> To=6713(a)sd-7501.dedibox.fr Gateway= Application=audio
>>> Aug 9 14:00:02 sd-7501 CDRTool[19627]: Normalization done in 0 s,
>>> memory usage: 9.90 MB
>>> Aug 9 14:00:02 sd-7501 CDRTool[19627]: 1 CDRs, 1 normalized in 0 s @
>>> 0 cps
>>>
>>> But there is no "ConnectFee=0.0000 Span=1 Duration=57 De
>>> stId=1305 domain=192.168.1.160 Profile=441 Period=weekday Rate=441
>>> Interval=8
>>> -19 Cost=0.0200/10 Price=0.1140 " after
>>>
>>> Do I have to activate something else??
>>>
>>>
>>> flavio a écrit :
>>>> Marc,
>>>>
>>>> I'm using 5.1.5 and it is working. Check the /var/log/syslog for errors
>>>> in the normalization process
>>>>
>>>> Something like:
>>>>
>>>> Aug 6 07:18:55 debian CDRTool[3973]: Error: Cannot find rates for
>>>> callid=, d
>>>> omain=192.168.1.160, destination=1305, profile=441, app=audio
>>>>
>>>> The correct in the tests I have made is:
>>>>
>>>> Aug 6 07:47:44 debian CDRTool[3973]: ShowPrice Id=88
>>>> Timestamp=1186400781 Du
>>>> ration=57 inputTraffic=0 outputTraffic=0 From=1000(a)192.168.1.160
>>>> To=001305345
>>>> 6789(a)192.168.1.160 Gateway=192.168.1.118 Application=audio
>>>> Aug 6 07:47:44 debian CDRTool[3973]: ConnectFee=0.0000 Span=1
>>>> Duration=57 De
>>>> stId=1305 domain=192.168.1.160 Profile=441 Period=weekday Rate=441
>>>> Interval=8
>>>> -19 Cost=0.0200/10 Price=0.1140
>>>>
>>>> please activate the following parameter in the global.inc file
>>>> (reportMissingRates).
>>>>
>>>> $CDRTool['rating']=array("priceDenominator" =>
>>>> 10000,"priceDecimalDigits" => 4,"minimumDurationCharged"=>
>>>> 0,"durationPeriodRated"=> 60,"trafficSizeRated"=>
>>>> 1024,"reportMissingRates"=> 1,"minimumDuration"=> 0);
>>>>
>>>> I hope it helps, it took me a long time before to start working.
>>>>
>>>> Cheers
>>>>
>>>> Flavio
>>>>
>>>>
>>>> ----- Original Message ----- From: "Marc LEURENT" <lftsy(a)free.fr>
>>>> To: "flavio" <flavio(a)asteriskguide.com>
>>>> Cc: <users(a)openser.org>
>>>> Sent: Thursday, August 09, 2007 9:01 AM
>>>> Subject: Re: [OpenSER-Users] Re: How can it be simpler and working?
>>>> CDRTool
>>>>
>>>>
>>>>> Yes, I've added all rights to my account...
>>>>> and price is NULL in the database until a Normalize is done! All
>>>>> prices are set to 0.0000 after...
>>>>>
>>>>> And after a
>>>>> Normalize datasource ser_radius, database DB_radius, table
>>>>> radacct200708
>>>>> Aug 9 14:00:02 sd-7501 CDRTool[18946]: ShowPrice Id=3
>>>>> Timestamp=1186660750 Duration=11 inputTraffic=0 outputTraffic=0
>>>>> From=sip:106@sd-7501.dedibox.fr
>>>>> To=6713(a)sd-7501.dedibox.fr Gateway= Application=audio
>>>>>
>>>>>
>>>>>
>>>>>
>>>>> flavio a écrit :
>>>>>> Marc,
>>>>>>
>>>>>> Have you checked your user rights in the CDRTool (is show price item
>>>>>> highlighted?). My CDRtool shown x.xxx in the price and that's was
>>>>>> the
>>>>>> cause.
>>>>>>
>>>>>> Flavio
>>>>>>
>>>>>> ----- Original Message ----- From: "Marc LEURENT" <lftsy(a)free.fr>
>>>>>> To: "Dan-Cristian Bogos" <dan.bogos(a)gmail.com>
>>>>>> Cc: <users(a)openser.org>
>>>>>> Sent: Thursday, August 09, 2007 8:01 AM
>>>>>> Subject: [OpenSER-Users] Re: How can it be simpler and working?
>>>>>> CDRTool
>>>>>>
>>>>>>
>>>>>> I'm starting to fell sorry to bother you like that...
>>>>>> I have changed the database like you said, but it is still not
>>>>>> working...
>>>>>>
>>>>>> ShowPrice From=sip:101@sd-7501.dedibox.fr To=0033677832974
>>>>>> Duration=5923
>>>>>> 0.0000
>>>>>>
>>>>>> Should I try to downgrade to version 5.1.3 like yours?
>>>>>>
>>>>>> ShowMemory
>>>>>> 1 destinations
>>>>>> 1 customers
>>>>>> 1 profiles
>>>>>> 1 rates
>>>>>> 0 holidays
>>>>>> 2 prepaid accounts
>>>>>> 1 sessions
>>>>>> 1 sessions last minute
>>>>>> 1 sessions last hour
>>>>>> 1 sessions last day
>>>>>>
>>>>>>
>>>>>> but in the database, the prepaid account is credited by 10.00
>>>>>> ShowPrepaidAccounts Filter=101(a)sd-7501.dedibox.fr
>>>>>> Account=101(a)sd-7501.dedibox.fr Balance=10040.0000
>>>>>>
>>>>>> ShowCustomers
>>>>>> default
>>>>>>
>>>>>>
>>>>>> ShowAccounts
>>>>>> Error: Invalid request
>>>>>>
>>>>>> MaxSessionTime From=sip:101@sd-7501.dedibox.fr
>>>>>> To=sip:106@sd-7501.dedibox.fr Duration=7200 Lock=1
>>>>>> none
>>>>>>
>>>>>> DebitBalance From=sip:101@sd-7501.dedibox.fr
>>>>>> To=sip:106@sd-7501.dedibox.fr Duration=59
>>>>>> Ok
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>> Dan-Cristian Bogos a écrit :
>>>>>>> Ok, let's take it in your way. I would rather modify your data into:
>>>>>>>
>>>>>>> Destinations:
>>>>>>> Ops,Gateway,Domain,Subscriber,Destination Id,Description
>>>>>>> 2,,,,131,TEST INTERNATIONAL
>>>>>>>
>>>>>>> Customers:
>>>>>>> Ops,Gateway,Domain,Subscriber,WeekDay,Fallback,WeekEnd,Fallback,Timezone,Incr,Minim
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>> 2,,,,441,,441,,,1,1
>>>>>>>
>>>>>>> Profiles:
>>>>>>> Ops,Gateway,Domain,Subscriber,Profile Id,Rate Id1,00-H1,Rate
>>>>>>> Id2,H1-H2,Rate Id3,H2-H3,Rate Id4,H3-24
>>>>>>> 2,,,,441,441,8,441,19,441,24,441,0
>>>>>>>
>>>>>>> Rates:
>>>>>>> Ops,Gateway,Domain,Subscriber,Rate Id,Destination,Price,App,Connect
>>>>>>> 2,,,,441,131,2100,audio,0
>>>>>>>
>>>>>>> U did not have a rate id and no App. Without App field for me it
>>>>>>> does
>>>>>>> not calculate either.
>>>>>>>
>>>>>>> DanB
>>>>>>>
>>>>>>>>
>>>>>>>> But, the command ShowPrice returns:
>>>>>>>> ShowPrice From=sip:101@sd-7501.dedibox.fr To=0033677832974
>>>>>>>> Duration=59
>>>>>>>> 0.0000
>>>>>>>>
>>>>>>>>
>>>>>>>> I have a field TrafficRate in the database but doesn't appear on
>>>>>>>> the
>>>>>>>> CDRTool interface
>>>>>>>> I put random values inside
>>>>>>>>
>>>>>>>>
>>>>>>>> Dan-Cristian Bogos a écrit :
>>>>>>>>> My version is:
>>>>>>>>> CDRTool version 5.1.3
>>>>>>>>>
>>>>>>>>> In my rates table I have one more field more which is
>>>>>>>>> TrafficRate. I
>>>>>>>>> see that this one is missing on your side.
>>>>>>>>> Can u also create a default rate table without filling any of the
>>>>>>>>> gateway, subscriber, domain in profiles? This one should match all
>>>>>>>>> the
>>>>>>>>> destinations. Maybe would be useful till u make it work to have
>>>>>>>>> only
>>>>>>>>> the test row and remove anything else to take it gradually.
>>>>>>>>> Also, try querying for price with 00 added in the front of the
>>>>>>>>> destination since this is the default prefix set in CDRTool for
>>>>>>>>> international destinations (without being necessary to be added in
>>>>>>>>> rate or destination table).
>>>>>>>>>
>>>>>>>>> DanB
>>>>>>>>>
>>>>>>>>> On 8/9/07, Marc LEURENT <lftsy(a)free.fr> wrote:
>>>>>>>>>> I have added:
>>>>>>>>>>
>>>>>>>>>> Destination:
>>>>>>>>>> Ops,Gateway,Domain,Subscriber,Destination Id,Description
>>>>>>>>>> 2,,sd-7501.dedibox.fr,,31800,Ma Dst TEST
>>>>>>>>>> 2,,,33677832974,131,TEST INTERNATIONAL
>>>>>>>>>>
>>>>>>>>>> Profiles:
>>>>>>>>>> Ops,Gateway,Domain,Subscriber,Profile Id,Rate Id1,00-H1,Rate
>>>>>>>>>> Id2,H1-H2,Rate Id3,H2-H3,Rate Id4,H3-24
>>>>>>>>>> 2,,sd-7501.dedibox.fr,101(a)sd-7501.dedibox.fr,441,441,8,441,19,441,24,441,0
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> 2,,sd-7501.dedibox.fr,106(a)sd-7501.dedibox.fr,441,441,8,441,19,441,24,441,0
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> 2,,,33677832974,441,441,22,441,23,441,24,441,0
>>>>>>>>>>
>>>>>>>>>> Rates:
>>>>>>>>>> Ops,Gateway,Domain,Subscriber,Rate
>>>>>>>>>> Id,Destination,Price,App,Connect
>>>>>>>>>> 2,,sd-7501.dedibox.fr,,441,31800,2100,audio,4647
>>>>>>>>>> 2,,sd-7501.dedibox.fr,101(a)sd-7501.dedibox.fr,441,31800,200,audio,2364
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> 2,,sd-7501.dedibox.fr,102(a)sd-7501.dedibox.fr,441,31800,200,audio,245
>>>>>>>>>>
>>>>>>>>>> 2,,,33677832974,441,131,2100,,2426
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> ShowPrice From=sip:101@sd-7501.dedibox.fr To=33677832974
>>>>>>>>>> Duration=59
>>>>>>>>>> 0.0000
>>>>>>>>>>
>>>>>>>>>> But it is still not working...
>>>>>>>>>> Could you spent some time sending me a part of yours...
>>>>>>>>>> And are you using CDRTool 5.2.1??
>>>>>>>>>>
>>>>>>>>>> Thanks
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> Dan-Cristian Bogos a écrit :
>>>>>>>>>>> Hi Marc,
>>>>>>>>>>>
>>>>>>>>>>> can u do me a favor and try adding in an international
>>>>>>>>>>> destination in
>>>>>>>>>>> your pricelist and try placing a call to it. See if you get
>>>>>>>>>>> billing
>>>>>>>>>>> calculation for it. I suspect that your billing doesn't match
>>>>>>>>>>> the
>>>>>>>>>>> destination due to prefixes which are normally stripped. Not
>>>>>>>>>>> quite a
>>>>>>>>>>> CDRTool internals expert but my installation simply works for
>>>>>>>>>>> international destinations.
>>>>>>>>>>>
>>>>>>>>>>> DanB
>>>>>>>>>>>
>>>>>>>>>>> On 8/9/07, Marc LEURENT <lftsy(a)free.fr> wrote:
>>>>>>>>>>>> Hello Dan-Cristian,
>>>>>>>>>>>>
>>>>>>>>>>>> I just want a simple thing, that when I'm connecting to the
>>>>>>>>>>>> rating engine using telnet: telnet 127.0.0.1 9024
>>>>>>>>>>>> When I enter such a command, that the price should be != 0:
>>>>>>>>>>>>
>>>>>>>>>>>> ShowPrice From=sip:101@sd-7501.dedibox.fr
>>>>>>>>>>>> To=sip:106@sd-7501.dedibox.fr Duration=59
>>>>>>>>>>>> 0.0000
>>>>>>>>>>>>
>>>>>>>>>>>> Help would be very grateful...
>>>>>>>>>>>> Thanks...
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>> The rating engine is requesting the good radaact200708 table (I
>>>>>>>>>>>> have change my globac.inc conf file
>>>>>>>>>>>> "ser_radius"=>array(
>>>>>>>>>>>> "name" => "OpenSER",
>>>>>>>>>>>> "class" => "CDRS_ser_radius",
>>>>>>>>>>>> "table" =>
>>>>>>>>>>>> "radacct".date("Ym"),
>>>>>>>>>>>> ......
>>>>>>>>>>>>
>>>>>>>>>>>> )
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>> Here is a view of the rating tables... And I don't understand
>>>>>>>>>>>> where I'm wrong..
>>>>>>>>>>>>
>>>>>>>>>>>> Destinations:
>>>>>>>>>>>> Ops,Gateway,Domain,Subscriber,Destination Id,Description
>>>>>>>>>>>> 2,,sd-7501.dedibox.fr,,31800,Ma Dst TEST
>>>>>>>>>>>>
>>>>>>>>>>>> Customers:
>>>>>>>>>>>> Ops,Gateway,Domain,Subscriber,WeekDay,Fallback,WeekEnd,Fallback,Timezone,Incr,Minim
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>> 2,,sd-7501.dedibox.fr,101(a)sd-7501.dedibox.fr,441,,442,,Europe/Paris,20,1
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>> 2,,sd-7501.dedibox.fr,106(a)sd-7501.dedibox.fr,441,,442,,Europe/Paris,34,1
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>> Profiles:
>>>>>>>>>>>> Ops,Gateway,Domain,Subscriber,Profile Id,Rate Id1,00-H1,Rate
>>>>>>>>>>>> Id2,H1-H2,Rate Id3,H2-H3,Rate Id4,H3-24
>>>>>>>>>>>> 2,,sd-7501.dedibox.fr,,441,442,8,441,19,441,24,441,0
>>>>>>>>>>>> 2,,sd-7501.dedibox.fr,,442,442,24,442,0,442,0,442,0
>>>>>>>>>>>>
>>>>>>>>>>>> Rates:
>>>>>>>>>>>> Ops,Gateway,Domain,Subscriber,Rate
>>>>>>>>>>>> Id,Destination,Price,App,Connect
>>>>>>>>>>>> 2,,,,441,31800,2100,audio,0
>>>>>>>>>>>> 2,,,,442,31800,200,audio,0
>>>>>>>>>>>>
>>>>>>>>>>>> Prepaid:
>>>>>>>>>>>> Ops,Account,Balance,Last change,Lock,Start time,Last
>>>>>>>>>>>> price,Max,Destination
>>>>>>>>>>>> 2,101(a)sd-7501.dedibox.fr,10030.0000,2007-08-08
>>>>>>>>>>>> 17:57:00,,0000-00-00 00:00:00,0.0000,0,
>>>>>>>>>>>> 2,106(a)sd-7501.dedibox.fr,20010.0000,2007-08-08
>>>>>>>>>>>> 17:38:09,,0000-00-00 00:00:00,0.0000,0,
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>> ShowPrepaidAccounts Filter=sd-7501.dedibox.fr
>>>>>>>>>>>> Account=101(a)sd-7501.dedibox.fr Balance=10030.0000
>>>>>>>>>>>> Account=106(a)sd-7501.dedibox.fr Balance=20010.0000
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>> And here is my radacct200708 table:
>>>>>>>>>>>> RadAcctId AcctSessionId AcctUniqueId UserName
>>>>>>>>>>>> Realm NASIPAddress NASPortId NASPortType
>>>>>>>>>>>> AcctStartTime AcctStopTime AcctSessionTime
>>>>>>>>>>>> AcctAuthentic ConnectInfo_start ConnectInfo_stop
>>>>>>>>>>>> AcctInputOctets AcctOutputOctets CalledStationId
>>>>>>>>>>>> CallingStationId AcctTerminateCause
>>>>>>>>>>>> ServiceType FramedProtocol FramedIPAddress AcctStartDelay
>>>>>>>>>>>> AcctStopDelay SipMethod SipResponseCode SipToTag
>>>>>>>>>>>> SipFromTag
>>>>>>>>>>>> SipTranslatedRequestURI SipUserAgents
>>>>>>>>>>>> SipApplicationType SipCodecs SipRPID
>>>>>>>>>>>> SipRPIDHeader SourceIP SourcePort CanonicalURI DelayTime
>>>>>>>>>>>> Timestamp DestinationId Rate Price Normalized
>>>>>>>>>>>> BillingId MediaInfo RTPStatistics FromHeader
>>>>>>>>>>>> UserAgent Contact
>>>>>>>>>>>>
>>>>>>>>>>>> "2";"vjyxdmwkbbjajnc(a)192.168.95.50";"336224af44cd989a";"sip:106@sd-7501.dedibox.fr";"sd-7501.dedibox.fr";"88.191.45.91";"5060";;"2007-08-09
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>> 10:55:58";"2007-08-09
>>>>>>>>>>>> 10:56:03";"5";NULL;NULL;;"0";"0";;;"200";"Sip-Session";;;"0";"0";"INVITE";"200";"c0a80101-20e94fd";"nxitc";;;;;;;;;"101(a)sd-7501.dedibox.fr";;"0";;;NULL;"0";;NULL;;;;
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>> And my syslog:
>>>>>>>>>>>>
>>>>>>>>>>>> Aug 9 11:00:03 sd-7501 CDRTool[17377]: Normalize datasource
>>>>>>>>>>>> ser_radius, database DB_radius, table radacct200708
>>>>>>>>>>>> Aug 9 11:00:03 sd-7501 CDRTool[17377]: Lock
>>>>>>>>>>>> ser_radius:radacct200708
>>>>>>>>>>>> Aug 9 11:00:03 sd-7501 CDRTool[17097]: ShowPrice Id=2
>>>>>>>>>>>> Timestamp=1186649758 Duration=5 inputTraffic=0 outputTraffic=0
>>>>>>>>>>>> From=sip:106@sd-7501.dedibox.fr
>>>>>>>>>>>> To=101(a)sd-7501.dedibox.fr Gateway= Application=audio
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>> _______________________________________________
>>>>>> Users mailing list
>>>>>> Users(a)openser.org
>>>>>> http://openser.org/cgi-bin/mailman/listinfo/users
>>>
>
_______________________________________________
Users mailing list
Users(a)openser.org
http://openser.org/cgi-bin/mailman/listinfo/users
Hello,
I have a question regarding record_route() & record_route_preset() functions.
I faced up a problem with some SIP clients with inbound calls where I believe
that it's related with these functions.
1/ When I use the "record_route()" function in a single server SER setup
I have the following "Record-Route:" header in INVITE mesg from SER to called SIP UA:
Record-Route: <sip:1.2.3.4;ftag=AAA-19972;lr=on>
...
2/ When I use the "record_route_preset()" function in a double server SER setup
(2 SER servers behind a Cisco CSM Load balancer),
example : record_route_preset("5.6.7.8");
I have the following "Record-Route:" header in INVITE mesg (SER -> called SIP UA):
Record-Route: <sip:1234567890@5.6.7.8;ftag=XPH-5307;lr=on>
...
In first case the SIP UA accepts the inbound call and everything is Ok.
In second case the same SIP UA doesn't replied with '100 Trying' mesg back to SER.
In the second case, SER also adds the called number "1234567890" in the Record-Route header.
Why there is this difference and if that can cause problems (incompatibility) to some
SIP clients ?
thanks for any hint,
Kostas
Hello,
we plan a minor release of 1.2.2 for Thursday, August 16, 2007. It was
discussed on the last irc meeting. If you know a critical bug that
should stop this release, please let us know. The ones registered on the
tracker will be reviewed and considered for final decision of 1.2.2,
don't send them again.
Cheers,
Daniel