Link to home
Start Free TrialLog in
Avatar of RTM2007
RTM2007Flag for Afghanistan

asked on

Exchange '10 ActiveSync External Access, How to Lock Down to LAN-Only?

By default I believe that ActiveSync is enabled in Exchange '10 (SP3 Ent), as well as for all newly created users, which is fine. We have a third-party solution that will be relaying e-mail and phone policies via ActiveSync and so we do not need to expose ActiveSync out to the Internet, nor would we like to. Presently only OWA is published externally over SSL.

What would be the best way to lock down ActiveSync to only internal LAN use?
Avatar of Stelian Stan
Stelian Stan
Flag of Canada image

You could disable ActiveSync for all users an then enable just those users you want to have ActiveSync enabled.
get-Mailbox -resultsize unlimited | set-CASMailbox -ActiveSyncEnabled:$False

Open in new window


To enable a set of users in the text file:
Get-content C:\users.txt | set-CASMailbox -ActiveSyncEnabled:$True

Open in new window

Activesync is either enabled for a user or disabled.  If you want to restrict it to the LAN only, you will have to close port 443 on your Firewall so that it can't communicate, but then you will also lose Outlook Anywhere too.

You could setup Activesync to use a different FQDN that externally doesn't resolve anywhere or resolves to an invalid IP Address, but internally does.
Avatar of RTM2007

ASKER

Is it possible to lock down/restrict ActiveSync via IIS?
In what way?

What do you want to allow / disallow?
ASKER CERTIFIED SOLUTION
Avatar of Simon Butler (Sembee)
Simon Butler (Sembee)
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial