For example, traffic arrives at a VIP on port 80 and will then be redirected to the servers on port 10000? Can something like this be realised using aflex?
When you create a VIP that listens to port 80 and bind it to a service-group that has only servers with port 10000 in it, that will already happen.
Let's say you have 3 real servers... and the service group has:
member server1:100 member server2:200 member server3:300
when you bind this service-group to the vip on port 80, the connections will be distributed over these servers on the specified ports. so 80->100 for server 1, 80->200 for server2 etc.
Comments
Let's say you have 3 real servers...
and the service group has:
member server1:100
member server2:200
member server3:300
when you bind this service-group to the vip on port 80, the connections will be distributed over these servers on the specified ports. so 80->100 for server 1, 80->200 for server2 etc.
Many thanks for your quick reply!
This sounds perfekt.
Didn't think it could be that easy