Forum Discussion
Fernando_Carran
Nimbostratus
Dec 04, 2018Link Controller sync issues
Hi Folks.
We tried to configure LC from standalone to HA (Active-Standby). When we run gtm_add the objects of LC was synced. After, when we try to sync from Device Management only LTM objects are s...
- Mayur_SutareAug 06, 2021
MVP
Hi ,
You can try below iRule -
when HTTP_REQUEST { if { [HTTP::host] equals "example1.com" }{ if { [HTTP::uri] contains "something" }{ HTTP::redirect "https://example2.com" } } }
Also below is the irule which will also help to redirect to the uri along with the host. So you shouldn't require separate irule to redirect to the uri if you want to keep same uri path.
when HTTP_REQUEST { if { [HTTP::host] equals "example1.com" }{ if { [HTTP::uri] contains "something" }{ HTTP::redirect "https://example2.com[HTTP::uri]" } } }
Also if your F5s are running on 14.1.0 or later version, kindly consider - https://support.f5.com/csp/article/K23237429
Hope it helps!
- JohnnyBacchusAug 12, 2021
Nimbostratus
Okay, I tried both of those iRule options and neither worked. We still receive an error message of 'ERR_CONNECTION_RESET'.
- Mayur_SutareAug 13, 2021
MVP
Could you please check the article given above and see if it is applicable to you?