申明:文章中部分内容有涉及官方帮助或者网上资源整合,如有违权,请速与作者联系,谢谢!

作者:316191099@qq.com

培训:Skype for Business Server 2015-项目实战-培训-QQ群:65235615。(学员群,非所有人员都加。)

参照:

Using IIS Application Request Routing (ARR) as a TMG Replacement

http://masteringlync.com/2013/02/12/using-iis-application-request-routing-arr-as-a-tmg-replacement/

1. 创建-服务器场

SFBFEPool01.i-x-Cloud.com

SFBFEPool01.i-x-Cloud.com

8080

4443

SFBFEPool01.i-x-Cloud.com

SFBFEPool01.i-x-Cloud.com

8080

4443

2. 修改设置

3. URL重写

Double click the ARR_Lync_Loadbalance_SSL rule and let’s understand what you see here:

In the Match URL is basically what we are going to make after the / in the URL. So if our URL was www.domain.com/website the pattern would be /website for example. You will see under Using you will have the option to use Regular Expressions.

The Conditions is a set of inputs that are required to match this rule. Here we will we have HTTPS which basically means we must match SSL requests only.

This is a continuation of the above. The Action section tells us what we should do if we match. So here we will route to the Lync Server Farm. This part is pretty straight forward and will be basically the same for all rules. So let’s create our first Lync Rule.

Meeting/Dialin/External Web Services Rule

Here you have some options based on how you do your simple URLs. If you do “Option A” where you URL would look like:

https://meet.domain.com and https://dialin.domain.com then you would need to use the below rule.

Change Using to: Regular Expression

Change Pattern to: (.*)

{HTTP_HOST}

(SFBFEPool01.i-x-Cloud.com|dialin.i-x-Cloud.com|meet.i-x-Cloud.com)

Add to Conditions: {HTTP_HOST} on the pattern of (externalwebservices.domain.com|dialin.domain.com|meet.domain.com).

If you use Option B where your simple URLs might look like this:

https://meet.domain.com/ID/ and https://meet.domain.com/dialin/ your rule would look like this.

((?:^dialin|^id|^Abs|^autodiscover|^CertProv|^CollabContent|^Fonts|^GroupExpansion|^HybridConfig|^lwa|^mcx|^PassiveAuth|^PersistentChat|^Reach|^RequestHandlerExt|^RgsClients|^Scheduler|^Storage|^ucwa|^WebTicket).*)

NOTE: You will need to change dialin and id to whatever you use if using Option B for simple URL’s

NOTE: This is the list of all potential directories as of RTM of Lync 2013. CU1 will most likely add some items so this may need to be edited.

Add to Conditions: {HTTP_HOST} on the pattern of (externalwebservices.domain.com|dialin.domain.com|meet.domain.com).

NOTE: You should NOT add LyncDiscover.domain.com to this rule. The reason we don’t want to add this is because our regular expression doesn’t include the root of the website and lyncdiscover.domain.com/?sipuri= won’t match any of these rules. If you wanted to, you could change your pattern to (.*) and add lyncdiscover.domain.com to the list. I don’t have a good reason to do it either way. Whatever makes the most sense to you but I like to separate them out.

Lync Discover Rule

Now we create a rule for Lync Discover services. Here is what I have created. This rule is created as brand new and not one of the existing rules.

Lyncdiscover.i-x-Cloud.com

{HTTP_HOST}

Lyncdiscover.i-x-Cloud.com

Here I am defining my pattern match as any request (.*) anything from lyncdiscover.thegaragelab.info URL. Here I am not requiring HTTPS on this rule Lync Discover will use either HTTP or HTTPS.

查询-公网IP:

修改-公网DNS的A记录:

HOSTS中未配置:

测试:

https://meet.i-x-cloud.com/sfb01/BP9J6NQ4

https://dialin.i-x-cloud.com

https://sfbfepool01.i-x-cloud.com/PersistentChat/RM?clientlang=zh-CN

https://LyncDiscover.i-x-Cloud.com

https://mail.i-x-cloud.com/owa

https://mail.i-x-cloud.com/ecp/

