[Asterisk-biz] asterisk as termination gateway

Ioan Biris ioan at easybuy2000.com
Wed Nov 23 02:20:53 MST 2005


Hi ,

  we are thinking about starting our own termination business and would like 
to get some opinions on what gateways we could use. Open source is a very 
atractive option to us.
Can asterisk do that for 2-3 T1 whitout a problem ?
----- Original Message ----- 
From: <asterisk-biz-request at lists.digium.com>
To: <asterisk-biz at lists.digium.com>
Sent: Wednesday, November 23, 2005 12:46 AM
Subject: Asterisk-Biz Digest, Vol 16, Issue 134


> Send Asterisk-Biz mailing list submissions to
> asterisk-biz at lists.digium.com
>
> To subscribe or unsubscribe via the World Wide Web, visit
> http://lists.digium.com/mailman/listinfo/asterisk-biz
> or, via email, send a message with subject or body 'help' to
> asterisk-biz-request at lists.digium.com
>
> You can reach the person managing the list at
> asterisk-biz-owner at lists.digium.com
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of Asterisk-Biz digest..."
>
>
> Today's Topics:
>
>   1. Need India Bangladesh and China DIDs  (jeffery chen)
>   2. Long Distance Call (Yeaw Sing LAI)
>   3. Re: Long Distance Call (Jason Yeung)
>   4. Re: gotta be a better way (Eric "ManxPower" Wieling)
>   5. philippines mobile termination by IAX
>      (putobongbong2005 putobongbong2005)
>   6. Re: DS3000P - 16 E1 capacity on single card (Are wethere yet
>      or temp solution) (Shamsul Arefin)
>   7. Re: Tomtelecom (Andy Davidson)
>
>
> ----------------------------------------------------------------------
>
> Message: 1
> Date: Wed, 23 Nov 2005 03:44:26 +0000
> From: "jeffery chen" <jefferychen123 at hotmail.com>
> Subject: [Asterisk-biz] Need India Bangladesh and China DIDs
> To: asterisk-biz at lists.digium.com
> Message-ID: <BAY114-F27AC4A70778F96E2D86B759E550 at phx.gbl>
> Content-Type: text/plain; format=flowed
>
> I have Asterisk server in China, but still not support prepaid Card..
> SO how do this biz,
>
> The rate is 0.30 USD/M.
>
> Jeffery
>
> _________________________________________________________________
> On the road to retirement? Check out MSN Life Events for advice on how to
> get there! http://lifeevents.msn.com/category.aspx?cid=Retirement
>
>
>
> ------------------------------
>
> Message: 2
> Date: Wed, 23 Nov 2005 12:55:19 +0900
> From: "Yeaw Sing LAI" <lai.sing at sirigroup.net>
> Subject: [Asterisk-biz] Long Distance Call
> To: <asterisk-biz at lists.digium.com>
> Message-ID: <20051123035508.D06FA424B at lists.digium.com>
> Content-Type: text/plain; charset="us-ascii"
>
> At this point Asterisk server is running and able to provide PC to PC. 
> I'm
> wondering if I need to provide a PC to PSTN (long distance call) what I
> should do, who should I contact and what are the requirements?  Are there
> any providers that supply cheaper than Skype retail rate?
>
>
>
> We just want to offer this long distance call?  Any help, suggestion or
> solution is much appreciated.
>
>
>
> Thanks
>
> ~~YS~~
>
> -------------- next part --------------
> An HTML attachment was scrubbed...
> URL: 
> http://lists.digium.com/pipermail/asterisk-biz/attachments/20051122/9a88a831/attachment-0001.htm
>
> ------------------------------
>
> Message: 3
> Date: Wed, 23 Nov 2005 00:46:46 -0500
> From: Jason Yeung <jasonyeung at gmail.com>
> Subject: Re: [Asterisk-biz] Long Distance Call
> To: Commercial and Business-Oriented Asterisk Discussion
> <asterisk-biz at lists.digium.com>
> Message-ID: <91165f780511222146y4f984b3am at mail.gmail.com>
> Content-Type: text/plain; charset=ISO-8859-1
>
> Go find a provider to terminate your calls with. Something like
> plainvoip.com, voxee.com, etc.
>
> They will most likely be cheaper than skype.
>
> - Jason
> 2005/11/22, Yeaw Sing LAI <lai.sing at sirigroup.net>:
>>
>>
>>
>> At this point Asterisk server is running and able to provide PC to PC. 
>> I'm
>> wondering if I need to provide a PC to PSTN (long distance call) what I
>> should do, who should I contact and what are the requirements?  Are there
>> any providers that supply cheaper than Skype retail rate?
>>
>>
>>
>> We just want to offer this long distance call?  Any help, suggestion or
>> solution is much appreciated.
>>
>>
>>
>> Thanks
>>
>> ~~YS~~
>> _______________________________________________
>> Asterisk-Biz mailing list
>> Asterisk-Biz at lists.digium.com
>> http://lists.digium.com/mailman/listinfo/asterisk-biz
>>
>>
>>
>
>
> ------------------------------
>
> Message: 4
> Date: Tue, 22 Nov 2005 23:45:19 -0600
> From: "Eric \"ManxPower\" Wieling" <eric at fnords.org>
> Subject: Re: [Asterisk-biz] gotta be a better way
> To: Commercial and Business-Oriented Asterisk Discussion
> <asterisk-biz at lists.digium.com>
> Message-ID: <438401EF.1020002 at fnords.org>
> Content-Type: text/plain; charset=ISO-8859-1; format=flowed
>
> Why not
>
> exten => s,4,Cut(TECHNOLOGY=CHANNEL,/,1)
> exten => s,5,GotoIf($["${TECHNOLOGY}" = "Zap"]?6:9)
>
>
> C F wrote:
>> This belongs at asterisk users, if you want some real help you should
>> try that list.
>> Your code doesn't make sense to me, if all your trying to see is what
>> device type is making the call then this will do:
>>
>> set(DTYPE=${CHANNEL:0:4}) should give you either SIP/ or ZAP/ for those 2 
>> types.
>>
>> if you want everyting after the slash ('/') then this will do for
>> local, sip, and zap:
>> exten => 807,1,GotoIf($[${CHANNEL:0:5} = Local]?20)
>> exten => 807,2,GotoIf($[${CHANNEL:0:3} = Zap]?30)
>> exten => 807,3,Noop(not zap or local so must be sip)
>> exten => 807,4,Set(DEVICE=${CHANNEL:4})
>> exten => 807,5,Noop(${DEVICE})
>> exten => 807,20,Set(DEVICE=${CHANNEL:6})
>> exten => 807,21,Noop(${DEVICE})
>> exten => 807,30,Set(DEVICE=${CHANNEL:4})
>> exten => 807,31,Noop(${DEVICE})
>>
>> if you want the above but that device should never contain the hex
>> value for the SIP calls, so that all you get is the device from
>> sip.conf and not the -abc3:
>> exten => 807,1,GotoIf($[${CHANNEL:0:5} = Local]?20)
>> exten => 807,2,GotoIf($[${CHANNEL:0:3} = Zap]?30)
>> exten => 807,3,Noop(not zap or local so must be sip)
>> exten => 807,4,Set(DEVICE=${CHANNEL:4:$[${LEN(${CHANNEL})} - 9]})
>> exten => 807,5,Noop(${DEVICE})
>> exten => 807,20,Set(DEVICE=${CHANNEL:6})
>> exten => 807,21,Noop(${DEVICE})
>> exten => 807,30,Set(DEVICE=${CHANNEL:4})
>> exten => 807,31,Noop(${DEVICE})
>>
>> The above should give you 1324 for a channel that holds SIP/1234-abc3
>>
>> On 11/22/05, Bill Michaelson <bill at cosi.com> wrote:
>>> Based on what I've read about Asterisk variables, I'm considering this
>>> ugly snippet to determine the device from which a call originates in
>>> order to drive further processing...
>>>
>>> exten => 807,1,Set(L=${LEN(${CHANNEL})})
>>> exten => 807,2,set(L=${MATH(${L}-5)})
>>> exten => 807,3,noop(${L})
>>> exten => 807,4,set(DEVICE=${CHANNEL:0:${L}}) ; chop off 5 chars
>>>
>>>
>>> I strongly suspect that there is a better way.
>
>
> ------------------------------
>
> Message: 5
> Date: Tue, 22 Nov 2005 22:10:10 -0800 (PST)
> From: putobongbong2005 putobongbong2005 <putobongbong_2005 at yahoo.com>
> Subject: [Asterisk-biz] philippines mobile termination by IAX
> To: asterisk-biz at lists.digium.com
> Message-ID: <20051123061010.5627.qmail at web36408.mail.mud.yahoo.com>
> Content-Type: text/plain; charset="iso-8859-1"
>
> Hello everyone, Im new to this ml.
>
>
>  is there anyone who providing iax termination in Philippines both for 
> landlin and mobile?
>
>  im planning to build own termination facility there.
>
>
>  thank you all.
>
>  Mike
>
>
> ---------------------------------
> Yahoo! FareChase - Search multiple travel sites in one click.
> -------------- next part --------------
> An HTML attachment was scrubbed...
> URL: 
> http://lists.digium.com/pipermail/asterisk-biz/attachments/20051123/1ad556bb/attachment-0001.htm
>
> ------------------------------
>
> Message: 6
> Date: Wed, 23 Nov 2005 17:10:44 +1100
> From: Shamsul Arefin <saktek at gmail.com>
> Subject: Re: [Asterisk-biz] DS3000P - 16 E1 capacity on single card
> (Are wethere yet or temp solution)
> To: Commercial and Business-Oriented Asterisk Discussion
> <asterisk-biz at lists.digium.com>
> Message-ID:
> <d99fc8ce0511222210n646ab416jd9409714bd330601 at mail.gmail.com>
> Content-Type: text/plain; charset=ISO-8859-1
>
> We are doing around 1500 sip registrations without any problems with
> Asterisk so far.
>
> rgds
> shams
>
> On 11/23/05, Waldo Rubinstein <waldo at trianet.net> wrote:
>> Not really :) Just wondering.
>>
>> Does anyone know of a practical limit on Asterisk to handle
>> registrations?
>>
>> - Waldo
>>
>> On Nov 22, 2005, at 9:43 PM, Rusty Shackleford wrote:
>>
>> >
>> >> -----Original Message-----
>> >> From: asterisk-biz-bounces at lists.digium.com
>> >> [mailto:asterisk-biz-bounces at lists.digium.com] On Behalf Of
>> >> Waldo Rubinstein
>> >> Sent: Tuesday, November 22, 2005 6:29 PM
>> >> To: Commercial and Business-Oriented Asterisk Discussion
>> >> Subject: Re: [Asterisk-biz] DS3000P - 16 E1 capacity on
>> >> single card (Are wethere yet or temp solution)
>> >>
>> >>
>> >> Why do you need SER?
>> >>
>> >
>> > Ever tried to have Asterisk maintain registrations for a few thousand
>> > SIP clients?
>> >
>> > --
>> > No virus found in this outgoing message.
>> > Checked by AVG Free Edition.
>> > Version: 7.1.362 / Virus Database: 267.13.5/177 - Release Date:
>> > 11/21/2005
>> >
>> >
>> > _______________________________________________
>> > Asterisk-Biz mailing list
>> > Asterisk-Biz at lists.digium.com
>> > http://lists.digium.com/mailman/listinfo/asterisk-biz
>>
>> _______________________________________________
>> Asterisk-Biz mailing list
>> Asterisk-Biz at lists.digium.com
>> http://lists.digium.com/mailman/listinfo/asterisk-biz
>>
>
>
> --
> Best Regards
> Shamsul Arefin
> Saktek ,
> Broadband Telephony experts
>
>
> ------------------------------
>
> Message: 7
> Date: Wed, 23 Nov 2005 08:46:24 +0000
> From: Andy Davidson <andy at nosignal.org>
> Subject: Re: [Asterisk-biz] Tomtelecom
> To: Commercial and Business-Oriented Asterisk Discussion
> <asterisk-biz at lists.digium.com>
> Message-ID: <43842C60.9010008 at nosignal.org>
> Content-Type: text/plain; charset=ISO-8859-1; format=flowed
>
> Alex Pui wrote:
>>>If the company is no longer there, they may not even be prepared to 
>>>dispute
>>>chargeback which means by default you get it, however there are some
>>>circumstances where this wont be the case.  Its worth a try :)
>> The above statement can be misleading. When the credit card has paid the
>> money to the company that has gone for good (if the company is not that 
>> new,
>> the bank would not hold a large amount for a long period of time),
>
> Hi, --
>
> This is not the case in the UK; a chargeback can appear months after the
> transaction, and the law is severly skewed in the direction of the 
> consumer.
>
>
>
> ------------------------------
>
> _______________________________________________
> Asterisk-Biz mailing list
> Asterisk-Biz at lists.digium.com
> http://lists.digium.com/mailman/listinfo/asterisk-biz
>
>
> End of Asterisk-Biz Digest, Vol 16, Issue 134
> *********************************************
>
> 





More information about the asterisk-biz mailing list