we need to implement below requirement can any one suggest how to imlement it
1.Sticky command
Once a connection is opened to a physical server, any requests coming from a particular client always go to that server, until either the timeout is reached or the user session is terminated
2.Client-assigned load balancing
All requests coming from a specific client always go to the same physical server. This is done through recognition of the clients IP address.
3.User session restrictions
User name / IP session restriction based on parameter values(ie only 1 user can login at a time).
Please find the below config
service test1
ip address 10.8.1.25
protocol tcp
keepalive type http
keepalive port 80
active
service test2
ip address 10.8.1.26
protocol tcp
keepalive type http
keepalive port 80
active
content DSS-R1
protocol tcp
vip address 10.8.1.1
port 80
advanced-balance sticky-srcip-dstport
add service test1
add service test2
active
please suggest me how to implement all three points whereas point 3 is very crucial & urgent.