similar to: Office-wide paging with Asterisk and Cisco 7960 7940 phones

Displaying 20 results from an estimated 6000 matches similar to: "Office-wide paging with Asterisk and Cisco 7960 7940 phones"

2004 Dec 03
2
Unable to create channel of type 'Zap' (cause 0)
Hi, I've created a test at "extensions.conf" like this with 3 steps: ; When dial 5555, get the first available channel and dial do 482343400 exten => 5555,1,Dial(Zap/g1/482343400,5,rt) ; When dial 5555, get the channel 20 and dial do 482343400 exten => 5555,2,Dial(Zap/20/482343400) ; Go to Voicemail 1234 exten => 5555,3,Voicemail(u1234) I've tried using just the
2004 Dec 28
1
Intercom System with Asterisk and Cisco 7960
OK, I got my Cisco 7960's to auto-answer on the second line but I can't get the Asterisk to call all the lines at one time. I have 4 phones I would like all of then to answer when I dial x300. Any help would be great Thanks Tuska extensions.conf [conference] exten => 300,1,AGI(callall) exten => 300,2,MeetMe(300,dtqp) ; press # to exit the conference exten =>
2001 Mar 02
0
Patch for system-wide default environment
We recently switched to OpenSSH from ssh 1.2.x and I quickly noticed that /etc/environment processing has gone AWOL. This patch adds a new sshd_config variable: SysEnvFile Specifies a file containing the system-wide default environment in ``VARNAME=value'' format (default is none.) The contents of a user's $HOME/.ssh/environment file, if
2007 Apr 06
0
translating sas proc mixed to lme()
Hi All I am trying to translate a proc mixed into a lme() syntax. It seems that I was able to do it for part of the model, but a few things are still different. It is a 2-level bivariate model (some call it a pseudo-3-level model). PROC MIXED DATA=psdata.bivar COVTEST METHOD = ml; CLASS cluster_ID individual_id variable_id ; MODEL y = Dp Dq / SOLUTION NOINT; RANDOM Dp Dq / SUBJECT = cluster_ID
2015 Aug 05
2
[PATCH 1/1] document all hash algorithms available for key fingerprint display
From: Christian Hesse <mail at eworm.de> Signed-off-by: Christian Hesse <mail at eworm.de> --- ssh_config.5 | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/ssh_config.5 b/ssh_config.5 index 5b0975f..28f7714 100644 --- a/ssh_config.5 +++ b/ssh_config.5 @@ -649,9 +649,13 @@ The default is .It Cm FingerprintHash Specifies the hash algorithm used when
2001 Oct 26
2
Patch to add "warn" value to ForwardX11 and ForwardAgent
Because ForwardX11 and ForwardAgent are so useful but introduce risk when used to a not well-secured server, I added a "warn" value to the ForwardX11 and ForwardAgent options which causes the ssh client to print a big warning whenever the forwarding is actually used. I plan to make "ForwardX11=warn" the default in my ssh_config distribution. I'm not proposing that this
2011 May 04
1
fGarch
Hi, I am attempting to fit a ARMA/GARCH regression model without success. ### ARIMA-GARCH model with regressor ### ### Time series data: A multivariate data set. cov.ts.dq = cov.ts[1:4,"dq1"][!is.na(cov.ts[,"dq1"])] cov.ts.day = ts.intersect(dq = diff(q.ts), day = lag(q.ts, -1)) ### The following R scripts work: (summary(no.day.fitr <- garchFit(dq ~ arma(0,3) +
2004 May 07
4
Cisco 7940 Phones as paging system?
Hi all; I have been searching for an answer to a question that a customer asked me and I have only found a few older answers. So, wanting to find out if anyone has any experience with this issue and can help provide me with some advice. I have a customer which is strongly interested in using Asterisk as a PBX. One of the core requirements, however, is that the system MUST be able to
2021 Jul 25
6
[Bug 3331] New: Issues with man pages
https://bugzilla.mindrot.org/show_bug.cgi?id=3331 Bug ID: 3331 Summary: Issues with man pages Product: Portable OpenSSH Version: 8.4p1 Hardware: Other OS: All Status: NEW Severity: minor Priority: P5 Component: Documentation Assignee: unassigned-bugs at mindrot.org
2009 May 26
2
using lsoda() and nls() together
Thanks to Dieter Menne and Spencer Graves I started to get my way through lsoda() Now I need to use it in with nls() to assess parameters I have a go with a basic example dy/dt = K1*conc I try to assess the value of K1 from a simulated data set with a K1 close to 2. Here is (I think) the best code that I've done so far even though it crashes when I call nls()
2007 Jan 16
3
Realtime Voicemail Password Change Not Working
Hi All, I'm using asterisk 1.2.9.1 and mysql 3.23, asterisk add-ons 1.2.3. All seems to work normally with realtime voicemail, reads vmbox parameters from the db fine. When I try to change the password, asterisk operates normally, "enter new password" ok, "re-enter new password" ok, "password has been changed" There are no entries in the mysql.log setting the
2004 Aug 09
3
AbsoluteTimeout Inside A Macro
Hi all, Is it just me and not reading the docs right, or has anybody else had problems with the AbsoluteTimeout application and the 'T' extension when used inside a macro? [macro-attended] ; ARG1 is the device to dial out on, SIP or Zap, or whatever ; ARG2 is the extension to dial using 'attended' dialing exten => s,1,AbsoluteTimeout(30) exten =>
2004 Mar 31
0
Dial Application priorities
Hi, I am trying to get priority + 101 to work with Dial application. My dial plan is like this: [dial-mobile-peak] exten => s,1,AbsoluteTimeout(${ABSOLUTETIMEOUT}) exten => s,2,Dial(${TRUNKONE}${CALLEDNO:1}) exten => s,103,AbsoluteTimeout(${ABSOLUTETIMEOUT}) exten => s,104,Dial(${TRUNKTWO}${CALLEDNO:1}) I have changed password for first trunk to simulate trunk failure. Trunk one
2004 May 06
0
Problem in extensions.conf
Ok I tried but it does not work: now the settings are as follow exten => _123.,1,Answer exten => _123.,2,AGI(test.agi) exten => T,1,hangup the AbsoluteTimeout(5) is in test.agi (PHP) I put "AbsoluteTimeout" before "Answer": when i call for e.g 123456 it tries upto timing out. So I put again "Answer" and then "AbsoluteTimeout" then the last AGI
2005 Aug 21
1
Call duration limits not working
Hello everybody. Recently I've been trying to limit the duration of some calls for a simple application I'm writing. Unfortunately all of the documented methods are failing and I'm not sure what else to try. Here are some samples of what I've done: 1) The AbsoluteTimeout application. - exten => 1,1,AbsoluteTimeout (30) 2) The new version of AbsoluteTimeout. - exten
2002 Aug 09
0
patch to ssh.c for KerberosTgtPassing and readability patches for config files and manpages
Hey All, Found a very minor problem with client implementation of KerberosTgtPassing command line flag in ssh.c (first diff). We also made some readability patches to the config files and manpages to make the option clearer (the remainder of the diffs). diffs are against -current Index: ssh.c =================================================================== RCS file:
2006 Jun 26
1
M() option to Dial
I'm using the M() option to Dial() and having problems. In the following dialplan example ANY digit exits the macro. When the callee presses 1 the Noop(Reset AbsoluteTimeout(0)) does not get run. Does anyone have any ideas as to what I'm doing wrong? Asterisk 1.2.x [extensions] exten => 2998,1,Dial(Zap/1/5551212,,wM(answer-confirmation^20)) [macro-answer-confirmation] exten
2003 Sep 13
2
CVS is missing documentation for HostbasedUsesNameFromPacketOnly
I'm attaching a simple doc patch against current CVS - feel free to re-word it as you see fit. I also noticed that if UseDNS is no, HostbasedUsesNameFromPacketOnly _must_ be yes if you want HostbasedAuthentication to work. -- Carson -------------- next part -------------- --- sshd_config.5.DIST 2003-09-13 02:25:18.365707000 -0400+++ sshd_config.5 2003-09-13 02:46:29.430974000 -0400@@
2001 Mar 03
0
[PATCH] PrintLastLog option
Some time ago, Ben wrote about a PrintLastLog patch: > If the person who originally submitted it wants to write a complete > patch and submit it. Then we would be happy to debate if it will be > included. Well, here it is, because: "You Asked For It!" PS: I'm tired of maintaining my own version of Debian's ssh just to have this option available, so I hope you find
2004 Jan 23
3
SIP Absolute Timeout
Hi All, I've been having a hard time getting the AbsoluteTimeout function to work. Is this Function working in for SIP? I've search all the messages in the news letters and tried what was suggested and still have not gotten it to work. Below is a portion of my extensions.conf. I've also been running these test on ver 0.5.0 exten => _X.,1,Absolutetimeout(20) exten =>