similar to: Turn on SIP debugging from DialPlan

Displaying 20 results from an estimated 5000 matches similar to: "Turn on SIP debugging from DialPlan"

2015 Apr 09
1
Script to Program Snom Phones
SNOM phones can be configured using files on a TFTP server. On Thu, Apr 9, 2015 at 11:14 AM, jg <webaccounts173 at jgoettgens.de> wrote: > > Does anyone know how to program Snom phones using a Mac addresses like > what is done with the Ciscos. I have about 50 extensions to be programmed > and I am hoping there is a way on Asterisk to program extensions on the > snom
2018 Jun 21
3
hosts allow option is not applaying without restart smbd
On Thu, 21 Jun 2018 19:17:14 +0700 Vladimir Eltsov via samba <samba at lists.samba.org> wrote: > Hello. > > I have read man smbcontrol. > > I wrote in start message: > > > I have tried: > > systemctl reload smbd.service > > killall -1 smbd > > pkill -HUP smbd Forget 'systemctl reload' Forget 'killall' Forget 'pkill' >
2003 Sep 17
2
ftp
Hi, Could u recommend a secure ftp daemon? I want to be able to control the ports it uses.... and not to have to let all of the upper ports open. --------------------------------- Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software
2018 Nov 30
2
Asterisk non-root - selinux - astdb
Hi I'm trying to use Asterisk running as non-root user and selinux enabled. Asterisk is running ok, but astdb not works. When i try to put in astdb, console shows this message: WARNING[1853]: db.c:350 ast_db_put: Couldn't execute statment: SQL logic error or missing database CentOS 7.5.1804 Asterisk certified/13.21-cert3 [root at sv03 asterisk]# ls -lahZ /var/lib/asterisk/astdb.sqlite3
2018 Apr 28
3
debugonce() functions are not considered as debugged
debugonce() sets a different flag (RSTEP), and this is not queried by isdebugged(), and it is also not unset by undebug(). Is this expected? If yes, is there a way to query and unset the RSTEP flag from R code? ? f <- function() { } ? debugonce(f) ? isdebugged(f) [1] FALSE ? undebug(f) Warning message: In undebug(f) : argument is not being debugged ? f() debugging in: f() debug at #1: { }
2013 May 18
5
Performance Asterisk large installation on Vmware/Xen
Hi I would like the opinion of you and if anyone has a similar scenario. I have a project for installation of a Asterisk server in a client with about 400 extensions. My question is whether this scenario carry an Asterisk virtualized. Will be used only extensions and trunks sip sip, 1 queue with 2 agents, without call recording. It is best to use XEN or VMware? Which best version of Asterisk for
2006 May 27
3
On what versions of FreeBSD can we unreserve ports?
On which versions of FreeBSD is it now possible to un-reserve ports? ( I've been waiting for this since forever ... have spent countless days - $$$ - trying to install workarounds, only to junk them later. I've even been paid a consulting gig to develop this, and declined to deploy it on my own servers :-/ ) iang
2002 Nov 21
3
Tribes 1.x & Wine
Has anyone ever tried to actually get a tribes server running under wine or another emulator? Just the other day i was setting up a linux counter-strike server. My friend asked me if i would setup a Tribes 1.0 or 1.11 server. I thought linux would be a great way to do it. I was trying to run a headless / dedicated starsiege tribes server (1.0/1.11) I Installed the tribes files (including the
2017 Oct 06
2
Asterisk put call on hold when receive 183 Session Progress with media address 0.0.0.0 in SDP
Hi Is it a normal behavior of Asterisk put a call on hold when receive a Session Progress with media address 0.0.0.0 in SDP? I believe the call on hold should be initiate with a re-invite. Thanks -- Att, Rafael Saraiva -------------- next part -------------- An HTML attachment was scrubbed... URL:
2015 May 12
2
AEL keyword IfTime with variable on time range
Hi It's possible using a variable in the iftime keyword argument? E.g: context text { s => { timerange = '06:00-12:00|*|*|*'; ifTime(${timerange} { Playback(ivr/goodbye); } } } thanks [image: Sua Foto] <rafaelsnsa at gmail.com>Rafael S. SaraivaPorto Alegre - RS | Mobile: (51) 8174-7956 <http://br.linkedin.com/pub/rafael-saraiva/52/aab/230>
2006 Oct 20
2
mac_portacl
Hi, folks. I am trying to implement reverse proxy using squid with mac_portacl, but i have problem while binding squid to port 80. Am i missed something? Here is my mac_portacl variables: # sysctl security.mac.portacl. security.mac.portacl.enabled: 1 security.mac.portacl.suser_exempt: 1 security.mac.portacl.autoport_exempt: 1 security.mac.portacl.port_high: 1023 security.mac.portacl.rules:
2019 Feb 15
2
Set qualify = yes on trunk can't do outgoing call
Hello when I set qualify = yes on trunk I can't do outgoing call. Incoming is always working. [Feb 15 23:01:41] WARNING[12909][C-00000012]: app_dial.c:2525 dial_exec_full: Unable to create channel of type 'SIP' (cause 20 - Subscriber absent) but my linphone is registered all the time. when set qualify = no outgoing call is working (but i have problems when WAN IP is changed after
2010 Apr 26
2
Never executing loop in smallft.c
Hello list I've been studying libvorbis code and found a strange fragment in smallft.c: 38 static void drfti1(int n, float *wa, int *ifac){ 39 static int ntryh[4] = { 4,2,3,5 }; 40 static float tpi = 6.28318530717958648f; 41 float arg,argh,argld,fi; 42 int ntry=0,i,j=-1; 43 int k1, l1, l2, ib; 44 int ld, ii, ip, is, nq, nr; 45 int ido, ipm, nfm1; 46 int nl=n; 47 int nf=0;
2015 May 12
1
AEL keyword IfTime with variable on time range
Sorry, I forget to tell I tried, but not works. *Context:* context ivr_temp2 { s => { Proceeding(); str_time_01 = '06:00-12:00|*|*|*'; // Manh? ifTime (${str_time_01}) { Playback(ura/bom_dia); } } } The error is showed on "ael reload". *Console errors:* rs0000sr304*CLI> ael reload Command 'ael reload' failed.
2018 May 22
2
debugonce() functions are not considered as debugged
On Mon, May 21, 2018 at 5:01 PM Tomas Kalibera <tomas.kalibera at gmail.com> wrote: [...] > Do you have a good use case when it would be useful to query/unset the > mark for debugonce? Well, I suppose the same use cases when it is useful to query/unset the other debug mark. To be more specific, in debug helpers for a tool that works with callbacks from a central event loop, it is
2001 Oct 09
2
list of functions flagged with debug() or trace()
Hello all, Since I got no answer to my first mail, I suspect I did not formulate my question adequately, so I try again. In R, one can debug or trace a function 'foo' with debug(foo) or trace(foo), respectively. This leads to a special treatment of the function 'foo' until one enter undebug(foo) or untrace(foo). I would like to know if there is a convenient way to know at any
1997 Aug 20
1
R-alpha: R-0.50-a3(+) Method despatching bug ?
It is very wierd... Can some of you confirm the following behavior ? It is a new bug (feature ?) which was not yet in 0.49 ... noquote <- function(obj) { ## constructor for a useful "minor" class if(!inherits(obj,"noquote")) class(obj) <- c(class(obj),"noquote") obj } "[.noquote" <- function (x, subs) structure(unclass(x)[subs], class =
2017 Feb 17
2
Turn on SIP debugging from DialPlan
The SIP trace will be adequate but this is on a remote system with limited disk space. I would love to turn on debugging while making the troublesome calls, then turn it off afterward. Tcpdump is great, but starting it and stopping it and keeping all that data would still be an issue. d On Fri, Feb 17, 2017 at 4:56 PM, Tim Pozar <pozar at lns.com> wrote: > Why not capture the packets
2014 Mar 26
1
Verbose only one context
Hi It's possible in Asterisk 1.8 enable verbose only in one context or extension? thanks Att, *Rafael dos Santos Saraiva* <http://br.linkedin.com/pub/rafael-saraiva/52/aab/230> -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.digium.com/pipermail/asterisk-users/attachments/20140326/4ed97cc9/attachment.html>
2014 Mar 31
1
Function REGEX
Hi I need help to use the function REGEX. My question is if is possible test a expression as [X123 == 5123] ( If an extension corresponding to a previously defined regular expression). I saw various examples about this function, but nothing as the my needs. I do not understanding exactly how to works this function. Thank's Att, *Rafael dos Santos Saraiva*