APM Sharepoint authentication v2
Problem this snippet solves: This new version of irule supports NTLM auth (mandatory for Onedrive Apps)
APM is a great authentication service but it does it only with forms.
The default behavior...
Published May 24, 2017
Version 1.0Stanislas_Piro2
Cumulonimbus
Joined January 04, 2011
Stanislas_Piro2
Cumulonimbus
Joined January 04, 2011
AN
Jul 05, 2018Nimbostratus
Thanks Stanislas Piron for your response. My issue is I don't want to use APM policy if client is coming from internal. But if client is external then give F5 login page and do NTLM SSO to backend servers.
 
I want to use same VSERVER for both internal and external. I tried disabling APM based on client IP with no success.
 
when HTTP_REQUEST {
if { [IP::addr [IP::client_addr] equals 10.10.0.0/255.0.0.0] } {
ACCESS::disable
HTTP::cookie remove "MRHSession"
HTTP::cookie remove "LastMRH_Session"
}
}
From below link I found other users have same issue. https://devcentral.f5.com/s/feed/0D51T00006i7aINSAY
 
Issue I am having with using your iRULE I still same error when opening any office documents. If I remove APM policy works fine.