Forum Discussion
LillyM_9417
Oct 06, 2011Altostratus
Version 11
In version 11, there is another properties which name is " Initial Retransmission Timeout Base
Multiplier for SYN Retransmission".
Is there anyone knows what is the exact function/meaning o...
Hi,
To achieve that, you need :
- a defaut gateway pool with 2 members (router ISP1 , router ISP2) = pool_out
- a pool with the same members but with "priority group activation" "less than 1 members" and a priority group value higher for th one you want) = pool_priority1
- a virtual server (vs_out) with default pool pool_out and an iRule
when LB_SELECTED {
switch [IP::remote_addr] {
"10.10.10.100" {
LB::reselect pool pool_priority1
}
default {
what ever you want
}
}
}
I don't know for the bandwidth limit.
Hope this help.
Regards,
Fred