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
Joined January 20, 2005
JRahm
Admin
Joined January 20, 2005
mfl_60579
Aug 16, 2011Nimbostratus
hi,
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 }
}
}