Questions tagged [keepalive]

120 questions
1
vote
3 answers

Can I get a router to call a url on a timer?

I am responsible for a small network spread over several buildings. We have accommodation areas that have a router providing access to the internet to guests. I would love to be able to get the routers to call a URL on the internet which I could…
Toby Allen
  • 747
  • 2
  • 10
  • 23
1
vote
3 answers

Keeping rackspace vserver alive

It appears to me that rackspace somehow freezes cloud VMs after some idle time. This means the first page request to a php page takes much longer to respond than the subsequent requests. I am actually querying a machine with wget from a different…
mit
  • 1,844
  • 6
  • 29
  • 42
1
vote
2 answers

Funnelling http traffic

I have a situation where a large batch of servers (X), on demand, need to request data from a smaller set of web servers (Y). The worst case scenario is if all servers in X decide to fetch different requests to one server in Y. That would be X…
spencer p
  • 11
  • 1
1
vote
1 answer

Keepalived alternative for Solaris 10

We are considering an architecture like the one in the picture for Solaris 10 That is, high avalaibility software load balancers in front of web and application servers. Unfortunately, Keepalived is not available for Solaris at the moment. Is…
fglez
  • 326
  • 4
  • 18
1
vote
3 answers

How can I measure TCP timeout limit on NAT firewall for setting keepalive interval?

A new (NAT) firewall appliance was recently installed at $WORK. Since then, I'm getting many network timeouts and interruptions, especially for operations which would require the server to think for a bit without a response (svn update, rsync,…
jmanning2k
  • 302
  • 2
  • 9
1
vote
1 answer

Show TCP keepalive status in Windows?

Using netstat -to on a Linux system shows the status of tcp keepalive for a socket like this: Proto Recv-Q Send-Q Local Address Foreign Address State Timer tcp6 0 0 192.168.210.114:3389 192.168.10.57:52914 …
T-Me
  • 143
  • 3
1
vote
0 answers

keepalived virtual and real server in different subnets

My goal is to forward the SMTP traffic from one unused server to another using keepalived. The problem is, that the other SMTP server is in different subnet. I have configured keepalive in the following way. virtual_server 192.168.111.111 25 { …
spaceman117X
  • 111
  • 2
1
vote
1 answer

nginx detecting dead clients

Normally when you pull the network cable out of a network device (which simulates some drop on the network, so an obscure disconnect), the underlaying sockets do not detect a disconnect (at least our units don't) so we use keep alive to drop…
Lonko
  • 115
  • 5
1
vote
0 answers

Keepalived VIP not getting updated MAC after failover

I've got keepalived set up on 2 RHEL7.8 VMs to provide HA for a shared VIP. The VIP works and properly switches to each server when expected. I experience two issues related to the MAC not getting updated. Most often Server2 will become Master and…
el_sea
  • 11
  • 2
1
vote
1 answer

Nginx upstream keepalive with SNI

I've got Nginx setup to proxy two subdomains. SNI is used so each subdomain has a different SSL certificate. Nginx setup is roughly: upstream a_example_443 { server 1.2.3.4:443; keepalive 128; keepalive_timeout 180s; } upstream…
Nate
  • 184
  • 1
  • 2
  • 6
0
votes
0 answers

Why nginx keepalive_timeout doesn't work?

I have the nginx-server and I need big keepalive_timeout for my api. In nginx.conf I write keepalive_timeout 300; And run apache benchmark test ab -kc 100 -t 30 http://172.16.31.03/ But after 60 second TIME_WAIT connection are closed.
perrfect
  • 45
  • 1
  • 6
0
votes
0 answers

How to determine if I should use KeepAlive in apache?

I have read several posts and questions about KeepAlive but have not found any suitable for me. I have a server with just one client (Trivago) doing hundreds of (hotel availability) requests per second. For each request, I have to request the price…
Hache_raw
  • 101
  • 2
0
votes
0 answers

keepalived not promoting BACKUP to MASTER in multi-instance configuration

I'm trying to make a multi-instance keepalived to control a master-replica pair of tarantool servers and setup VIPs. Server state itself is managed outside keepalived. Keepalived should only manage VIPs: it should set VIP1 on dummy1 iface in case…
e-pirate
  • 11
  • 4
0
votes
1 answer

Apache2,4 + Prefork + Keep-alive On

I'm trying to speed up a website with a lot of images that are served from a separate subdomain static.example.com (same IP as www.) Using the pingdom tool noticed that first 5-6 requests (on static.example.com) are making full connections…
mj23
  • 1
  • 2
0
votes
2 answers

how to emulate a browser that doesn't have "Keep alive"

I have a remote webserver listening on port 80, which serves a page which loads 100 individual .png files (from the same server and hostname) via 100 tags. On that remote server I do watch -n 1 "netstat -na | fgrep ":80 " | fgrep…
cherouvim
  • 744
  • 3
  • 18
  • 37