Forum Discussion

Daniel_Ao_10370's avatar
Daniel_Ao_10370
Icon for Nimbostratus rankNimbostratus
Apr 15, 2009

About Wide IP

I have one BIGIP 3600 (with GTM and LTM). Below is my scenario.

 

 

1. This BIGIP direct connects to the Internet.

 

2. Only one Public IP can be used.

 

3. BIGIP has two Wide IP (www.abc.com and www.def.com)

 

4. There are two web servers (web1 and web2) behind BIGIP and both web servers must be listen port 80 for http traffic.

 

5. www.abc.com will forward http traffic to web1 and www.def.com will forward http traffic to web2.

 

6. Both www.abc.com and www.def.com will be resolved to IP 1.1.1.1 and listen tcp port 80.

 

 

Is it possible to implement the above scenario using BIGIP??

 

1 Reply

  • You should be able to accomplish this with a rule on your 1.1.1.1 virtual that looks at the hostname and decides which pool to use based on that.

     
     when HTTP_REQUEST { 
       if { [HTTP::host] equals "www.abc.com" } { 
         pool web1_pool 
        } else { 
         pool web2_pool 
        } 
     } 
     

    Or you could put in an explicit check for www.def.com as well and then discard if it didn't match either one..

    Denny