similar to: Hook-flash timing

Displaying 20 results from an estimated 1000 matches similar to: "Hook-flash timing"

2004 Mar 29
2
Zap channels stuck in 'Rsrvd' state
I have two Adtran 750's connecting our analog phones to asterisk. On occasion, I get a channel that gets "stuck" off hook. 'show channels' shows: Zap/27-1 (longdistance s 1 ) Rsrvd (None) (None) And will just stay like that until the phone is manually picked up and hung up again (or asterisk is stopped/started). I guess this is a function of an unclean hangup (being
2004 Jul 13
0
"unclean hangups" can I turn off hook flash?
I'm having problems with unclean hangups (being read as a flash instead of a hangup?). Can I turn off hook flash recognition in asterisk, but still have the flash button on the analog phone operational? Could I use these settings in zapata.conf to fix my problem? *prewink*: Sets the pre-wink timing. *preflash*: Sets the pre-flash timing. *wink*: Sets the wink timing. *rxwink*: Sets the
2005 Feb 18
6
W&M Wink timings for Nortel
Does anyone know the default E&M Wink timings for Nortel DID ports? The default settings on Asterisk are: ; prewink: Pre-wink time (default 50ms) ; preflash: Pre-flash time (default 50ms) ; wink: Wink time (default 150ms) ; flash: Flash time (default 750ms) ; start: Start time (default 1500ms) ; rxwink: Receiver wink time (default 300ms) ;
2005 Feb 10
0
Asterisk 1.0.5 won't pick up incoming calls
Hi All, I have just migrated from Asterisk 1.0.0 to Asterisk 1.0.5 and I have an X100P installed. The old asterisk was working, but now the new version isn't picking up any calls! However, I did notice that after installation, I performed modprobe zaptel and modprobe wcfxo and they worked fine, but when I executed ztcfg, I get the following errors: ioctl(ZT_LOADZONE) failed: Invalid
2005 Mar 18
0
T100P: Can't Make/Receive Zap Calls (Long Newbie Blah)
All, Alright, I've looked around the internet, the voip-info.org wiki, and browsed the contents of this mailing list. While I've found a couple of scenarios that are close to this one, I haven't found one that uses my particular card (T100P). Without further delay -- I have successfully configured internal SIP services between a Snom 200 and a Windows X-Lite client and have
2003 Aug 22
1
ifconfig hw ether and -arp
Hi, Just thought I'd mention that I spent a while battling with tinc today. I had quite a weird behaviour - in routing mode, tinc would come up fine on both hosts, but pinging hosta from hostb wouldn't work until hosta pinged hostb. I've used an earlier version of tinc before in a different environment with no problems, and vaguely remembered a more complicated tinc-up script, so I
2005 Jul 14
0
PRI Channel Question
Good Day All, I am experiencing some weirdness using the E&M channel and hope you can offer a little assistance with the problem I am having. 1) call comes into channel 25 (Second Span first channel of a Digium Quad PRI from SBC-PRI) 2) Call is sent to channel 1 (First Span first channel on the Digium Quad PRI connecting an ADTRAN via E&M Feature Group D) 3) Between rings one and two
2003 Aug 18
0
Setting a minimum 'on-hook' interval?
A couple of weeks ago I posted a message entitled 'Bridged trunks stuck off hook' about a situation where 2 of my trunks (loopstart pots - but Centrex) are occasionally bridged together. It has occurred to me that what may be happening is that a line hung up by Asterisk might quickly be reused and if the time interval is right, the telco will interpret this as a hook-flash. Is there a way
2004 Nov 21
3
TDM400 FXO stops handling outgoing calls, but still accepts incoming?
I have a bit of a weird problem that I'm having great trouble debugging. I have a TDM400P PCI card with two FXO and two FXS modules. Both FXO modules are connected to BT lines here in the UK. Both BT lines have V23 Caller-ID, which works fine with Asterisk. Both asterisk and zaptel are fresh from CVS. Both FXO modules (channels 3 and 4) are in "group 1" for outgoing calls. My
2009 Dec 17
3
Problem reading binaries created with fortran
Is it possible to read fortran binaries with R? I tried unsucessfully and my understanding is that fortran write binaries with leading and trailing bytes. I get numbers but not the right ones. Thanks ps: the binary I'm interested in reading is a MODFLOW output with a mix of character, double and integers. [[alternative HTML version deleted]]
2003 Sep 24
8
VIA vs Intel
Has anyone successfully run asterisk with a VIA processor ? I have tried unsucessfully, do I have to run make with any specific switches ?
2004 Jan 22
2
ETSI PRI ISDN Signalling
Hi All, I've bought a R2Adapter to convert R2Digital to ISDN. I am trying to config E100P card but D-Channel is down. I know R2Adapter uses ETSI ISDN Protocol so I tried unsucessfully setup switchtype to EuroISDN. Any clue? Daniel
2020 Feb 03
3
Stroring and extracting AICs from an ARIMA model using a nested loop
Hello I am trying to extract AICs from an ARIMA estimation with different combinations of p & q ( p =0,1,2,3 and q=0,1.2,3). I have tried using the following code unsucessfully. Can anyone help? code: storage1 <- numeric(16) for (p in 0:3){ ? ? for (q in 0:3){ ? ? ? storage1[p]? <- arima(x,order=c(p,0,q), method="ML")} } storage1$aic [[alternative HTML version deleted]]
2005 Mar 21
2
Flash hook & hangup problem
Hello. I'm trying to transfer calls from an analog phone (Zap/1, TDM400P card) to some other terminal connected to my Asterisk PBX. If I make a flash hook pressing the phone hangup button quickly it works as expected, I get a new dialtone and the other side is put on hold. But I would like to use my phone's "R" key instead for some different reasons (it's quite easier to use
2007 Sep 19
4
fontsize in mosaic plot lables
Hi List, I am trying unsucessfully to modify the fontsize of lables in mosaic: require(vcd) mosaic(Titanic, pop=FALSE, labeling_args=list(rot_labels=c(bottom=90,top=90), set_varnames = c(Sex = "Gender"), gp_text=gpar(fontsize=20))) #can't get it to resize text tab <- ifelse(Titanic < 6, NA, Titanic) # it works for labeling_cells labeling_cells(text = tab,
2020 Feb 03
2
Stroring and extracting AICs from an ARIMA model using a nested loop
It works!!! Thank you so much for your help! Sent from my iPhone > On Feb 3, 2020, at 3:47 AM, Rui Barradas <ruipbarradas at sapo.pt> wrote: > > ?Hello, > > You can solve the problem in two different ways. > > 1. Redefine storage1 as a matrix and extract the aic *in* the loop. > > storage1 <- matrix(0, 4, 4) > for(p in 0:3){ > for(q in 0:3){ >
2003 Jul 23
2
executing an agi script after a successful Dial
I would like to run an agi script (to calculate the cost of a long distance or international call) right after I execute a Dial app. Can this be configured in extensions.conf? It seems the entries right after a Dial app get executed only if the Dial app was executed unsucessfully. Would I have to execute the dial app from the agi script? Thanks in advance. Dan -------------- next part
2007 Aug 09
1
plot table with sapply - labeling problems
Hi List, I am trying to label a barplot group with variable names when using sapply unsucessfully. I can't seem to extract the names for the indiviual plots: test<-as.data.frame(cbind(round(runif(50,0,5)),round(runif(50,0,3)),roun d(runif(50,0,4)))) sapply(test, table)->vardist sapply(test, function(x) round(table(x)/sum(table(x))*100,1) )->vardist1 par(mfrow=c(1,3))
2020 Feb 04
2
Stroring and extracting AICs from an ARIMA model using a nested loop
I am nowaware that I should not post this type of questions on this group. However, Iwould like to have some clarifications related to the response you've?alreadyprovided. The code you provided yields accurate results, however I still haveissues grasping the loop process in case 1 & 2. In case1,?the use of?"p+1" and "q+1" is still blurry tome? Likewise "0L"
2008 Jun 18
4
Probem creating a Windows XP HVM with snv_90
Hi all, I''ve just upgraded my OpenSolaris 2008.05 workstation to snv_90 after unsucessfully trying to get virt-install.sh to run on snv_86 and now have (I think) a more serious problem. In the xend-debug.log file I keep getting the following error repeated many times : Failed allocation for dom 8: 1 extents of order 9 ERROR Internal error: Cannot allocate more 2M pages for HVM guest.