Enable dedicated network origination media source port ranges for Webex Meetings desktop app
If you're using the Webex Meetings desktop app on Windows and you want to use dedicated source port ranges to originate media traffic, follow the steps in this article.
In Webex Meetings version 42.7 and later, the desktop app uses the following dedicated source port ranges to originate media traffic:
- Audio and content audio port range: 52,000 to 52,049
- Main and content video port range: 52,100 to 52,199
This allows you to mark media packets for QoS using the source port ranges and properly prioritize network traffic.
If you use the Webex Meetings desktop app on Windows, you must follow the guidance in this article to manually enable it for your organization. This includes enabling the desktop app to use the new source port ranges, configuring your firewall, and setting recommended DSCP values for media traffic using a group policy template.
- You must have Windows administrative privileges to perform the tasks described below.
- This article also applies to any organizations that use Webex App (Full-Featured meetings).
Enable dedicated media source ports while installing the Webex Meetings desktop app using a command line parameter. The parameter adds the required Windows registry settings and the Windows Defender firewall access-control lists (ACLs).
You need the command line parameter during the initial installation only; Webex Meetings retains the configuration after all automatic upgrades.
If you use Webex App (Full-Featured meetings), you must ensure Webex App is installed before you perform this procedure.
1 |
Go to https://www.webex.com/downloads.html, scroll down to Other download options and then from the drop-down list beside Our previous app, Meetings, select Windows. |
2 |
Add the following command line parameter for the MSI install:
If you download an MSI package with another name, then you must ensure you update the command line parameter. |
Enable dedicated media source ports after installing the Webex Meetings desktop app using a batch file that you run on the Windows machine. The batch file adds the required Windows registry settings and the Windows Defender firewall access-control lists (ACLs).
Use this procedure to enable dedicated media source ports after an automatic upgrade to Webex Meetings desktop app 42.7 or later.
1 |
Open a text editor and paste the following code block into the file: echo set registry to enable feature
reg add "HKLM\SOFTWARE\WOW6432Node\Webex\Policies" /v "LocalPortRange" /t REG_SZ /d "1" /f
reg add "HKLM\SOFTWARE\Webex\Policies" /v "LocalPortRange" /t REG_SZ /d "1" /f
echo set firewall inbound policy named "Cisco Webex Meetings" to avoid pop-up
netsh advfirewall firewall add rule name="Cisco Webex Meetings" dir=in program="%ProgramFiles(x86)%\Webex\Webex\Meetings\atmgr.exe" action=allow
netsh advfirewall firewall add rule name="Cisco Webex Meetings" dir=in program="%ProgramFiles%\Webex\Webex\Meetings\atmgr.exe" action=allow
netsh advfirewall firewall add rule name="Cisco Webex Meetings" dir=in program="C:\Users\%USERNAME%\AppData\Local\WebEx\WebEx\Meetings_slow\atmgr.exe" action=allow
netsh advfirewall firewall add rule name="Cisco Webex Meetings" dir=in program="C:\Users\%USERNAME%\AppData\Local\WebEx\WebEx\Meetings\atmgr.exe" action=allow
netsh advfirewall firewall add rule name="Cisco Webex Meetings" dir=in program="C:\Users\%USERNAME%\AppData\Local\WebEx\WebEx64\Meetings_slow\atmgr.exe" action=allow
netsh advfirewall firewall add rule name="Cisco Webex Meetings" dir=in program="C:\Users\%USERNAME%\AppData\Local\WebEx\WebEx64\Meetings\atmgr.exe" action=allow
If the Webex Meetings desktop app wasn’t initially installed using the default path, then you must update the EnablePortRange.bat file with the correct paths to set up the firewall policies. |
2 |
Save the file as |
3 |
Run |
The policy sets DSCP 46 for the audio port range (52,000 – 52,049) and DSCP 34 for the video port range (52,100 – 52,199). These are the recommended values, but can be modified if necessary.
1 |
Open a text editor and paste the following code block into the file:
|
2 |
Save the file as |
3 |
On your Windows machine, open the Group Policy Editor. |
4 |
Go to Administrative Templates and select Add/Remove Templates. , then right-click on |
5 |
Click Add, navigate to the |
6 |
Click Close. A new Cisco Webex Meetings template appears under Classic Administrative Templates.
|
7 |
Expand Cisco Webex Meetings General Settings. and then click |
8 |
Double-click Configure Audio DSCP for Cisco Webex. |
9 |
Select Enabled and then click OK. This sets DSCP 46 for the audio port range. |
10 |
Double-click Configure Video DSCP for Cisco Webex. |
11 |
Select Enabled and then click OK. This sets DSCP 34 for the video port range. |
Use a batch file to disable the feature on the Windows machine.
1 |
Open a text editor and paste the following code block into the file: echo set registry to disable feature
reg delete "HKLM\SOFTWARE\WOW6432Node\Webex\Policies" /v "LocalPortRange" /f
echo delete firewall policy
netsh advfirewall firewall delete rule name="Cisco Webex Meetings"
|
2 |
Save the file as |
3 |
Run The following actions also disable the feature:
|