Forum Discussion
Dan Genel
Mar 19, 2017Brass Contributor
On Prem Skype Federation to Office 365
We are using Office 365, but are trying to setup federation with partners who have on prem installations. Does anyone with an OnPrem installation have a checklist of steps to take to enable a ...
KennethML
Mar 31, 2017MCT
Hi Dan.
It is not really an easy question to answer, as it depends on what setting your partner has.
Open federation with DNS SRV routing and hosting partner federation:
It works out of the box.
Open federation with DNS SRV routing and no hosting partner federation:
Your partner must add #SFBO as a hosting provider.
New-CsHostingProvider -Identity SkypeforBusinessOnline -ProxyFqdn "sipfed.online.lync.com" -VerificationLevel UseSourceVerification -Enabled $True -EnabledSharedAddressSpace $False -HostsOCSUsers $False -IsLocal $False
Closed federation with DNS SRV routing and hosting partner federation:
Your domain must be added to the federated allow-list:
New-CsAllowedDomain -Identity "fabrikam.com"
Closed federation without DNS SRV routing and hosting partner federation:
New-CsAllowedDomain -Identity "fabrikam.com" -ProxyFqdn "proxyserver.fabrikam.com"
I think you get the idea from here.
/Kenneth ML