Forum Discussion

M451_315544's avatar
Apr 04, 2018
Solved

Block Active-Sync on Virtual Server

Currently we have updated the iRule that was created via a template (probably through iApps at some point) with this code.   switch -glob -- [string tolower [HTTP::path]] { "/microsoft...
  • M451_315544's avatar
    Apr 05, 2018

    I was able to resolve this using this updated iRule.

    when HTTP_REQUEST {
        if { [string tolower [HTTP::uri]] contains "/microsoft-server-activesync"  } {
        drop
        }
       }