在 Lync Server 2013 中为边缘服务器配置端口范围
上次修改的主题: 2015-07-24
使用 Edge 服务器,无需为音频、视频和应用程序共享配置单独的端口范围;同样,用于 Edge 服务器的端口范围不必与会议、应用程序和中介服务器使用的端口范围匹配。 在继续学习示例之前,请务必强调,尽管存在此选项,但建议不要更改端口范围,因为如果移出 50000 个端口范围,这可能会对某些情况产生负面影响。
例如,假设已将会议、应用程序和中介服务器配置为使用以下端口范围:
数据包类型 | 启动端口 | 保留的端口数 |
---|---|---|
应用程序共享 |
40803 |
8348 |
音频 |
49152 |
8348 |
视频 |
57500 |
8034 |
总数 |
-- |
24730 |
如你所见,音频、视频和应用程序共享的端口范围从端口 40803 开始,总共包含 24732 个端口。 如果愿意,可以通过在 Lync Server Management Shell 中运行类似于此命令的命令,将给定边缘服务器配置为使用这些总体端口值:
Set-CsEdgeServer -Identity EdgeServer:atl-edge-001.litwareinc.com -MediaCommunicationPortStart 40803 -MediaCommunicationPortCount 24730
或者,使用以下命令同时配置组织中的所有 Edge Server:
Get-CsService -EdgeServer | ForEach-Object {Set-CsEdgeServer -Identity $_.Identity -MediaCommunicationPortStart 40803 -MediaCommunicationPortCount 24730}
可以使用以下 Lync Server Management Shell 命令验证 Edge Server 的当前端口设置:
Get-CsService -EdgeServer | Select-Object Identity, MediaCommunicationPortStart, MediaCommunicationPortCount
同样,虽然我们提供了这些选项,但我们强烈建议你保留端口配置所需的内容。