similar to: Cisco 7960 won't dial (sccp)

Displaying 20 results from an estimated 110 matches similar to: "Cisco 7960 won't dial (sccp)"

2006 Mar 29
0
Installing Cisco IP phone 7910
Hello, I have tried to install this phone for hours now and I can't get it working. Maybe someone can help me :) I have searched for more info from everywhere but there isn't much about 7910 :( >From the CLI I get this: NAME ADDRESS MAC Reg. State ================ =============== ================ ========== telefon --
2007 Apr 10
6
Help w/ Asterisk Cisco IP phone and SCCP
I have a new asterisk installation (1.4.2) that is working fine with SIP. Now I'm trying to add 2 cisco ip phones (7960) running SCCP (latest chan_sccp). I have the phones booted, and the tftp directory all setup, etc. But the phones do not quite work right. When I lift the handset I only get a dial-tone 1 out of 5 or so times I try, though hitting the speaker button works. I can dial
2007 Aug 31
1
Cisco 7960 Won'
I'm having a wierd problem with a Cisco 7960 (sccp2) and asterisk (1.4.2) If the call that I'm trying to make goes through, everything works fine. But if there's any sort of error (like me messing around in my extensions.conf, etc). I can't get the connection to drop. ie: If I get the conjestion tone and hang up the phone, I can do a sccp show channels I can see that the
2005 Mar 10
1
Single port S0 ISDN card to use in Greece
Hello to all, I'm trying to build a PBX using Asterisk. I have a single BRI ISDN line and I need to connect 4 internal normal phones and a couple of softphones on PC. I have bought a single port Billion S0 card and a TDM400 with 4 FXS modules for the intenal phones. ISDN lines here in Greece terminate to an NT1 terminal called NetMod
2020 Jun 01
2
Error change DNS backend
Hi, I update the Samba from 4.10.x to 4.11.9, and update the python (2.7.6 to 3.6.9) . The update process works fine but now try change DNS backend (intenal to DLZ) and have the next error: [..................] [root at sambadc03 ~]# /usr/local/samba/sbin/samba_upgradedns --dns-backend=BIND9_DLZ Traceback (most recent call last): File "/usr/local/samba/sbin/samba_upgradedns", line 72,
2003 Oct 09
6
X100P Config
What is the proper method to install/configure an X100P FXO card? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20031009/ce8a7803/attachment.htm
2007 Feb 13
2
anyone has C++ STL classes stability issue if used with R
Hello, is there any one who uses C++ STL classes when programming shared libs for R and has had any problems with STL? In the very simple example below I am constantly getting segfaults when trying to populate the queue. The segfault occurs at what looks like a random index in the loop when pushing another element to the queue. Reproduced on 4 machines. Object x is an Image as in EBImage,
2015 Apr 27
0
adding area code
forgot to mentioned I am running Asterisk 1.8.22.0 on CentOS. Thanks, On 04/27/2015 02:38 PM, Motty Cruz wrote: > here is what I have: > > exten => _9XXXXXXX,1,Set(l_HomeAreaCode=381) > > exten => _9XXXXXXX,n,Set(dialnumber=${l_HomeAreaCode}${EXTEN:-1}) > > exten => _9XXXXXXX,n,Dial(SIP/SIP-Provider/${dialnumber},80) > > not having success; > >
2004 Jun 17
0
Zap Dial Problem ---- Erroneous dash
Hello. I'm trying to upgrade my asterisk installation to most current CVS version. Currently I am running CVS-03/24/04-07:26:16 and dialing out works fine. When I install the latest CVS, outbound dialing fails, but inbound and internal calls work just fine. == Spawn extension (it, 9651246****, 2) exited non-zero on 'SIP/8202-d359' -- Executing
2007 Dec 19
1
FW: cgh package
Hi, I would like some extra information on the 'cgh' package in R. I noticed that there isn't much activity regarding this package on the R and BioC mailing list (I googled it). I started using this package and I have few questions: 1/ As I have a custom tiling like array @8um features resolution (affy), I have a lot of probes to work with. I'm assuming it is correct to
2015 Apr 27
2
adding area code
here is what I have: exten => _9XXXXXXX,1,Set(l_HomeAreaCode=381) exten => _9XXXXXXX,n,Set(dialnumber=${l_HomeAreaCode}${EXTEN:-1}) exten => _9XXXXXXX,n,Dial(SIP/SIP-Provider/${dialnumber},80) not having success; "Got SIP reponse 503" Service Unavailable" On 04/27/2015 02:19 PM, Bryant Zimmerman wrote: > Motty > Yes > From your dial plan accept 9 + 7 digits
2006 Jan 18
2
SipAddHeader bug?
Hi, I'm using the new SipAddHeader application on Asterisk 1.2.1, here's a snip of my extensions: exten => _9XXXXXXX,1,SipAddHeader(P-Asserted-Identity: <sip:${CALLERIDNUM} exten => _9XXXXXXX,2,SipAddHeader(P-Asserted-Identity: tel:${CALLERIDNUM}) exten => _9XXXXXXX,3,Dial(SIP/${EXTEN}@${SIPTRUNK},,tT) exten => _9XXXXXXX,4,Congestion The problems is that Asterisk
2007 Mar 08
1
No application 'Prefix' for extension in1.2x, what app I have to use instead?
Hi I want to use Prefix app in extensions but get this error: WARNING[9255] pbx.c: No application 'Prefix' for extension ... I am just want to do somethig like this: exten => _9XXXXXXX,1,ANSWER() exten => _9XXXXXXX,2,Wait(1) exten => _9XXXXXXX,3,Prefix(511) exten => _5119XXXXXXX,4,DeadAGI(a2billtest.php|1) exten => _5119XXXXXXX,5,Hangup() Please someone tell me how to
2015 Apr 27
0
adding area code
Motty Yes From your dial plan accept 9 + 7 digits then concat your dialed number together with your areacode. This s a brief example. exten => _9XXXXXXX,1,Set(l_HomeAreaCode=555) exten => _9XXXXXXX,n,Set(dialnumber=${l_HomeAreaCode}${EXTEN-1}) ;; This line should combine your area code and the last 7 digits of your dialed phone number exten =>
2015 Apr 28
0
adding area code
this code worked for me, here is what I did and worked for me: exten => 1381+NXXXXXX,1,Set(CALLERID(number)=3817383444) exten => 1+NXXNXXXXXX,2,Dial(SIP/SIP-Provider/${EXTEN:1},80) Thanks for you help! On 04/27/2015 02:56 PM, Matt Riddell wrote: > >> On 27Apr, 2015, at 16:39, Motty Cruz <motty.cruz at gmail.com >> <mailto:motty.cruz at gmail.com>> wrote:
2015 Apr 27
2
adding area code
> On 27Apr, 2015, at 16:39, Motty Cruz <motty.cruz at gmail.com> wrote: > > forgot to mentioned I am running Asterisk 1.8.22.0 on CentOS. > > Thanks, > > > On 04/27/2015 02:38 PM, Motty Cruz wrote: >> here is what I have: >> exten => _9XXXXXXX,1,Set(l_HomeAreaCode=381) >> >> exten =>
2013 Nov 30
0
[fdo] Lista de emails o que mala direta email lista
Lista de emails o que mala direta email lista envio de email compreendendo lista de emails, que ? mala direta envio de email: http://www.maladiretaemails.com todos entendem que email cadastro, ? ben?fico para muitos indiv?duos. newsletter emails de pessoas incluindo lista de emails, enviar emails como fazer mala direta, a inten??o de nosso website. Se voc? est? procurando servidor de email,
2003 Nov 01
2
ipfw2 logging
Dear list! I have a little problem, trying to enable logging of deny rule. I have enabled it via kernel: options IPFIREWALL options IPFIREWALL_VERBOSE options IPFIREWALL_VERBOSE_LIMIT=3 It is ipfw2. After that, my inten- tion was to use syslogd and !ipfw *.* /var/log/ipfw.log and newsyslog with /var/log/ipfw.log 600 3 100 * J In rc.conf I have firewall_enable="YES"
2005 Jun 07
0
X100P long delay before dial
Hi, I have an X100P which receives an analog line from another PBX. These are the relevant entries in extensions, PHONE1=Zap/1 [macro-extensions] exten => s,1,Dial(${ARG1},20) exten => s,2,Voicemail2(u${ARG2}) exten => s,102,Voicemail2(b${ARG2}) exten => s,103,Hangup [home] include=>tozap exten => 2201,1,Macro(extensions,${PHONE1},${PHONE1VM}) exten =>
2008 Apr 02
4
Security issue
Hello, I am trying to convince our IT Manager that R is as safe as possible from IT security point of view - could you point me to something on the web / some reasons for why this is true? I do not think he has a specific concern but does not know the software and would like to understand the security implications. Thanks in advance Best Regards Martin Hanek Actuarial Analyst Glacier