-
Notifications
You must be signed in to change notification settings - Fork 344
TLS 443 Support
Some of the customer networks has restrictions on ports UDP 5004, UDP 9000 and TCP 5004 are blocked by the customer's firewall, Meetings SDK based apps cannot establish media connection in those cases.
- SDK version
[email protected]
or above.
- Meetings are not supported in FedRAMP environment
Rather than routing the meeting over the above ports, media will flow over TLS 443 port by connecting to a TURN server, If all the ports are not reachable the client will fallback to TLS 443.
By default, the TLS 443 is enabled for everyone, but if the customer experiences any issue, the feature can be turned off by using the below config when setting up the SDK.
meetings: {
experimental: {
enableTurnDiscovery: false,
}
},
To test TLS 443 you will need to disable the following ports on your local machine firewall and make a call.
Edit /etc/pf.conf file and append to it the following lines
block out proto udp from any to any port 5004
block out proto udp from any to any port 9000
block out proto tcp from any to any port 5004
block out proto tcp from any to any port 9000
Then run the following command
sudo pfctl -f /etc/pf.conf && sudo pfctl -e
Vidcast : https://app.vidcast.io/share/53d1e91d-55f0-4063-bdef-b4c35beae673
Caution
- Introducing the Webex Web Calling SDK
- Core Concepts
- Quickstart guide
- Authorization
- Basic Features
- Advanced Features
- Introduction
- Quickstart Guide
- Basic Features
- Advanced Features
- Multistream
- Migrating SDK version 1 or 2 to version 3