Forum Discussion

Keith_Fox_15580's avatar
Keith_Fox_15580
Icon for Nimbostratus rankNimbostratus
Nov 14, 2014
Solved

Block access to Activesync with f5.microsoft_exchange_2010_2013_cas.v1.3.0 iapp

Hello,   I am looking to block our external users from using active-sync via our F5 appliance after switching to using the F5 for external access and load balancing for our Exchange 2010 environm...
  • mikeshimkus_111's avatar
    Nov 14, 2014

    Hi Keith, you could create an iRule like this one and attach it to the virtual server using the iApp's advanced mode. Or, you could modify the pool assignment iRule created by the iApp, however that will require disabling strictness on the deployment.

    when HTTP_REQUEST {
        switch -glob -- [string tolower [HTTP::path]] {
            "/microsoft-server-activesync*" {
                drop
            }
        }
    }