similar to: easy way of add 100 extensions

Displaying 20 results from an estimated 5000 matches similar to: "easy way of add 100 extensions"

2004 May 14
4
sip authentication
Good day all How do I get my asterisk and sip to use the password.I'm using x-lite.If I use just the username and no password it still logs on? Here is my sip.conf entry? [101] type=friend callerid="Test User" <101> context = test_1 ; Default context for incoming calls username=101 secret=123456 host=dynamic dtmfmode=inband ; Choices are inband, rfc2833, or info
2004 Sep 30
1
how to hung up a call immediately if it SIP response 486 "Busy Here" received
Hi, I noticed that it takes around 5 sec before the phone hang up immediately if SIP response 486 "Busy Here" was received. How to change it so that it will hangup immediately. >From the asterisk CLI, I am seeing ocalhost*CLI> -- Executing Macro("SIP/6200-70bb", "oneline|SIP/6203") in new stack -- Executing
2015 Feb 07
3
how to draw paired mosaic plot?
If there are many character variables,and I want to get the mosaic plot of every pair of each variable,how to do then? If the variables are numeric, I can use pairs to get paired scatter plot. But as to the character variables, how to get the "paired mosaic plot"? Many thanks. -- QQ: 1733768559 At 2015-02-07 17:04:26,"Jim Lemon" <drjimlemon at gmail.com>
2007 Sep 13
5
Apache mod_proxy_balancer hang on high traffic hour
more info just 1 server webserver + appserver + dbserver On 9/14/07, Yan Meng <dreamwords at gmail.com> wrote: > > Hi, Guys > > Our team is running a web2.0 finance site in China > > http://www.caibangzi.com/ > > We use APACHE + mod_proxy_balancer + mongrel to deploy our application, it > workd super in the past few monthes. > > However, just from last
2011 May 18
3
Help with 2-D plot of k-mean clustering analysis
Hi, all I would like to use R to perform k-means clustering on my data which included 33 samples measured with ~1000 variables. I have already used kmeans package for this analysis, and showed that there are 4 clusters in my data. However, it's really difficult to plot this cluster in 2-D format since the "huge" number of variables. One possible way is to project the
2013 Mar 13
1
multi-comparison of means
Hi all: I have a question about multi-comparison. The data is in the attachment. My purpose: Compare the predicted means of the 3 methods(a,b,c) pairwisely. I have 3 ideas: #idea1 result_aov<-aov(y~ method + x1 + x2) TukeyHSD(result_aov) diff lwr upr p adj b-a 0.845 0.5861098 1.1038902 0.0000001 c-a 0.790 0.5311098 1.0488902 0.0000002 c-b -0.055 -0.3138902
2013 Jun 01
1
error about MCA
Hi,all: I want to perform multiple correspondance analysis via MCA{FactoMineR}. The data is in the attachment. My code: dat<-read.delim("e:\\mydata.txt",header=T) MCA(dat,quanti.sup=7,quali.sup=1:6) Error in `[.data.frame`(tab, , i) : undefined columns selected My question: Why does the error happen? Many thanks. Best. -------------- next part -------------- An embedded and
2005 Mar 08
4
force SIP authentication
Hello, is it possible with Asterisk to force SIP authentication? Right now, it seesm that just any SIP client can at least connect to my PBX, which I don't want. I want users to authenticate with username and password and otherwise deny them access. Thanks Florian
2012 Dec 30
4
How to multiple the vector and variables from dataframe
hi all: Here's a dataframe(dat) and a vector(z): dat: x1 x2 x3 0.2 1.2 2.5 0.5 2 5 0.8 3 6.2 > z [1] 10 100 100 I wanna do the following: 10*x1,100*x2,1000*x3 My solution is using the loop for z and dat(since the length of z is the same as ncol of dat),which is tedious. I wanna an efficient solution to do it . Any help? Many thanks! My best
2004 Sep 17
3
how to get caller ID
i cannot see caller ID of the call originated from outside zap channel. i hv configured both zapata.conf and extensions.conf. i m right now in india i think asterisk only supports Bellcore enable caller ID. so is it the same bug of BT caller ID problem in UK? or it is the bug of my asterisk configuration? i hv enabled callerID from my TELCO. -------------- next part -------------- An HTML
2008 Jan 30
6
Schedule parser
Hi, I was trying to schedule a worker to run during the midnight hour like this: :schedules: :collector: :process_something: :trigger_args: 30 * 0 * * 2,3,4,5,6 When I try to start backgroundrb, the "collector" worker failed to start up and I find this in backgroundrb_server.log: /home/mengkuan/apps/testrailsapp/current/vendor/plugins/backgroundrb/
2010 Jan 12
2
SIP Security
Hey guys, I've been running asterisk on my server for some time now (currently running Asterisk 1.6.2.0). I am having security issues with my SIP accounts. Unauthorized people have been able to access the server (bots) and they have been able to make calls (in today's case to Cuba). Here's a copy (slightly modified) of my sip.conf: [general] context=default ; Default
2011 Dec 28
2
Join translator group
Hey,everybody!I'd like to introduce myself into this group.My name is Christopher Meng from Beijing,China.I'm good at translating wiki pages,I now work in Fedoraproject.My aim is to translate CENTOS wiki into Simplified Chinese. -- My personal blog is http://cicku.me,hope you can visit and say something about it. Who am I:http://about.me/cicku
2020 Feb 17
3
Differentiate array access at IR level
Hi LLVM community, I am trying to differentiate access to different array elements, for example: for (int i = 1; i < 10; i++) { a[i] = a[i] + 10; b[i] = a[i - 1] * 2; } If it is possible to tell it loads/stores 3 different array elements: a[i], b[i] and a[i - 1] at IR level? Thanks for your time in advance! Best, Michael -------------- next part -------------- An HTML
2012 Aug 21
5
[PATCH 1/2 v1] blkdrv: Add queue limits parameters for sg block drive
This patch adds some queue limit parameters into block drive. And inits them for sg block drive. Some interfaces are also added for accessing them. Signed-off-by: Cong Meng <mc at linux.vnet.ibm.com> --- block/raw-posix.c | 58 +++++++++++++++++++++++++++++++++++++++++++++++++++++ block_int.h | 4 +++ blockdev.c | 15 +++++++++++++ hw/block-common.h | 3 ++ 4 files
2012 Aug 21
5
[PATCH 1/2 v1] blkdrv: Add queue limits parameters for sg block drive
This patch adds some queue limit parameters into block drive. And inits them for sg block drive. Some interfaces are also added for accessing them. Signed-off-by: Cong Meng <mc at linux.vnet.ibm.com> --- block/raw-posix.c | 58 +++++++++++++++++++++++++++++++++++++++++++++++++++++ block_int.h | 4 +++ blockdev.c | 15 +++++++++++++ hw/block-common.h | 3 ++ 4 files
2013 Jan 04
2
a question about the computation of expression
Hi all: I have a question about the computation of expression: y = 1+(2x1+2)-3*(5x1-1)+(3x2+3)-2*(x2-1) The result of y is: y = 11-13x1+x2 How can I compute the result of y via R function? Many thanks! My best. [[alternative HTML version deleted]]
2015 Feb 06
3
how to draw paired mosaic plot?
Hi all: If there are two numeric variable:x,y, and I can get paired scatter plot by function "pairs".But if x and y are character, and I want to get paired mosaic plot,which function should be used then? Many thanks! My best. -- QQ: 1733768559 [[alternative HTML version deleted]]
2003 Dec 18
4
SIP / X-ten Softphone
I know this has been covered more times than to mention and this is where I got most of my info from... But I am having issues with this. I can't seem to get the phone to register with *. This is being tested on a internal network right now. Here is the setup - sip.conf [general] port = 5060 ; Port to bind to bindaddr = 0.0.0.0 ; Address to bind to context
2005 Sep 05
2
Asterisk won't listen on another port
Hello, Hope somebody can help me - Asterisk is behaving very oddly and I'm totally stumped! I have SER and Asterisk running on the same box. I want SER to listen on port 5060 (it is) and Asterisk to listen on port 5062. I have configured my phones to register with x.x.x.x:5060 (SER) and Asterisk will purely act as a voicemail server at the moment. However I cannot get Asterisk to listen on a