-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Description
Hi,
I tried installation like in the Wiki page. I even tested the VNC which works well but I am kind of confused why is it showing this error while I try to connect my mic. By checking the request it is trying to hit wss://<mydomain>/ws I check the bbb-conf --status and it shows like this.
BigBlueButton Server 2.4.9 (326)
Kernel version: 5.4.0-1093-aws
Distribution: Ubuntu 18.04.6 LTS (64-bit)
Memory: 16203 MB
CPU cores: 4
/etc/bigbluebutton/bbb-web.properties (override for bbb-web)
/usr/share/bbb-web/WEB-INF/classes/bigbluebutton.properties (bbb-web)
bigbluebutton.web.serverURL: https://<mydomain>.com
defaultGuestPolicy: ALWAYS_ACCEPT
svgImagesRequired: true
defaultMeetingLayout: SMART_LAYOUT
/etc/nginx/sites-available/bigbluebutton (nginx)
server_name: <mydomain>.com
port: 80, [::]:80
port: 443 ssl
/opt/freeswitch/etc/freeswitch/vars.xml (FreeSWITCH)
local_ip_v4:
external_rtp_ip: stun:stun.l.google.com:19302
external_sip_ip: stun:stun.l.google.com:19302
/opt/freeswitch/conf/sip_profiles/ipv6.xml (FreeSWITCH)
ext-rtp-ip:
ext-sip-ip:
ws-binding: 127.0.0.1:5070
wss-binding: 127.0.0.1:7447
/opt/freeswitch/conf/sip_profiles/private.xml (FreeSWITCH)
ext-rtp-ip: $${local_ip_v4}
ext-sip-ip: $${local_ip_v4}
ws-binding: 127.0.0.1:5068
wss-binding: 127.0.0.1:7445
/opt/freeswitch/conf/sip_profiles/public.xml (FreeSWITCH)
ext-rtp-ip: $${external_rtp_ip}
ext-sip-ip: $${external_sip_ip}
ws-binding: 127.0.0.1:5066
wss-binding: 127.0.0.1:7443
UDP port ranges
FreeSWITCH: 16384-24576
kurento: 24577-32768
bbb-webrtc-sfu: 24577-32768
/usr/local/bigbluebutton/core/scripts/bigbluebutton.yml (record and playback)
playback_host: [domain>
playback_protocol: https
ffmpeg: 4.2.7-0ubuntu0.1bbb1~18.04
/usr/local/bigbluebutton/bbb-webrtc-sfu/config/default.yml (Kurento SFU)
/etc/bigbluebutton/bbb-webrtc-sfu/production.yml (Kurento SFU - override)
mediasoup.webrtc.*.ip: 0.0.0.0
mediasoup.webrtc.*.announcedIp: 172.31.26.224
mediasoup.plainRtp.*.ip: 0.0.0.0
mediasoup.plainRtp.*.announcedIp: 172.31.26.224
kurento.ip: 13.213.128.206
kurento.url: ws://127.0.0.1:8888/kurento
kurento.sip_ip: 127.0.0.1
recordScreenSharing: true
recordWebcams: true
codec_video_main: VP8
codec_video_content: VP8
/usr/share/meteor/bundle/programs/server/assets/app/config/settings.yml (HTML5 client)
/etc/bigbluebutton/bbb-html5.yml (HTML5 client config override)
build: HTML5_CLIENT_VERSION
kurentoUrl: wss://<mydomain>.com/bbb-webrtc-sfu
enableListenOnly: true
sipjsHackViaWs: true
/usr/share/bbb-web/WEB-INF/classes/spring/turn-stun-servers.xml (STUN Server)
stun: stun.l.google.com:19302
# Potential problems described below
# Warning: The setting of for local_ip_v4 in
#
# /opt/freeswitch/etc/freeswitch/vars.xml
#
# does not match the local IP address (172.31.43.2).
# (This is OK if you've manually changed the values)
#
# Warning: Failed to verify STUN server at stun.l.google.com 19302 with command
#
# stunclient --mode full --localport 30000 stun.l.google.com 19302
When I looked into the nginx config of sip2.conf it is pointing /ws to 5066,5068,5070 ports of FREESWITCH i guess.
location /ws {
if ($private_address = 0) {
proxy_pass http://127.0.0.1:5066;
}
if ($private_address = 1) {
proxy_pass http://127.0.0.1:5068;
}
if ($private_address = 2) {
proxy_pass http://127.0.0.1:5070;
}
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_read_timeout 120s;
proxy_send_timeout 120s;
client_body_timeout 120s;
send_timeout 120s;
auth_request /bigbluebutton/connection/checkAuthorization;
auth_request_set $auth_status $upstream_status;
}
I even allowed all Traffic inbound/output for both TCP/UDP from anywhere(0.0.0.0/0) .
I could not figure out correctly what went wrong. Any help would be appreciated.
Thanks
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels