You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi bro.
I want deploy mediasoup on containers cloud , but tried any example and your example but doesn't work , all example works on cloud server , but doesn't work on cloud container , I used all IP that could to access , like , podIP , hostIP , public ip , private ip , ip , ip ... but all of them doesn't work , in webrtc chrome log is shown the iceCandidate is on checking state then disconnected
do you know how to solve my problem
these days I trying on azure container could , do you test your example on that?
best regard for you.
thanks a lot.
The text was updated successfully, but these errors were encountered:
When ICE candidates get stuck in the "checking" state, it usually indicates that WebRTC is unable to establish a connection, likely due to incorrect network configurations or firewall restrictions.
Here are a few steps that could help solve your issue:
Public IP Binding: In containerized environments, especially with Kubernetes or similar orchestration, the internal pod IPs aren't publicly accessible. Ensure that you are binding Mediasoup to the correct public IP of the host or the public-facing load balancer in front of your container.
ICE Candidate Policy: Try adjusting the ICE candidate policy to ensure all types of candidates (host, relay, srflx) are gathered. In some configurations, the container might be gathering host candidates, which aren't reachable from the public internet.
Port Mapping & Firewall Rules: Check your container's port mapping. Mediasoup needs both UDP and TCP ports to be exposed for WebRTC to work. Ensure your cloud provider allows traffic on the necessary ports (default 443 TCP for HTTPS, 3016 for this app, and range from 10000 to 10100 TCP/UDP for WebRTC media).
Azure Specifics: When using Azure, ensure that your network security group (NSG) rules allow inbound/outbound traffic on the WebRTC ports. Azure often blocks traffic to certain ports by default, so you’ll need to explicitly allow the media traffic.
Docker Networking: Containers by default operate in a private network, and you need to map their ports to the host. If you're using Kubernetes or Docker Swarm, consider using hostNetwork or proper ingress controllers to expose the Mediasoup service.
Hi bro.
I want deploy mediasoup on containers cloud , but tried any example and your example but doesn't work , all example works on cloud server , but doesn't work on cloud container , I used all IP that could to access , like , podIP , hostIP , public ip , private ip , ip , ip ... but all of them doesn't work , in webrtc chrome log is shown the iceCandidate is on checking state then disconnected
do you know how to solve my problem
these days I trying on azure container could , do you test your example on that?
best regard for you.
thanks a lot.
The text was updated successfully, but these errors were encountered: