The i-Technology Media!
Register | Log in
   
 
.NET  ·  AJAX  ·  CLOUD  ·  ECLIPSE  ·  FLEX  ·  OPEN WEB  ·  iPHONE  ·  JAVA  ·  LINUX  ·  OPEN SOURCE  ·  ORACLE  ·  PBDJ  ·  SEARCH  ·  SILVERLIGHT  ·  SOA  ·  VIRTUALIZATION  ·  WEB 2.0  ·  WIRELESS  ·  XML
Comments
Drool, Britannia? Is the UK Failing the Cloud?
By Roger Strukhoff
Richard Davies wrote: The UK has a good crop of technology pioneers in cloud computing - for example ElasticHosts, FlexiScale, Flexiant, OnApp - and also some strong government initiatives such as G-Cloud. We will have to see whether this kind of technical leadership converts into swift mass-market adoption or not.
Jan. 8, 2012 11:38 AM EST
read more & respond »
Cloud Expo on Google News
Did you read today's front page stories & breaking news?

Cloud Expo & Virtualization 2011 West
Keynotes
Oracle
Opening Keynote | An Enterprise Cloud for Business-Critical Applications
Abiquo
Day 2 Keynote | The Enterprise Cloud Tightrope - Balancing for Success
Akamai
Day 3 Keynote | The DNA of an Enterprise Cloud
DIAMOND SPONSOR:
Oracle
Many Clouds, Many Choices'Cloud
PLATINUM PLUS SPONSORS:
Abiquo
Enterprise Cloud Best Practices - Town Hall - Join the discussion…
PLATINUM SPONSORS:
Intel
Progressing Toward the Federated, Automated and Client-Aware Cloud
New Relic
How to build an app with Twitter-like throughput
Rackspace
Computing in the Cloud Era
GOLD SPONSORS:
Gale Technologies
Practical Cloud Migration
IBM
Re-think IT. Re-inventing Business.
Intel/McAfee
Identity Driven Security in the Cloud
PerspecSys
Hackers Hackers Everywhere, Is My Public Cloud That Safe?
Red Hat
Unlock the Value of the Cloud
SHI
Mission Critical Applications and the Cloud - Myth or Reality?
SoftLayer
Not Your Grandpa's Cloud
Terremark
Integrating Enterprise Clouds
VMware
Upgrade to a vCloud
POWER PANELS:
Cloud Expo Silicon Valley: CTO Power Panel
Cloud Expo Silicon Valley: CEO Power Panel
Cloud Expo Silicon Valley: Cloud SuperStars Panel
Cloud Expo Silicon Valley: CloudNOW Panel
Click For 2010 West
Event Webcasts
Cloud Expo & Virtualization 2011 East
DIAMOND SPONSOR:
Dell
Dell & VMware Deliver the Enterprise Hybrid Cloud
PLATINUM PLUS SPONSORS:
Abiquo
Are Financial Services Organizations Risking Security by Avoiding Cloud Computing?
Oracle
From Consolidation to Enterprise Private PaaS
PLATINUM SPONSORS:
Intel
Driving the Transformation to Next Generation Cloud Data Centers
Rackspace
The Inevitability of an Open Cloud
GOLD SPONSORS:
CA Technologies
Follow YOUR path to Cloud Computing
Interxion
Who Keeps the Cloud in the Air?
Microsoft
Patterns for Cloud Computing
PerspecSys
War in the Clouds: Are you ready?
ServiceMesh
The Big Win: Stop Playing Small-Ball with Your Cloud Strategy
Terremark
Evaluating Enterprise Clouds
Xiotech
Cloud Storage: Myths and Realities
POWER PANELS:
Cloud Expo New York: CTO Power Panel
Cloud Expo New York: CEO Power Panel
Cloud Expo New York: CMO Power Panel
Cloud Expo New York: Wrap-Up Power Panel
Click For 2010 West
Event Webcasts
Live Google News by SYS-CON!
Top Three Links You Must Click On


20 Lines or Less #26

By: Colin Walker
Jul. 23, 2009 04:45 PM

