similar to: caller id over iax

Displaying 20 results from an estimated 3000 matches similar to: "caller id over iax"

2009 Mar 26
1
IAX problem through intermediate asterisk box
I'm having a problem with IAX running through an intermediate asterisk box. Perhaps a small diagram will explain the situation better: *A ------- [cloud (public internet)] ------- *B --------[cloud (private network)]----------- *C Asterisk server's A, B, and C, are all connected together with IAX All asterisk servers are 1.6.0.6 Server A and B are geographically close, but connected over
2008 Jul 03
2
How do I paste double quotes arround a character string?
Hi R Community: I've got a character string that looks like: New Mexico How to I create the new character string that looks like: "New Mexico" That is, it is the original string (New Mexico) with double quotes infront and behind it? Thanks, Phil Smith
2005 Sep 27
2
Integration with NMS AG-E1/T1
I want to replace a custom PBX, that is infront on a IVR system based on OLD NMS AG-E1 Card. The Cards is configurated with CAS Digitalmode, someone can give me some info about Digim Cards CAS configuration i need a conversion Table? I wanto to don't touch configuration on winbox, i want only replace HWPBX box with asterisk. Diagram Telco E1 ===>Proprietary PBX========(CAS)===>IVR
2008 Sep 21
2
r format questions
Hi, 1) I have noticed that when I use the aggregate function it outputs numbers in the results. for example: aggregate by product group.1 Aggregate 1 ProductA 1000400.00 2 ProductB 23232323.00 3 Missing 232323.00 is there a way to suppress the numbers infront of aggregate outputs. I checked and they don't look like columns when I do a summary so I can't -1
2007 Apr 05
4
reading of a matrix
Dear R-experts, I still have problems with the reading of a matrix. Input: matrixData6.txt A-Paar B-Paar C-Paar D-Paar E-Paar A 1 3 5 7 9 B 2 4 6 8 10 R-commands: y=read.table(file="Z:/Software/R-Programme/matrixData6.txt") y Result: A.Paar B.Paar C.Paar D.Paar E.Paar A 1 3 5 7 9 B 2 4 6 8 10 If you look into the txt-file
2006 Jun 13
2
automated data processing
I have many files (0.4.dat, 0.5.dat, ...) of which I would like to calculate mean value and variance and save the output in a new file where each line shouldlook like: "0.4 mean(0.4.dat) var(0.4.dat)" and so on. Right now I got a a simple script that makes me unhappy: 1. I run it by "R --no-save < script.r > out.dat" unfortunately out.dat has all the original commands in
2004 Jul 18
1
Formatting rsync output
When RSYNC runs in -v mode, I get the following output on, for example, /etc: RSYNCing /etc ... ( <--- this line is generated by the shell script) building file list ... done ./ backup-daily.sh mail/statistics mtab wrote 26720 bytes read 68 bytes 17858.67 bytes/sec total size is 4176073 speedup is 155.89 RSYNCing /root ... ( <--- this line is generated by the shell script)
2019 Oct 03
1
Keyboard backlight fails with recent kernels
I do not use my laptop often, normally my better half has possession and use of it. It is a late 2011 ASUS ROG G73S which performs very well. The keyboard backlight was an issue initially under CentOS6, but the kind folks at elrepo found the missing bits in a more recent kernel and created a package to add them to the older CentOS6 kernel. An upgrade to CentOS7 went without a hitch and the
2008 Nov 04
1
HAproxy not listening to all IP address
guys, i am trying to install HAproxy infront of my webserver. usually my webserver listens on port 80 and since we have 5 ip address serving 5 different sites on the same physical server the webserver listens to all these ips and proxy the traffic to the relavent app servers. now the problem is if want to loadbalance i should install HAproxy on port 80 and there lies the problem.
2020 May 30
1
PJSIP
Hello, Anyone know how to set the "To:" in an invite for PJSIP to custom settings. I got the "from" to be the way I need it. From: <sip:e04f43a2ed59 at xaccel.net;tag=44l1nRmW2 To: "TEST" <sip:5tf2f2s0rbtdj-20d14fl6n65t0o-0u03 at 34.221.174.202> I have tried a lot of changes to get to this but nothing works. I am getting this From: sip:109643183 at
2003 Aug 04
4
SIP + Grandstream 100 + TDM100P = lots of local echo, & questions about call transfers
hi .. I have an asterisk system with three TDM100P (single port FXO) cards and 10 Grandstream 100 phones connected to it .. 1st question: when i phone out or receive a call from one of the SIP phones onto the PSTN, there is a LOT of local echo in the handset .. the PSTN end of the call does not here this echo, but it's VERY annoying on the SIP end of things .. the echo seems to be about 0.3
2011 Sep 09
2
prcomp: results with reversed sign in output?
Dear All, when I'm running a PCA with prcomp(USArrests, scale = TRUE) I get the right principal components, but with the wrong sign infront Rotation: PC1 PC2 PC3 PC4 Murder 0.5358995 -0.4181809 0.3412327 0.64922780 Assault 0.5831836 -0.1879856 0.2681484 -0.74340748 UrbanPop 0.2781909 0.8728062 0.3780158 0.13387773 Rape 0.5434321 0.1673186 -0.8177779 0.08902432 instead of PC1 PC2 PC3 PC4
2017 Jul 25
2
why is llvm.stacksave() necessary?
> In C, the ‘minimal’ part is called the ‘scope’. Variables are always destroyed in the inverse order to the order in which they are created and so it’s always trivial to translate each into a stack save followed by an alloca when the variable comes into scope and a stack restore when the variable goes out of scope. > >> what would happen if stack safe/remove would be neglected?
2007 Feb 07
1
The Depot "Add to Cart" sessions question (2.ed agile book)
Hello, Im in the process of working my way through the 2.ed of the agile book. As many of you already know, the book goes through the regular development cycle of the Depot application. I have hit a wall when they started talking about the sessions and the exact mechanics of how an item is added to the session. The code looks like this: depot/app/controllers/store_controller: def add_to_cart
2005 Dec 19
3
created_on, created_at defaulting to 2000/01/01 00:00:00
Hello all, Rails 1.0.0 created_on is being set to 2000/01/01 00:00:00 Any ideas on this ? Thanks! Schema is create table user_login_history ( id int identity(1,1) not null, user_id int not null, created_on datetime default(getdate()) not null, created_at datetime default(getdate()) not null, updated_on datetime default(getdate()) not null, constraint pk_user_login_history primary key clustered
2008 Apr 10
5
Strange reboots
Hi, I have a CentOS 5.0 running as a web server. # uname -a Linux hostnamehidden.net 2.6.18-53.1.14.el5 #1 SMP Wed Mar 5 11:37:38 EST 2008 x86_64 x86_64 x86_64 GNU/Linux Every 59 minutes (maybe every hour) it reboots without any logs, without any traces and unfortunately with breaking software raid. After reboot dmesg does not have any strange entries. I double-checked crons, any strange
2004 May 16
7
Grandstream v1.0.4.68 firmware
Grandstream v1.0.4.68 firmware http://www.hellofone.com/downloads.html Seems to have loaded ok on my BT100.. -- Best regards, Duane http://www.cacert.org - Free Security Certificates http://www.nodedb.com - Think globally, network locally http://www.sydneywireless.com - Telecommunications Freedom http://happysnapper.com.au - Sell your photos over the net! http://e164.org - Using Enum.164 to
2007 Nov 23
1
AMI Newstate Ringing events -- Inconsistent caller id ?
Hello list, I'm observing what I believe to be inconsistent behaviour regarding "Newstate" AMI events for the "Ringing" state. As such I come to you asking for experience or advice: am I wrong or should I file a bug ? I present you a short introduction which I feel is relevant; however, if you want to go straight to my technical question, please scroll
2006 Mar 26
0
RE: Asterisk-Users Digest, Vol 20, Issue 184
Hi Joseph, With iax servers dispersed across the internet, you could still use the below setup, it would work but it's not as secure as you would want it. I would then have a context for each server and use the IP address deny and permit statements. Also, you can have 1 server with a public IP and have the other servers behind a NAT register to the public server. There are really several
2007 Mar 29
2
Problem while using asterisk Realtime
I am having problem while having asterisk work with ODBC (Postgres) The error that I am getting is "config.c: Realtime mapping for 'sippeers' found to engine 'odbc', but the engine is not available" I really donot know what has went wrong. I have set the ODBC connection properly I have verified it using :: [root@asterisk ~]# echo "select 1 " | isql asterisk