search for: 3xx

Displaying 20 results from an estimated 62 matches for "3xx".

Did you mean: 3x
2003 Aug 07
1
3xx SIP messages
Hi, Does anyone know if asterisk can handle 3xx SIP responces? I'm trying make it work with redirect server and it looks like asterisk isn't going to send another invite, but treats "302 Moved Temporarily" message as "Everyone is busy". Thanks. Michael
2010 Sep 14
0
3xx redirect response list Noop and capture
Hi, I Just setup asterisk to send SIP calls to a SIP redirect server that response back with a list of destinations, if the first destination is not able to terminate the call, asterisk does not try the second , it just hang up. How can I Noop and capture the list inside the 3xx response?, for storing it and then by using Dial status, I will be able of failover through that list and hang-up only after trying the whole list. This is the approach I figured, but I gladly accept any other suggestion. Thanks in advance. Adrian -------------- next part -------------...
2007 Apr 25
0
Call Parking is slow with park orbit on Snom 3xx / 360
Hi List, I have a client who is using park heavily, but once we hit the cal button (in this a hotkey tied to park orbit on the Snom's), we have a 3 second delay before we here the digit the call is parked on. Is their anyway around this at all? Does anyone know if we have these same delays if using the DTMF digits? Any suggestions would be great! Thanks! -------------- next part
2013 Mar 21
1
Cisco SPA 5xx/3xx/9xx phones don't respond to SIPAddHeader(Call-Info: answer-after=0)
All other phones we work with will auto-answer when we do this: [macro-paging1way] exten => s,1,SIPAddHeader(Call-Info: answer-after=0) exten => s,n,Page(${PAGINGLIST}) exten => s,n, Hangup The SPA phones simply ring. I have verified that Auto Answer Page is set to yes (the default). We've tried a variety of firmware versions and phone ages, going back to an old 942 and new 504s.
2006 Mar 22
3
Remote dialtone
Hi, I have two asterisks connected via IAX2 trunk. The first * use dial prefix 2XX, the second one 3XX. Calls routing works OK. But I don't know how to get dialtone of remote asterisk pbx. I'd like to get dialtone of asterisk #2 after dialing 3 and dialtone of asterisk #1 after dialing 2. I know something about DISA but I'm not sure if it is a right way. Can you give me advice? Thanks...
2006 Mar 24
6
login forms , redirect_to and ajax-scaffold problems
Hi, I have a standard type authentication technique direct from AWDWR, so there is a before_filter :authorize_employee, :except => :login in my employees_controller.rb the authorize_employee is in application.rb def authorize_employee unless session[:employee_id] flash[:notice] = "Please log in" # save the URL the user requested so we can hop
2006 May 17
3
What am I missing?
There''s got to be a simple answer to this... def logout reset_session flash[:notice] = "Logged out" redirect_to :action => ''index'' end The flash never shows up, and doesn''t seem to be in the new session. --Al Evans -- Posted via http://www.ruby-forum.com/.
2003 Feb 27
1
snom phones and redirect
Hello, does anybody suceesfully setup snom phones with sip firmware with asterisk to redirect call when phone is set to redirect if busy/ or allways redirect ? My console says : chan_sip.c Line 3000 (handle response) Dunno anything about a 302 Moved Temporarily from SIP... regards Marian -- SUNTEQ s. r. o. Bojnicka cesta 35 # Prievidza # 971 04 # Slovak republic Tel: +421-46-5430 754 #
2005 Jun 15
1
[Help] ZT_CHANCONFIG failed on channel 25
Hi, I a new user of asterisk, I'm trying to in install zaptel drivers on my ISDN card Digium Tiger 3xx TE110P. And my configuration is # # Zaptel Configuration File # span=1,1,0,ccs,hdb3 bchan=1-15,17-31 dchan=16 loadzone = it ; ; ; Zapata Configuration file ; [channels] immediate=no switchtype=EuroISDN signalling=pri_cpe pridialplan=unknown context=incoming usecallerid=yes group=1 channel =>...
2019 Jan 27
1
[PATCH] update known chipsets list
...uot;NV4x" }, { "GeForce 7", "G7x" }, { "GeForce 8", "G8x" }, - { "GeForce GTX 200", "NVA0" }, - { "GeForce GTX 400", "NVC0" }, + { "GeForce 9", "G9x" }, + { "GeForce GTX 2xx/3xx", "GT2xx" }, + { "GeForce GTX 4xx/5xx", "GFxxx" }, + { "GeForce GTX 6xx/7xx", "GKxxx" }, + { "GeForce GTX 9xx", "GMxxx" }, + { "GeForce GTX 10xx", "GPxxx" }, { NULL, NULL} }; -- 2.19.2
2005 May 11
2
PRI QSIG and legacy toshiba intergration
...ion dollars worth of Trashiba's finest ... I download Asterisk for free... I now refer to it as legacy 18 months and 300 extensions later! Anyway, I am trying to integrate my dial plans acrossed platforms. PSTN>>>CTX670>>>Asterisk The dialplan I would like to setup, 1xx,2xx,3xx,7xxx to the CTX 670 4xx,6xxx to a remote ctx100 (this is setup using QSIG ISDN on a PRI tie line) now I would like to have 8xxx going to asterisk All of my incoming calls would be handled by the ctx670, mostly on DNIS equipted lines. If the user dials a four digit extension starting with "8&qu...
2007 Aug 01
3
Slightly OT: SNOM & PoE
...y sensitive to lower-end network equipment, presumably with PoE only aggravating the problem. Question is, what are people using today to deploy PoE, and more importantly, PoE to SNOM phones? I believe the model we're working with is the SR224P from Linksys, and the entire model line of SNOM (3XX) Could anybody recommend some well-used/tested PoE equipment that you've found successful in your SNOM envionment? Looking for density of 24-ports plus, and ideally some lower end and higher end equipment, to satisfy the needs of the wide variety of customers we do business with? Thanks, an...
2005 May 17
1
One * server unavailable when multiple servers connected together
Hello. I was just brainstorming for a future project and was hoping to get some creative ideas from the list. If I have multiple * servers at multiple locations all connected together with a nicely partitioned dialplan (2XX for office 1, 3XX for office 2, etc.) it's pretty straightforward to link them all using IAX and allow intra-office transfers. Further, servers at each location are necessary because access to the PSTN is required in all offices. However, what do people do if a connection to one or more servers is down. Let...
2006 Mar 20
16
Secret URLs and file downloads
...). Then they are only allowed to download the file if they are logged in and the secret matches. Otherwise, anybody could simply point to http://.../example.pdf and download the file, whether logged in or not. I could do this with redirect_to I believe, but as far as I know that just sends a 3xx redirect to the browser which would point to the real file. Is there any easy way to do this? Cheers. -- Posted via http://www.ruby-forum.com/.
2003 Jun 26
4
Asterisk, IAX and NAT issue
...On the one behind the router I have an X100P card installed for PSTN connections. In the local LAN of each PBX they are several hardware IP phones (Cisco 7960 and 7940 with SIP images, firmware image P0S3-04-4-00.bin). I have defined the following extension in the one behind the NAT: exten => _3XX,1,Dial(IAX/apbx@x.y.z.u/${EXTEN}) exten => _3XX,2,Hangup exten => _3XX,102,Hangup where x.y.z.u is the IP address of the PBX directly connected to the internet. apbx is the IAX user defined on that PBX in iax.conf file like that: [apbx] type=user username=apbx auth=plaintext permit=n.n.n.n/...
2011 Mar 09
7
[Opinion Request] SIP phones that work well with Asterisk
Hi, Would you recommend some standalone SIP phones that work well with Asterisk? Personal experience preferred. Thanks, -- Raj
2004 Jul 26
6
New Beta version of Grandstream Firmware 1.0.5.9
...xx when local call features are enabled If a symmetric NAT is detected, still use mapped IP:port instead of using private IP. Allow access to 486's Web server using the WAN side IP from LAN port Send ACK to the server in stead of per Contact header upon receiving 3xx response to an INVITE.
2009 Jan 27
6
More than 2TB RAID...
Hi, I just received a new server (HP DL180G5) with 12x 1TB HDs and I bumped into fdisks 2TB limits... Since this is an entry level server, I can't use the classic HP bootable utilities to create smaller volumes et can only create a big RAID6. I found out that: using parted, labelling it gpt and creating the partitions would do the trick. But, what about grub? I read that it does not support
2007 Apr 03
8
FastCGI performing better than Mongrel - what am I doing wrong?
I tried benchmarking the same site behind an NGINX proxy with both fastcgi and mongrel, and for some reason mongrel is performing pretty poorly in comparison. Any idea what I might be doing wrong? Here''s my benchmarks for 1 fcgi: Server Software: nginx/0.4.0 Server Hostname: eship.com.br Server Port: 80 Document Path: / Document Length: 95
2015 Sep 26
0
Configure NUT slaves for D-Link 320 ShareCenter NUT master
I was able to root the NAS using this howto[1] - from a rather sketchy blog, full of clickbaits - and found out the default configuration: [root] password = 123 upsmon master [client] password = 123 upsmon slave I bet these are the defaults for every DNS-3xx series out there. I wonder why they did not put the info on the manual. I?m posting this for the ?future generations?.. In case anyone else needs to enable this. Now ?upsmon? works fine: Sep 26 10:28:42 galois upsmon[10102]: Signal 15: exiting Sep 26 10:28:42 galois upsmon[10100]: upsmon parent: r...