Hello Before I order a Travla C156 case (http://206.14.132.88/products/Travla/c156/C156.html), a Via mini-ITX motherboard (either the fanless ME6000 http://idotpc.com/TheStore/pc/viewPrd.asp?idcategory=50&idproduct=4 or the fan-equipped M10000 http://idotpc.com/TheStore/pc/viewPrd.asp?idcategory=50&idproduct=163 ) , and a PCI FXO card from Digium or OpenVox... has someone already built that kind of box, and could tell me if it's powerful enough to power a small PBX? Thanks.
I have built several mini-itx via systems, and they work fine with Asterisk. We use one with a dual port E1 card in our office as our phone system. PaulH On Sun, 2007-02-11 at 00:47 +0100, Vincent Delporte wrote:> Hello > > Before I order a Travla C156 case > (http://206.14.132.88/products/Travla/c156/C156.html), a Via mini-ITX > motherboard (either the fanless ME6000 > http://idotpc.com/TheStore/pc/viewPrd.asp?idcategory=50&idproduct=4 or the > fan-equipped M10000 > http://idotpc.com/TheStore/pc/viewPrd.asp?idcategory=50&idproduct=163 ) , > and a PCI FXO card from Digium or OpenVox... has someone already built that > kind of box, and could tell me if it's powerful enough to power a small PBX? > > Thanks. > > _______________________________________________ > --Bandwidth and Colocation provided by Easynews.com -- > > asterisk-users mailing list > To UNSUBSCRIBE or update options visit: > http://lists.digium.com/mailman/listinfo/asterisk-users
On Sun, 11 Feb 2007, Vincent Delporte wrote:> Hello > > Before I order a Travla C156 case > (http://206.14.132.88/products/Travla/c156/C156.html), a Via mini-ITX > motherboard (either the fanless ME6000 > http://idotpc.com/TheStore/pc/viewPrd.asp?idcategory=50&idproduct=4 or the > fan-equipped M10000 > http://idotpc.com/TheStore/pc/viewPrd.asp?idcategory=50&idproduct=163 ) , and > a PCI FXO card from Digium or OpenVox... has someone already built that kind > of box, and could tell me if it's powerful enough to power a small PBX?Check the processor spec. carefully. There are a few variants of the VIA processor and some have 64KB of cache and other 128KB. I've deployed several fanless CN1000 systems which have 128KB of cache, but my R&D system has an older (533MHz) processor with 64KB of cache. (All with TDM400 cards) The thing that will kill these boards is transcoding. Also make sure you compile asterisk for an i586 - the Via processors while looking like i686 are lacking some instructions that causes asterisk to code-dump at boot time. I have some VIA EK processor systems, 1GHz, 64KB cache with a fan which I use as routers (2 on-board ethernet ports) and I've never been able to get the fan to run at any time other than boot time, so if the boards you're looking at have fans, I'd guess they were connected the same way and only came on when they got hot, but I'd still go fanless (& diskless) if possible. Gordon
Dear All : I am new on Asterisk - And I want to create a dummy extension - I will forward all my extensions to it ... this extension will answer the call and playback a voice message , wait 2 seconds then hang-up ... How can I create this dummy extension ? Mohamed Farid ,, * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * This e-mail (including attachments) is classified as Mediterranean Smart Cards Company confidential and proprietary information The recipient hereby is committed to hold in strict confidence the contents of this (e-mail, document, and information) and not to disclose to any third party without the prior written consent of Mediterranean Smart Cards Company. Recipient will be held liable for any unauthorized disclosure. It is intended solely for the addressee. Unless you are the addressee, you may not read, copy, use or store this e-mail in any way, or permit others to. If you have received it in error, please notify the sender by return e-mail and delete the message in its entirety, including any attachments * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
Hi When posting a new message to the list, please On Sun, Feb 11, 2007 at 12:30:52PM +0200, Mohamed Farid wrote:> Dear All : > > I am new on Asterisk - > And I want to create a dummy extension - I will forward all my > extensions to it ... > > this extension will answer the call and playback a voice message , wait > 2 seconds then hang-up ... > > How can I create this dummy extension ?exten => 123456,1,Goto(othercontext,otherextension,1) or: exten => 123456,1,Dial(SIP/someuser) The dialplan is intended to do all of this wiring, and much more. The sample extensions.conf has a number of examples of such a Goto. And I figure you should do some basic reading about the Asterisk dialplan: http://voip-info.org/wiki/view/Asterisk+config+extensions.conf> > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * > This e-mail (including attachments) is classified as Mediterranean Smart Cards Company confidential and proprietary information > The recipient hereby is committed to hold in strict confidence the contents of this (e-mail, document, and information) and not to disclose to any third party without the prior written consent of Mediterranean Smart Cards Company. > Recipient will be held liable for any unauthorized disclosure. > It is intended solely for the addressee. Unless you are the addressee, you may not read, copy, use or store this e-mail in any way, or permit others to. > If you have received it in error, please notify the sender by return e-mail and delete the message in its entirety, including any attachments > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *List members, please follow ;-) -- Tzafrir Cohen icq#16849755 jabber:tzafrir@jabber.org +972-50-7952406 mailto:tzafrir.cohen@xorcom.com http://www.xorcom.com iax:guest@local.xorcom.com/tzafrir
I think the commands you are looking for are: answer playback wait hangup regards PaulH On Sun, 2007-02-11 at 12:30 +0200, Mohamed Farid wrote:> Dear All : > > I am new on Asterisk - > And I want to create a dummy extension - I will forward all my > extensions to it ... > > this extension will answer the call and playback a voice message , wait > 2 seconds then hang-up ... > > How can I create this dummy extension ? > > Mohamed Farid ,, > > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * > This e-mail (including attachments) is classified as Mediterranean Smart Cards Company confidential and proprietary information > The recipient hereby is committed to hold in strict confidence the contents of this (e-mail, document, and information) and not to disclose to any third party without the prior written consent of Mediterranean Smart Cards Company. > Recipient will be held liable for any unauthorized disclosure. > It is intended solely for the addressee. Unless you are the addressee, you may not read, copy, use or store this e-mail in any way, or permit others to. > If you have received it in error, please notify the sender by return e-mail and delete the message in its entirety, including any attachments > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * > > > _______________________________________________ > --Bandwidth and Colocation provided by Easynews.com -- > > asterisk-users mailing list > To UNSUBSCRIBE or update options visit: > http://lists.digium.com/mailman/listinfo/asterisk-users >
At 10:09 11/02/2007 -0500, Gordon Henderson wrote:>Check the processor spec. carefully. [...] Also make sure you compile >asterisk for an i586OK, I'll make sure it has enough cache and I'll recompile the code myself. I'm thinking of getting an ML 8000 http://via.com.tw/en/products/mainboards/motherboards.jsp?motherboard_id=301 . At 10:09 11/02/2007 -0500, Manny A. Wise wrote:>I did, and I was NOT happy with the results... Mini-itx have a serious >problems with IRQ sharing... I am happily using a embeded system now, but >the FXO and FXS have to be external.Those boards only come with one PCI slot. Do you mean it could share an IRQ with some embedded component like the video card? BTW, in this age of big USB drive, I don't really nee a DVD/CDRW combo. Does someone know if the Via motherboards (at least the ML series) supports booting off a USB drive, so I can use this to start Linux and fetch install files from an FTP server? Thank you.
At 10:09 11/02/2007 -0500, Michelle Dupuis Henderson wrote:>We use a lot of mini-itx pc's, including the pCI slot. I don't think any >of the systems have shared an irq with the PCI slot....Thanks for the tip. In that case, I have a couple of questions for you :-) 1. The smallest mini-ITX case I found that accepts a PCI card is the Travla C138: If you used a mini-ITX with a Digium TDM400P, do you know if it fits? I didn't find its width, and apparently, the C138 will not accept a PCI card bigger than 17,52cm. 2. Can the Via motherboards boot from a USB drive, so I can install Linux from this and fetch the install files from an FTP server? Thanks.
At 10:09 11/02/2007 -0500, Gordon Henderson wrote:>On the CN1000 boards I'm using, the PCI slot seems tobe locked to IRQ10. >The on-board USB hardware also seems to be wired to IRQ 10 :-) Using the >BIOS to "reserve" IRQ 10 caused the on-board USB hardware to move to IRQ5 >on the old VIA 533MHz boards I use for R&D, but not on the new CN1000 >boards. You'll need to experiment with this on the EX board...Thanks a lot for the feedback. I'll probably get an ML8000, so hopefully the PCI board can have its own IRQ.>I've not tried it (I boot them off a flash IDE device I create on a >host system), but can't you just temporarily plug in a CD drive to do the >install (onto a local IDE/SATA drive) then unplug it & put the lid back on?Right, I hadn't thought of this. Guess that solves the issue then. Looks like the only site that sells the Travla 138 is www.caseoutlet.com . Thanks.