Mar 27, 2026 - For details about updated CVE-2025-53521 (BIG-IP APM vulnerability), refer to K000156741.

Forum Discussion

Tim_Harber's avatar
Dec 23, 2019

How to delete all of a VIP's active connections using REST

I am trying to delete all of the active connections to a virtual server. From the CLI I can run delete /sys connection cs-server-addr x.x.x.x. How can I do this using a REST API call to the LTM?

1 Reply

  • DELETE /mgmt/tm/sys/connection?options=cs-server-addr,XX.XX.XX.XX

    For example, using curl:

    curl -sku admin:<pass> https://<host>/mgmt/tm/sys/connection?options=cs-server-addr,172.16.10.40 -X DELETE

    Cheers.