What could you do with your code in 20 Lines or Less? That's the question I ask (almost) every week for the devcentral community, and every week I go looking to find cool new examples that show just how flexible and powerful iRules can be without getting in over your head.

This week we’ve got more cool iRules toys to show off. That’s not the impressive part, the impressive part is that only two of the three examples are from hoolio.  I know, right?  Joking aside, a huge thank you to hoolio for his astounding contributions to the community, and to everyone else that’s out there posting questions, answers and examples of what iRules, iControl and all the other F5 technologies can do.

Okay, love-fest out of the way, let’s iRule…

Nested URI Rewriting

http://devcentral.f5.com/Default.aspx?tabid=53&forumid=5&postid=60448&view=topic

In this example hoolio shows how you can use a switch statement to simplify performing a couple of URI rewrites based on the hostname.  The example is a clean way to achieve something that can quickly get messy and hard to debug when using if/else chains.

 when HTTP_REQUEST { 
switch [string tolower [HTTP::host]] {
"keyaccount.company.com" {
# Rewrite / to /path/path/index.html
if {[HTTP::path] eq "/"}{
HTTP::uri "/path/path/index.html"
}

# Rewrite host header to keyaccount.othercompany.com
HTTP::header replace Host "keyaccount.othercompany.com"

# Use pool1
pool pool1
}
"keyaccount.company.com" {
# Rewrite / to /path/path/index.html
if {[HTTP::path] eq "/"}{
HTTP::uri "/path/path/index.html"
}

# Rewrite host header to keyaccount.othercompany.com
HTTP::header replace Host "keyaccount.othercompany.com"

# Use pool1
pool pool1
}
default {
# Take some default action for other host header values?
}
}
}

 

Partial Hostname Rewrite

http://devcentral.f5.com/Default.aspx?tabid=53&forumid=5&postid=60325&view=topic

User cmbhatt chimed in with a solid response to a request looking for hostname re-writing.  Rather than perform some more complex splitting, lreplacing and joining he makes use of the string map command to reduce the complexity and number of steps. This one’s another good example of making something that’s easy to read, useable and portable.

 when HTTP_REQUEST {  
if { [matchclass [string to lower [HTTP::header "User-Agent"]] contains $::useragent_list ] } {
HTTP::redirect "http://[string map -nocase {"www." "m." } [HTTP::host]][HTTP::uri]"
} else {
HTTP::redirect "http://[string map -nocase {"www." "www2." } [HTTP::host]][HTTP::uri]"
}
}

 

IP based login control via iRules

http://devcentral.f5.com/Default.aspx?tabid=53&forumid=5&postid=60333&view=topic

Hoolio’s back (shocking) with another awesome example.  His response to player’s request for some user access control guidance resulted in a good look at how you can use a simple iRule to make quick work of login restrictions.  This is a great way to allow only certain people access to given areas of a site.

when HTTP_REQUEST { 

    # Check requested path
    if {[string tolower [URI::decode [HTTP::path]]] eq "/web/admin.aspx"}{ 

       # Check login parameter value
       if {[URI::query [HTTP::uri] "login"] eq "1"}{ 

          # Request to restricted resource.  Check if client IP is not 1.1.1.1
          if {not ([IP::addr [IP::client_addr] equals 1.1.1.1])}{ 

             # Take some action to prevent request? 

             # Rewrite login=1 to login=2 
             #HTTP::uri [string map {login=1 login=2} [HTTP::uri]]

         # Redirect client to rewritten URI? 
             #HTTP::redirect [string map {login=1 login=2} [HTTP::uri]]
          } 
       } 
    }
}

There they are for this week, three more examples of iRule foo in less than 21 lines of code. Check out more 20 Lines or Less posts here.

Technorati Tags: 20LoL,DevCentral,F5,iRules,20 Lines or Less,Colin Walker

#Colin


Categories: DevCentral , iRules 

Read the original blog entry...

