I'm in the process of setting up the X100P card and I am getting continuous tone on the X100P but only if plugged into the POTS line. Here is what I have so far: # lsmod Module Size Used by wcfxs 26912 0 zaptel 223460 1 wcfxs crc_ccitt 1920 1 zaptel rtc 10424 0 usbcore 108644 1 mxser 25948 0 via_rhine 17416 0 # cat /etc/zaptel.conf # loadzone = us defaultzone=us fxsks=1 # ztcfg -vv Zaptel Configuration ===================== Channel map: Channel 01: FXS Kewlstart (Default) (Slaves: 01) 1 channels configured. ZT_CHANCONFIG failed on channel 1: No such device or address (6) Earlier I didn't get the above error. -- Linux Home Automation Neil Cherry ncherry@comcast.net http://home.comcast.net/~ncherry/ (Text only) http://hcs.sourceforge.net/ (HCS II) http://linuxha.blogspot.com/ My HA Blog
You want to use the wcfxo module with the X100P. wcfxs is for the TDM400P card. --- Ilia Mirkin imirkin@mit.edu On Wed, 2004-10-13 at 03:43, Neil Cherry wrote:> I'm in the process of setting up the X100P card and I am getting > continuous tone on the X100P but only if plugged into the POTS > line. Here is what I have so far: > > # lsmod > Module Size Used by > wcfxs 26912 0 > zaptel 223460 1 wcfxs > crc_ccitt 1920 1 zaptel > rtc 10424 0 > usbcore 108644 1 > mxser 25948 0 > via_rhine 17416 0 > > # cat /etc/zaptel.conf > # > loadzone = us > defaultzone=us > fxsks=1 > > # ztcfg -vv > > > Zaptel Configuration > =====================> > > > > Channel map: > > > Channel 01: FXS Kewlstart (Default) (Slaves: 01) > > > 1 channels configured. > > > ZT_CHANCONFIG failed on channel 1: No such device or address (6) > > Earlier I didn't get the above error.
Hello, I'm having the following problem in my asterisk config. I have a little voice menu, with two options, The welcome message looks like that, 1- press 1, to dial an extension 2- press 2, to speak with an operator. If I press 1, I get the following message Dial the extensi?n number you want to talk to... But if I wait a moment after this message I get this message again 1- press 1, to dial an extension 2- press 2, to speak with an operator. Asterisk repeat the welcome message again, and this isn't what we want. How could I solve this? Thanks Ismael. (I just Paste the config) [incoming] exten => s,1,Wait(2) exten => s,2,Answer exten => s,3,DigitTimeout,10 exten => s,4,ResponseTimeout,20 exten => s,5,Background(itranser/msg_bienvenida) exten => 1,1,Goto(contexto_extensiones,s,1) exten => 2,1,Goto(contexto_operadora,s,1) [contexto_operadora] exten => s,1,Background(itranser/trans_operadora) exten => s,2,Dial(SIP/aurelio,100,Ttr) [contexto_extensiones] include => default exten => s,1,Background(itranser/msg_pasar_ext) exten => s,2,Wait,Ttr,200 The dafault context is where I defined all my phone extensions.> >