Hi, I am using a Netjet-s ISDN Card, and am having some trouble dialling out (Incoming Works Fine). TRUNK=Modem/ttyI0 exten => _90XXXXXXXXX,1,Dial(${TRUNK}/${EXTEN:1}||Ttm) exten => _90XXXXXXXXX,2,Congestion I get the following when diallingout: -- Starting simple switch on 'Zap/2-1' -- Executing Dial("Zap/2-1", "Modem/ttyI0/04XXXXXXXX||Ttm") in new stack == Everyone is busy at this time -- Executing Congestion("Zap/2-1", "") in new stack == Spawn extension (local, 90422456118, 2) exited non-zero on 'Zap/2-1' -- Hungup 'Zap/2-1' I have tried inserting a "v" infront of the number, but to no avail. Any Ideas??
On Wed, 3 Sep 2003, Jay Tyndall wrote:> I am using a Netjet-s ISDN Card, and am having some trouble dialling out > (Incoming Works Fine)....> I get the following when diallingout: > -- Starting simple switch on 'Zap/2-1' > -- Executing Dial("Zap/2-1", "Modem/ttyI0/04XXXXXXXX||Ttm") in newCheck the line 'stripmsd=1'. If the number to be dialed does not need to have the most significant digit stripped this line needs to be commented/removed in order to dial a valid number. (with stripmsd active the number dialed in your case would be 4XXXXXXXX) Regards, Jac -- Jac Kersing Technical Consultant The-Box Development j.kersing@the-box.com http://www.the-box.com
Stripmsd is commented out, problem still occurs. Does this simply use ATDT to dialout ? When I attempt to dialout using minicom it comes back with "NO MSN/EAZ" Looks like I may need to issue another AT Command to the netjet to set the MSN... Has anyone encountered this before? Jay Message: 10 Date: Wed, 3 Sep 2003 07:35:02 +0200 (CEST) From: Jac Kersing <j.kersing@the-box.com> To: Jay Tyndall <asterisk@tyndall.id.au> Cc: "asterisk-users@lists.digium.com" <asterisk-users@lists.digium.com> Subject: Re: [Asterisk-Users] ISDN Reply-To: asterisk-users@lists.digium.com On Wed, 3 Sep 2003, Jay Tyndall wrote:> I am using a Netjet-s ISDN Card, and am having some trouble dialling out > (Incoming Works Fine)....> I get the following when diallingout: > -- Starting simple switch on 'Zap/2-1' > -- Executing Dial("Zap/2-1", "Modem/ttyI0/04XXXXXXXX||Ttm") in newCheck the line 'stripmsd=1'. If the number to be dialed does not need to have the most significant digit stripped this line needs to be commented/removed in order to dial a valid number. (with stripmsd active the number dialed in your case would be 4XXXXXXXX) Regards, Jac
I am still in a planning phase. I do have a Panasonic PABX with an ISDN card. Will I be able to connect it to an asterisk machine using a normal ISDN card ? Felix
SIP will give you hell with NAT, IAX Wont. Thank you, Steve Maroney On Sun, 17 Oct 2004, Your Own ISP .com wrote:> > > Thanks, > Todd Routhier > Lightwave Technologies, LLC. > > -- > Start Your Dialup Internet Service! > http://www.YourOwnISP.com > > > Lightwave Technologies, LLC. > http://www.LightWaveTech.com > > I know everyone on the list would prefer we all buy Digium and I also > believe we should support them whenever we can. > > Anyhow, I was hoping for a somewhat unbiased opinion on the pros and cons on > these two devices. > > We are looking for cheap but most importantly I want to know if anyone has > seen one perform better than the other voice wise or are they all about the > same when it comes to voice quality? > > I am quite the newbie here as you might imagine from my comments. > > I am leaning towards the IAXy because it supports IAX and I figured that was > a good thing. However, if we are going to buy a lot of these at some point I > think the price difference vs. features on the HandyTone 486 is at least > something we should consider. > > I like the fact that the HandyTone has 2 ports, does this mean I can > configure two different phone numbers, one for each port or is it for tow > outgoing lines only? Also, I can offer someone a second phone line without > any additional equipment etc. > > Is the fact that the IAXy supports IAX a BIG factor? Will Sip work just as > well with Asterisk? > > > > Thanks, > Todd Routhier > Lightwave Technologies, LLC. > > -- > Start Your Dialup Internet Service! > http://www.YourOwnISP.com > > > Lightwave Technologies, LLC. > http://www.LightWaveTech.com > > _______________________________________________ > Asterisk-Users mailing list > Asterisk-Users@lists.digium.com > http://lists.digium.com/mailman/listinfo/asterisk-users > To UNSUBSCRIBE or update options visit: > http://lists.digium.com/mailman/listinfo/asterisk-users >
> I like the fact that the HandyTone has 2 ports, does this mean I can > configure two different phone numbers, one for each port or is it for tow > outgoing lines only? Also, I can offer someone a second phone line without > any additional equipment etc.It actually only has one port. The second port you speak of is a backup line. You plug a pots line into the "Line" port, and its a failover line in case the internet connectivity goes down. Kind of a good thing to have in case theyre using it as the primary line. ------------------- Josh Krueger Urban Communications http://www.urbancom.net/
Does anybody know how to configure an ISDN card (Eicon Diva 2.0 S/T PCI)?
#!/bin/sh echo ------------------------------------------- echo installing Eicon Diva CAPI ISDN support echo this has not been tested! echo ------------------------------------------- yum -y update yum -y install isdn4k-utils-devel kernel-unsupported kernel-smp-unsupported echo ------------------------------------------- echo installing chan_capi.so echo ------------------------------------------- cd /usr/src wget http://www.junghanns.net/asterisk/downloads/chan_capi.0.3.5.tar.gz tar xvfz chan_capi.0.3.5.tar.gz cd /usr/src/chan_capi-0.3.5 make make config make install cd /usr/src wget http://isdn4linux.org/%7Earmin/divas/divactrl_2.0.tar.gz tar xvfz divactrl_2.0.tar.gz cd /usr/src/divactrl_2.0 ./configure make install mkdir /usr/share/eicon cd /usr/share/eicon wget ftp://ftp.isdn4linux.org/pub/isdn4linux/utils/eicon/firmware/protocols_dmlt_etsi.tar.bz2 tar xvjf protocols_dmlt_etsi.tar.bz2 if ! grep capiinit /etc/rc.d/rc.local >/dev/null 2>&1; then echo "capiinit start" >> /etc/rc.d/rc.local fi if ! grep chan_capi /etc/asterisk/modules.conf >/dev/null 2>&1; then echo "chan_capi.so=yes" >> /etc/asterisk/modules.conf fi 2005/12/21, francesco giuliani <f.giuliani@e-xtrategy.net>:> > Does anybody know how to configure an ISDN card (Eicon Diva 2.0 S/T PCI)? > > _______________________________________________ > --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 >-- Giovanni Miano -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20051221/bda2ca5f/attachment.htm
Hi, since last august, I worked on Asterisk and PRI lines, making a good experience. Now I need some information about ISDN BRI: I know that there is no native support in Asterisk and I need some third-part driver. Then I read often about different cards (Junghanss, Eicon, Beronet, etc), different drivers (msidn, visdn, etc), instruction to patch Asterisk, etc Could some goodwill man summarize this topic for me before I engage myself in the rediscovery of warm water? Thanks -- Domenico Viggiani
Mimmus wrote:> Could some goodwill man summarize this topic for me before I engage > myself in the rediscovery of warm water?Read a topic posted a few days ago: "ISDN BRI NetJet" You will find good advice there. If you need to buy a Cologne chipset card, check here: http://www.solwise.co.uk/isdn.htm