Problem
How to do HTTP URL based load balancing on F5.
Solution and demonstration
This is an iRule script that inspects the HTTP GET URL string to decided where to load balance it: https://github.com/rtomaszewski/f5/blob/master/lb-based-on-url.tcl.
Create default pool
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# default pool | |
create ltm pool pool-vip-80 | |
modify ltm pool pool-vip-80 members add { 1.1.1.1:80 { session disabled state down } } | |
modify ltm pool pool-vip-80 monitor http | |
# let' add some cloud servers manually | |
modify ltm pool pool-vip-80 { members add { 10.208.1.1:80 } } | |
# use the Rackconnect metadata feature | |
# http://www.rackspace.com/knowledge_center/article/using-dedicated-load-balancers-with-rackconnect | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# http vip | |
create ltm virtual vs-vip-80 destination 192.168.199.111:http | |
modify ltm virtual vs-vip-80 { profiles replace-all-with { tcp { } } } | |
modify lmt virtual vs-vip-80 { profiles add { http } } | |
modify ltm virtual vs-vip-80 { pool pool-vip-80 } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
create ltm pool pool-vip-80-url1 | |
modify ltm pool pool-vip-80-url1 members add { 1.1.1.1:80 { session disabled state down } } | |
modify ltm pool pool-vip-80-url1 monitor http | |
modify ltm pool pool-vip-80-url1 { members add { ip:port } } | |
create ltm pool pool-vip-80-url2 | |
modify ltm pool pool-vip-80-url2 members add { 1.1.1.1:80 { session disabled state down } } | |
modify ltm pool pool-vip-80-url2 monitor http | |
modify ltm pool pool-vip-80-url2 { members add { ip:port } } | |
create ltm pool pool-vip-80-url3 | |
modify ltm pool pool-vip-80-url3 members add { 1.1.1.1:80 { session disabled state down } } | |
modify ltm pool pool-vip-80-url3 monitor http | |
modify ltm pool pool-vip-80-url3 { members add { ip:port } } |
Testing
To verify that our iRule is working properly we can enable debugging by changing the iRule variable DEBUG to 1.
Next we can simulate traffic
curl -v http://vip/
curl -v http://vip/url1
curl -v http://vip/url2
curl -v http://vip/url3
And watch the logs on the lb.
tail -f /var/log/ltm
Mar 2 15:49:37 local/tmm1 info tmm1[5232]: Rule rule-url-lb-vip-80 <HTTP_REQUEST>: '11.22.33.44': HTTP::uri eq /
Mar 2 15:49:37 local/tmm1 info tmm1[5232]: Rule rule-url-lb-vip-80 <HTTP_REQUEST>: '11.22.33.44': sent traffic to pool pool-vip-80
Mar 2 15:49:37 local/tmm info tmm[5231]: Rule rule-url-lb-vip-80 <HTTP_REQUEST>: '11.22.33.44': HTTP::uri eq /url1
Mar 2 15:49:37 local/tmm info tmm[5231]: Rule rule-url-lb-vip-80 <HTTP_REQUEST>: '11.22.33.44': sent traffic to pool pool-vip-80-url1
Mar 2 15:49:37 local/tmm1 info tmm1[5232]: Rule rule-url-lb-vip-80 <HTTP_REQUEST>: '11.22.33.44': HTTP::uri eq /url2
Mar 2 15:49:37 local/tmm1 info tmm1[5232]: Rule rule-url-lb-vip-80 <HTTP_REQUEST>: '11.22.33.44': sent traffic to pool pool-vip-80-url2
Mar 2 15:49:37 local/tmm1 info tmm1[5232]: Rule rule-url-lb-vip-80 <HTTP_REQUEST>: '11.22.33.44': HTTP::uri eq /url3
Mar 2 15:49:37 local/tmm1 info tmm1[5232]: Rule rule-url-lb-vip-80 <HTTP_REQUEST>: '11.22.33.44': sent traffic to pool pool-vip-80-url3
Reference
https://devcentral.f5.com/wiki/iRules.HomePage.ashx
No comments:
Post a Comment