Forum Discussion

A__N_5261's avatar
A__N_5261
Icon for Nimbostratus rankNimbostratus
Feb 02, 2012

VS and pool member are in different port

Hi All,

 

 

 

We have pool member which listening on 8080 and Can i create VS with port 80.

 

 

What extra config we need to do . if it is possible

 

 

 

 

Thanks

 

A.N
  • it should be fine.

    e.g.

    [root@ve1023:Active] config  b virtual bar list
    bvirtual bar {
       snat automap
       pool foo
       destination 172.28.19.79:80
       ip protocol 6
       profiles {
          http {}
          tcp {}
       }
    }
    [root@ve1023:Active] config  b pool foo list
    pool foo {
       members 200.200.200.101:8080 {}
    }
    
    [root@ve1023:Active] config  curl -I http://172.28.19.79/
    HTTP/1.1 200 OK
    Date: Thu, 02 Feb 2012 11:35:17 GMT
    Server: Apache/2.2.3 (CentOS)
    Last-Modified: Fri, 11 Nov 2011 14:48:14 GMT
    ETag: "4183e4-3e-9c564780"
    Accept-Ranges: bytes
    Content-Length: 62
    Content-Type: text/html; charset=UTF-8
    
    
  • Without SNAT enable . will it work ?yes if return traffic passes through bigip e.g. bigip is default gateway of pool member.

     

     

    if not, snat is needed to force return traffic going to bigip before sending back to client.