Technical Forum
Ask questions. Discover Answers.
cancel
Showing results for 
Search instead for 
Did you mean: 

I just want to use the relative URI in the ICAP profile

Wasfi_Bounni
Cirrocumulus
Cirrocumulus

Hi;

I have set up an ICAP internal virtual server for load-balancing ICAP requests between two ICAP scanners. As you know, this comes as the second stage after a https virtual server recieves a file upload.

Now, I don't want to use an absolute URI in the ICAP profile, which I need to allocate to the ICAP internal virtual server. Because if I do, and I use the URI of one ICAP scanner, how can I still load balance to the other scanner?

It would be great if I can just do /reqmod

Kindly

Wasfi

1 ACCEPTED SOLUTION

Hi @Wasfi_Bounni , 
Well , you can use this macro at URI field in ICAP profile configuration: 

 icap://${SERVER_IP}:${SERVER_PORT}/path

Using this Macro will replace ( ${SERVER_IP} by Selected Icap member ip from ICAP pool which you assigned to internal virtual server , and ${SERVER_PORT} Will follow the same mechnism. 

Please Follow this Offical Article step by step in your implementation : 

https://techdocs.f5.com/en-us/bigip-14-0-0/big-ip-local-traffic-manager-implementations-14-0-0/confi...

you will find all steps on details on it , or you can use it as a reference to review your configs. 

Goodluck 🙂 

 

_______________________
Regards
Mohamed Kansoh

View solution in original post

2 REPLIES 2

Hi @Wasfi_Bounni , 
Well , you can use this macro at URI field in ICAP profile configuration: 

 icap://${SERVER_IP}:${SERVER_PORT}/path

Using this Macro will replace ( ${SERVER_IP} by Selected Icap member ip from ICAP pool which you assigned to internal virtual server , and ${SERVER_PORT} Will follow the same mechnism. 

Please Follow this Offical Article step by step in your implementation : 

https://techdocs.f5.com/en-us/bigip-14-0-0/big-ip-local-traffic-manager-implementations-14-0-0/confi...

you will find all steps on details on it , or you can use it as a reference to review your configs. 

Goodluck 🙂 

 

_______________________
Regards
Mohamed Kansoh

Thank you Sir.