In this article
When using Webex with the DNSFilter Windows Roaming Client, users may experience connectivity failures. This occurs because Webex sometimes relies on older NAPTR records that the Roaming Client cannot process correctly.
Create an NRPT Rule for the Webex domains to resolve the issue. This rule bypasses the Windows agent so the Webex traffic successfully connects through a public server.
Identify the Webex FQDN
The exact URL for the Webex NRPT rule may vary depending on the ISP used for SIP services.
- Attempt to replicate the issue in Webex
- Generate diagnostics:
- Download the Windows Roaming Client log files
- Navigate to the logs directory: C:\Program Files\DNSFilter Agent\logs or C:\Program Files\DNS Agent\logs
- Open the most recent
dns-query.txtoragent-operations.txt logs
- Search for a NAPTR query
Example log entry:
DEBUG DnsProxy - [14574] [IPv4] - Question name: vic-all.business.connect.telstra.com., Question type: Naptr, Class: INetIn this example, Webex is using vic-all.business.connect.telstra.com
Create an NRPT Rule
Use a PowerShell script to bypass the Roaming Client for the impacted Webex domain and force resolution through an alternate DNS server.
- Open PowerShell as Administrator
-
Run the following script (update
$DnsServerand$Namespaceto match the destination DNS server and NAPTR from above):$Namespace = "vic-all.business.connect.telstra.com" $DnsServer = "8.8.8.8" $DisplayName = "DNSFilter /w Webex" # Check if rule exists $existingRule = Get-DnsClientNrptRule | Where-Object { $_.Namespace -eq $Namespace } if ($existingRule) { Write-Host "NRPT rule for $Namespace already exists. Removing before adding..." Remove-DnsClientNrptRule -Namespace $Namespace -Force } # Add the NRPT rule Add-DnsClientNrptRule ` -Namespace $Namespace ` -NameServers $DnsServer ` -DisplayName $DisplayName Write-Host "NRPT rule added for $Namespace using DNS server $DnsServer" - Confirm the rule was added:
Get-DnsClientNrptRule
The Webex traffic should bypass the Roaming Client and connect successfully.
Comments
0 comments
Please sign in to leave a comment.