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: <[EMAIL PROTECTED]>
To: <[email protected]>
Sent: Wednesday, November 23, 2005 12:46 AM
Subject: Asterisk-Biz Digest, Vol 16, Issue 134


Send Asterisk-Biz mailing list submissions to
[email protected]

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
[EMAIL PROTECTED]

You can reach the person managing the list at
[EMAIL PROTECTED]

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" <[EMAIL PROTECTED]>
Subject: [Asterisk-biz] Need India Bangladesh and China DIDs
To: [email protected]
Message-ID: <[EMAIL PROTECTED]>
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" <[EMAIL PROTECTED]>
Subject: [Asterisk-biz] Long Distance Call
To: <[email protected]>
Message-ID: <[EMAIL PROTECTED]>
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 <[EMAIL PROTECTED]>
Subject: Re: [Asterisk-biz] Long Distance Call
To: Commercial and Business-Oriented Asterisk Discussion
<[email protected]>
Message-ID: <[EMAIL PROTECTED]>
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 <[EMAIL PROTECTED]>:



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
[email protected]
http://lists.digium.com/mailman/listinfo/asterisk-biz





------------------------------

Message: 4
Date: Tue, 22 Nov 2005 23:45:19 -0600
From: "Eric \"ManxPower\" Wieling" <[EMAIL PROTECTED]>
Subject: Re: [Asterisk-biz] gotta be a better way
To: Commercial and Business-Oriented Asterisk Discussion
<[email protected]>
Message-ID: <[EMAIL PROTECTED]>
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 <[EMAIL PROTECTED]> 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 <[EMAIL PROTECTED]>
Subject: [Asterisk-biz] philippines mobile termination by IAX
To: [email protected]
Message-ID: <[EMAIL PROTECTED]>
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 <[EMAIL PROTECTED]>
Subject: Re: [Asterisk-biz] DS3000P - 16 E1 capacity on single card
(Are wethere yet or temp solution)
To: Commercial and Business-Oriented Asterisk Discussion
<[email protected]>
Message-ID:
<[EMAIL PROTECTED]>
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 <[EMAIL PROTECTED]> 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: [EMAIL PROTECTED]
>> [mailto:[EMAIL PROTECTED] 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
> [email protected]
> http://lists.digium.com/mailman/listinfo/asterisk-biz

_______________________________________________
Asterisk-Biz mailing list
[email protected]
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 <[EMAIL PROTECTED]>
Subject: Re: [Asterisk-biz] Tomtelecom
To: Commercial and Business-Oriented Asterisk Discussion
<[email protected]>
Message-ID: <[EMAIL PROTECTED]>
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
[email protected]
http://lists.digium.com/mailman/listinfo/asterisk-biz


End of Asterisk-Biz Digest, Vol 16, Issue 134
*********************************************




_______________________________________________
Asterisk-Biz mailing list
[email protected]
http://lists.digium.com/mailman/listinfo/asterisk-biz

Reply via email to