No audio or video when connected to wifi in coworking space, no problems using hotspot #3043
-
From discord: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
We see this with company provided computers or educational institution provided computers and wifi. From discord: https://discordapp.com/channels/498741086295031808/556170318474117150/691009024078118914 On custom hubs servers we actually do one more thing different - we run SSL websockets over port 80 given that we run Janus and reticulum on the same server, so any packet sniffing that may reject ssl encrypted packets on port 80 (which is non standard) could be problematic |
Beta Was this translation helpful? Give feedback.
We see this with company provided computers or educational institution provided computers and wifi.
From discord: https://discordapp.com/channels/498741086295031808/556170318474117150/691009024078118914
Is there a shared firewall in place or NAT going on between the machine and ISPs?
You need outgoing UDP ports open - 20000-65535
Hubs.mozilla.com has a narrower port range so if you have some higher udp ports blocked that would explain the difference
You also need outgoing 80 and 443 TCP
You can see the candidate ports tried and which failed via about:webrtc
When you connect, a random port is chosen to communicate over.
On custom hubs servers we actually do one more thing different - we ru…