We have three public ip gateways and all traffic goes through these gateways. We have grouped internal computers into three groups and each use one gateway. In case of gateway failure we manually / using script change the gateway of that group to any of the working gw in the remaining two.
1) 63.34.54.67
2) 56.34.67.23
3) 62.45.67.34
We use browsers, RDP and chat clients to communicate with outside clients. The problem with manual resetting of gateways is all existing RDP & HTTPS sections needs to be restarted each time. So, now we plan to use Pound Reverse Proxy, Which will detect and reroute existing sessions in case of failure of any of the ips in the ip pool. Actually Pound is used to distribute traffic coming on one public IP into a group of private ips on which the webservers run in the company. But, we plan to configure it in reverse ie. it will listen on one private ip and distribute load on a group of public ips ( our three gateways).
The sample configuration just for http traffic is as follows:
ListenHTTP
Address 192.168.0.10
Port 80
Service
BackEnd
Address 63.34.54.67
Port 80
End
End
Service
BackEnd
Address 56.34.67.23
Port 80
End
End
Service
BackEnd
Address 62.45.67.34
Port 80
End
End
End
Could you please tell me if I can use such a configuration on Pound or any of other Reverse Proxy Servers? Please help.. Any other solutions for that above problem without using Proxy are also appreciated..
Request notifications