Forum Discussion
Firewater_29708
Nimbostratus
Feb 07, 2013Blocking iOS 6.1 Devices on Exchange 2010
This is more informative, the last few hours we started experenceing issues with Apple iOS 6.1, essentially malformed meetings on a device cause the device to get into a sync loop which causes excess...
What_Lies_Bene1
Cirrostratus
Feb 22, 2013If you find it we can use something like this (untested);
when HTTP_REQUEST {
set collectdata 0
switch -glob [string tolower [HTTP::header User-Agent]] {
"*1002.14[0-5]*" {
if { [HTTP::uri] contains "Cmd=MeetingResponse" } {
set collectdata 1
HTTP::collect 0 0
}
}
}
}
when HTTP_REQUEST_DATA {
if { $collectdata = 1 } {
scan [HTTP::payload] {%*s login %s} username
reject
log local0. "Denied iOS 6.1 Device SNAT src=[IP::client_addr] , virtual=[virtual name], user=$username"
HTTP::release
return
}
}
Help guide the future of your DevCentral Community!
What tools do you use to collaborate? (1min - anonymous)Recent Discussions
Related Content
DevCentral Quicklinks
* Getting Started on DevCentral
* Community Guidelines
* Community Terms of Use / EULA
* Community Ranking Explained
* Community Resources
* Contact the DevCentral Team
* Update MFA on account.f5.com
Discover DevCentral Connects