Displaying 20 results from an estimated 9000 matches similar to: "SIP debug logs"
2004 Jan 19
2
Different Caller ID for each Zap Interface
Hi there,
I'm wondering if there is a way to assign a different Caller ID to each Zap
interface.
I have 3 Digium X100P cards, and I'm sure there must be some way of
configuring zapata.conf to allow each line to identify itself with a
different Caller ID string.
Many thanks,
Steve
--
Steve Foy | http://www.unite.net
UNITE Solutions | Tel: 028 9077 7338
2004 Jan 21
3
Making a call with sample.call
Hi there, I'm having some trouble with getting Asterisk to make a call, I
think it should be quite easy, but anyway...
Using the following file contents:
##
Channel: Zap/3/<TEL NUMBER HERE>
MaxRetries: 2
RetryTime: 60
WaitTime: 30
Context: phones
Extension: 502
Priority: 1
##
Extension 502 is simply one that plays a sound back. When I dump this file
into
2004 Jan 30
7
Calls dropping off
Hi,
I've got a fairly working Asterisk setup, with a few minor glitches, one of
which is very very irritating.
Sometimes, during a call, the remote end just drops off. We're using software
SIP phones (SJPhone) connecting to * then out through analogue lines with
X100P cards.
There is nothing in the logs and nothing on the console, the call just seems
to 'go away'!
Can anyone
2004 Jan 16
2
'Intercom' before call transfer
Hi there,
Just wondering if there is a way to speak to the person you are transferring
a call to before actually connecting them to the incoming call.
E.g.
"Hi, Colleague, I've got Bill from Microsoft on the line here... putting you
through now"
Then actually transfer the call.
Does that make sense!?
--
Steve Foy | http://www.unite.net
UNITE Solutions | Tel: 028 9077
2004 May 13
0
Consultive Transfer, or faking it
Hi there...
I have a simple * setup with about 11 Soft phones (SJ Phone). The clients
don't support a consultive or supervised transfer (I believe that's what it
is called). Tris is a feature much desired by the powers that be and they
want me to "make it work" :)
I was wondering if there was a way to do this with and AGI script or the
like so that when Staff 1 gets an external
2004 Apr 08
0
RE: Asterisk-Users digest, Vol 1 #3368 - 12 msgs
This message is in response to Flash operator problem. My op_server.pl seems to be same. I also created the variable.txt to the /var/www/html/panel folder and when I run htt://192.168.0.0/panel it just says at the bottom transferring data. I don't see anything on the screen.
I also checked my manager.conf file. I was able to telnet into the manager interface and it's running fine.
So I am
2003 Oct 02
2
Zapateller
Does anybody know why I get this error when using zapateller:
WARNING[1209214400]: File rtp.c, Line 327 (ast_rtcp_read): RTP Read error:
Resource temporarily unavailable
It's scrolls until a sound is recived from the line, then it plays the
zapateller tones.
/Mike
2004 Jan 21
3
Mailing List Lag
Has anyone from digium looked at why there is a 30 min to 3 hour lag on
messages on this list?
I.e looking at the last 50 messages I've received, the lag is about 90
minutes between the time sent and the time received.
Sometimes this drops to as little as 4 minutes.
Is this problem worse for me because my email address starts with "w" and my
copies of the emails get sent after
2004 Feb 03
1
Problems with chan_sip: random calls have no sound withouth any errors
Hi All,
I have been busy with this problem for a while now, but I can't find any
solution. First I thought this was a problem with the phones, but all my
phones have this problem. (2 SNOM 200, 2 GS 102, 2 Cisco 7960). I tried
all firmware versions I could find for the phones.
First, my situation:
- No NAT, No Firewall, same subnet
- Codec configuration:
In general:
disallow=all
2004 Jan 29
4
Multiple Line Appearances
Has anyone successfully implemented concurrent appearance of the same PBX
extension on multiple SIP phones?
When using Cisco 7960s under call manager, you can have several phones with
the same line appearance, but the first user to seize a line makes it
inaccessible to other phones.
Under SIP operation it seems as though this is not possible, but we don't
see group ringing definable for
2004 Apr 08
5
Restart Asterisk
Is it true that every time we make a change in the configuration file we need to restart the asterisk server. This will not be practical in the production environment.
Thanks,
2004 Jan 22
5
Snom 200 phones not working.
I have 2 Snom 200 and would like to get them to work properly with
Asterisk. With the Firmware 2.02t I am able to use the phone. But only
one line configured. With there newer firmware 2.03o it will not allow
me to make calls. But I can get calls on the unit. Again the 2nd line
is not able to be registered. Is this an issue with Asterisk or Snom?
I could use some example configuration
2005 Jun 29
3
UK SIP Provider
Hi,
I'm looking for a reliable provider to use mainly for outgoing calls in the
UK, incoming isn't so much of a worry as I think I'm going to accept them
over ISDN.
Cheers!
Steve
--
Steve Foy
steve@narnian.org
2003 Dec 15
2
Week of the Year date conversion
Hello there fellow R-users,
I have received some data which comes in the following format:
example1<-"200301"
The first 4 digits correspond to the year and the remaining 2 digits
correspond to the week of the year.
I have tried to convert this to a date by using strptime as follows:
strptime(example1,format="%Y%U")
where U (looking up strptime) is the week of the
1999 Feb 05
0
WinNT authentication problem
I am a newbie here and I have been going around in circles with this problem.
I have set up samba to use encrypted p/w and use a WinNT4 sp4 client with
registry changed for plaintextpasswords.
I can 'map network drive' successfully and peruse all the shares but if I try
to use the 'Network Neighborhood', then I can see the shares (so I guess that I
have been authenticated
2005 Mar 18
3
extract rows in dataframe with duplicated column values
Hi
I want to extract all the rows in a data frame that have duplicates
for a given column.
I would expect this question to come up pretty often but I have
researched the archives and surprisingly couldn't find anything.
The best I can come up with is:
x <- data.frame(a=c(1,2,2,3,3,3), b=10)
xdup1 <- duplicated(x[,1])
xdup2 <- duplicated(x[,1][nrow(x):1])[nrow(x):1]
xAllDups <-
2003 Aug 15
6
plot.lm mislabels points with na.exclude (PR#3750)
R 1.7.1 on Windows XP
The "normal Q-Q plot" produced by plot.lm() mislabels points
when the model is fitted using na.action=na.exclude. Example:
x <- 1:50
y <- x + rnorm(50)
y[c(5,10,15)] <- NA # insert some NA's
y[40] <- 50 # add an outlier
plot(lm(y ~ x, na.action=na.omit)) # outlier correctly labeled in all
# four plots
2004 Jan 15
1
Winbind + Acl problem
Hello everybody
When I try to connect (net use) a samba share (Acl protected) from a windows
XP workstation I obtain the following message in the
"/var/log/samba/workstation_name.log" :
. . .
[2004/01/15 11:12:44, 0] smbd/sec_ctx.c:initialise_groups(244)
Unable to initgroups. Error was Operation not permitted
. . .
The network connection to this share run sucessfully but when I
2006 Mar 08
8
how to use the randomForest and rpart function?
Hi all,
I am trying to play around with the randomForest function for
classification. I know its performance is great.
I am currently using the default options.
It has many options.
How do I further tweak the options so that I can make its performance even
better?
What are the options that are mostly used?
Thanks a lot!
M
[[alternative HTML version deleted]]
2004 Jan 30
8
MeetMe Video option
Hello All:
Has anyone configured a meetme conference to use video?
I have successfully used video phones to talk through *, but I cannot seem
to get video when those phones dial into a meetme conference.
Is there something else that I need to be doing other than set the "v" flag
on my extension for the meetme app?
Thanks,
Tim