Published Jul. 23, 2009— Reads 540
Copyright © 2009 SYS-CON Media, Inc. — All Rights Reserved.
Syndicated stories and blog feeds, all rights reserved by the author.
About Colin Walker
Coming from a *Nix Software Engineering background, Colin is no stranger to long hours of coding, testing and deployment. His personal experiences such as on-stage performance and the like have helped to foster the evangelist in him. These days he splits his time between coding, technical writing and evangalism. He can be found on the road to just about anywhere to preach the good word about ADCs, Application Aware networking, Network Side Scripting and geekery in general to anyone that will listen.

Colin currently helps manage and maintain DevCentral (http://devcentral.f5.com). He is also a contributor in many ways, from Articles to Videos to numerous forum posts, to iRules coding and whatever else he can get his hands on that might benefit the community and allow it to continue to grow.

Subscribe to the World's Most Powerful Newsletters
Subscribe to Our Rss Feeds & Get Your SYS-CON News Live!
Click to Add our RSS Feeds to the Service of Your Choice:
Google Reader or Homepage Add to My Yahoo! Subscribe with Bloglines Subscribe in NewsGator Online
myFeedster Add to My AOL Subscribe in Rojo Add 'Hugg' to Newsburst from CNET News.com Kinja Digest View Additional SYS-CON Feeds
Publish Your Article! Please send it to editorial(at)sys-con.com!

Advertise on this site! Contact advertising(at)sys-con.com! 201 802-3021

SYS-CON Featured Whitepapers

ADS BY GOOGLE

Breaking Java News
GOOD MORNING
POWERVAR Will Release the Mobile Power Manager (MPM) at the Upcoming HIMSS '12 Annual Conference
EVE CINA First Shown at London Fashion Week
Post No Bills or Murals

ADVERTISE   |   MAGAZINE SUBSCRIPTIONS   |   FREE BREAKING-NEWSLETTERS!   |   SYS-CON.TV   |   BLOG-N-PLAY!   |   WEBCAST   |   EDUCATION   |   RESEARCH

.NET Developer's Journal - .NETDJ   |   ColdFusion Developer's Journal - CFDJ   |   Eclipse Developer's Journal - EDJ   |   Enterprise Open Source Magazine - EOS
Open Web Developer's Journal - OPENWEB   |   iPhone Developer's Journal - iPHONE   |   Virtualization - Virtualization   |   Java Developer's Journal - JDJ   |   Linux.SYS-CON.com
PowerBuilder Developer's Journal - PBDJ   |   SEO / SEM Journal - SJ   |   SOAWorld Magazine - SOAWM   |   IT Solutions Guide - ITSG   |   Symbian Developer's Journal - SDJ
WebLogic Developer's Journal - WLDJ   |   WebSphere Journal - WJ   |   Wireless Business & Technology - WBT   |   XML-Journal - XMLJ   |   Internet Video - iTV
Flex Developer's Journal - Flex   |   AJAXWorld Magazine - AWM   |   Silverlight Developer's Journal - SLDJ   |   PHP.SYS-CON.com   |   Web 2.0 Journal - WEB2
Apache   |   CMS   |   CRM   |   HP   |   Oracle Journal   |   Perl   |   Python   |   Red Hat   |   Ruby on Rails   |   SAP   |   SaaS

SYS-CON MEDIA:   ABOUT US   |   CONTACT US   |   COMPANY NEWS   |   CAREERS   |   SITE MAP
SYS-CON EVENTS:   |  AJAXWorld Conference & Expo  |  iPhone Developer Summit  |  Cloud Computing Conference & Expo  |  SOA World Conference & Expo  |  Virtualization Conference & Expo
INTERNATIONAL SITES:   India  |  U.K.  |  Canada  |  Germany  |  France  |  Australia  |  Italy  |  Spain  |  Netherlands  |  Brazil  |  Belgium
 Terms of Use & Our Privacy Statement     About Newsfeeds / Video Feeds
Copyright ©1994-2008 SYS-CON Publications, Inc. All Rights Reserved. All marks are trademarks of SYS-CON Media.
Reproduction in whole or in part in any form or medium without express written permission of SYS-CON Publications, Inc. is prohibited.
 
close this window