Skype for Business Server 2015-13-IISARR-2-发布-2-前端服务器相关推荐

  1. Skype For Business Server 2015 离线消息

    对于之前使用Lync或Skype的用户都会经常吐槽无法发送离线消息,那么对Skype For Business Server 2015 CU3开始就支持了离线IM,但是对客户端同样是有很高要求的. 离 ...

  2. Skype for Business Server 2015系列(一)概述和准备工作

    对于Lync,相信熟悉微软产品的小伙伴都比较了解了,作为微软旗下的即时通讯软件,面向企业用户,全球500强中的70%都在使用Lync.在今年4月份的时候,微软将 Lync 更名为 Skype for ...

  3. Skype For Business Server 2015

    在Skype For Business Server 2015发布之后,自己也进行了一些测试,总体的部署配置上跟Lync Server 2013的步骤是非常相似的.而且微软Technet网站上SFB的 ...

  4. 仪表板 ajax实例,CQD 开发示例 - Skype for Business Server 2015 | Microsoft Docs

    CQD 开发示例 2021/7/29 本文内容 摘要: 查看通话质量仪表板的教程和开发示例. 通话质量仪表板是 Skype for Business Server 的工具. 本文提供了有关通话质量仪表 ...

  5. Skype for business server 2015和PSTN集成后,无法完成呼叫

    最近做了一个关于SFB2015和PSTN语音网关集成的项目,遇到了问题,无法完成呼叫.在此将此问题及处理方法分享给大家,希望对大家有所帮助. 问题描述: 通过SFB205客户端拨打电话时报错,如下: ...

  6. Skype for Business Server 2015-04-前端服务器-5-创建DNS记录

    申明:文章中部分内容有涉及官方帮助或者网上资源整合,如有违权,请速与作者联系,谢谢! 作者:316191099@qq.com 培训:Skype for Business Server 2015-项目实 ...

  7. 前端服务器共享的文件产品内容,Skype for Business Server 2015-04-前端服务器-2-创建一个文件共享...

    申明:文章中部分内容有涉及官方帮助或者网上资源整合,如有违权,请速与作者联系,谢谢! 作者:316191099@qq.com 培训:Skype for Business Server 2015-项目实 ...

  8. Skype for Business Server 2015-06-持久聊天服务器-3-配置

    申明:文章中部分内容有涉及官方帮助或者网上资源整合,如有违权,请速与作者联系,谢谢! 作者:316191099@qq.com 培训:Skype for Business Server 2015-项目实 ...

  9. 组件skype服务器,Skype for Business Server 中的中介服务器组件

    Skype for Business Server 中的中介服务器组件Mediation Server component in Skype for Business Server 2021/3/24 ...

  10. Skype for Business Server 2019 本地部署

    Skype for Business Server 2019预览版在七月底已经发布,公开披露新增了四个主要功能,云语音邮件.云自动话务员.云呼叫数据连接器.简化的Teams迁移,越来与Office 3 ...

最新文章

  1. Python案例:使用XPath的爬虫
  2. 总量迈过90万亿元关口 中国经济交出稳健答卷
  3. 第四范式推出业界首个基于持久内存、支持毫秒级恢复的万亿维线上预估系统...
  4. 有向图强连通分量tarjan算法
  5. Scrapy网络爬虫实战[保存为Json文件及存储到mysql数据库]
  6. matlab中怎么表示概率,[转载]matlab中的概率函数
  7. 路由器性能测试工具_小米路由器AX3600与AX1800 MESH 实测
  8. CentOS 7 安装 JAVA环境(JDK 1.8)
  9. CCF201312-4 有趣的数(100分)
  10. 阿里云常见热门问题解答汇总
  11. python获取英文字母、英文标点符号、中文标点符号
  12. 网页上传大文件被限制,如何设置配置文件
  13. Linux:关于设置PS1提示符输入长命令格式出现的问题及解决
  14. wp手机开发之获取汉字拼音的首字母
  15. 基于R语言混合效应模型(mixed model)案例研究
  16. 编辑视角下,论文摘要、引言、结论怎么写?
  17. 环境化学试题及标准答案
  18. Cassandra的使用
  19. 我,一个生物学硕士,是怎么转行成为程序员,进入互联网大厂的
  20. 微信小程序:王者荣耀改名神器

热门文章

  1. linux 的一些实用工具,linux 命令行下的一些实用工具
  2. eix安装_U盘安装原版Windows 8.1
  3. pip设置国内镜像_virtualenv安装、使用、pip国内镜像替换---windows 0117-2020
  4. go json tag 字符串 整数_json:你或许还不知道的序列化操作(一)
  5. java 如何添加背景音乐_Java程序怎样添加背景音乐?
  6. Node.js目录操作
  7. nodejs之不换行的输出
  8. mysql 主键冲突 多个事务回滚_MySQL实战45讲Day38----自增主键不是连续的原因
  9. html非封闭标签,自封闭的html标签
  10. 操作指令详解_爱码小士丨 APP稳定性测试(附视频详解)