Renater / SIPMediaGW

A media gateway to provide SIP access (audio+video) on top of Jitsi Meet, BBB,...web conferences
Apache License 2.0
30 stars 9 forks source link

Need help for testing #13

Closed alexivaner closed 9 months ago

alexivaner commented 11 months ago

HI, thanks for a great project. Could you help me elaborate this more:

Once the virtual machine is up, you can join a conference from your preferred SIP softphone:

_sip:your_conference_name@192.168.75.13 (Direct access) sip:0@192.168.75.13 (IVR access => Jitsi Meet only) Depending on BROWSE_FILE and WEBRTC_DOMAIN variables, the corresponding webconference is:

jitsi (default): https://meet.jit.si/your_conference_name or bigbluebutton: https://demo.bigbluebutton.org/rooms/your_conference_name/join_

I currently use microsip and x-lite but I am still confused about how to test this one and do direct calls, I also want to confirm if is it by default will forward to meet.jit.si? How to check if the video from the sip call is already inside the conference? And how do we setup "YOUR_CONFERENCE_NAME" part? I am sorry for this silly question because I am a beginner in SIP.

btw, is it possible if I use FreeSwitch that converts H323 call to SIP then use SIPMediaGW to forward it to jitsi meet? Thank you so much for your time.

nicotyze commented 11 months ago

Hi, For a testing example, please have a look at this Yes, by default SIPMediaGW is configured with meet.jit.si as you can see on the last screen shot. By default, the conference name is a number (n digits before entering #) => 1234 in this basic example.... This project is focused on SIP. I have no idea about how to convert H323 call to SIP and don't know either if it's something doable...

alexivaner commented 11 months ago

Hi Nicotyze, thank you for reply. Do you know why I always getting this error?

image

Aug 17 09:14:01 ubuntu-focal systemd[1]: Stopped sipmediagw.
Aug 17 09:14:01 ubuntu-focal systemd[1]: Starting sipmediagw...
Aug 17 09:14:07 ubuntu-focal systemd[1]: sipmediagw.service: Succeeded.
Aug 17 09:14:07 ubuntu-focal systemd[1]: Started sipmediagw.
Aug 17 09:14:08 ubuntu-focal systemd[1]: sipmediagw.service: Scheduled restart job, restart counter is at 201.
Aug 17 09:14:08 ubuntu-focal systemd[1]: Stopped sipmediagw.
Aug 17 09:14:08 ubuntu-focal systemd[1]: Starting sipmediagw...
daimoc commented 11 months ago

Hi, It seems there is some issue on docker network selection in GW starting with last docker composer version.

I'm getting this error when I want to start the sipmediagetway service by hand : --> "a network with name gw_net exists but was not created by compose.\nSet external: true to use an existing network" After some research, it looks like this recent issue in docker compose : https://github.com/docker/compose/issues/10797

We can fix it by adding "external: true" in gw_net declaration in the docker-compose.yml.

Regards, Damien.