0

I have a client that make requests to different servers. Sometimes this servers rejects requests from my IP so I need to change it (I have a few public IPs). I also need to change my IP to make geolocalizated request. I'm trying to make a balance server to redirect the client traffic through different server and to keep a log of IPs being rejected. This is what I have in mind:

Balance server

There would be clients in different networks with different instances of the client. This instances request an output server to the balancer and then all the traffic of clients is redirected through this servers. Output servers could make a connection with the balancer with sockets to say something like "Ey, I'm here. You can use me!". Here I have a silly activity diagram (full of mistakes probably): Activity diagram

Is there a simplest way to do this? Maybe I'm reinventing the wheel. If is a good solution, is if possible to do this with Java/C#? How could I redirect the traffic?

4

1 に答える 1

2

あなたは車輪の再発明を少ししていると思います。あなたが説明しているのは、スティッキーセッション/スティッキーIPモードのロードバランサーです。

あなたが探していることを実行するいくつかのオープン ソース プロジェクト があります。(各単語はそこへのリンクです)

個人的にはLVSプロジェクトをお勧めします

于 2012-07-15T11:21:07.227 に答える