similar to: Failover / modifying response time

Displaying 20 results from an estimated 10000 matches similar to: "Failover / modifying response time"

2006 May 25
4
Failover Problem
I have a weird situation. A polycom phone is configured to use system pbx1 as the primary outgoing 'proxy', followed by systems pbx3 and pbx2. All three systems have identical sip.conf files. The phone is registered on pbx1. I shut down the Asterisk application on pbx1. I make a call. The phone sends an INVITE to pbx2. Pbx2 sends back a 407 Proxy Auth message to the phone. The phone sends
2005 Jul 20
2
SIP phone failover using DNS SRV?
Has anyone successfully had a SIP phone fail over from Asterisk Server A to Server B using DNS SRV? If so, which phone worked for you? I'm assuming you set up your DNS SRV records so that the IP addresses of A and B are associated with the same name, and both servers have equal priority and equal weight. In order to make calls through B after A goes down, do you have to wait as long as the
2009 Aug 13
4
Snom Phones Registration/Failover Feature
Hello Mailinglist, i was reading a paper regarding a Asterisk clustering solution and they where pretty excited about a feature in polycom phones: You can add a registration to a primary asterisk server You can add a registration to a secondary asterisk server The polycom phones will talk to the primary server as long as all goes well, If they have a problem with an INVITE, they
2009 Nov 11
2
Asterisk keeps sending invite to sip phone "No response to critical packet"
Hi there I am wondering if anybody can help me illuminate a problem I am having with my asterisk installation. I am using: - IP phone (Siemens gigaset S685IP) behind a modem/router that has ports udp 5060 and 10000:10100 forwarded to the static ip of the IP phone (192.168.0.3). This has to go to: - modem that operates in half bridge mode (no nat) to a linux firewall (does natting ip is
2006 Jan 26
4
Problems in Dead Gateway Detection / Failover - Multiple ISP Links
Hello, I have configured a load balancing router using Julian''s patches and as described in "nano.txt" for two ISP links as shown below. ISP 1 ISP 2 . . | | | | | | | WAN
2014 Sep 03
4
(no subject)
Hello asterisk-users, Just compiled and installed 11.12.0 however when I try to connect with rasterisk I get: Unable to connect to remote asterisk (does /var/run/asterisk/asterisk.ctl exist?) It seems that asterisk.ctl is not created. -------------- next part -------------- An HTML attachment was scrubbed... URL:
2011 Nov 25
1
android won't play wav49: how to change format
android email will not play wav49 file attachments. See: http://code.google.com/p/android/issues/detail?id=1712 Now I'm getting a lot of pressure to change the format used in voicemail. Here's what I've got: format = wav49|gsm I'd like to change it to format = gsm|wav49, but the voicemail.conf.sample says "Don't Change the Format Unless You REALLY Know What
2010 Sep 18
0
no failover with failover MDS
Hi all, we have two servers A, B as a failover MGS/MDT pair, with IPs A=10.12.112.28 and B=10.12.115.120 over tcp. When server B crashes, MGS and MDT are mounted on A. Recovery times out with only one out of 445 clients recovered. Afterwards, the MDT lists all its OSTs as UP and in the logs of the OSTs I see: Lustre: MGC10.12.112.28 at tcp: Connection restored to service MGS using nid
2009 Apr 06
1
SIP Registration and INVITE question
I have an ITSP we are trying to work with that has an "Unusual" way of working, but that said my understanding of their behaviour is that it is fully RFC compliant. Can someone suggest how I might be able to interoperate under these circumstances: We register fine with them, and send the default asterisk Contact: header of: Contact: <sip:s at x.x.x.x> This then causes ALL
2018 Apr 22
1
[PATCH v7 net-next 2/4] net: Introduce generic failover module
On Thu, Apr 19, 2018 at 06:42:02PM -0700, Sridhar Samudrala wrote: > +#if IS_ENABLED(CONFIG_NET_FAILOVER) > + > +int failover_create(struct net_device *standby_dev, > + struct failover **pfailover); Should we rename all these structs net_failover? It's possible to extend the concept to storage I think. > +void failover_destroy(struct failover *failover); > + > +int
2018 May 07
2
[PATCH net-next v10 2/4] net: Introduce generic failover module
On Mon, 7 May 2018 15:10:44 -0700 Sridhar Samudrala <sridhar.samudrala at intel.com> wrote: > +static struct net_device *net_failover_get_bymac(u8 *mac, > + struct net_failover_ops **ops) > +{ > + struct net_device *failover_dev; > + struct net_failover *failover; > + > + spin_lock(&net_failover_lock); > + list_for_each_entry(failover,
2018 May 07
2
[PATCH net-next v10 2/4] net: Introduce generic failover module
On Mon, 7 May 2018 15:10:44 -0700 Sridhar Samudrala <sridhar.samudrala at intel.com> wrote: > +static struct net_device *net_failover_get_bymac(u8 *mac, > + struct net_failover_ops **ops) > +{ > + struct net_device *failover_dev; > + struct net_failover *failover; > + > + spin_lock(&net_failover_lock); > + list_for_each_entry(failover,
2018 May 25
2
[PATCH net-next v12 2/5] netvsc: refactor notifier/event handling code to use the failover framework
On Thu, 24 May 2018 09:55:14 -0700 Sridhar Samudrala <sridhar.samudrala at intel.com> wrote: > --- a/drivers/net/hyperv/Kconfig > +++ b/drivers/net/hyperv/Kconfig > @@ -2,5 +2,6 @@ config HYPERV_NET > tristate "Microsoft Hyper-V virtual network driver" > depends on HYPERV > select UCS2_STRING > + select FAILOVER When I take a working kernel config, add
2018 May 25
2
[PATCH net-next v12 2/5] netvsc: refactor notifier/event handling code to use the failover framework
On Thu, 24 May 2018 09:55:14 -0700 Sridhar Samudrala <sridhar.samudrala at intel.com> wrote: > --- a/drivers/net/hyperv/Kconfig > +++ b/drivers/net/hyperv/Kconfig > @@ -2,5 +2,6 @@ config HYPERV_NET > tristate "Microsoft Hyper-V virtual network driver" > depends on HYPERV > select UCS2_STRING > + select FAILOVER When I take a working kernel config, add
2019 Apr 09
0
[PATCH net v8] failover: allow name change on IFF_UP slave interfaces
On 4/8/2019 4:45 PM, Si-Wei Liu wrote: > When a netdev appears through hot plug then gets enslaved by a failover > master that is already up and running, the slave will be opened > right away after getting enslaved. Today there's a race that userspace > (udev) may fail to rename the slave if the kernel (net_failover) > opens the slave earlier than when the userspace rename
2018 May 02
1
[PATCH net-next v9 2/4] net: Introduce generic failover module
On Wed, May 02, 2018 at 10:51:12AM -0700, Samudrala, Sridhar wrote: > > > On 5/2/2018 9:15 AM, Jiri Pirko wrote: > > Sat, Apr 28, 2018 at 11:06:01AM CEST, jiri at resnulli.us wrote: > > > Fri, Apr 27, 2018 at 07:06:58PM CEST, sridhar.samudrala at intel.com wrote: > > [...] > > > > > > > > + > > > > + err =
2019 Apr 11
0
[PATCH net v8] failover: allow name change on IFF_UP slave interfaces
From: Si-Wei Liu <si-wei.liu at oracle.com> Date: Mon, 8 Apr 2019 19:45:27 -0400 > When a netdev appears through hot plug then gets enslaved by a failover > master that is already up and running, the slave will be opened > right away after getting enslaved. Today there's a race that userspace > (udev) may fail to rename the slave if the kernel (net_failover) > opens the
2011 Jul 13
7
Extraer datos mensuales de una serie temporal
Hola a todos Estoy intentando extraer un subconjunto de datos de una serie temporal, concretamente quiero extraer los meses de verano de varios aƱos pero no encuentro la manera. Los datos tienen este formato: FECHA;H_SOLAR;DIR_M;DIR_S;VEL_M;VEL_S;VEL_X;U;V;TEMP_M;HR;BAT;PRECIP;RAD;UVA;UVB;FOG;GRID;
2016 Oct 11
2
a question about tdb record backup for ctdb failover
sun yekuan via samba <samba at lists.samba.org> writes: > OK, thank you! I have another question: > > what the current CTDB have done for transparent failover ? achieved fully or partially? > if CTDB has not achieved fully, what else we should do ? Fully transparent failover not only a ctdb task. Samba is involved too. We need persistent file handles with guarantees, a task
2020 Feb 10
2
ctdb failover interrupts Windows file copy
Hello, We have setup ctdb+Samba v 4.11.1 and testing with Windows client and failover works mostly ok. However when using regular Windows file copy, the copy operation is interrupted during ip takeover. Is there any solution to make the failover transparent to Windows file copy ? I understand that SMB2 durable handles should not be used in a clustered setup, and SMB3 persistent handles +