New Geolocation Capabilities in v10.1
With the BIG-IP GTM and 3-DNS products, location-based service has existed in the form of topology-based load balancing. The possibilities grow exponentially in v10.1, as you now have the capabiliti...
Published Feb 19, 2010
Version 1.0JRahm
Admin
Christ Follower, Husband, Father, Technologist. I love community and I especially love THIS community. My background is networking, but I've dabbled in all the F5 iStuff, I'm a recovering Perl guy, and am very much a python enthusiast. Learning alongside all of you in this accelerating industry toward modern apps and architectures.JRahm
Admin
Christ Follower, Husband, Father, Technologist. I love community and I especially love THIS community. My background is networking, but I've dabbled in all the F5 iStuff, I'm a recovering Perl guy, and am very much a python enthusiast. Learning alongside all of you in this accelerating industry toward modern apps and architectures.mfl_60579
Nimbostratus
Aug 16, 2011hi,
i've done a iRule with Geo Routing exception with 2 datagroup to force a country routing :
when CLIENT_ACCEPTED {
if { [class match [IP::client_addr] equals Geo_Exceptions_FR] } {
pool P-GEOFR
return
}
elseif { [class match [IP::client_addr] equals Geo_Exceptions_Other] } {
pool P-GEOOTHER
return
}
switch [whereis [IP::client_addr] country] {
FR { pool P-GEOFR }
default { pool P-GEOOTHER }
}
}