Forum Discussion

Phillip_Ulberg_'s avatar
Phillip_Ulberg_
Icon for Nimbostratus rankNimbostratus
Nov 11, 2009

load balance MSRDP traffic

I just need a basic iRule to dirct incoming requests from 3 vip's to 2 pools. I've done this before with HTTP traffic but not rdp, I'm hoping to re-use an existing iRule, modified of course for MSRDP traffic -

 

 

when HTTP_REQUEST {

 

Check requested host header (set to lowercase)

 

switch [string tolower [HTTP::host]] {

 

"VIP1" {

 

pool TS_2008_Test_Pool

 

}

 

"VIP2" {

 

pool Pool_Review

 

}

 

"VIP3" {

 

pool Pool_Review

 

}

 

}

 

}

 

 

TIA,

 

 

Phillip

21 Replies