Forum Discussion

Inder's avatar
Inder
Icon for Nimbostratus rankNimbostratus
May 28, 2019

ConnectionLimit Not Found

Hi, 

I have been facing this issue:

 

I am using below URL (for iControl REST) to obtain Connection Limit for a member (or web server) under a specific Partition and Pool. This works just fine when I select partition as

Common but fails (with error: 404 Not Found) when I select a specific partition.

 

f5UrlConnectionLimit = "https://F5HostName.com/mgmt/tm/ltm/pool/~<partition>~<pool>/members/~<partition> ~ <member>;

 

Note: Tags marked with <> are to be replaced with actual values

 

Does anyone have a solution why is it working fine only for 

Common partition and failing for others?

 

1 Reply

  • The best way to troubleshoot this is to use global searches and check the selfLink fields to figure out the right syntax

    For example, run some of these commands and check the output.

    curl -sk -u admin:admin https://F5HostName.com/mgmt/tm/ltm/pool/ | json-format
    curl -sk -u admin:admin https://F5HostName.com/mgmt/tm/ltm/pool/~<partition>~<poolname>/members/ | json-format

    You would see the right syntax of each pool member (with the correct partition) in the selfLink.

    "selfLink": "https://localhost/mgmt/tm/ltm/pool/testpool/members/~Common~192.168.101.11:8000?ver=11.5.1"

    REF - https://devcentral.f5.com/s/articles/icontrol-rest-working-with-pool-members

    KR,

    Dario.