login | register
Sat 17 of May, 2008 [05:17 UTC]

voip-info.org

Search with Google
Search this site with Google. Results may not include recent changes.
 
Google Ads
Shoutbox
  • Juan Ortega, Thu 15 of May, 2008 [10:33 UTC]: Hi everybody, I'm Juan, an ITCom student, and I need to know what basic elements I need to create a VoIP network. Can anybody helpme, please?,Thank you very much
  • gineta, Wed 14 of May, 2008 [03:58 UTC]: any here not fine the configuration of firewall juniper -screem for VOIP asterisk????
  • Anoop Prabhakaran, Tue 13 of May, 2008 [12:16 UTC]: I am developing Asterisk IVR, Whenever i make a internation call to the IVR system, the DTMF is not getting detected properly, this happens only for the first time, second call onwards system works fine. why this is happening
  • joe, Mon 12 of May, 2008 [04:27 UTC]: Is there an opensource browser based softphone, or a system like Busta where everything is not manages through their website?
  • Nick Barnes, Fri 09 of May, 2008 [11:36 UTC]: Christopher - yesterday I tried an Asterisk install on a CentOS 5.1 box with stock GUI and it all worked fine. Sorry I can't help.
  • aero, Fri 09 of May, 2008 [08:20 UTC]: can someone help me out on this, i tried to play some sound files on my asterisk box and this is the error message i got. WARNING[4429]: format_wav.c:169 check_header: Unexpected freqency 22050 May 8 11:17:39 WARNING[4433]: codec_gsm.c:194 gsmtolin_fra
  • Christopher Faust, Thu 08 of May, 2008 [14:15 UTC]: I beleive that I may have to change something in the xserver configuration. Please advise
  • Christopher Faust, Thu 08 of May, 2008 [14:14 UTC]: Everything was perfect. In the bios I have increased the memory allocated Still receive input not supported on my display.
  • Christopher Faust, Thu 08 of May, 2008 [14:13 UTC]: This would not be my main box. I am doing some testing to see if I can install zaptel and asterisk 1.4 on a full centos 5.1 box with development software Its bizzare, because before I went through the asterisk and zaptel installation everything was perfe
  • Nick Barnes, Thu 08 of May, 2008 [13:44 UTC]: Christopher - I can't see any way in which an Asterisk installation would muck your GUI, but remember that it is advised not to use a GUI on an Asterisk box anyway.
Server Stats
  • Execution time: 0.21s
  • Memory usage: 2.20MB
  • Database queries: 29
  • GZIP: Disabled
  • Server load: 0.43

CDR mediation

CDR mediation


CDR mediation is intermediary process to billing which follows CDR collection. This is necessary to make sure calls are billed to the right entity and based on the right tariffs.
CDR mediation consists of several processing steps. The following illustrates some of the necessary steps to prepare VoIP Call Details Records for billing.

Normalization

Normalization is an important process that:

1. Cleans up the CDRs generated by switching equipment of unnecessary or inconsistent
information or format the destinations based on a consistent numbering plan.

Caller Id normalization

A SIP caller Id "blue" <sip:999560003@ag-projects.com;user=phone> is formatted to sip:999600003@ag-projects.com which corresponds to a billable entity in Provider database.

Destination normalization

0235468104@gateway.com for calls in the Netherlands might have the first 0 removed and 0031 appended. After normalization the destination becomes 0031235468104@gateway.com. 0031 has a coresponding rate which can be calculated based on a consolidated international destinations table (00 + Country code + Subscriber number)

Disconnection Code normalization

Example: Cisco release codes are stored in hexadecimal values coresponding to Q931 ISDN release codes defined by ITU.

Rating


A process by which each call is assigned a price based on a rating table. Rating may apply differently for PSTN related traffic than NGN related traffic.

PSTN Rating could be based on one or more of the following:

  • Time of Day
  • Day of the week
  • Day of the year (holidays)
  • Duration
  • Destination (like country or mobile network code)
  • Application type (audio, video, text)
  • Network traffic

Telephony-wise calls have different tariffs depending on the time of the day (peak and of peak hours). The rating engine should be able to break the call duration into separate durations billied with the corresponding rate. Example of rating which allow a 41 second call to span multiple rating periods (before and after midnight):

   ConnectFee: 0.0454
   --
   Span: 1
   Duration: 11 s
   Traffic: 208178 bytes
   Appl: Audio
   Dest: 31620 Nederland mobiel
   Cust: default
   Profile: 421 for weekday
   Rate: 422 for 19-24h
   DurationRate: 0.2040 / 60 s
   TrafficRate: 0.0000
   ApplRate: 0.0000
   Price: 0.0374
   --
   Span: 2
   Duration: 30 s
   Traffic: 208178 bytes
   Appl: Audio
   Dest: 31620 Nederland mobiel
   Cust: default
   Profile: 421 for weekday
   Rate: 422 for 0-8h
   DurationRate: 0.2040 / 60 s
   TrafficRate: 0.0000
   ApplRate: 0.0000
   Price: 0.102

NGN Rating

In Next Generation Networks context, IP calls might have multiple media components like audio and video. A rating engine should be able to distinguish among them and calculate different prices for each combination application/bandwidth utilization.

Multiple time-zones

SIP based traffic may originate from customers located geographically in different zones. The normalization should take into account the time zone of Calling Party (to display the correct start and stop time), the Billing Party (to apply the peak/off-peak tariff of the service provider servicing the Calling Party).

Export

Communication with external systems could be realised in common understood formats.
Examples:
  • SOAP/XML
  • Comma Separated Values (a.k.a CSV format)

The examples have been extracted from CDRTool an NGN ready mediation system.


Asterisk Billing
Created by busywiki, Last modification by busywiki on Mon 27 of Dec, 2004 [09:21 UTC]

Comments Filter
Edit

correction

by Anonymous on Tuesday 14 of December, 2004 [10:46:38 UTC]
In 'Destination Normalization' it reads:
"first 0 removed and 0031 appended"
Surely it was meant to read "and 0031 prepended", to match the digit string given later.
Top Wiki btw. :-D

Edit

Re: Collection is part of mediation

by Anonymous on Tuesday 31 of August, 2004 [21:00:13 UTC]
Collection is not part of mediation mostly because is usually generated by systems that handle traffic and have no clues or time to cope with dest normalization, rating and such features. RADIUS server has for example only a collection and storage function but no mediation. Any decent class 4/5 switch might have these colection and mediation integrated nowadays but looking at the cisco and asterisk gateways and the CDR generation (and SIP proxies) there is little or no example of integration in the VoIP area.
 

Collection is part of mediation

by benjk on Friday 23 of July, 2004 [20:17:37 UTC]
Collection should be presented as a part of mediaton, not a separate entity because mediation is the whole shebang from collection to consolidation.

Please update this page with new information, just login and click on the "Edit" or "Add Comment" button above. Get a free login here: Register Thanks! - support@voip-info.org

Page Changes | Comments

Sponsored by:

Terms of Service Privacy Policy
© 2003-2008 VOIP-Info.org LLC

Powered by bitweaver