Difference between revisions of "Big Blue Button"
From Organic Design wiki
m (→Troubleshooting) |
(→Troubleshooting: ICE error 1107, video not working) |
||
| Line 2: | Line 2: | ||
== Troubleshooting == | == Troubleshooting == | ||
| − | After initial installation, room members couldn't activate video, all getting <tt>Connection failed: ICE error 1107</tt>, which is a known issue in [https://github.com/bigbluebutton/bigbluebutton/issues/7443 Github]. | + | |
| + | === ICE error 1107, video not working === | ||
| + | After initial installation, room members couldn't activate video, all getting <tt>Connection failed: ICE error 1107</tt>, which is a known issue in [https://github.com/bigbluebutton/bigbluebutton/issues/7443 Github]. This is most likely that UDP is not getting through to the server. You can test UDP as follows: | ||
| + | |||
| + | On the target machine being tested: | ||
| + | <source lang="bash"> | ||
| + | nc -ulp PORT | ||
| + | </source> | ||
| + | |||
| + | And on the machine sending the tests: | ||
| + | <source lang="bash"> | ||
| + | nc -u SERVER PORT | ||
| + | </source> | ||
| + | Then type text and hit enter, it should be echoed on the server. | ||
| + | |||
| + | If it's not, check the firewall status and disable: | ||
| + | <source lang="bash"> | ||
| + | ufw status | ||
| + | ufw disable | ||
| + | </source> | ||
== Resources == | == Resources == | ||
Revision as of 23:50, 29 May 2021
Troubleshooting
ICE error 1107, video not working
After initial installation, room members couldn't activate video, all getting Connection failed: ICE error 1107, which is a known issue in Github. This is most likely that UDP is not getting through to the server. You can test UDP as follows:
On the target machine being tested:
nc -ulp PORT
And on the machine sending the tests:
nc -u SERVER PORT
Then type text and hit enter, it should be echoed on the server.
If it's not, check the firewall status and disable:
ufw status
ufw disable




