@gettaloviasubito wrote:
Hi there,
thanks for you fantastic software.
I have 2 applications server (middleware) where the software listen on different socket for different channel, so the result is that i have 120 different port open from 10000 to 60000
I want to put an HAproxy on head of that, and i google for solution…
i put together something like this:
frontend FRTEST
bind xxx.yyy.zzz.126:10000-60000
mode tcp
default_backend BKTESTbackend BKTEST
stick store-request src
stick-table type ip size 200k expire 120m
option persist
option redispatch
balance roundrobin
server as1 xxx.yyy.zzz.127 (no port means the same port right?)
server as2 xxx.yyy.zzz.128where obv xxx.yyy.zzz.126 is my VIP, and xxx.yyy.zzz.127,128 are my as
is the correct solution?
what is the option like fowardfor for tcp balancing?
thanks!!
Posts: 4
Participants: 2