Forum Discussion

Sekhar's avatar
Sekhar
Icon for Nimbostratus rankNimbostratus
Mar 03, 2015

configuring Pools on Management port

I have a back end server running on port 7580, but my user wants my pool to be configured on port 11000, which is his management port. He wants all the http/https traffic for the server to listen on port 11000. so i have configured the VIP which is shown below

 

destination a.b.c.d:https ip-protocol tcp mask 255.255.255.255 pool PL_Prod_test profiles { SSL_test { context serverside } SSL_Test_client { context clientside } http { } tcp-lan-optimized { context serverside } tcp-wan-optimized { tmsh context clientside } } source 0.0.0.0/0 source-address-translation { type automap } vs-index 884 and pool as

 

members { ddibc02:irisa { address h.g.f.e session monitor-enabled state up } } monitor gateway_icmp }

 

when i am assigning tcp monitor or custom tcp monitor with port 7580, it is marking down. only gateway-icmp is working. but with gateway icmp whrn i try to access the page it is not showing up. Am i configuring anything wrong? Please help me finding the issue.

 

Thanks,

 

sekhar

 

1 Reply

  • Hi sekhar,

    your poolmembers are configured to listen on port 11,000:
     grep -i 'irisa' /etc/services
    irisa           11000/tcp                        IRISA
    irisa           11000/udp                        IRISA
    

    If the service works fine on this port, you can use a plain tcp or tcp_half_open monitor to health check.

    The monitor will automatically pick the configured port of the pool member to connect to.

    Thanks, Stephan