Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disconnected from SIP server after 20-30s and no sound #1754

Open
vias79 opened this issue Mar 5, 2024 · 7 comments
Open

Disconnected from SIP server after 20-30s and no sound #1754

vias79 opened this issue Mar 5, 2024 · 7 comments

Comments

@vias79
Copy link

vias79 commented Mar 5, 2024

I have Jitsi (stable 9258) and Jigasi setup on docker. Using Ubuntu 22.04.4 LTS.

I can start a meeting and invite other members (phone number). On the test phone I get the call but the sound is silent and the call is disconnected after 20-30s.

Any help would be awesome as this worked before (not docker version though). I think my problem is the lack of this in sip-communicator.properties "net.java.sip.communicator.impl.protocol.sip.acc1.DEFAULT_ENCRYPTION=false" which I had in my old config which worked but I can't set it in .env. I also tried adding the line in ~/.jitsi-meet-cfg/jigasi/custom-config.js but it doesn't work.

The server has a public IP and only thing I block in firewall is SSH. I use Nginx as proxy and certbot for Letsencrypt cert (certbot --nginx).

What stands out for me in the Jigasi logs is this:
2024-03-05 11:58:22.583 SEVERE: [134] SipGatewaySession$ExpireMediaStream.run#1387: [ctx=1709636290713753141985] Stopped receiving RTP for Call: id=1709636294329799149618 peers=1

--

Here is my setup (maybe I have some incorrect setting? Might also help someone else in the future setting up):

#docker-version

user@meeting:~/jitsi-stable-9258$ sudo dpkg -l | grep docker
ii  docker                                1.5-2                                   all          transitional package
ii  docker-compose                        1.29.2-1                                all          define and run multi-container Docker applications with YAML
ii  docker.io                             24.0.5-0ubuntu1~22.04.1                 amd64        Linux container runtime
ii  python3-docker                        5.0.3-1                                 all          Python 3 wrapper to access docker.io's control socket
ii  python3-dockerpty                     0.4.1-2                                 all          Pseudo-tty handler for docker Python client (Python 3.x)
ii  wmdocker                              1.5-2                                   amd64        System tray for KDE3/GNOME2 docklet applications
user@meeting:~/jitsi-stable-9258$

#Nginx

user@meeting:~/jitsi-stable-9258$ sudo cat /etc/nginx/conf.d/meeting.MYURL.se.conf

server {
        location / {
                allow MYIP;
                deny  all;
				#
                proxy_pass_header Authorization;
                proxy_pass https://localhost:8443;
                proxy_set_header Host $host;
                proxy_set_header X-Real-IP $remote_addr;
                proxy_set_header X-Forwarded-Host $host;
                proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
                proxy_set_header X-Forwarded-Proto $scheme;
                add_header Strict-Transport-Security "max-age=31536000; includeSubDomains" always;
                add_header X-Content-Type-Options nosniff;
        }

        server_name meeting.MYURL.se;

    location /xmpp-websocket {
        proxy_pass https://localhost:8443;
        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection "upgrade";
    }

    location /colibri-ws {
        proxy_pass https://localhost:8443;
        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection "upgrade";
    }

    listen 443 ssl; # managed by Certbot
    ssl_certificate /etc/letsencrypt/live/meeting.MYURL.se/fullchain.pem; # managed by Certbot
    ssl_certificate_key /etc/letsencrypt/live/meeting.MYURL.se/privkey.pem; # managed by Certbot
    include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
    ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot
}
server {
    if ($host = meeting.MYURL.se) {
        return 301 https://$host$request_uri;
    } # managed by Certbot

    server_name meeting.MYURL.se;
    listen 80;
    return 404; # managed by Certbot
}

#ENV

user@meeting:~/jitsi-stable-9258$ cat .env | sed '/#/d' | sed '/^$/d'
CONFIG=~/.jitsi-meet-cfg
HTTP_PORT=8000
HTTPS_PORT=8443
TZ=Europe/Stockholm
PUBLIC_URL=https://meeting.MYURL.se
JVB_ADVERTISE_IPS=MYPUBLICIP
ETHERPAD_TITLE="Video Chat"
ETHERPAD_DEFAULT_PAD_TEXT="Welcome to Web Chat!\n\n"
ETHERPAD_SKIN_NAME=colibris
ETHERPAD_SKIN_VARIANTS="super-light-toolbar super-light-editor light-background full-width-editor"
JIGASI_SIP_URI=MYSIPSERVER_USER@MYSIPSERVER
JIGASI_SIP_PASSWORD=MYSIPSERVER_USER_PWD
JIGASI_SIP_SERVER=MYSIPSERVER
JIGASI_SIP_PORT=5060
JIGASI_SIP_TRANSPORT=UDP
DIALIN_NUMBERS_URL=MYSIPSERVER_USER_PHONENR
SKIP_REINVITE_ON_FOCUS_CHANGE_PROP=true
JIGASI_ENABLE_SDES_SRTP=0
ENABLE_AUTH=1
ENABLE_GUESTS=1
AUTH_TYPE=internal
JICOFO_AUTH_PASSWORD=PWD_FROM_gen-passwords.sh
JVB_AUTH_PASSWORD=PWD_FROM_gen-passwords.sh
JIGASI_XMPP_PASSWORD=PWD_FROM_gen-passwords.sh
JIBRI_RECORDER_PASSWORD=PWD_FROM_gen-passwords.sh
JIBRI_XMPP_PASSWORD=PWD_FROM_gen-passwords.sh
RESTART_POLICY=unless-stopped
ENABLE_WELCOME_PAGE=1
ENABLE_CLOSE_PAGE=0
START_AUDIO_MUTED=1
START_WITH_VIDEO_MUTED=1
DYNAMIC_BRANDING_URL=https://MYURL.se
BRANDING_DATA_URL=https://MYURL.se
ENABLE_NOISY_MIC_DETECTION=0
ENABLE_HTTP_REDIRECT=1
ENABLE_LETSENCRYPT=0
ENABLE_IPV6=0

#docker ps

user@meeting:~/jitsi-stable-9258$ docker ps
CONTAINER ID   IMAGE                       COMMAND   CREATED         STATUS         PORTS                                                NAMES
98b316ded2d3   jitsi/web:stable-9258       "/init"   4 minutes ago   Up 4 minutes   0.0.0.0:8000->80/tcp, 0.0.0.0:8443->443/tcp          jitsi-stable-9258_web_1
f9258ae79e55   jitsi/jicofo:stable-9258    "/init"   4 minutes ago   Up 4 minutes   127.0.0.1:8888->8888/tcp                             jitsi-stable-9258_jicofo_1
f179f4be9887   jitsi/jigasi:stable-9258    "/init"   4 minutes ago   Up 4 minutes   0.0.0.0:20000-20050->20000-20050/udp                 jitsi-stable-9258_jigasi_1
99dd909d7739   jitsi/jvb:stable-9258       "/init"   4 minutes ago   Up 4 minutes   127.0.0.1:8080->8080/tcp, 0.0.0.0:10000->10000/udp   jitsi-stable-9258_jvb_1
dead3e5b58e4   jitsi/prosody:stable-9258   "/init"   4 minutes ago   Up 4 minutes   5222/tcp, 5269/tcp, 5280/tcp, 5347/tcp               jitsi-stable-9258_prosody_1
user@meeting:~/jitsi-stable-9258$

#jigasi logs

user@meeting:~/jitsi-stable-9258$ docker logs jitsi-stable-9258_jigasi_1
[s6-init] making user provided files available at /var/run/s6/etc...exited 0.
[s6-init] ensuring user provided files have correct perms...exited 0.
[fix-attrs.d] applying ownership & permissions fixes...
[fix-attrs.d] done.
[cont-init.d] executing container initialization scripts...
[cont-init.d] 01-set-timezone: executing...
[cont-init.d] 01-set-timezone: exited 0.
[cont-init.d] 10-config: executing...
[cont-init.d] 10-config: exited 0.
[cont-init.d] done.
[services.d] starting services
[services.d] done.
2024-03-05 11:57:53.713 INFO: [14] org.jitsi.impl.osgi.framework.BundleImpl.start: Starting activator org.jitsi.service.libjitsi.LibJitsiActivator in file:/usr/share/jigasi/lib/libjitsi-1.1-29-g00e62769.jar
2024-03-05 11:57:53.735 INFO: [14] LibJitsi.start#213: Successfully started LibJitsi using as implementation: org.jitsi.impl.libjitsi.LibJitsiOSGiImpl
2024-03-05 11:57:53.754 INFO: [14] org.jitsi.impl.osgi.framework.BundleImpl.start: Starting activator net.java.sip.communicator.impl.configuration.ConfigurationActivator in file:/usr/share/jigasi/lib/jitsi-configuration-2.14.77b1f5e65.jar
2024-03-05 11:57:53.772 INFO: [14] net.java.sip.communicator.util.osgi.DependentActivator.start: Starting, setting up service tracker for 1  dependencies
2024-03-05 11:57:53.837 INFO: [14] net.java.sip.communicator.impl.configuration.ConfigurationActivator.startWithServices: Using properties file configuration store.
2024-03-05 11:57:53.846 INFO: [14] ConfigurationServiceImpl.debugPrintSystemProperties#1380: awt.toolkit=sun.awt.X11.XToolkit
java.specification.version=11
sun.cpu.isalist=
sun.jnu.encoding=ANSI_X3.4-1968
java.class.path=/usr/share/jigasi/jigasi.jar:/usr/share/jigasi/lib/agafua-syslog-0.4.jar:/usr/share/jigasi/lib/animal-sniffer-annotations-1.21.jar:/usr/share/jigasi/lib/annotations-13.0.jar:/usr/share/jigasi/lib/annotations-4.1.1.4.jar:/usr/share/jigasi/lib/aopalliance-repackaged-3.0.1.jar:/usr/share/jigasi/lib/api-common-2.1.5.jar:/usr/share/jigasi/lib/asm-7.1.jar:/usr/share/jigasi/lib/asm-analysis-7.1.jar:/usr/share/jigasi/lib/asm-commons-7.1.jar:/usr/share/jigasi/lib/asm-tree-7.1.jar:/usr/share/jigasi/lib/asm-util-7.1.jar:/usr/share/jigasi/lib/auto-value-annotations-1.9.jar:/usr/share/jigasi/lib/bcpkix-jdk18on-1.75.jar:/usr/share/jigasi/lib/bcprov-jdk18on-1.75.jar:/usr/share/jigasi/lib/bctls-jdk18on-1.75.jar:/usr/share/jigasi/lib/bcutil-jdk18on-1.75.jar:/usr/share/jigasi/lib/cglib-nodep-2.2.jar:/usr/share/jigasi/lib/checker-qual-3.12.0.jar:/usr/share/jigasi/lib/commons-codec-1.15.jar:/usr/share/jigasi/lib/commons-collections4-4.4.jar:/usr/share/jigasi/lib/commons-compress-1.24.0.jar:/usr/share/jigasi/lib/commons-io-2.11.0.jar:/usr/share/jigasi/lib/commons-lang3-3.12.0.jar:/usr/share/jigasi/lib/commons-logging-1.2.jar:/usr/share/jigasi/lib/commons-text-1.10.0.jar:/usr/share/jigasi/lib/config-1.4.2.jar:/usr/share/jigasi/lib/conscrypt-openjdk-uber-2.5.1.jar:/usr/share/jigasi/lib/dbus-java-3.3.2.jar:/usr/share/jigasi/lib/dnsjava-3.5.2.jar:/usr/share/jigasi/lib/error_prone_annotations-2.11.0.jar:/usr/share/jigasi/lib/failureaccess-1.0.1.jar:/usr/share/jigasi/lib/fluent-hc-4.5.14.jar:/usr/share/jigasi/lib/fmj-1.0.2-jitsi.jar:/usr/share/jigasi/lib/gax-2.16.0.jar:/usr/share/jigasi/lib/gax-grpc-2.16.0.jar:/usr/share/jigasi/lib/gax-httpjson-0.101.0.jar:/usr/share/jigasi/lib/google-api-client-1.34.0.jar:/usr/share/jigasi/lib/google-api-services-translate-v2-rev20170525-1.32.1.jar:/usr/share/jigasi/lib/google-auth-library-credentials-1.6.0.jar:/usr/share/jigasi/lib/google-auth-library-oauth2-http-1.6.0.jar:/usr/share/jigasi/lib/google-cloud-core-2.6.0.jar:/usr/share/jigasi/lib/google-cloud-core-http-2.6.0.jar:/usr/share/jigasi/lib/google-cloud-speech-2.2.15.jar:/usr/share/jigasi/lib/google-cloud-translate-2.1.13.jar:/usr/share/jigasi/lib/google-http-client-1.41.7.jar:/usr/share/jigasi/lib/google-http-client-apache-v2-1.41.7.jar:/usr/share/jigasi/lib/google-http-client-appengine-1.41.7.jar:/usr/share/jigasi/lib/google-http-client-gson-1.41.7.jar:/usr/share/jigasi/lib/google-http-client-jackson2-1.41.7.jar:/usr/share/jigasi/lib/google-oauth-client-1.33.3.jar:/usr/share/jigasi/lib/grpc-alts-1.45.1.jar:/usr/share/jigasi/lib/grpc-api-1.45.1.jar:/usr/share/jigasi/lib/grpc-auth-1.45.1.jar:/usr/share/jigasi/lib/grpc-context-1.45.1.jar:/usr/share/jigasi/lib/grpc-core-1.45.1.jar:/usr/share/jigasi/lib/grpc-googleapis-1.45.1.jar:/usr/share/jigasi/lib/grpc-grpclb-1.45.1.jar:/usr/share/jigasi/lib/grpc-netty-shaded-1.45.1.jar:/usr/share/jigasi/lib/grpc-protobuf-1.45.1.jar:/usr/share/jigasi/lib/grpc-protobuf-lite-1.45.1.jar:/usr/share/jigasi/lib/grpc-services-1.45.1.jar:/usr/share/jigasi/lib/grpc-stub-1.45.1.jar:/usr/share/jigasi/lib/grpc-xds-1.45.1.jar:/usr/share/jigasi/lib/gson-2.9.0.jar:/usr/share/jigasi/lib/guava-31.1-jre.jar:/usr/share/jigasi/lib/hk2-api-3.0.1.jar:/usr/share/jigasi/lib/hk2-locator-3.0.1.jar:/usr/share/jigasi/lib/hk2-utils-3.0.1.jar:/usr/share/jigasi/lib/hsluv-0.2.jar:/usr/share/jigasi/lib/hsqldb-2.7.2.jar:/usr/share/jigasi/lib/httpclient-4.5.13.jar:/usr/share/jigasi/lib/httpcore-4.4.15.jar:/usr/share/jigasi/lib/httpmime-4.5.14.jar:/usr/share/jigasi/lib/ice4j-3.0-59-g71e244d.jar:/usr/share/jigasi/lib/j2objc-annotations-1.3.jar:/usr/share/jigasi/lib/jackson-annotations-2.12.6.jar:/usr/share/jigasi/lib/jackson-core-2.13.2.jar:/usr/share/jigasi/lib/jackson-databind-2.12.6.1.jar:/usr/share/jigasi/lib/jackson-module-jakarta-xmlbind-annotations-2.13.0.jar:/usr/share/jigasi/lib/jain-sip-ri-ossonly-1.2.279-jitsi-oss1.jar:/usr/share/jigasi/lib/jakarta.activation-2.0.1.jar:/usr/share/jigasi/lib/jakarta.annotation-api-2.0.0.jar:/usr/share/jigasi/lib/jakarta.inject-api-2.0.0.jar:/usr/share/jigasi/lib/jakarta.validation-api-3.0.0.jar:/usr/share/jigasi/lib/jakarta.ws.rs-api-3.0.0.jar:/usr/share/jigasi/lib/jakarta.xml.bind-api-3.0.1.jar:/usr/share/jigasi/lib/java-dogstatsd-client-4.0.0.jar:/usr/share/jigasi/lib/java-sdp-nist-bridge-1.2.jar:/usr/share/jigasi/lib/java-uuid-generator-4.1.0.jar:/usr/share/jigasi/lib/javassist-3.28.0-GA.jar:/usr/share/jigasi/lib/javax.annotation-api-1.3.2.jar:/usr/share/jigasi/lib/javax.servlet-api-4.0.1.jar:/usr/share/jigasi/lib/jbosh-0.9.2.jar:/usr/share/jigasi/lib/jcl-core-2.8.jar:/usr/share/jigasi/lib/jersey-client-3.0.4.jar:/usr/share/jigasi/lib/jersey-common-3.0.4.jar:/usr/share/jigasi/lib/jersey-container-jetty-http-3.0.4.jar:/usr/share/jigasi/lib/jersey-container-servlet-3.0.4.jar:/usr/share/jigasi/lib/jersey-container-servlet-core-3.0.4.jar:/usr/share/jigasi/lib/jersey-entity-filtering-3.0.4.jar:/usr/share/jigasi/lib/jersey-hk2-3.0.4.jar:/usr/share/jigasi/lib/jersey-media-json-jackson-3.0.4.jar:/usr/share/jigasi/lib/jersey-server-3.0.4.jar:/usr/share/jigasi/lib/jetty-alpn-client-11.0.10.jar:/usr/share/jigasi/lib/jetty-client-11.0.10.jar:/usr/share/jigasi/lib/jetty-http-11.0.10.jar:/usr/share/jigasi/lib/jetty-io-11.0.10.jar:/usr/share/jigasi/lib/jetty-jakarta-servlet-api-5.0.2.jar:/usr/share/jigasi/lib/jetty-proxy-11.0.9.jar:/usr/share/jigasi/lib/jetty-security-11.0.9.jar:/usr/share/jigasi/lib/jetty-server-11.0.9.jar:/usr/share/jigasi/lib/jetty-servlet-11.0.9.jar:/usr/share/jigasi/lib/jetty-servlets-11.0.9.jar:/usr/share/jigasi/lib/jetty-util-11.0.10.jar:/usr/share/jigasi/lib/jffi-1.2.23-native.jar:/usr/share/jigasi/lib/jffi-1.2.23.jar:/usr/share/jigasi/lib/jicoco-1.1-107-gfb316f8.jar:/usr/share/jigasi/lib/jicoco-config-1.1-107-gfb316f8.jar:/usr/share/jigasi/lib/jitsi-android-osgi-2.0-1-g81dca45.jar:/usr/share/jigasi/lib/jitsi-configuration-2.14.77b1f5e65.jar:/usr/share/jigasi/lib/jitsi-contactlist-2.14.77b1f5e65.jar:/usr/share/jigasi/lib/jitsi-defaultresourcepack-2.14.77b1f5e65.jar:/usr/share/jigasi/lib/jitsi-desktoputil-2.14.77b1f5e65.jar:/usr/share/jigasi/lib/jitsi-dns-2.14.77b1f5e65.jar:/usr/share/jigasi/lib/jitsi-hid-2.14.77b1f5e65.jar:/usr/share/jigasi/lib/jitsi-lgpl-dependencies-1.2-23-g7b49874.jar:/usr/share/jigasi/lib/jitsi-metaconfig-1.0-9-g5e1b624.jar:/usr/share/jigasi/lib/jitsi-muc-2.14.77b1f5e65.jar:/usr/share/jigasi/lib/jitsi-neomedia-2.14.77b1f5e65.jar:/usr/share/jigasi/lib/jitsi-osgi-util-2.14.77b1f5e65.jar:/usr/share/jigasi/lib/jitsi-packetlogging-2.14.77b1f5e65.jar:/usr/share/jigasi/lib/jitsi-phonenumbers-2.14.77b1f5e65.jar:/usr/share/jigasi/lib/jitsi-protocol-jabber-2.14.77b1f5e65.jar:/usr/share/jigasi/lib/jitsi-protocol-sip-2.14.77b1f5e65.jar:/usr/share/jigasi/lib/jitsi-reconnect-2.14.77b1f5e65.jar:/usr/share/jigasi/lib/jitsi-srtp-1.1-13-g1d0db60.jar:/usr/share/jigasi/lib/jitsi-util-2.14.77b1f5e65.jar:/usr/share/jigasi/lib/jitsi-utils-1.0-126-g02b0c86.jar:/usr/share/jigasi/lib/jitsi-webrtcvadwrapper-1.0-SNAPSHOT.jar:/usr/share/jigasi/lib/jitsi-xmpp-extensions-1.0-63-g441d6d5.jar:/usr/share/jigasi/lib/jjwt-api-0.11.5.jar:/usr/share/jigasi/lib/jjwt-impl-0.11.5.jar:/usr/share/jigasi/lib/jjwt-jackson-0.11.5.jar:/usr/share/jigasi/lib/jna-5.9.0.jar:/usr/share/jigasi/lib/jna-platform-5.13.0.jar:/usr/share/jigasi/lib/jnr-a64asm-1.0.0.jar:/usr/share/jigasi/lib/jnr-constants-0.9.17.jar:/usr/share/jigasi/lib/jnr-enxio-0.30.jar:/usr/share/jigasi/lib/jnr-ffi-2.1.16.jar:/usr/share/jigasi/lib/jnr-posix-3.0.61.jar:/usr/share/jigasi/lib/jnr-unixsocket-0.36.jar:/usr/share/jigasi/lib/jnr-x86asm-1.0.2.jar:/usr/share/jigasi/lib/jnsapi-0.0.3-jitsi-smack4.4-2.jar:/usr/share/jigasi/lib/json-20220320.jar:/usr/share/jigasi/lib/json-simple-1.1.1.jar:/usr/share/jigasi/lib/jsr305-3.0.2.jar:/usr/share/jigasi/lib/jxmpp-core-1.0.3.jar:/usr/share/jigasi/lib/jxmpp-jid-1.0.3.jar:/usr/share/jigasi/lib/jxmpp-util-cache-1.0.3.jar:/usr/share/jigasi/lib/kotlin-reflect-1.6.21.jar:/usr/share/jigasi/lib/kotlin-stdlib-1.6.21.jar:/usr/share/jigasi/lib/kotlin-stdlib-common-1.6.21.jar:/usr/share/jigasi/lib/kotlin-stdlib-jdk7-1.5.31.jar:/usr/share/jigasi/lib/kotlin-stdlib-jdk8-1.5.31.jar:/usr/share/jigasi/lib/libjitsi-1.1-29-g00e62769.jar:/usr/share/jigasi/lib/libphonenumber-8.13.17.jar:/usr/share/jigasi/lib/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar:/usr/share/jigasi/lib/minidns-core-1.0.4.jar:/usr/share/jigasi/lib/object-cloner-0.1.jar:/usr/share/jigasi/lib/objenesis-2.1.jar:/usr/share/jigasi/lib/opencensus-api-0.31.0.jar:/usr/share/jigasi/lib/opencensus-contrib-http-util-0.31.0.jar:/usr/share/jigasi/lib/opencensus-proto-0.2.0.jar:/usr/share/jigasi/lib/org.osgi.namespace.implementation-1.0.0.jar:/usr/share/jigasi/lib/org.osgi.service.cm-1.6.1.jar:/usr/share/jigasi/lib/osgi-resource-locator-1.0.3.jar:/usr/share/jigasi/lib/osgi.annotation-8.0.1.jar:/usr/share/jigasi/lib/osgi.core-8.0.0.jar:/usr/share/jigasi/lib/perfmark-api-0.23.0.jar:/usr/share/jigasi/lib/proto-google-cloud-speech-v1-2.2.15.jar:/usr/share/jigasi/lib/proto-google-cloud-speech-v1beta1-0.86.15.jar:/usr/share/jigasi/lib/proto-google-cloud-speech-v1p1beta1-0.86.15.jar:/usr/share/jigasi/lib/proto-google-cloud-translate-v3-2.1.13.jar:/usr/share/jigasi/lib/proto-google-cloud-translate-v3beta1-0.83.13.jar:/usr/share/jigasi/lib/proto-google-common-protos-2.8.3.jar:/usr/share/jigasi/lib/proto-google-iam-v1-1.3.1.jar:/usr/share/jigasi/lib/protobuf-java-3.19.4.jar:/usr/share/jigasi/lib/protobuf-java-util-3.19.4.jar:/usr/share/jigasi/lib/re2j-1.5.jar:/usr/share/jigasi/lib/sdes4j-1.1.5.jar:/usr/share/jigasi/lib/sdp-api-1.0.jar:/usr/share/jigasi/lib/sentry-5.3.0.jar:/usr/share/jigasi/lib/service-argdelegation-2.14.77b1f5e65.jar:/usr/share/jigasi/lib/service-browserlauncher-2.14.77b1f5e65.jar:/usr/share/jigasi/lib/service-callhistory-2.14.77b1f5e65.jar:/usr/share/jigasi/lib/service-certificate-2.14.77b1f5e65.jar:/usr/share/jigasi/lib/service-contactlist-2.14.77b1f5e65.jar:/usr/share/jigasi/lib/service-contactsource-2.14.77b1f5e65.jar:/usr/share/jigasi/lib/service-credentialsstorage-2.14.77b1f5e65.jar:/usr/share/jigasi/lib/service-customavatar-2.14.77b1f5e65.jar:/usr/share/jigasi/lib/service-customcontactactions-2.14.77b1f5e65.jar:/usr/share/jigasi/lib/service-dnsservice-2.14.77b1f5e65.jar:/usr/share/jigasi/lib/service-filehistory-2.14.77b1f5e65.jar:/usr/share/jigasi/lib/service-globaldisplaydetails-2.14.77b1f5e65.jar:/usr/share/jigasi/lib/service-hid-2.14.77b1f5e65.jar:/usr/share/jigasi/lib/service-history-2.14.77b1f5e65.jar:/usr/share/jigasi/lib/service-httputil-2.14.77b1f5e65.jar:/usr/share/jigasi/lib/service-keybindings-2.14.77b1f5e65.jar:/usr/share/jigasi/lib/service-msghistory-2.14.77b1f5e65.jar:/usr/share/jigasi/lib/service-muc-2.14.77b1f5e65.jar:/usr/share/jigasi/lib/service-netaddr-2.14.77b1f5e65.jar:/usr/share/jigasi/lib/service-notification-service-2.14.77b1f5e65.jar:/usr/share/jigasi/lib/service-protocol-2.14.77b1f5e65.jar:/usr/share/jigasi/lib/service-protocol-media-2.14.77b1f5e65.jar:/usr/share/jigasi/lib/service-resourcemanager-2.14.77b1f5e65.jar:/usr/share/jigasi/lib/service-sysactivity-2.14.77b1f5e65.jar:/usr/share/jigasi/lib/service-systray-service-2.14.77b1f5e65.jar:/usr/share/jigasi/lib/service-ui-service-2.14.77b1f5e65.jar:/usr/share/jigasi/lib/sip-api-1.2-1.2.jar:/usr/share/jigasi/lib/slf4j-api-1.7.36.jar:/usr/share/jigasi/lib/slf4j-jdk14-1.7.36.jar:/usr/share/jigasi/lib/smack-bosh-4.4.6.jar:/usr/share/jigasi/lib/smack-core-4.4.6.jar:/usr/share/jigasi/lib/smack-debug-4.4.6.jar:/usr/share/jigasi/lib/smack-experimental-4.4.6.jar:/usr/share/jigasi/lib/smack-extensions-4.4.6.jar:/usr/share/jigasi/lib/smack-im-4.4.6.jar:/usr/share/jigasi/lib/smack-java8-4.4.6.jar:/usr/share/jigasi/lib/smack-legacy-4.4.6.jar:/usr/share/jigasi/lib/smack-resolver-dnsjava-4.4.6.jar:/usr/share/jigasi/lib/smack-resolver-javax-4.4.6.jar:/usr/share/jigasi/lib/smack-sasl-javax-4.4.6.jar:/usr/share/jigasi/lib/smack-streammanagement-4.4.6.jar:/usr/share/jigasi/lib/smack-tcp-4.4.6.jar:/usr/share/jigasi/lib/smack-xmlparser-4.4.6.jar:/usr/share/jigasi/lib/smack-xmlparser-stax-4.4.5.jar:/usr/share/jigasi/lib/threetenbp-1.6.0.jar:/usr/share/jigasi/lib/vorbis-java-core-0.8.jar:/usr/share/jigasi/lib/websocket-core-client-11.0.10.jar:/usr/share/jigasi/lib/websocket-core-common-11.0.10.jar:/usr/share/jigasi/lib/websocket-jetty-api-11.0.10.jar:/usr/share/jigasi/lib/websocket-jetty-client-11.0.10.jar:/usr/share/jigasi/lib/websocket-jetty-common-11.0.10.jar:/usr/share/jigasi/lib/weupnp-0.1.4.jar:/usr/share/jigasi/lib/xpp3-1.1.4c.jar:/usr/share/jigasi/lib/zrtp4j-light-4.1.3.jar
jdk.xml.elementAttributeLimit=524288
java.vm.vendor=Debian
sun.arch.data.model=64
org.jitsi.impl.neomedia.device.MacCoreaudioSystem.disabled=true
jdk.xml.entityExpansionLimit=0
java.vendor.url=https://tracker.debian.org/openjdk-11
user.timezone=Europe/Stockholm
os.name=Linux
java.vm.specification.version=11
net.java.sip.communicator.impl.protocol.jabber.DISABLE_COIN=true
jdk.xml.maxOccurLimit=0
net.java.sip.communicator.service.media.MAX_PORT_NUMBER=20050
sun.java.launcher=SUN_STANDARD
user.country=US
sun.boot.library.path=/usr/lib/jvm/java-11-openjdk-amd64/lib
sun.java.command=org.jitsi.jigasi.Main --nocomponent=true --configdir=/ --configdirname=config --min-port=20000 --max-port=20050
jdk.debug=release
sun.cpu.endian=little
user.home=/usr/share/jigasi
user.language=en
java.specification.vendor=Oracle Corporation
net.java.sip.communicator.impl.protocol.jabber.SKIP_DISCO_INFO_ON_SESSION_INITIATE=true
net.java.sip.communicator.impl.neomedia.audioSystem=audiosilence
java.version.date=2024-01-16
java.home=/usr/lib/jvm/java-11-openjdk-amd64
net.java.sip.communicator.impl.neomedia.video.maxbandwidth=2147483647
file.separator=/
java.vm.compressedOopsMode=Zero based
line.separator=

java.specification.name=Java Platform API Specification
java.vm.specification.vendor=Oracle Corporation
jdk.xml.totalEntitySizeLimit=0
java.awt.graphicsenv=sun.awt.X11GraphicsEnvironment
net.java.sip.communicator.impl.configuration.USE_PROPFILE_CONFIG=true
net.java.sip.communicator.service.media.DISABLE_AUDIO_SUPPORT=false
java.util.logging.config.file=/config/logging.properties
sun.management.compiler=HotSpot 64-Bit Tiered Compilers
net.java.sip.communicator.impl.protocol.sip.SKIP_REINVITE_ON_FOCUS_CHANGE_PROP=true
org.jitsi.service.audionotifier.AudioNotifierService=org.jitsi.impl.neomedia.notify.AudioNotifierServiceImpl
java.runtime.version=11.0.22+7-post-Debian-1deb11u1
user.name=jigasi
path.separator=:
os.version=5.15.0-60-generic
jdk.xml.maxXMLNameLimit=524288
java.runtime.name=OpenJDK Runtime Environment
net.java.sip.communicator.CONFIGURATION_FILE_IS_READ_ONLY=true
file.encoding=ANSI_X3.4-1968
org.jitsi.impl.neomedia.device.PulseAudioSystem.disabled=true
org.jitsi.impl.neomedia.transform.csrc.SsrcTransformEngine.dropMutedAudioSourceInReverseTransform=true
smack.debuggerClass=org.jivesoftware.smack.debugger.JulDebugger
java.vm.name=OpenJDK 64-Bit Server VM
net.java.sip.communicator.service.protocol.MIN_MEDIA_PORT_NUMBER=20000
net.java.sip.communicator.service.media.MIN_PORT_NUMBER=20000
java.vendor.url.bug=https://bugs.debian.org/openjdk-11
net.java.sip.communicator.service.media.DISABLE_VIDEO_SUPPORT=true
java.io.tmpdir=/tmp
net.java.sip.communicator.SC_HOME_DIR_NAME=config
net.java.sip.communicator.impl.protocol.jabber.SKIP_RINGING_ON_SESSION_INITIATE=true
java.version=11.0.22
user.dir=/run/s6/services/jigasi
os.arch=amd64
java.vm.specification.name=Java Virtual Machine Specification
jdk.xml.entityReplacementLimit=0
java.awt.printerjob=sun.print.PSPrinterJob
sun.os.patch.level=unknown
net.java.sip.communicator.service.protocol.MAX_MEDIA_PORT_NUMBER=20050
java.library.path=/usr/share/jigasi/lib
java.vm.info=mixed mode, sharing
java.vendor=Debian
net.java.sip.communicator.SC_HOME_DIR_LOCATION=/
java.vm.version=11.0.22+7-post-Debian-1deb11u1
java.specification.maintenance.version=2
sun.io.unicode.encoding=UnicodeLittle
java.class.version=55.0
org.jitsi.impl.neomedia.device.PortAudioSystem.disabled=true

2024-03-05 11:57:53.850 INFO: [14] ConfigurationServiceImpl.loadDefaultProperties#1570: Normal classloader
2024-03-05 11:57:53.858 INFO: [14] ConfigurationServiceImpl.loadDefaultProperties#1576: failed to find jitsi-defaults.properties with class loader, will continue without it.
2024-03-05 11:57:53.866 INFO: [14] ConfigurationServiceImpl.loadDefaultProperties#1570: Normal classloader
2024-03-05 11:57:53.867 INFO: [14] ConfigurationServiceImpl.loadDefaultProperties#1576: failed to find jitsi-default-overrides.properties with class loader, will continue without it.
2024-03-05 11:57:53.931 SEVERE: [14] net.java.sip.communicator.impl.configuration.ConfigurationActivator.fixPermissions: Error while fixing config file permissions
java.nio.file.FileSystemException: /config: Operation not permitted
        at java.base/sun.nio.fs.UnixException.translateToIOException(UnixException.java:100)
        at java.base/sun.nio.fs.UnixException.rethrowAsIOException(UnixException.java:111)
        at java.base/sun.nio.fs.UnixException.rethrowAsIOException(UnixException.java:116)
        at java.base/sun.nio.fs.UnixFileAttributeViews$Posix.setMode(UnixFileAttributeViews.java:254)
        at java.base/sun.nio.fs.UnixFileAttributeViews$Posix.setPermissions(UnixFileAttributeViews.java:276)
        at java.base/java.nio.file.Files.setPosixFilePermissions(Files.java:2080)
        at net.java.sip.communicator.impl.configuration.ConfigurationActivator.fixPermissions(ConfigurationActivator.java:150)
        at net.java.sip.communicator.impl.configuration.ConfigurationActivator.startWithServices(ConfigurationActivator.java:74)
        at net.java.sip.communicator.util.osgi.DependentActivator.addingService(DependentActivator.java:103)
        at org.osgi.util.tracker.ServiceTracker$Tracked.customizerAdding(ServiceTracker.java:943)
        at org.osgi.util.tracker.ServiceTracker$Tracked.customizerAdding(ServiceTracker.java:871)
        at org.osgi.util.tracker.AbstractTracked.trackAdding(AbstractTracked.java:256)
        at org.osgi.util.tracker.AbstractTracked.trackInitial(AbstractTracked.java:183)
        at org.osgi.util.tracker.ServiceTracker.open(ServiceTracker.java:321)
        at org.osgi.util.tracker.ServiceTracker.open(ServiceTracker.java:264)
        at net.java.sip.communicator.util.osgi.DependentActivator.start(DependentActivator.java:79)
        at org.jitsi.impl.osgi.framework.BundleImpl.start(BundleImpl.java:428)
        at org.jitsi.impl.osgi.framework.launch.FrameworkImpl.startLevelChanged(FrameworkImpl.java:483)
        at org.jitsi.impl.osgi.framework.startlevel.FrameworkStartLevelImpl$Command.run(FrameworkStartLevelImpl.java:133)
        at java.base/java.util.concurrent.ForkJoinTask$RunnableExecuteAction.exec(ForkJoinTask.java:1426)
        at java.base/java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:290)
        at java.base/java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1020)
        at java.base/java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1656)
        at java.base/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1594)
        at java.base/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:183)
2024-03-05 11:57:53.938 INFO: [14] org.jitsi.impl.osgi.framework.BundleImpl.start: Starting activator net.java.sip.communicator.util.UtilActivator in file:/usr/share/jigasi/lib/jitsi-util-2.14.77b1f5e65.jar
2024-03-05 11:57:53.939 INFO: [14] net.java.sip.communicator.util.osgi.DependentActivator.start: Starting, setting up service tracker for 1  dependencies
2024-03-05 11:57:53.939 INFO: [14] org.jitsi.impl.osgi.framework.BundleImpl.start: Starting activator net.java.sip.communicator.plugin.defaultresourcepack.DefaultResourcePackActivator in file:/usr/share/jigasi/lib/jitsi-defaultresourcepack-2.14.77b1f5e65.jar
2024-03-05 11:57:54.050 INFO: [14] net.java.sip.communicator.plugin.defaultresourcepack.DefaultResourcePackActivator.start: Default resources ... [REGISTERED]
2024-03-05 11:57:54.050 INFO: [14] org.jitsi.impl.osgi.framework.BundleImpl.start: Starting activator net.java.sip.communicator.impl.resources.ResourceManagementActivator in file:/usr/share/jigasi/lib/service-resourcemanager-2.14.77b1f5e65.jar
2024-03-05 11:57:54.057 INFO: [14] net.java.sip.communicator.util.osgi.DependentActivator.start: Starting, setting up service tracker for 6  dependencies
2024-03-05 11:57:54.098 INFO: [14] org.jitsi.impl.osgi.framework.BundleImpl.start: Starting activator net.java.sip.communicator.service.notification.NotificationServiceActivator in file:/usr/share/jigasi/lib/service-notification-service-2.14.77b1f5e65.jar
2024-03-05 11:57:54.099 INFO: [14] net.java.sip.communicator.util.osgi.DependentActivator.start: Starting, setting up service tracker for 1  dependencies
2024-03-05 11:57:54.100 INFO: [14] net.java.sip.communicator.service.notification.NotificationServiceActivator.startWithServices: Notification Service...[  STARTED ]
2024-03-05 11:57:54.111 INFO: [14] net.java.sip.communicator.service.notification.NotificationServiceActivator.startWithServices: Notification Service ...[REGISTERED]
2024-03-05 11:57:54.113 INFO: [14] org.jitsi.impl.osgi.framework.BundleImpl.start: Starting activator net.java.sip.communicator.impl.dns.DnsUtilActivator in file:/usr/share/jigasi/lib/jitsi-dns-2.14.77b1f5e65.jar
2024-03-05 11:57:54.119 INFO: [14] net.java.sip.communicator.util.osgi.DependentActivator.start: Starting, setting up service tracker for 4  dependencies
2024-03-05 11:57:54.121 INFO: [14] org.jitsi.impl.osgi.framework.BundleImpl.start: Starting activator net.java.sip.communicator.impl.credentialsstorage.CredentialsStorageActivator in file:/usr/share/jigasi/lib/service-credentialsstorage-2.14.77b1f5e65.jar
2024-03-05 11:57:54.123 INFO: [14] net.java.sip.communicator.util.osgi.DependentActivator.start: Starting, setting up service tracker for 2  dependencies
2024-03-05 11:57:54.125 INFO: [14] org.jitsi.impl.osgi.framework.BundleImpl.start: Starting activator net.java.sip.communicator.impl.netaddr.NetaddrActivator in file:/usr/share/jigasi/lib/service-netaddr-2.14.77b1f5e65.jar
2024-03-05 11:57:54.127 INFO: [14] net.java.sip.communicator.util.osgi.DependentActivator.start: Starting, setting up service tracker for 2  dependencies
2024-03-05 11:57:54.128 INFO: [14] org.jitsi.impl.osgi.framework.BundleImpl.start: Starting activator net.java.sip.communicator.impl.packetlogging.PacketLoggingActivator in file:/usr/share/jigasi/lib/jitsi-packetlogging-2.14.77b1f5e65.jar
2024-03-05 11:57:54.129 INFO: [14] net.java.sip.communicator.util.osgi.DependentActivator.start: Starting, setting up service tracker for 2  dependencies
2024-03-05 11:57:54.158 INFO: [16] net.java.sip.communicator.impl.dns.DnsUtilActivator.startWithServices: DNS service ... [STARTING]
2024-03-05 11:57:54.159 INFO: [14] net.java.sip.communicator.impl.packetlogging.PacketLoggingActivator.startWithServices: Packet Logging Service ...[REGISTERED]
2024-03-05 11:57:54.159 INFO: [14] org.jitsi.impl.osgi.framework.BundleImpl.start: Starting activator net.java.sip.communicator.service.gui.internal.GuiServiceActivator in file:/usr/share/jigasi/lib/service-ui-service-2.14.77b1f5e65.jar
2024-03-05 11:57:54.181 INFO: [14] net.java.sip.communicator.util.osgi.DependentActivator.start: Starting, setting up service tracker for 1  dependencies
2024-03-05 11:57:54.186 INFO: [14] org.jitsi.impl.osgi.framework.BundleImpl.start: Starting activator net.java.sip.communicator.service.protocol.media.ProtocolMediaActivator in file:/usr/share/jigasi/lib/service-protocol-media-2.14.77b1f5e65.jar
2024-03-05 11:57:54.186 INFO: [14] org.jitsi.impl.osgi.framework.BundleImpl.start: Starting activator net.java.sip.communicator.impl.neomedia.NeomediaActivator in file:/usr/share/jigasi/lib/jitsi-neomedia-2.14.77b1f5e65.jar
2024-03-05 11:57:54.196 INFO: [14] net.java.sip.communicator.util.osgi.DependentActivator.start: Starting, setting up service tracker for 6  dependencies
2024-03-05 11:57:54.423 INFO: [16] net.java.sip.communicator.util.NetworkUtils.<clinit>: java.net.preferIPv6Addresses=null
2024-03-05 11:57:54.426 INFO: [16] net.java.sip.communicator.util.NetworkUtils.<clinit>: java.net.preferIPv4Stack=null
2024-03-05 11:57:54.451 INFO: [16] net.java.sip.communicator.impl.dns.DnsUtilActivator.startWithServices: ParallelResolver ... [REGISTERED]
2024-03-05 11:57:54.451 INFO: [16] net.java.sip.communicator.impl.dns.DnsUtilActivator.startWithServices: DNS service ... [STARTED]
2024-03-05 11:57:54.475 INFO: [16] net.java.sip.communicator.impl.netaddr.NetaddrActivator.startWithServices: Network Address Manager         ...[  STARTED ]
2024-03-05 11:57:54.489 INFO: [15] net.java.sip.communicator.impl.netaddr.NetworkConfigurationWatcher.checkNetworkInterfaces: Currently Active eth0:[/172.19.0.3]
2024-03-05 11:57:54.501 INFO: [15] net.java.sip.communicator.impl.dns.DnsUtilActivator.logDNSServers: Loading or Reloading resolver config, default DNS servers are: /127.0.0.11:53,
WARNING: An illegal reflective access operation has occurred
WARNING: Illegal reflective access by org.jitsi.utils.JNIUtils (file:/usr/share/jigasi/lib/jitsi-utils-1.0-126-g02b0c86.jar) to method java.lang.Runtime.loadLibrary0(java.lang.Class,java.lang.String)
WARNING: Please consider reporting this to the maintainers of org.jitsi.utils.JNIUtils
WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations
WARNING: All illegal access operations will be denied in a future release
2024-03-05 11:57:55.134 INFO: [16] JitsiConfig.<clinit>#47: Initialized newConfig: merge of system properties,reference.conf @ jar:file:/usr/share/jigasi/jigasi.jar!/reference.conf: 1,reference.conf @ jar:file:/usr/share/jigasi/lib/ice4j-3.0-59-g71e244d.jar!/reference.conf: 1
2024-03-05 11:57:55.136 INFO: [16] ReadOnlyConfigurationService.reloadConfiguration#51: loading config file at path /config/sip-communicator.properties
2024-03-05 11:57:55.144 INFO: [16] JitsiConfig.<clinit>#68: Initialized legacyConfig: sip communicator props (no description provided)
2024-03-05 11:57:55.150 INFO: [16] JitsiConfig$Companion.useDebugNewConfig#74: Replacing newConfig with merge of system properties,reference.conf @ jar:file:/usr/share/jigasi/jigasi.jar!/reference.conf: 1,reference.conf @ jar:file:/usr/share/jigasi/lib/ice4j-3.0-59-g71e244d.jar!/reference.conf: 1
2024-03-05 11:57:55.151 INFO: [16] net.java.sip.communicator.impl.netaddr.NetaddrActivator.startWithServices: Network Address Manager Service ...[REGISTERED]
2024-03-05 11:57:55.193 SEVERE: [14] DeviceConfiguration.registerCustomRenderers#1010: Failed to register custom Renderer org.jitsi.impl.neomedia.jmfext.media.renderer.audio.PulseAudioRenderer with JMF.
java.lang.IllegalStateException: audioSystem
        at org.jitsi.impl.neomedia.jmfext.media.renderer.audio.PulseAudioRenderer.<init>(PulseAudioRenderer.java:156)
        at org.jitsi.impl.neomedia.jmfext.media.renderer.audio.PulseAudioRenderer.<init>(PulseAudioRenderer.java:136)
        at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
        at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
        at java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
        at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:490)
        at java.base/java.lang.Class.newInstance(Class.java:584)
        at org.jitsi.impl.neomedia.device.DeviceConfiguration.registerCustomRenderers(DeviceConfiguration.java:999)
        at org.jitsi.impl.neomedia.device.DeviceConfiguration.<init>(DeviceConfiguration.java:320)
        at org.jitsi.impl.neomedia.MediaServiceImpl.<init>(MediaServiceImpl.java:163)
        at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
        at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
        at java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
        at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:490)
        at java.base/java.lang.Class.newInstance(Class.java:584)
        at org.jitsi.impl.libjitsi.LibJitsiImpl$ServiceLock.initializeService(LibJitsiImpl.java:196)
        at org.jitsi.impl.libjitsi.LibJitsiImpl$ServiceLock.getService(LibJitsiImpl.java:131)
        at org.jitsi.impl.libjitsi.LibJitsiImpl.getService(LibJitsiImpl.java:91)
        at org.jitsi.impl.libjitsi.LibJitsiOSGiImpl.getService(LibJitsiOSGiImpl.java:69)
        at org.jitsi.service.libjitsi.LibJitsi.invokeGetServiceOnImpl(LibJitsi.java:170)
        at org.jitsi.service.libjitsi.LibJitsi.getMediaService(LibJitsi.java:122)
        at net.java.sip.communicator.impl.neomedia.NeomediaActivator.startWithServices(NeomediaActivator.java:417)
        at net.java.sip.communicator.util.osgi.DependentActivator.addingService(DependentActivator.java:103)
        at org.osgi.util.tracker.ServiceTracker$Tracked.customizerAdding(ServiceTracker.java:943)
        at org.osgi.util.tracker.ServiceTracker$Tracked.customizerAdding(ServiceTracker.java:871)
        at org.osgi.util.tracker.AbstractTracked.trackAdding(AbstractTracked.java:256)
        at org.osgi.util.tracker.AbstractTracked.trackInitial(AbstractTracked.java:183)
        at org.osgi.util.tracker.ServiceTracker.open(ServiceTracker.java:321)
        at org.osgi.util.tracker.ServiceTracker.open(ServiceTracker.java:264)
        at net.java.sip.communicator.util.osgi.DependentActivator.start(DependentActivator.java:79)
        at org.jitsi.impl.osgi.framework.BundleImpl.start(BundleImpl.java:428)
        at org.jitsi.impl.osgi.framework.launch.FrameworkImpl.startLevelChanged(FrameworkImpl.java:483)
        at org.jitsi.impl.osgi.framework.startlevel.FrameworkStartLevelImpl$Command.run(FrameworkStartLevelImpl.java:133)
        at java.base/java.util.concurrent.ForkJoinTask$RunnableExecuteAction.exec(ForkJoinTask.java:1426)
        at java.base/java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:290)
        at java.base/java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1020)
        at java.base/java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1656)
        at java.base/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1594)
        at java.base/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:183)
2024-03-05 11:57:55.222 INFO: [14] net.java.sip.communicator.impl.neomedia.NeomediaActivator.startWithServices: Media Service ... [REGISTERED]
2024-03-05 11:57:55.225 INFO: [14] net.java.sip.communicator.impl.neomedia.NeomediaActivator.startWithServices: Media Configuration ... [REGISTERED]
2024-03-05 11:57:55.252 INFO: [14] net.java.sip.communicator.impl.neomedia.NeomediaActivator.startWithServices: Audio Notifier Service ...[REGISTERED]
2024-03-05 11:57:55.273 INFO: [14] org.jitsi.impl.osgi.framework.BundleImpl.start: Starting activator net.java.sip.communicator.impl.certificate.CertificateVerificationActivator in file:/usr/share/jigasi/lib/service-certificate-2.14.77b1f5e65.jar
2024-03-05 11:57:55.275 INFO: [14] net.java.sip.communicator.util.osgi.DependentActivator.start: Starting, setting up service tracker for 3  dependencies
2024-03-05 11:57:55.279 INFO: [14] org.jitsi.impl.osgi.framework.BundleImpl.start: Starting activator org.jitsi.jigasi.version.VersionActivator in file:/usr/share/jigasi/jigasi.jar
2024-03-05 11:57:55.284 INFO: [14] AbstractVersionActivator.start#91: VersionService registered: Jigasi 1.1.311-g3de47d0
2024-03-05 11:57:55.285 INFO: [14] org.jitsi.impl.osgi.framework.BundleImpl.start: Starting activator org.jitsi.jigasi.osgi.EmptyHidServiceActivator in file:/usr/share/jigasi/jigasi.jar
2024-03-05 11:57:55.286 INFO: [14] org.jitsi.impl.osgi.framework.BundleImpl.start: Starting activator org.jitsi.jigasi.osgi.EmptyUiServiceActivator in file:/usr/share/jigasi/jigasi.jar
2024-03-05 11:57:55.288 INFO: [14] org.jitsi.impl.osgi.framework.BundleImpl.start: Starting activator org.jitsi.jigasi.osgi.EmptyMasterPasswordInputServiceActivator in file:/usr/share/jigasi/jigasi.jar
2024-03-05 11:57:55.299 INFO: [14] org.jitsi.impl.osgi.framework.BundleImpl.start: Starting activator org.jitsi.jigasi.JigasiBundleActivator in file:/usr/share/jigasi/jigasi.jar
2024-03-05 11:57:55.302 INFO: [14] net.java.sip.communicator.util.osgi.DependentActivator.start: Starting, setting up service tracker for 1  dependencies
2024-03-05 11:57:55.311 INFO: [14] JigasiBundleActivator.startWithServices#213: initialized SipGateway
2024-03-05 11:57:55.324 INFO: [14] JigasiBundleActivator.startWithServices#251: skipped initialization of TranscriptionGateway
2024-03-05 11:57:55.334 INFO: [14] org.jitsi.impl.osgi.framework.BundleImpl.start: Starting activator org.jitsi.jigasi.rest.RESTBundleActivator in file:/usr/share/jigasi/jigasi.jar
2024-03-05 11:57:55.805 INFO: [14] net.java.sip.communicator.util.osgi.DependentActivator.start: Starting, setting up service tracker for 1  dependencies
2024-03-05 11:57:55.951 INFO: [14] org.eclipse.jetty.server.Server.doStart: jetty-11.0.10; built: 2022-06-16T20:42:17.891Z; git: d21dded5817960ec3c753a7ba02ef86f7c9ed89e; jvm 11.0.22+7-post-Debian-1deb11u1
2024-03-05 11:57:56.002 INFO: [14] org.eclipse.jetty.server.AbstractConnector.doStart: Started ServerConnector@6893ebcf{HTTP/1.1, (http/1.1)}{0.0.0.0:8788}
2024-03-05 11:57:56.019 INFO: [14] org.eclipse.jetty.server.Server.doStart: Started Server@493d0ca{STARTING}[11.0.10,sto=0] @4424ms
2024-03-05 11:57:56.019 INFO: [14] org.jitsi.impl.osgi.framework.BundleImpl.start: Starting activator org.jitsi.jigasi.rest.TranscriptServerBundleActivator in file:/usr/share/jigasi/jigasi.jar
2024-03-05 11:57:56.020 INFO: [14] net.java.sip.communicator.util.osgi.DependentActivator.start: Starting, setting up service tracker for 1  dependencies
2024-03-05 11:57:56.027 INFO: [14] AbstractJettyBundleActivator.startWithServices#447: Not starting the Jetty service for org.jitsi.jigasi.rest.TranscriptServerBundleActivator(port=0)
2024-03-05 11:57:56.027 INFO: [14] org.jitsi.impl.osgi.framework.BundleImpl.start: Starting activator org.jitsi.jigasi.xmpp.CallControlMucActivator in file:/usr/share/jigasi/jigasi.jar
2024-03-05 11:57:56.029 INFO: [14] net.java.sip.communicator.util.osgi.DependentActivator.start: Starting, setting up service tracker for 1  dependencies
2024-03-05 11:57:56.031 WARNING: [14] CallControl.<init>#122: Always trust in remote TLS certificates mode is enabled
2024-03-05 11:57:56.031 INFO: [14] org.jitsi.impl.osgi.framework.BundleImpl.start: Starting activator org.jitsi.jigasi.ddclient.DdClientActivator in file:/usr/share/jigasi/jigasi.jar
2024-03-05 11:57:56.032 INFO: [14] org.jitsi.impl.osgi.framework.BundleImpl.start: Starting activator net.java.sip.communicator.service.protocol.ProtocolProviderActivator in file:/usr/share/jigasi/lib/service-protocol-2.14.77b1f5e65.jar
2024-03-05 11:57:56.033 INFO: [14] net.java.sip.communicator.util.osgi.DependentActivator.start: Starting, setting up service tracker for 3  dependencies
2024-03-05 11:57:56.036 INFO: [14] org.jitsi.impl.osgi.framework.BundleImpl.start: Starting activator net.java.sip.communicator.impl.globaldisplaydetails.GlobalDisplayDetailsActivator in file:/usr/share/jigasi/lib/service-globaldisplaydetails-2.14.77b1f5e65.jar
2024-03-05 11:57:56.036 INFO: [14] net.java.sip.communicator.util.osgi.DependentActivator.start: Starting, setting up service tracker for 3  dependencies
2024-03-05 11:57:56.042 INFO: [14] org.jitsi.impl.osgi.framework.BundleImpl.start: Starting activator net.java.sip.communicator.plugin.reconnectplugin.ReconnectPluginActivator in file:/usr/share/jigasi/lib/jitsi-reconnect-2.14.77b1f5e65.jar
2024-03-05 11:57:56.043 INFO: [14] net.java.sip.communicator.util.osgi.DependentActivator.start: Starting, setting up service tracker for 5  dependencies
2024-03-05 11:57:56.045 FINE: [14] net.java.sip.communicator.util.osgi.DependentActivator.addingService: Got service NetworkAddressManagerServiceImpl, starting now
2024-03-05 11:57:56.050 FINE: [14] net.java.sip.communicator.plugin.reconnectplugin.ReconnectPluginActivator.startWithServices: Found 0 already installed providers.
2024-03-05 11:57:56.050 INFO: [14] org.jitsi.impl.osgi.framework.BundleImpl.start: Starting activator net.java.sip.communicator.impl.phonenumbers.PhoneNumberServiceActivator in file:/usr/share/jigasi/lib/jitsi-phonenumbers-2.14.77b1f5e65.jar
2024-03-05 11:57:56.051 INFO: [14] net.java.sip.communicator.util.osgi.DependentActivator.start: Starting, setting up service tracker for 1  dependencies
2024-03-05 11:57:56.053 INFO: [14] net.java.sip.communicator.impl.phonenumbers.PhoneNumberServiceActivator.startWithServices: Packet Logging Service ...[REGISTERED]
2024-03-05 11:57:56.053 INFO: [14] org.jitsi.impl.osgi.framework.BundleImpl.start: Starting activator net.java.sip.communicator.impl.protocol.sip.SipActivator in file:/usr/share/jigasi/lib/jitsi-protocol-sip-2.14.77b1f5e65.jar
2024-03-05 11:57:56.053 INFO: [14] net.java.sip.communicator.util.osgi.DependentActivator.start: Starting, setting up service tracker for 8  dependencies
2024-03-05 11:57:56.059 INFO: [14] org.jitsi.impl.osgi.framework.BundleImpl.start: Starting activator net.java.sip.communicator.impl.protocol.jabber.JabberActivator in file:/usr/share/jigasi/lib/jitsi-protocol-jabber-2.14.77b1f5e65.jar
2024-03-05 11:57:56.060 INFO: [14] net.java.sip.communicator.util.osgi.DependentActivator.start: Starting, setting up service tracker for 11  dependencies
2024-03-05 11:57:56.309 INFO: [27] net.java.sip.communicator.impl.protocol.sip.SipLogger.logInfo: Info from the JAIN-SIP stack: value -1000 will be used for reliableConnectionKeepAliveTimeout stack property
2024-03-05 11:57:56.310 INFO: [27] net.java.sip.communicator.impl.protocol.sip.SipLogger.logInfo: Info from the JAIN-SIP stack: Setting Stack Thread priority to 10
2024-03-05 11:57:56.315 WARNING: [27] net.java.sip.communicator.impl.protocol.sip.SipLogger.logWarning: Warning from the JAIN-SIP stackusing default tls security policy
2024-03-05 11:57:56.317 WARNING: [27] net.java.sip.communicator.impl.protocol.sip.SipLogger.logWarning: Warning from the JAIN-SIP stackUsing default keystore type pkcs12
2024-03-05 11:57:56.317 WARNING: [27] net.java.sip.communicator.impl.protocol.sip.SipLogger.logWarning: Warning from the JAIN-SIP stackTLS server settings will be inactive - TLS key store will use JVM defaults keyStoreType=pkcs12 javax.net.ssl.keyStore=null javax.net.ssl.keyStorePassword=null
2024-03-05 11:57:56.318 INFO: [27] net.java.sip.communicator.impl.protocol.sip.SipLogger.logInfo: Info from the JAIN-SIP stack: javax.net.ssl.trustStorePassword is null, using the password passed through javax.net.ssl.keyStorePassword
2024-03-05 11:57:56.318 WARNING: [27] net.java.sip.communicator.impl.protocol.sip.SipLogger.logWarning: Warning from the JAIN-SIP stackUsing default truststore type pkcs12
2024-03-05 11:57:56.318 WARNING: [27] net.java.sip.communicator.impl.protocol.sip.SipLogger.logWarning: Warning from the JAIN-SIP stackTLS trust settings will be inactive - TLS trust store will use JVM defaults. trustStoreType=pkcs12 javax.net.ssl.trustStore=null javax.net.ssl.trustStorePassword=null
2024-03-05 11:57:56.328 INFO: [27] net.java.sip.communicator.impl.protocol.sip.SipLogger.logInfo: Info from the JAIN-SIP stack: the sip stack timer gov.nist.javax.sip.stack.timers.DefaultSipTimer has been started
2024-03-05 11:57:56.467 WARNING: [31] net.java.sip.communicator.impl.resources.ResourceManagementServiceImpl.getSettingsInt: Missing resource for key: net.java.sip.communicator.SIP_PREFERRED_CLEAR_PORT
2024-03-05 11:57:56.483 WARNING: [31] net.java.sip.communicator.impl.resources.ResourceManagementServiceImpl.getSettingsInt: Missing resource for key: net.java.sip.communicator.SIP_PREFERRED_SECURE_PORT
2024-03-05 11:57:56.813 INFO: [31] SipGateway.registrationStateChanged#120: REG STATE CHANGE ProtocolProviderServiceSipImpl(SIP:MYSIPSERVER_USER@MYSIPSERVER) -> RegistrationStateChangeEvent[ oldState=Unregistered; newState=RegistrationState=Registering; userRequest=false; reasonCode=-1; reason=null]
2024-03-05 11:57:56.936 INFO: [44] net.java.sip.communicator.impl.protocol.sip.SipLogger.logInfo: Info from the JAIN-SIP stack: Setting SIPMessage peerPacketSource to: /MYSIPSERVER_PUBLIC_IP:5060
2024-03-05 11:57:56.989 INFO: [49] net.java.sip.communicator.impl.protocol.sip.SipLogger.logInfo: Info from the JAIN-SIP stack: Setting SIPMessage peerPacketSource to: /MYSIPSERVER_PUBLIC_IP:5060
2024-03-05 11:57:56.991 INFO: [49] SipGateway.registrationStateChanged#120: REG STATE CHANGE ProtocolProviderServiceSipImpl(SIP:MYSIPSERVER_USER@MYSIPSERVER) -> RegistrationStateChangeEvent[ oldState=Registering; newState=RegistrationState=Registered; userRequest=false; reasonCode=-1; reason=null]
2024-03-05 11:57:56.994 WARNING: [49] SipHealthPeriodicChecker.create#170: No health check started, no HEALTH_CHECK_SIP_URI prop.
2024-03-05 11:57:57.029 INFO: [54] net.java.sip.communicator.impl.protocol.sip.SipLogger.logInfo: Info from the JAIN-SIP stack: Setting SIPMessage peerPacketSource to: /MYSIPSERVER_PUBLIC_IP:5060
2024-03-05 11:57:57.097 INFO: [40] net.java.sip.communicator.impl.protocol.jabber.OperationSetBasicTelephonyJabberImpl.registrationStateChanged: Jingle : ON
2024-03-05 11:57:57.215 INFO: [40] net.java.sip.communicator.impl.protocol.jabber.ProtocolProviderServiceJabberImpl$JabberConnectionListener.authenticated: Authenticated: false
2024-03-05 11:57:57.232 INFO: [40] net.java.sip.communicator.impl.protocol.jabber.OperationSetPersistentPresenceJabberImpl.createAccountPhotoPresenceInterceptor: Can not retrieve account avatar for [email protected]/jitsi-4assoh: XMPPError: service-unavailable - cancel
2024-03-05 11:57:57.255 INFO: [67] net.java.sip.communicator.impl.protocol.jabber.JingleNodesServiceDiscovery.run: Start Jingle Nodes discovery!
2024-03-05 11:57:57.256 INFO: [67] net.java.sip.communicator.impl.protocol.jabber.JingleNodesServiceDiscovery.run: Jingle Nodes discovery terminated!
2024-03-05 11:57:57.260 INFO: [55] CallControlMucActivator.joinCommonRoom#288: Joining call control room: [email protected] pps:ProtocolProviderServiceJabberImpl(Jabber:[email protected]), id:acc0
2024-03-05 11:57:57.270 INFO: [67] net.java.sip.communicator.impl.protocol.jabber.JingleNodesServiceDiscovery.run: Found 0 Jingle Nodes relay for account: [email protected] in 1 ms.
2024-03-05 11:57:57.272 SEVERE: [65] net.java.sip.communicator.impl.protocol.jabber.InfoRetreiver.retrieveDetails: Cannot load details for contact [email protected] : XMPPError: service-unavailable - cancel
2024-03-05 11:57:57.358 INFO: [70] net.java.sip.communicator.impl.protocol.jabber.ChatRoomJabberImpl$MemberListener.joined: [email protected]/focus has joined the [email protected] chat room.
2024-03-05 11:57:57.361 INFO: [70] net.java.sip.communicator.impl.protocol.jabber.ChatRoomJabberImpl$MemberListener.joined: [email protected]/jitsi-4assoh has joined the [email protected] chat room.
2024-03-05 11:57:57.372 INFO: [55] CallControlMucActivator.joinCommonRoom#326: Joined call control room: [email protected] pps:ProtocolProviderServiceJabberImpl(Jabber:[email protected]), id:acc0 nickname:jitsi-4assoh sessionId:null
2024-03-05 11:58:10.717 WARNING: [55] CallControl.checkAuthorized#277: Requests are not secured by JID filter!
2024-03-05 11:58:10.734 INFO: [55] CallControl.handleDialIq#201: [ctx=1709636290713753141985] Got dial request fromnumber -> MYUSER_PHONE_NR room: [email protected]
2024-03-05 11:58:10.750 INFO: [55] JvbConference.start#489: [ctx=1709636290713753141985] Starting JVB conference room: [email protected]
2024-03-05 11:58:10.754 INFO: [55] JvbConference.setXmppProvider#625: [ctx=1709636290713753141985] Using ProtocolProviderServiceJabberImpl(Jabber:[email protected]/676ad6f5)
2024-03-05 11:58:10.840 INFO: [76] net.java.sip.communicator.impl.protocol.jabber.OperationSetBasicTelephonyJabberImpl.registrationStateChanged: Jingle : ON
2024-03-05 11:58:10.842 INFO: [80] JvbConference.registrationStateChangedInternal#691: [ctx=1709636290713753141985] Registering XMPP.
2024-03-05 11:58:10.886 INFO: [76] net.java.sip.communicator.impl.protocol.jabber.ProtocolProviderServiceJabberImpl$JabberConnectionListener.authenticated: Authenticated: false
2024-03-05 11:58:10.905 INFO: [80] AudioModeration.xmppProviderRegistered#499: [ctx=1709636290713753141985] Discovered avmoderation.meet.jitsi for 17ms.
2024-03-05 11:58:10.906 INFO: [80] JvbConference.joinConferenceRoom#779: [ctx=1709636290713753141985] Joining JVB conference room: [email protected]
2024-03-05 11:58:10.974 INFO: [58] net.java.sip.communicator.impl.protocol.jabber.ChatRoomJabberImpl$MemberListener.joined: [email protected]/focus has joined the [email protected] chat room.
2024-03-05 11:58:10.977 INFO: [58] net.java.sip.communicator.impl.protocol.jabber.ChatRoomJabberImpl$MemberListener.joined: [email protected]/244dafa4 has joined the [email protected] chat room.
2024-03-05 11:58:10.979 INFO: [59] net.java.sip.communicator.impl.protocol.jabber.ChatRoomJabberImpl$MemberListener.joined: [email protected]/676ad6f5 has joined the [email protected] chat room.
2024-03-05 11:58:12.761 INFO: [87] net.java.sip.communicator.impl.protocol.jabber.IceUdpTransportManager.createIceAgent: End gathering harvester within 657 ms
2024-03-05 11:58:14.293 INFO: [87] net.java.sip.communicator.impl.protocol.jabber.CallPeerMediaHandlerJabberImpl.harvestCandidates: End candidate harvest within 1207 ms
2024-03-05 11:58:14.324 INFO: [80] JvbConference$JvbCallListener.incomingCallReceivedInternal#1423: [ctx=1709636290713753141985] Got invite from focus
2024-03-05 11:58:14.329 INFO: [80] net.java.sip.communicator.impl.protocol.sip.OperationSetBasicTelephonySipImpl.createOutgoingCall: Creating outgoing call to sip:MYUSER_PHONE_NR@MYSIPSERVER
2024-03-05 11:58:14.387 WARNING: [80] net.java.sip.communicator.impl.protocol.sip.CallPeerMediaHandlerSipImpl.createMediaDescriptions: No active device for video was found!
2024-03-05 11:58:14.402 INFO: [80] SipGatewaySession.onConferenceCallStarted#643: [ctx=1709636290713753141985] Created outgoing call to SipGatewaySession{sipCall=Call: id=1709636294329799149618 peers=1, destination='MYUSER_PHONE_NR'}
2024-03-05 11:58:14.419 INFO: [100] net.java.sip.communicator.impl.protocol.sip.SipLogger.logInfo: Info from the JAIN-SIP stack: Setting SIPMessage peerPacketSource to: /MYSIPSERVER_PUBLIC_IP:5060
2024-03-05 11:58:14.460 INFO: [101] net.java.sip.communicator.impl.protocol.sip.SipLogger.logInfo: Info from the JAIN-SIP stack: Setting SIPMessage peerPacketSource to: /MYSIPSERVER_PUBLIC_IP:5060
2024-03-05 11:58:14.461 INFO: [101] SipGatewaySession$CallPeerListener.peerStateChanged#1522: [ctx=1709636290713753141985] SIP peer state: Connecting
2024-03-05 11:58:14.502 INFO: [99] net.java.sip.communicator.service.protocol.media.MediaHandler.registerDynamicPTsWithStream: Dynamic PT map: 126=rtpmap:-1 telephone-event/8000; 111=rtpmap:-1 opus/48000/2 fmtp:useinbandfec=1;minptime=10;
2024-03-05 11:58:14.502 INFO: [99] net.java.sip.communicator.service.protocol.media.MediaHandler.registerDynamicPTsWithStream: PT overrides []
2024-03-05 11:58:14.525 INFO: [99] net.java.sip.communicator.service.protocol.media.CallPeerMediaHandler.start: Starting
2024-03-05 11:58:14.802 INFO: [80] JvbConference$JvbCallChangeListener.callStateChangedInternal#1525: [ctx=1709636290713753141985] JVB conference call IN_PROGRESS.
2024-03-05 11:58:16.364 INFO: [128] net.java.sip.communicator.impl.protocol.sip.SipLogger.logInfo: Info from the JAIN-SIP stack: Setting SIPMessage peerPacketSource to: /MYSIPSERVER_PUBLIC_IP:5060
2024-03-05 11:58:16.365 INFO: [128] SipGatewaySession$CallPeerListener.peerStateChanged#1522: [ctx=1709636290713753141985] SIP peer state: Alerting Remote User (Ringing)
2024-03-05 11:58:18.423 INFO: [102] JitsiOpenSslProvider.<clinit>#52: jitsisrtp successfully loaded for OpenSSL 1.1
2024-03-05 11:58:19.091 INFO: [102] Aes.benchmark#367: AES benchmark (of execution times expressed in nanoseconds): OpenSSL 1134, SunJCE 8172, BouncyCastle 20642 for AES/CTR/NoPadding
2024-03-05 11:58:19.091 INFO: [102] Aes.createCipher#433: Will employ AES implemented by OpenSSL for AES/CTR/NoPadding.
2024-03-05 11:58:20.489 INFO: [130] net.java.sip.communicator.impl.protocol.sip.SipLogger.logInfo: Info from the JAIN-SIP stack: Setting SIPMessage peerPacketSource to: /MYSIPSERVER_PUBLIC_IP:5060
2024-03-05 11:58:20.578 INFO: [130] net.java.sip.communicator.service.protocol.media.MediaHandler.registerDynamicPTsWithStream: Dynamic PT map: 101=rtpmap:-1 telephone-event/8000; 96=rtpmap:-1 opus/48000/2 fmtp:usedtx=1; 97=rtpmap:-1 iLBC/8000;
2024-03-05 11:58:20.579 INFO: [130] net.java.sip.communicator.service.protocol.media.MediaHandler.registerDynamicPTsWithStream: PT overrides []
2024-03-05 11:58:20.581 INFO: [130] SipGatewaySession$SipCallStateListener.handleCallState#1449: [ctx=1709636290713753141985] Sip call IN_PROGRESS: Call: id=1709636294329799149618 peers=1
2024-03-05 11:58:20.581 INFO: [130] SipGatewaySession$SipCallStateListener.handleCallState#1451: [ctx=1709636290713753141985] SIP call format used: rtpmap:0 PCMU/8000
2024-03-05 11:58:20.582 INFO: [130] SipGatewaySession$CallPeerListener.peerStateChanged#1522: [ctx=1709636290713753141985] SIP peer state: Connected
2024-03-05 11:58:20.584 INFO: [130] net.java.sip.communicator.service.protocol.media.CallPeerMediaHandler.start: Starting
2024-03-05 11:58:20.640 INFO: [130] net.java.sip.communicator.service.protocol.media.TransportManager.sendHolePunchPacket: Send NAT hole punch packets
2024-03-05 11:58:22.010 INFO: [156] net.java.sip.communicator.impl.protocol.sip.SipLogger.logInfo: Info from the JAIN-SIP stack: Setting SIPMessage peerPacketSource to: /MYSIPSERVER_PUBLIC_IP:5060
2024-03-05 11:58:22.583 SEVERE: [134] SipGatewaySession$ExpireMediaStream.run#1387: [ctx=1709636290713753141985] Stopped receiving RTP for Call: id=1709636294329799149618 peers=1
2024-03-05 11:58:32.582 INFO: [134] SipGatewaySession$ExpireMediaStream.run#1413: [ctx=1709636290713753141985] RTP resumed for Call: id=1709636294329799149618 peers=1
2024-03-05 11:58:40.514 INFO: [157] net.java.sip.communicator.impl.protocol.sip.SipLogger.logInfo: Info from the JAIN-SIP stack: Setting SIPMessage peerPacketSource to: /MYSIPSERVER_PUBLIC_IP:5060
2024-03-05 11:58:40.537 INFO: [157] SipGatewaySession$SipCallStateListener.handleCallState#1461: [ctx=1709636290713753141985] SIP call ended: CallPeerChangeEvent: type=CallPeerStatusChange oldV=net.java.sip.communicator.service.protocol.CallPeerState:Connected newV=net.java.sip.communicator.service.protocol.CallPeerState:Disconnected for peer=MYUSER_PHONE_NR <MYUSER_PHONE_NR@MYSIPSERVER>;status=Disconnected reason=null reasonCode=-1
2024-03-05 11:58:40.538 INFO: [157] SipGatewaySession$CallPeerListener.peerStateChanged#1522: [ctx=1709636290713753141985] SIP peer state: Disconnected
2024-03-05 11:58:45.539 INFO: [158] SipGatewaySession.sipCallEnded#698: [ctx=1709636290713753141985] Sip call ended: Call: id=1709636294329799149618 peers=0
2024-03-05 11:58:45.544 INFO: [80] JvbConference.memberPresenceChangedInternal#1176: [ctx=1709636290713753141985] Member left : OWNER [email protected]/focus
2024-03-05 11:58:45.546 WARNING: [71] net.java.sip.communicator.impl.protocol.jabber.ChatRoomJabberImpl.leave: Force sending presence unavailable to [email protected] for 676ad6f5
2024-03-05 11:58:45.547 INFO: [80] JvbConference.memberPresenceChangedInternal#1176: [ctx=1709636290713753141985] Member left : MEMBER [email protected]
2024-03-05 11:58:45.547 INFO: [80] JvbConference.memberPresenceChangedInternal#1176: [ctx=1709636290713753141985] Member left : OWNER [email protected]/8RMPqlSAxBAS
2024-03-05 11:58:45.581 INFO: [158] AbstractGateway.notifyCallEnded#155: [ctx=1709636290713753141985] Removed session for call. Sessions:0
2024-03-05 11:58:45.592 SEVERE: [99] RTPConnectorOutputStream.send#483: Failed to send a packet to target /172.19.0.5:10000:java.io.IOException: No active socket.
2024-03-05 11:58:45.593 SEVERE: [102] RTPConnectorOutputStream.send#483: Failed to send a packet to target /172.19.0.5:10000:java.io.IOException: No active socket.
2024-03-05 11:58:45.606 INFO: [99] net.java.sip.communicator.impl.protocol.jabber.OperationSetBasicTelephonyJabberImpl.registrationStateChanged: Jingle : OFF
2024-03-05 11:58:45.607 INFO: [99] CallManager$HangupCallThread.run#660: [ctx=1709636290713753141985] Removing account Jabber:[email protected]/676ad6f5
2024-03-05 11:58:45.607 INFO: [99] net.java.sip.communicator.impl.protocol.jabber.OperationSetBasicTelephonyJabberImpl.registrationStateChanged: Jingle : OFF
2024-03-05 11:58:47.012 INFO: [163] net.java.sip.communicator.impl.protocol.sip.SipLogger.logInfo: Info from the JAIN-SIP stack: Setting SIPMessage peerPacketSource to: /MYSIPSERVER_PUBLIC_IP:5060
user@meeting:~/jitsi-stable-9258$
@vias79
Copy link
Author

vias79 commented Mar 5, 2024

#Web

user@meeting:~/jitsi-stable-9258$ docker logs jitsi-stable-9258_web_1
[s6-init] making user provided files available at /var/run/s6/etc...exited 0.
[s6-init] ensuring user provided files have correct perms...exited 0.
[fix-attrs.d] applying ownership & permissions fixes...
[fix-attrs.d] done.
[cont-init.d] executing container initialization scripts...
[cont-init.d] 01-set-timezone: executing...
[cont-init.d] 01-set-timezone: exited 0.
[cont-init.d] 10-config: executing...
using keys found in /config/keys
Using Nginx resolver: =127.0.0.11=
[cont-init.d] 10-config: exited 0.
[cont-init.d] done.
[services.d] starting services
[services.d] done.
172.19.0.1 - - [05/Mar/2024:11:57:53 +0100] "GET /test22 HTTP/1.0" 200 22871 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36 OPR/107.0.0.0"
172.19.0.1 - - [05/Mar/2024:11:57:54 +0100] "GET /libs/excalidraw-assets/vendor-8fcf83f9bbb24191a5a2.js HTTP/1.0" 200 553020 "https://meeting.MYURL.se/test22" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36 OPR/107.0.0.0"
172.19.0.1 - - [05/Mar/2024:11:57:56 +0100] "GET /pwa-worker.js HTTP/1.0" 200 3358 "https://meeting.MYURL.se/pwa-worker.js" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36 OPR/107.0.0.0"
172.19.0.1 - - [05/Mar/2024:11:57:56 +0100] "GET /libs/lib-jitsi-meet.e2ee-worker.js HTTP/1.0" 200 18398 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36 OPR/107.0.0.0"
172.19.0.1 - - [05/Mar/2024:11:58:00 +0100] "GET /xmpp-websocket?room=test22 HTTP/1.1" 101 3741 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36 OPR/107.0.0.0"
172.19.0.1 - - [05/Mar/2024:11:58:52 +0100] "GET /colibri-ws/172.19.0.5/6979ff73d6f83c4f/244dafa4?pwd=4rl1bs8ahlum1h6ggg93dio836 HTTP/1.1" 101 90 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36 OPR/107.0.0.0"
172.19.0.1 - - [05/Mar/2024:11:58:56 +0100] "GET /xmpp-websocket?room=test22 HTTP/1.1" 101 24057 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36 OPR/107.0.0.0"
172.19.0.1 - - [05/Mar/2024:11:58:56 +0100] "GET /test22 HTTP/1.0" 200 22871 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36 OPR/107.0.0.0"
172.19.0.1 - - [05/Mar/2024:11:58:56 +0100] "GET /libs/excalidraw-assets/vendor-8fcf83f9bbb24191a5a2.js HTTP/1.0" 200 553020 "https://meeting.MYURL.se/test22" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36 OPR/107.0.0.0"
172.19.0.1 - - [05/Mar/2024:11:58:58 +0100] "GET /pwa-worker.js HTTP/1.0" 200 3358 "https://meeting.MYURL.se/pwa-worker.js" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36 OPR/107.0.0.0"
user@meeting:~/jitsi-stable-9258$

#jifoco
user@meeting:~/jitsi-stable-9258$ docker logs jitsi-stable-9258_jicofo_1
[s6-init] making user provided files available at /var/run/s6/etc...exited 0.
[s6-init] ensuring user provided files have correct perms...exited 0.
[fix-attrs.d] applying ownership & permissions fixes...
[fix-attrs.d] done.
[cont-init.d] executing container initialization scripts...
[cont-init.d] 01-set-timezone: executing...
[cont-init.d] 01-set-timezone: exited 0.
[cont-init.d] 10-config: executing...
[cont-init.d] 10-config: exited 0.
[cont-init.d] done.
[services.d] starting services
[services.d] done.
Jicofo 2024-03-05 11:57:48.448 INFO: [1] Main.main#47: Starting Jicofo.
Jicofo 2024-03-05 11:57:48.995 INFO: [1] JitsiConfig.<clinit>#47: Initialized newConfig: merge of /config/jicofo.conf: 1,system properties,reference.conf @ jar:file:/usr/share/jicofo/lib/jicofo-selector-1.0-1066.jar!/reference.conf: 1
Jicofo 2024-03-05 11:57:49.010 INFO: [1] ReadOnlyConfigurationService.reloadConfiguration#40: net.java.sip.communicator.SC_HOME_DIR_LOCATION not set
Jicofo 2024-03-05 11:57:49.012 INFO: [1] JitsiConfig.<clinit>#68: Initialized legacyConfig: sip communicator props (no description provided)
Jicofo 2024-03-05 11:57:49.022 INFO: [1] JitsiConfig$Companion.reloadNewConfig#94: Reloading the Typesafe config source (previously reloaded 0 times).
Jicofo 2024-03-05 11:57:50.262 INFO: [1] JicofoMetricsContainer.addUpdateTask#48: Scheduling metrics update task with interval PT30S.
Jicofo 2024-03-05 11:57:50.489 INFO: [1] JicofoServices.createAuthenticationAuthority#194: Starting authentication service with config=AuthConfig[enabled=true, type=XMPP, loginUrl=meet.jitsi, authenticationLifetime=PT24H, enableAutoLogin=true].
Jicofo 2024-03-05 11:57:50.570 INFO: [1] AbstractAuthAuthority.<init>#112: Authentication lifetime: PT24H
Jicofo 2024-03-05 11:57:50.764 WARNING: [1] [xmpp_connection=client] XmppProviderKt.createXmppConnection#317: Disabling TLS certificate verification!
Jicofo 2024-03-05 11:57:51.024 INFO: [1] XmppServices.<init>#45: No dedicated Service XMPP connection configured, re-using the client XMPP connection.
Jicofo 2024-03-05 11:57:51.638 INFO: [13] [xmpp_connection=client] XmppProvider.doConnect#168: Connected, JID=null
Jicofo 2024-03-05 11:57:51.680 INFO: [1] [type=jigasi brewery=jigasibrewery] BaseBrewery.<init>#101: Initialized with [email protected]
Jicofo 2024-03-05 11:57:51.687 INFO: [1] AvModerationHandler.componentsChanged#112: No av_moderation component discovered.
Jicofo 2024-03-05 11:57:51.722 INFO: [1] [connection=client] VisitorsManager.updateAddress#57: VisitorsComponentManager is now disabled with address null
Jicofo 2024-03-05 11:57:51.739 INFO: [1] ConferenceIqHandler.componentsChanged#208: No breakout room component discovered.
Jicofo 2024-03-05 11:57:51.831 INFO: [1] BridgeSelector.<init>#57: Using org.jitsi.jicofo.bridge.SingleBridgeSelectionStrategy
Jicofo 2024-03-05 11:57:51.836 INFO: [1] [type=bridge brewery=jvbbrewery] BaseBrewery.<init>#101: Initialized with [email protected]
Jicofo 2024-03-05 11:57:51.839 INFO: [1] JicofoServices.<init>#111: No Jibri detector configured.
Jicofo 2024-03-05 11:57:51.846 INFO: [1] JicofoServices.<init>#117: No SIP Jibri detector configured.
Jicofo 2024-03-05 11:57:51.923 INFO: [13] [xmpp_connection=client] XmppProvider.fireRegistrationStateChanged#218: Set replyTimeout=PT15S
Jicofo 2024-03-05 11:57:51.929 INFO: [13] [xmpp_connection=client] XmppProvider$connectionListener$1.authenticated#98: Registered.
Jicofo 2024-03-05 11:57:51.931 INFO: [13] [xmpp_connection=client] XmppProvider$connectionListener$1.authenticated#100: Will discover components for meet.jitsi
Jicofo 2024-03-05 11:57:52.024 WARNING: [25] [xmpp_connection=client] XmppProvider.setComponents#77: Discovered components: [Component(type=lobbyrooms, address=lobby.meet.jitsi), Component(type=speakerstats, address=speakerstats.meet.jitsi), Component(type=room_metadata, address=metadata.meet.jitsi), Component(type=conference_duration, address=conferenceduration.meet.jitsi), Component(type=av_moderation, address=avmoderation.meet.jitsi), Component(type=breakout_rooms, address=breakout.meet.jitsi), Component(type=end_conference, address=endconference.meet.jitsi)]
Jicofo 2024-03-05 11:57:52.049 INFO: [26] AvModerationHandler.componentsChanged#115: Using av_moderation component at avmoderation.meet.jitsi.
Jicofo 2024-03-05 11:57:52.058 INFO: [32] [connection=client] VisitorsManager.updateAddress#57: VisitorsComponentManager is now disabled with address null
Jicofo 2024-03-05 11:57:52.058 INFO: [26] ConferenceIqHandler.componentsChanged#211: Using breakout room component at breakout.meet.jitsi.
Jicofo 2024-03-05 11:57:52.125 INFO: [1] JicofoServices.<init>#146: Starting HTTP server with config: host=null, port=8888, tlsPort=8843, isTls=false, keyStorePath=null, sendServerVersion=false, [TLSv1.2, TLSv1.3]=[TLSv1.2, TLSv1.3], tlsCipherSuites=[TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384, TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384, TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256, TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256, TLS_DHE_RSA_WITH_AES_256_GCM_SHA384, TLS_DHE_RSA_WITH_AES_128_GCM_SHA256].
Jicofo 2024-03-05 11:57:52.253 INFO: [23] [type=jigasi brewery=jigasibrewery] BaseBrewery.start#177: Joined the room.
Jicofo 2024-03-05 11:57:52.255 INFO: [28] [type=bridge brewery=jvbbrewery] BaseBrewery.start#177: Joined the room.
Jicofo 2024-03-05 11:57:52.645 INFO: [1] org.eclipse.jetty.server.Server.doStart: jetty-11.0.14; built: 2023-02-22T23:41:48.575Z; git: 4601fe8dd805ce75b69c64466c115a162586641b; jvm 11.0.22+7-post-Debian-1deb11u1
Jicofo 2024-03-05 11:57:53.810 WARNING: [1] org.glassfish.jersey.server.wadl.WadlFeature.configure: JAXBContext implementation could not be found. WADL feature is disabled.
Jicofo 2024-03-05 11:57:54.068 WARNING: [1] org.glassfish.jersey.internal.inject.Providers.checkProviderRuntime: A provider org.jitsi.rest.Version registered in SERVER runtime does not implement any provider interfaces applicable in the SERVER runtime. Due to constraint configuration problems the provider org.jitsi.rest.Version will be ignored.
Jicofo 2024-03-05 11:57:54.075 WARNING: [1] org.glassfish.jersey.internal.inject.Providers.checkProviderRuntime: A provider org.jitsi.rest.prometheus.Prometheus registered in SERVER runtime does not implement any provider interfaces applicable in the SERVER runtime. Due to constraint configuration problems the provider org.jitsi.rest.prometheus.Prometheus will be ignored.
Jicofo 2024-03-05 11:57:54.076 WARNING: [1] org.glassfish.jersey.internal.inject.Providers.checkProviderRuntime: A provider org.jitsi.jicofo.rest.ConferenceRequest registered in SERVER runtime does not implement any provider interfaces applicable in the SERVER runtime. Due to constraint configuration problems the provider org.jitsi.jicofo.rest.ConferenceRequest will be ignored.
Jicofo 2024-03-05 11:57:54.688 INFO: [1] org.eclipse.jetty.server.handler.ContextHandler.doStart: Started o.e.j.s.ServletContextHandler@7ed49a7f{/,null,AVAILABLE}
Jicofo 2024-03-05 11:57:54.727 INFO: [1] org.eclipse.jetty.server.AbstractConnector.doStart: Started ServerConnector@4cdb8504{HTTP/1.1, (http/1.1)}{0.0.0.0:8888}
Jicofo 2024-03-05 11:57:54.760 INFO: [1] org.eclipse.jetty.server.Server.doStart: Started Server@9aa2002{STARTING}[11.0.14,sto=0] @6668ms
Jicofo 2024-03-05 11:57:54.760 INFO: [1] JicofoServices.<init>#169: Registering GlobalMetrics periodic updates.
Jicofo 2024-03-05 11:57:56.254 INFO: [28] ConferenceIqHandler.handleConferenceIq#86: Conference request for room [email protected], from [email protected]/8RMPqlSAxBAS
Jicofo 2024-03-05 11:57:57.279 INFO: [28] ConferenceIqHandler.handleConferenceIq#86: Conference request for room [email protected], from [email protected]/8RMPqlSAxBAS
Jicofo 2024-03-05 11:57:57.398 INFO: [29] [type=jigasi brewery=jigasibrewery] BaseBrewery.addInstance#347: Added brewery instance: [email protected]/jitsi-4assoh
Jicofo 2024-03-05 11:57:57.530 INFO: [29] [type=bridge brewery=jvbbrewery] BaseBrewery.addInstance#347: Added brewery instance: [email protected]/99dd909d7739
Jicofo 2024-03-05 11:57:57.538 INFO: [29] BridgeSelector.addJvbAddress#96: Added new videobridge: Bridge[[email protected]/99dd909d7739, version=2.3.74-ga015be96, relayId=null, region=null, stress=0.00]
Jicofo 2024-03-05 11:57:57.542 INFO: [43] JvbDoctor.bridgeAdded#132: Scheduled health-check task for: Bridge[[email protected]/99dd909d7739, version=2.3.74-ga015be96, relayId=null, region=null, stress=0.00]
Jicofo 2024-03-05 11:58:00.440 INFO: [28] ConferenceIqHandler.handleConferenceIq#86: Conference request for room [email protected], from [email protected]/HvLi_cIXtvl3
Jicofo 2024-03-05 11:58:00.442 INFO: [28] AbstractAuthAuthority.createNewSession#158: Authentication session created for [email protected] SID: 8bb6a2a4-0b8e-4ef7-8ad3-af50cda1f8e8
Jicofo 2024-03-05 11:58:00.442 INFO: [28] AbstractAuthAuthority.authenticateJidWithSession#431: Authenticated jid: [email protected]/HvLi_cIXtvl3 with session: AuthSession[[email protected], [email protected]/HvLi_cIXtvl3, SID=8bb6a2a4-0b8e-4ef7-8ad3-af50cda1f8e8, MUID=19bb10126d581773a65311a503254d90, LIFE_TM_SEC=0, [email protected]]@572021855
Jicofo 2024-03-05 11:58:00.443 INFO: [28] AbstractAuthAuthority.notifyUserAuthenticated#339: Jid [email protected]/HvLi_cIXtvl3 authenticated as: [email protected]
Jicofo 2024-03-05 11:58:00.468 INFO: [28] [[email protected]] JitsiMeetConferenceImpl.<init>#293: Created new conference.
Jicofo 2024-03-05 11:58:00.469 INFO: [28] [[email protected]] JitsiMeetConferenceImpl.joinTheRoom#484: Joining [email protected]
Jicofo 2024-03-05 11:58:00.538 INFO: [28] ConferenceIqHandler.handleConferenceIq#86: Conference request for room [email protected], from [email protected]/8RMPqlSAxBAS
Jicofo 2024-03-05 11:58:00.539 INFO: [28] AbstractAuthAuthority.authenticateJidWithSession#431: Authenticated jid: [email protected]/8RMPqlSAxBAS with session: AuthSession[[email protected], [email protected]/8RMPqlSAxBAS, SID=8bb6a2a4-0b8e-4ef7-8ad3-af50cda1f8e8, MUID=19bb10126d581773a65311a503254d90, LIFE_TM_SEC=0, [email protected]]@572021855
Jicofo 2024-03-05 11:58:00.539 INFO: [28] AbstractAuthAuthority.notifyUserAuthenticated#339: Jid [email protected]/8RMPqlSAxBAS authenticated as: [email protected]
Jicofo 2024-03-05 11:58:02.417 INFO: [28] [xmpp_connection=client] XmppProvider.discoverFeatures#248: Discovered features for [email protected]/244dafa4 in 89 ms.
Jicofo 2024-03-05 11:58:02.445 INFO: [28] [[email protected] meeting_id=302382c1-fb31-4148-b8de-a79f9e36f60b] JitsiMeetConferenceImpl.onMemberJoined#728: Member joined:244dafa4 stats-id=Darrick-dee region=null audioMuted=true videoMuted=true role=OWNER isJibri=false isJigasi=false isTranscriber=false, room=main
Jicofo 2024-03-05 11:58:10.706 INFO: [29] JigasiIqHandler.handleRequest#77: Accepted jigasi request from [email protected]/244dafa4: <iq xmlns='jabber:client' to='[email protected]/focus' from='[email protected]/244dafa4' id='Zm9jdXNAYXV0aC5tZWV0LmppdHNpL2ZvY3VzADg0NTFiZjllLWEzYjYtNDJkMi1hOTQxLTg1N2U5ZDc2NTFhMDpzZW5kSVEA7f9nqXtLLyo=' type='set'><dial xmlns='urn:xmpp:rayo:1' from='fromnumber' to='MYUSER_PHONE_NR'><header xmlns='urn:xmpp:rayo:1' name='JvbRoomName' value='[email protected]'/></dial></iq>
Jicofo 2024-03-05 11:58:10.708 INFO: [28] JigasiIqHandler.inviteJigasi#116: Selected [email protected]/jitsi-4assoh (request from [email protected]/244dafa4)
Jicofo 2024-03-05 11:58:10.935 INFO: [23] ConferenceIqHandler.handleConferenceIq#86: Conference request for room [email protected], from [email protected]/VCBIt1ZLA4AM
Jicofo 2024-03-05 11:58:11.033 INFO: [23] [xmpp_connection=client] XmppProvider.discoverFeatures#248: Discovered features for [email protected]/676ad6f5 in 66 ms.
Jicofo 2024-03-05 11:58:11.034 INFO: [23] [xmpp_connection=client] XmppProvider.discoverFeatures#252: Unrecognized features for [email protected]/676ad6f5: [urn:xmpp:jingle:dtmf:0, urn:xmpp:jingle:apps:rtp:rtp-hdrext:0, vcard-temp, http://jabber.org/protocol/bytestreams, http://jabber.org/protocol/si, http://jabber.org/protocol/muc#rooms, urn:xmpp:ping, http://jabber.org/protocol/muc, urn:xmpp:jingle:apps:rtp:zrtp:1, urn:xmpp:jingle:transports:raw-udp:1, http://jabber.org/protocol/muc#traffic, http://jabber.org/protocol/disco#items, http://jabber.org/protocol/ibb, jabber:iq:version, http://jabber.org/protocol/si/profile/file-transfer, urn:xmpp:jingle:transfer:0, urn:xmpp:carbons:2, http://jabber.org/protocol/disco#info]
Jicofo 2024-03-05 11:58:11.034 INFO: [23] [[email protected] meeting_id=302382c1-fb31-4148-b8de-a79f9e36f60b] JitsiMeetConferenceImpl.onMemberJoined#728: Member joined:676ad6f5 stats-id=null region=null audioMuted=false videoMuted=true role=PARTICIPANT isJibri=false isJigasi=true isTranscriber=false, room=main
Jicofo 2024-03-05 11:58:11.035 INFO: [23] [[email protected] meeting_id=302382c1-fb31-4148-b8de-a79f9e36f60b] JitsiMeetConferenceImpl.inviteChatMember#800: Creating participant 676ad6f5 with features=[XMPP_CAPS, AUDIO, JINGLE_ICE, JIGASI, JINGLE_RTP, JINGLE, DTLS]
Jicofo 2024-03-05 11:58:11.046 INFO: [23] [[email protected] meeting_id=302382c1-fb31-4148-b8de-a79f9e36f60b] ColibriV2SessionManager.<init>#81: Using org.jitsi.jicofo.bridge.SingleMeshTopologyStrategy
Jicofo 2024-03-05 11:58:11.047 INFO: [23] [[email protected] meeting_id=302382c1-fb31-4148-b8de-a79f9e36f60b] JitsiMeetConferenceImpl.inviteChatMember#800: Creating participant 244dafa4 with features=[XMPP_CAPS, JSON_SOURCES, RECEIVE_MULTIPLE_STREAMS, REMB, SOURCE_NAMES, TCC, VISITORS_V1, E2EE, RTX, JINGLE, DTLS, JINGLE_RTP, AUDIO, VIDEO, SCTP, JINGLE_ICE, RAYO]
Jicofo 2024-03-05 11:58:11.076 INFO: [28] [[email protected] meeting_id=302382c1-fb31-4148-b8de-a79f9e36f60b] ColibriV2SessionManager.allocate#278: Allocating for 676ad6f5
Jicofo 2024-03-05 11:58:11.077 INFO: [33] [[email protected] meeting_id=302382c1-fb31-4148-b8de-a79f9e36f60b] ColibriV2SessionManager.allocate#278: Allocating for 244dafa4
Jicofo 2024-03-05 11:58:11.093 INFO: [28] BridgeSelectionStrategy.select#114: Selected initial bridge Bridge[[email protected]/99dd909d7739, version=2.3.74-ga015be96, relayId=null, region=null, stress=0.00] with reported stress=0.0 for participantProperties=ParticipantProperties(region=null, visitor=false) using strategy SingleBridgeSelectionStrategy
Jicofo 2024-03-05 11:58:11.098 INFO: [28] [[email protected] meeting_id=302382c1-fb31-4148-b8de-a79f9e36f60b] ColibriV2SessionManager.allocate#324: Selected 99dd909d7739, session exists: false
Jicofo 2024-03-05 11:58:11.120 INFO: [33] BridgeSelectionStrategy.select#127: Existing bridge does not have a relay, will not consider other bridges.
Jicofo 2024-03-05 11:58:11.120 INFO: [33] [[email protected] meeting_id=302382c1-fb31-4148-b8de-a79f9e36f60b] ColibriV2SessionManager.allocate#324: Selected 99dd909d7739, session exists: true
Jicofo 2024-03-05 11:58:12.011 INFO: [28] [[email protected] meeting_id=302382c1-fb31-4148-b8de-a79f9e36f60b participant=676ad6f5] ParticipantInviteRunnable.doInviteOrReinvite#388: Sending session-initiate to: [email protected]/676ad6f5 sources={jvb=[audio=[2800150177], video=[], groups=[]]}
Jicofo 2024-03-05 11:58:12.038 INFO: [33] [[email protected] meeting_id=302382c1-fb31-4148-b8de-a79f9e36f60b participant=244dafa4] ParticipantInviteRunnable.doInviteOrReinvite#388: Sending session-initiate to: [email protected]/244dafa4 sources={jvb=[audio=[2800150177], video=[439939555], groups=[]]}
Jicofo 2024-03-05 11:58:12.522 INFO: [33] [[email protected] meeting_id=302382c1-fb31-4148-b8de-a79f9e36f60b participant=244dafa4] Participant$JingleRequestHandlerImpl.onSessionOrTransportAccept#418: Received session-accept
Jicofo 2024-03-05 11:58:12.525 INFO: [33] [[email protected] meeting_id=302382c1-fb31-4148-b8de-a79f9e36f60b] ColibriV2SessionManager.updateParticipant#550: Updating 244dafa4 with transport=org.jitsi.xmpp.extensions.jingle.IceUdpTransportPacketExtension@4cf46925, sources=[audio=[], video=[], groups=[]]
Jicofo 2024-03-05 11:58:14.291 INFO: [28] [[email protected] meeting_id=302382c1-fb31-4148-b8de-a79f9e36f60b participant=676ad6f5] Participant$JingleRequestHandlerImpl.onTransportInfo#482: Received transport-info
Jicofo 2024-03-05 11:58:14.291 INFO: [28] [[email protected] meeting_id=302382c1-fb31-4148-b8de-a79f9e36f60b] ColibriV2SessionManager.updateParticipant#550: Updating 676ad6f5 with transport=org.jitsi.xmpp.extensions.jingle.IceUdpTransportPacketExtension@65b14322, sources=null
Jicofo 2024-03-05 11:58:14.528 INFO: [33] [[email protected] meeting_id=302382c1-fb31-4148-b8de-a79f9e36f60b participant=676ad6f5] Participant$JingleRequestHandlerImpl.onSessionOrTransportAccept#418: Received session-accept
Jicofo 2024-03-05 11:58:14.531 INFO: [33] [[email protected] meeting_id=302382c1-fb31-4148-b8de-a79f9e36f60b] ColibriV2SessionManager.updateParticipant#550: Updating 676ad6f5 with transport=org.jitsi.xmpp.extensions.jingle.IceUdpTransportPacketExtension@7db9ee9, sources=[audio=[3123240540], video=[], groups=[]]
Jicofo 2024-03-05 11:58:14.544 INFO: [33] [[email protected] meeting_id=302382c1-fb31-4148-b8de-a79f9e36f60b] JitsiMeetConferenceImpl.acceptSession#1326: Accepted initial sources from 676ad6f5: [audio=[3123240540], video=[], groups=[]]
Jicofo 2024-03-05 11:58:14.558 INFO: [13] [[email protected] meeting_id=302382c1-fb31-4148-b8de-a79f9e36f60b participant=244dafa4] Participant.sendQueuedRemoteSources#298: Sending a queued source-add, sources={676ad6f5=[audio=[3123240540], video=[], groups=[]]}
Jicofo 2024-03-05 11:58:40.525 INFO: [28] [[email protected] meeting_id=302382c1-fb31-4148-b8de-a79f9e36f60b participant=676ad6f5] Participant$JingleRequestHandlerImpl.onSessionInfo#440: Ignored unknown ice-state: null
Jicofo 2024-03-05 11:58:45.546 INFO: [29] [[email protected] meeting_id=302382c1-fb31-4148-b8de-a79f9e36f60b] JitsiMeetConferenceImpl.onMemberLeft#942: Member left:676ad6f5
Jicofo 2024-03-05 11:58:45.547 INFO: [29] [[email protected] meeting_id=302382c1-fb31-4148-b8de-a79f9e36f60b] JitsiMeetConferenceImpl.terminateParticipant#1021: Terminating 676ad6f5, reason: gone, send session-terminate: false
Jicofo 2024-03-05 11:58:45.554 INFO: [29] [[email protected]/676ad6f5 sid=1s3vf49e1uoni] JingleSession.terminate#159: Terminating session with [email protected]/676ad6f5, reason=gone, sendIq=false
Jicofo 2024-03-05 11:58:45.554 INFO: [29] [[email protected] meeting_id=302382c1-fb31-4148-b8de-a79f9e36f60b] JitsiMeetConferenceImpl.terminateParticipant#1035: Removed participant 676ad6f5 removed=true
Jicofo 2024-03-05 11:58:45.555 INFO: [29] [[email protected] meeting_id=302382c1-fb31-4148-b8de-a79f9e36f60b] ColibriV2SessionManager.removeParticipant#124: Removing 676ad6f5
Jicofo 2024-03-05 11:58:45.559 INFO: [29] [[email protected] meeting_id=302382c1-fb31-4148-b8de-a79f9e36f60b] JitsiMeetConferenceImpl.rescheduleSingleParticipantTimeout#2012: Scheduled single person timeout.
Jicofo 2024-03-05 11:58:52.986 INFO: [24] [[email protected] meeting_id=302382c1-fb31-4148-b8de-a79f9e36f60b] JitsiMeetConferenceImpl$ChatRoomListenerImpl.roomDestroyed#2292: Room destroyed with reason=The meeting has been terminated
Jicofo 2024-03-05 11:58:52.986 INFO: [24] [[email protected] meeting_id=302382c1-fb31-4148-b8de-a79f9e36f60b] ColibriV2SessionManager.expire#110: Expiring.
Jicofo 2024-03-05 11:58:52.989 INFO: [24] [[email protected] meeting_id=302382c1-fb31-4148-b8de-a79f9e36f60b] JitsiMeetConferenceImpl.stop#461: Stopped.
user@meeting:~/jitsi-stable-9258$

#jvb

user@meeting:~/jitsi-stable-9258$ docker logs jitsi-stable-9258_jvb_1
[s6-init] making user provided files available at /var/run/s6/etc...exited 0.
[s6-init] ensuring user provided files have correct perms...exited 0.
[fix-attrs.d] applying ownership & permissions fixes...
[fix-attrs.d] done.
[cont-init.d] executing container initialization scripts...
[cont-init.d] 01-set-timezone: executing...
[cont-init.d] 01-set-timezone: exited 0.
[cont-init.d] 10-config: executing...
No AUTOSCALER_URL defined, leaving autoscaler sidecar disabled
[cont-init.d] 10-config: exited 0.
[cont-init.d] done.
[services.d] starting services
[services.d] done.
JVB 2024-03-05 11:57:49.463 INFO: [1] JitsiConfig.<clinit>#47: Initialized newConfig: merge of /config/jvb.conf: 1,application.conf @ jar:file:/usr/share/jitsi-videobridge/jitsi-videobridge.jar!/application.conf: 1,system properties,reference.conf @ jar:file:/usr/share/jitsi-videobridge/jitsi-videobridge.jar!/reference.conf: 1,reference.conf @ jar:file:/usr/share/jitsi-videobridge/lib/ice4j-3.0-68-gd289f12.jar!/reference.conf: 1,reference.conf @ jar:file:/usr/share/jitsi-videobridge/lib/jitsi-media-transform-2.3-74-ga015be96.jar!/reference.conf: 1
JVB 2024-03-05 11:57:49.529 INFO: [1] ReadOnlyConfigurationService.reloadConfiguration#51: loading config file at path /config/sip-communicator.properties
JVB 2024-03-05 11:57:49.532 INFO: [1] ReadOnlyConfigurationService.reloadConfiguration#56: Error loading config file: java.io.FileNotFoundException: /config/sip-communicator.properties (No such file or directory)
JVB 2024-03-05 11:57:49.543 INFO: [1] JitsiConfig.<clinit>#68: Initialized legacyConfig: sip communicator props (no description provided)
JVB 2024-03-05 11:57:49.568 INFO: [1] JitsiConfig$Companion.reloadNewConfig#94: Reloading the Typesafe config source (previously reloaded 0 times).
JVB 2024-03-05 11:57:49.616 INFO: [1] MainKt.main#75: Starting jitsi-videobridge version 2.3.74-ga015be96
JVB 2024-03-05 11:57:50.616 INFO: [12] org.ice4j.ice.harvest.MappingCandidateHarvesters.initialize: Adding a static mapping: StaticMapping(localAddress=172.19.0.5, publicAddress=MYPUBLICIP, localPort=null, publicPort=null, name=ip-0)
JVB 2024-03-05 11:57:50.633 INFO: [1] org.ice4j.ice.harvest.AbstractUdpListener.<init>: Initialized AbstractUdpListener with address 172.19.0.5:10000/udp. Receive buffer size 212992 (asked for 10485760)
JVB 2024-03-05 11:57:50.641 INFO: [1] org.ice4j.ice.harvest.SinglePortUdpHarvester.<init>: Initialized SinglePortUdpHarvester with address 172.19.0.5:10000/udp
JVB 2024-03-05 11:57:50.642 INFO: [12] org.ice4j.ice.harvest.MappingCandidateHarvesters.initialize: Using AwsCandidateHarvester.
JVB 2024-03-05 11:57:50.672 INFO: [12] org.ice4j.ice.harvest.MappingCandidateHarvesters.createStunHarvesters: Using 130.61.132.30:443/udp for StunMappingCandidateHarvester (localAddress=172.19.0.5:0/udp).
JVB 2024-03-05 11:57:51.220 INFO: [14] org.ice4j.ice.harvest.StunMappingCandidateHarvester.discover: Discovered public address MYPUBLICIP:60229/udp from STUN server 130.61.132.30:443/udp using local address org.ice4j.socket.IceUdpSocketWrapper@471d716
JVB 2024-03-05 11:57:51.774 INFO: [12] org.ice4j.ice.harvest.MappingCandidateHarvesters.maybeAdd: Discarding a mapping harvester: org.ice4j.ice.harvest.AwsCandidateHarvester@7e242c93
JVB 2024-03-05 11:57:51.805 INFO: [12] org.ice4j.ice.harvest.MappingCandidateHarvesters.maybeAdd: Discarding a mapping harvester with duplicate addresses: org.ice4j.ice.harvest.StunMappingCandidateHarvester@2f5da7f6. Kept: org.ice4j.ice.harvest.StaticMappingCandidateHarvester(face=172.19.0.5:9/udp, mask=MYPUBLICIP:9/udp)
JVB 2024-03-05 11:57:51.807 INFO: [12] org.ice4j.ice.harvest.MappingCandidateHarvesters.initialize: Using org.ice4j.ice.harvest.StaticMappingCandidateHarvester(face=172.19.0.5:9/udp, mask=MYPUBLICIP:9/udp)
JVB 2024-03-05 11:57:51.831 INFO: [12] org.ice4j.ice.harvest.MappingCandidateHarvesters.initialize: Initialized mapping harvesters (delay=2133ms).  stunDiscoveryFailed=false
JVB 2024-03-05 11:57:51.905 INFO: [20] [hostname=xmpp.meet.jitsi id=shard0] MucClient.initializeConnectAndJoin#288: Initializing a new MucClient for [ org.jitsi.xmpp.mucclient.MucClientConfiguration id=shard0 domain=auth.meet.jitsi hostname=xmpp.meet.jitsi port=5222 username=jvb mucs=[[email protected]] mucNickname=99dd909d7739 disableCertificateVerification=true]
JVB 2024-03-05 11:57:51.952 INFO: [1] TaskPools.<clinit>#87: TaskPools detected 4 processors, creating the CPU pool with that many threads
JVB 2024-03-05 11:57:52.039 INFO: [1] HealthChecker.start#122: Started with interval=60000, timeout=PT1M30S, maxDuration=PT3S, stickyFailures=false.
JVB 2024-03-05 11:57:52.052 WARNING: [20] MucClient.createXMPPTCPConnectionConfiguration#117: Disabling certificate verification!
JVB 2024-03-05 11:57:52.299 INFO: [1] UlimitCheck.printUlimits#109: Running with open files limit 1048576 (hard 1048576), thread limit unlimited (hard unlimited).
JVB 2024-03-05 11:57:52.305 INFO: [1] VideobridgeExpireThread.start#88: Starting with 60 second interval.
JVB 2024-03-05 11:57:52.530 INFO: [1] MainKt.main#116: Starting public http server
JVB 2024-03-05 11:57:52.533 INFO: [20] [hostname=xmpp.meet.jitsi id=shard0] MucClient.initializeConnectAndJoin#350: Dispatching a thread to connect and login.
JVB 2024-03-05 11:57:52.670 WARNING: [1] ColibriWebSocketService.<init>#51: Websockets enabled, but no domains specified: URLs=[wss://meeting.MYURL.se/colibri-ws/172.19.0.5], Relay URLs=[]
JVB 2024-03-05 11:57:52.982 INFO: [1] ColibriWebSocketService.registerServlet#84: Registering servlet with baseUrls = [wss://meeting.MYURL.se/colibri-ws/172.19.0.5], relayBaseUrls = []
JVB 2024-03-05 11:57:53.033 INFO: [20] [hostname=xmpp.meet.jitsi id=shard0] MucClient$2.connected#321: Connected.
JVB 2024-03-05 11:57:53.033 INFO: [20] [hostname=xmpp.meet.jitsi id=shard0] MucClient.lambda$getConnectAndLoginCallable$9#646: Logging in.
JVB 2024-03-05 11:57:53.044 INFO: [1] org.eclipse.jetty.server.Server.doStart: jetty-11.0.14; built: 2023-02-22T23:41:48.575Z; git: 4601fe8dd805ce75b69c64466c115a162586641b; jvm 11.0.22+7-post-Debian-1deb11u1
JVB 2024-03-05 11:57:53.355 INFO: [1] org.eclipse.jetty.server.handler.ContextHandler.doStart: Started o.e.j.s.ServletContextHandler@24a298a6{/,null,AVAILABLE}
JVB 2024-03-05 11:57:53.400 INFO: [1] org.eclipse.jetty.server.AbstractConnector.doStart: Started ServerConnector@26a529dc{HTTP/1.1, (http/1.1)}{0.0.0.0:9090}
JVB 2024-03-05 11:57:53.462 INFO: [1] org.eclipse.jetty.server.Server.doStart: Started Server@2160e52a{STARTING}[11.0.14,sto=0] @5058ms
JVB 2024-03-05 11:57:53.463 INFO: [1] MainKt.main#134: Starting private http server
JVB 2024-03-05 11:57:53.582 INFO: [20] [hostname=xmpp.meet.jitsi id=shard0] MucClient$2.authenticated#327: Authenticated, b=false
JVB 2024-03-05 11:57:53.767 INFO: [20] [hostname=xmpp.meet.jitsi id=shard0] MucClient$MucWrapper.join#771: Joined MUC: [email protected]
JVB 2024-03-05 11:57:53.796 INFO: [1] org.eclipse.jetty.server.Server.doStart: jetty-11.0.14; built: 2023-02-22T23:41:48.575Z; git: 4601fe8dd805ce75b69c64466c115a162586641b; jvm 11.0.22+7-post-Debian-1deb11u1
JVB 2024-03-05 11:57:54.853 WARNING: [1] org.glassfish.jersey.server.wadl.WadlFeature.configure: JAXBContext implementation could not be found. WADL feature is disabled.
JVB 2024-03-05 11:57:55.105 WARNING: [1] org.glassfish.jersey.internal.inject.Providers.checkProviderRuntime: A provider org.jitsi.rest.Health registered in SERVER runtime does not implement any provider interfaces applicable in the SERVER runtime. Due to constraint configuration problems the provider org.jitsi.rest.Health will be ignored.
JVB 2024-03-05 11:57:55.106 WARNING: [1] org.glassfish.jersey.internal.inject.Providers.checkProviderRuntime: A provider org.jitsi.rest.Version registered in SERVER runtime does not implement any provider interfaces applicable in the SERVER runtime. Due to constraint configuration problems the provider org.jitsi.rest.Version will be ignored.
JVB 2024-03-05 11:57:55.107 WARNING: [1] org.glassfish.jersey.internal.inject.Providers.checkProviderRuntime: A provider org.jitsi.rest.prometheus.Prometheus registered in SERVER runtime does not implement any provider interfaces applicable in the SERVER runtime. Due to constraint configuration problems the provider org.jitsi.rest.prometheus.Prometheus will be ignored.
JVB 2024-03-05 11:57:55.638 INFO: [1] org.eclipse.jetty.server.handler.ContextHandler.doStart: Started o.e.j.s.ServletContextHandler@49fb0bbd{/,null,AVAILABLE}
JVB 2024-03-05 11:57:55.640 INFO: [1] org.eclipse.jetty.server.AbstractConnector.doStart: Started ServerConnector@66c83fc8{HTTP/1.1, (http/1.1)}{0.0.0.0:8080}
JVB 2024-03-05 11:57:55.641 INFO: [1] org.eclipse.jetty.server.Server.doStart: Started Server@6a84bc3f{STARTING}[11.0.14,sto=0] @7237ms
JVB 2024-03-05 11:58:11.146 INFO: [28] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1] EndpointConnectionStatusMonitor.start#58: Starting connection status monitor
JVB 2024-03-05 11:58:11.147 INFO: [28] Videobridge.createConference#255: create_conf, id=6979ff73d6f83c4f meeting_id=302382c1-fb31-4148-b8de-a79f9e36f60b
JVB 2024-03-05 11:58:11.151 INFO: [51] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1] Conference.lambda$new$0#234: RECV colibri2 request: <iq xmlns='jabber:client' to='[email protected]/GFHDOiCpyS6e' from='[email protected]/focus' id='anZiQGF1dGgubWVldC5qaXRzaS9HRkhET2lDcHlTNmUAVks0TFctMTAAEu8BA8qJgKE=' type='get'><conference-modify xmlns='jitsi:colibri2' meeting-id='302382c1-fb31-4148-b8de-a79f9e36f60b' name='[email protected]' rtcstats-enabled='false' create='true'><endpoint id='676ad6f5' create='true'><media type='audio'><payload-type xmlns='urn:xmpp:jingle:apps:rtp:1' clockrate='48000' channels='2' id='111' name='opus'><parameter name='minptime' value='10'/><parameter name='useinbandfec' value='1'/></payload-type><payload-type xmlns='urn:xmpp:jingle:apps:rtp:1' id='126' clockrate='8000' name='telephone-event'/><rtp-hdrext xmlns='urn:xmpp:jingle:apps:rtp:rtp-hdrext:0' id='1' uri='urn:ietf:params:rtp-hdrext:ssrc-audio-level'/><extmap-allow-mixed xmlns='urn:xmpp:jingle:apps:rtp:rtp-hdrext:0'/></media><transport ice-controlling='true'/><sources/><capability name='source-names'/><capability name='private-address-connectivity'/></endpoint></conference-modify></iq>
JVB 2024-03-05 11:58:11.204 INFO: [51] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=676ad6f5 local_ufrag=85h671ho7472jf ufrag=85h671ho7472jf] Agent.gatherCandidates#637: Gathering candidates for component stream-676ad6f5.RTP.
JVB 2024-03-05 11:58:11.950 INFO: [51] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=676ad6f5] Endpoint.<init>#325: Created new endpoint, iceControlling=true
JVB 2024-03-05 11:58:11.984 WARNING: [51] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1] Conference.lambda$new$0#246: Took 826 ms to process an IQ (total delay 863 ms): <iq xmlns='jabber:client' to='[email protected]/GFHDOiCpyS6e' from='[email protected]/focus' id='anZiQGF1dGgubWVldC5qaXRzaS9HRkhET2lDcHlTNmUAVks0TFctMTAAEu8BA8qJgKE=' type='get'><conference-modify xmlns='jitsi:colibri2' meeting-id='302382c1-fb31-4148-b8de-a79f9e36f60b' name='[email protected]' rtcstats-enabled='false' create='true'><endpoint id='676ad6f5' create='true'><media type='audio'><payload-type xmlns='urn:xmpp:jingle:apps:rtp:1' clockrate='48000' channels='2' id='111' name='opus'><parameter name='minptime' value='10'/><parameter name='useinbandfec' value='1'/></payload-type><payload-type xmlns='urn:xmpp:jingle:apps:rtp:1' id='126' clockrate='8000' name='telephone-event'/><rtp-hdrext xmlns='urn:xmpp:jingle:apps:rtp:rtp-hdrext:0' id='1' uri='urn:ietf:params:rtp-hdrext:ssrc-audio-level'/><extmap-allow-mixed xmlns='urn:xmpp:jingle:apps:rtp:rtp-hdrext:0'/></media><transport ice-controlling='true'/><sources/><capability name='source-names'/><capability name='private-address-connectivity'/></endpoint></conference-modify></iq>
JVB 2024-03-05 11:58:11.987 INFO: [51] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1] Conference.lambda$new$0#249: SENT colibri2 response: <iq xmlns='jabber:client' to='[email protected]/focus' from='[email protected]/GFHDOiCpyS6e' id='anZiQGF1dGgubWVldC5qaXRzaS9HRkhET2lDcHlTNmUAVks0TFctMTAAEu8BA8qJgKE=' type='result'><conference-modified xmlns='jitsi:colibri2'><endpoint id='676ad6f5'><transport><transport xmlns='urn:xmpp:jingle:transports:ice-udp:1' pwd='1hmtqlsopipfsdj3vrrv8up85u' ufrag='85h671ho7472jf'><rtcp-mux/><fingerprint xmlns='urn:xmpp:jingle:apps:dtls:0' setup='actpass' hash='sha-256'>2E:6C:81:E6:98:41:47:4F:D8:32:BB:62:31:B3:4A:6A:8C:28:9B:C4:8E:BE:28:30:60:20:D0:3E:E9:8C:D7:1B</fingerprint><web-socket xmlns='http://jitsi.org/protocol/colibri' url='wss://meeting.MYURL.se/colibri-ws/172.19.0.5/6979ff73d6f83c4f/676ad6f5?pwd=1hmtqlsopipfsdj3vrrv8up85u'/><candidate component='1' foundation='1' generation='0' id='520f8f737873e5b0fffffffff07e88d6' network='0' priority='2130706431' protocol='udp' type='host' ip='172.19.0.5' port='10000'/><candidate component='1' foundation='2' generation='0' id='5e7d280237873e5b0ffffffff93f58964' network='0' priority='1694498815' protocol='udp' type='srflx' ip='MYPUBLICIP' port='10000' rel-addr='172.19.0.5' rel-port='10000'/></transport></transport></endpoint><sources><media-source type='audio' id='jvb-a0'><source xmlns='urn:xmpp:jingle:apps:rtp:ssma:0' ssrc='2800150177' name='jvb-a0'/></media-source><media-source type='video' id='jvb-v0'><source xmlns='urn:xmpp:jingle:apps:rtp:ssma:0' ssrc='439939555' name='jvb-v0'/></media-source></sources></conference-modified></iq>
JVB 2024-03-05 11:58:11.991 INFO: [51] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1] Conference.lambda$new$0#234: RECV colibri2 request: <iq xmlns='jabber:client' to='[email protected]/GFHDOiCpyS6e' from='[email protected]/focus' id='anZiQGF1dGgubWVldC5qaXRzaS9HRkhET2lDcHlTNmUAVks0TFctMTEAEu8BA8qJgKE=' type='get'><conference-modify xmlns='jitsi:colibri2' meeting-id='302382c1-fb31-4148-b8de-a79f9e36f60b'><endpoint id='244dafa4' create='true' stats-id='Darrick-dee'><media type='video'><payload-type xmlns='urn:xmpp:jingle:apps:rtp:1' id='100' clockrate='90000' name='VP8'><rtcp-fb xmlns='urn:xmpp:jingle:apps:rtp:rtcp-fb:0' subtype='fir' type='ccm'/><rtcp-fb xmlns='urn:xmpp:jingle:apps:rtp:rtcp-fb:0' type='nack'/><rtcp-fb xmlns='urn:xmpp:jingle:apps:rtp:rtcp-fb:0' subtype='pli' type='nack'/><rtcp-fb xmlns='urn:xmpp:jingle:apps:rtp:rtcp-fb:0' type='transport-cc'/></payload-type><payload-type xmlns='urn:xmpp:jingle:apps:rtp:1' id='107' clockrate='90000' name='H264'><rtcp-fb xmlns='urn:xmpp:jingle:apps:rtp:rtcp-fb:0' subtype='fir' type='ccm'/><rtcp-fb xmlns='urn:xmpp:jingle:apps:rtp:rtcp-fb:0' type='nack'/><rtcp-fb xmlns='urn:xmpp:jingle:apps:rtp:rtcp-fb:0' subtype='pli' type='nack'/><rtcp-fb xmlns='urn:xmpp:jingle:apps:rtp:rtcp-fb:0' type='transport-cc'/><parameter name='profile-level-id' value='42e01f;level-asymmetry-allowed=1;packetization-mode=1;'/></payload-type><payload-type xmlns='urn:xmpp:jingle:apps:rtp:1' id='101' clockrate='90000' name='VP9'><rtcp-fb xmlns='urn:xmpp:jingle:apps:rtp:rtcp-fb:0' subtype='fir' type='ccm'/><rtcp-fb xmlns='urn:xmpp:jingle:apps:rtp:rtcp-fb:0' type='nack'/><rtcp-fb xmlns='urn:xmpp:jingle:apps:rtp:rtcp-fb:0' subtype='pli' type='nack'/><rtcp-fb xmlns='urn:xmpp:jingle:apps:rtp:rtcp-fb:0' type='transport-cc'/></payload-type><payload-type xmlns='urn:xmpp:jingle:apps:rtp:1' id='96' clockrate='90000' name='rtx'><parameter name='apt' value='100'/><rtcp-fb xmlns='urn:xmpp:jingle:apps:rtp:rtcp-fb:0' subtype='fir' type='ccm'/><rtcp-fb xmlns='urn:xmpp:jingle:apps:rtp:rtcp-fb:0' type='nack'/><rtcp-fb xmlns='urn:xmpp:jingle:apps:rtp:rtcp-fb:0' subtype='pli' type='nack'/></payload-type><payload-type xmlns='urn:xmpp:jingle:apps:rtp:1' id='97' clockrate='90000' name='rtx'><parameter name='apt' value='101'/><rtcp-fb xmlns='urn:xmpp:jingle:apps:rtp:rtcp-fb:0' subtype='fir' type='ccm'/><rtcp-fb xmlns='urn:xmpp:jingle:apps:rtp:rtcp-fb:0' type='nack'/><rtcp-fb xmlns='urn:xmpp:jingle:apps:rtp:rtcp-fb:0' subtype='pli' type='nack'/></payload-type><payload-type xmlns='urn:xmpp:jingle:apps:rtp:1' id='99' clockrate='90000' name='rtx'><parameter name='apt' value='107'/></payload-type><rtp-hdrext xmlns='urn:xmpp:jingle:apps:rtp:rtp-hdrext:0' id='3' uri='http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time'/><rtp-hdrext xmlns='urn:xmpp:jingle:apps:rtp:rtp-hdrext:0' id='5' uri='http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01'/><extmap-allow-mixed xmlns='urn:xmpp:jingle:apps:rtp:rtp-hdrext:0'/></media><media type='audio'><payload-type xmlns='urn:xmpp:jingle:apps:rtp:1' clockrate='48000' channels='2' id='111' name='opus'><parameter name='minptime' value='10'/><parameter name='useinbandfec' value='1'/><rtcp-fb xmlns='urn:xmpp:jingle:apps:rtp:rtcp-fb:0' type='transport-cc'/></payload-type><payload-type xmlns='urn:xmpp:jingle:apps:rtp:1' id='126' clockrate='8000' name='telephone-event'/><rtp-hdrext xmlns='urn:xmpp:jingle:apps:rtp:rtp-hdrext:0' id='1' uri='urn:ietf:params:rtp-hdrext:ssrc-audio-level'/><rtp-hdrext xmlns='urn:xmpp:jingle:apps:rtp:rtp-hdrext:0' id='5' uri='http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01'/><extmap-allow-mixed xmlns='urn:xmpp:jingle:apps:rtp:rtp-hdrext:0'/></media><transport ice-controlling='true'/><sources/><capability name='source-names'/></endpoint></conference-modify></iq>
JVB 2024-03-05 11:58:11.993 INFO: [51] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=244dafa4 local_ufrag=55qgr1ho7473co ufrag=55qgr1ho7473co] Agent.gatherCandidates#637: Gathering candidates for component stream-244dafa4.RTP.
JVB 2024-03-05 11:58:12.020 INFO: [51] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=244dafa4] Endpoint.<init>#325: Created new endpoint, iceControlling=true
JVB 2024-03-05 11:58:12.033 INFO: [51] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1] Conference.lambda$new$0#249: SENT colibri2 response: <iq xmlns='jabber:client' to='[email protected]/focus' from='[email protected]/GFHDOiCpyS6e' id='anZiQGF1dGgubWVldC5qaXRzaS9HRkhET2lDcHlTNmUAVks0TFctMTEAEu8BA8qJgKE=' type='result'><conference-modified xmlns='jitsi:colibri2'><endpoint id='244dafa4'><transport><transport xmlns='urn:xmpp:jingle:transports:ice-udp:1' pwd='4rl1bs8ahlum1h6ggg93dio836' ufrag='55qgr1ho7473co'><rtcp-mux/><fingerprint xmlns='urn:xmpp:jingle:apps:dtls:0' setup='actpass' hash='sha-256'>2E:6C:81:E6:98:41:47:4F:D8:32:BB:62:31:B3:4A:6A:8C:28:9B:C4:8E:BE:28:30:60:20:D0:3E:E9:8C:D7:1B</fingerprint><web-socket xmlns='http://jitsi.org/protocol/colibri' url='wss://meeting.MYURL.se/colibri-ws/172.19.0.5/6979ff73d6f83c4f/244dafa4?pwd=4rl1bs8ahlum1h6ggg93dio836'/><candidate component='1' foundation='1' generation='0' id='71a0436366898a0d070e8b31' network='0' priority='2130706431' protocol='udp' type='host' ip='172.19.0.5' port='10000'/><candidate component='1' foundation='2' generation='0' id='67aa773166898a0d0ffffffffaa858bbf' network='0' priority='1694498815' protocol='udp' type='srflx' ip='MYPUBLICIP' port='10000' rel-addr='172.19.0.5' rel-port='10000'/></transport></transport></endpoint><sources><media-source type='audio' id='jvb-a0'><source xmlns='urn:xmpp:jingle:apps:rtp:ssma:0' ssrc='2800150177' name='jvb-a0'/></media-source><media-source type='video' id='jvb-v0'><source xmlns='urn:xmpp:jingle:apps:rtp:ssma:0' ssrc='439939555' name='jvb-v0'/></media-source></sources></conference-modified></iq>
JVB 2024-03-05 11:58:12.539 INFO: [54] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1] Conference.lambda$new$0#234: RECV colibri2 request: <iq xmlns='jabber:client' to='[email protected]/GFHDOiCpyS6e' from='[email protected]/focus' id='anZiQGF1dGgubWVldC5qaXRzaS9HRkhET2lDcHlTNmUAVks0TFctMTIAEu8BA8qJgKE=' type='get'><conference-modify xmlns='jitsi:colibri2' meeting-id='302382c1-fb31-4148-b8de-a79f9e36f60b'><endpoint id='244dafa4' stats-id='Darrick-dee'><transport><transport xmlns='urn:xmpp:jingle:transports:ice-udp:1' pwd='HoJvcUkD3KwctMf2RMoPKGWe' ufrag='2BNq'><fingerprint xmlns='urn:xmpp:jingle:apps:dtls:0' setup='active' hash='sha-256'>FE:1D:EC:9E:93:DE:2F:7A:53:49:46:D4:DA:2F:5F:FD:7C:1C:73:2C:FF:DC:41:F2:B8:A3:67:4B:CD:FA:E2:59</fingerprint><rtcp-mux/></transport></transport><sources/></endpoint></conference-modify></iq>
JVB 2024-03-05 11:58:12.540 INFO: [54] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=244dafa4 stats_id=Darrick-dee] DtlsTransport.setSetupAttribute#126: The remote side is acting as DTLS client, we'll act as server
JVB 2024-03-05 11:58:12.554 INFO: [54] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=244dafa4 stats_id=Darrick-dee local_ufrag=55qgr1ho7473co] IceTransport.startConnectivityEstablishment#205: Starting the Agent without remote candidates.
JVB 2024-03-05 11:58:12.554 INFO: [54] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=244dafa4 stats_id=Darrick-dee local_ufrag=55qgr1ho7473co ufrag=55qgr1ho7473co] Agent.startConnectivityEstablishment#726: Start ICE connectivity establishment.
JVB 2024-03-05 11:58:12.555 INFO: [54] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=244dafa4 stats_id=Darrick-dee local_ufrag=55qgr1ho7473co ufrag=55qgr1ho7473co] Agent.initCheckLists#962: Init checklist for stream stream-244dafa4
JVB 2024-03-05 11:58:12.556 INFO: [54] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=244dafa4 stats_id=Darrick-dee local_ufrag=55qgr1ho7473co ufrag=55qgr1ho7473co] Agent.setState#936: ICE state changed from Waiting to Running.
JVB 2024-03-05 11:58:12.558 INFO: [54] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=244dafa4 stats_id=Darrick-dee local_ufrag=55qgr1ho7473co] IceTransport.iceStateChanged#345: ICE state changed old=Waiting new=Running
JVB 2024-03-05 11:58:12.558 INFO: [54] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=244dafa4 stats_id=Darrick-dee local_ufrag=55qgr1ho7473co ufrag=55qgr1ho7473co] Agent.startConnectivityEstablishment#748: Trigger checks for pairs that were received before running state
JVB 2024-03-05 11:58:12.569 INFO: [54] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=244dafa4 stats_id=Darrick-dee local_ufrag=55qgr1ho7473co ufrag=55qgr1ho7473co] Agent.triggerCheck#1727: Add peer CandidatePair with new reflexive address to checkList: CandidatePair (State=Frozen Priority=7926369428998979583):
        LocalCandidate=candidate:1 1 udp 2130706431 172.19.0.5 10000 typ host
        RemoteCandidate=candidate:10000 1 udp 1845501695 MYOWN_IP 53932 typ prflx
JVB 2024-03-05 11:58:12.571 INFO: [54] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=244dafa4 stats_id=Darrick-dee local_ufrag=55qgr1ho7473co ufrag=55qgr1ho7473co] ConnectivityCheckClient.startChecks#147: Start connectivity checks.
JVB 2024-03-05 11:58:12.572 INFO: [54] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1] Conference.lambda$new$0#249: SENT colibri2 response: <iq xmlns='jabber:client' to='[email protected]/focus' from='[email protected]/GFHDOiCpyS6e' id='anZiQGF1dGgubWVldC5qaXRzaS9HRkhET2lDcHlTNmUAVks0TFctMTIAEu8BA8qJgKE=' type='result'><conference-modified xmlns='jitsi:colibri2'><endpoint xmlns='jitsi:colibri2' id='244dafa4'/></conference-modified></iq>
JVB 2024-03-05 11:58:12.628 INFO: [17] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=244dafa4 stats_id=Darrick-dee local_ufrag=55qgr1ho7473co ufrag=55qgr1ho7473co] ConnectivityCheckClient.processSuccessResponse#649: Pair succeeded: 172.19.0.5:10000/udp/host -> MYOWN_IP:53932/udp/prflx (stream-244dafa4.RTP).
JVB 2024-03-05 11:58:12.629 INFO: [17] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=244dafa4 stats_id=Darrick-dee local_ufrag=55qgr1ho7473co ufrag=55qgr1ho7473co name=stream-244dafa4 componentId=1] ComponentSocket.addAuthorizedAddress#99: Adding allowed address: MYOWN_IP:53932/udp
JVB 2024-03-05 11:58:12.630 INFO: [17] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=244dafa4 stats_id=Darrick-dee local_ufrag=55qgr1ho7473co ufrag=55qgr1ho7473co] ConnectivityCheckClient.processSuccessResponse#658: Pair validated: MYPUBLICIP:10000/udp/srflx -> MYOWN_IP:53932/udp/prflx (stream-244dafa4.RTP).
JVB 2024-03-05 11:58:12.631 INFO: [17] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=244dafa4 stats_id=Darrick-dee local_ufrag=55qgr1ho7473co ufrag=55qgr1ho7473co] DefaultNominator.strategyNominateFirstHostOrReflexiveValid#268: Nominate (first highest valid): MYPUBLICIP:10000/udp/srflx -> MYOWN_IP:53932/udp/prflx (stream-244dafa4.RTP)
JVB 2024-03-05 11:58:12.631 INFO: [17] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=244dafa4 stats_id=Darrick-dee local_ufrag=55qgr1ho7473co ufrag=55qgr1ho7473co] Agent.nominate#1800: verify if nominated pair answer again
JVB 2024-03-05 11:58:12.631 WARNING: [17] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=244dafa4 stats_id=Darrick-dee local_ufrag=55qgr1ho7473co ufrag=55qgr1ho7473co name=stream-244dafa4 componentId=1] MergingDatagramSocket.initializeActive#599: Active socket already initialized.
JVB 2024-03-05 11:58:12.632 INFO: [62] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=244dafa4 stats_id=Darrick-dee local_ufrag=55qgr1ho7473co ufrag=55qgr1ho7473co] ConnectivityCheckClient.processSuccessResponse#649: Pair succeeded: 172.19.0.5:10000/udp/host -> MYOWN_IP:53932/udp/prflx (stream-244dafa4.RTP).
JVB 2024-03-05 11:58:12.632 INFO: [62] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=244dafa4 stats_id=Darrick-dee local_ufrag=55qgr1ho7473co ufrag=55qgr1ho7473co] ConnectivityCheckClient.processSuccessResponse#658: Pair validated: MYPUBLICIP:10000/udp/srflx -> MYOWN_IP:53932/udp/prflx (stream-244dafa4.RTP).
JVB 2024-03-05 11:58:12.638 INFO: [17] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=244dafa4 stats_id=Darrick-dee local_ufrag=55qgr1ho7473co ufrag=55qgr1ho7473co] ConnectivityCheckClient.processSuccessResponse#727: IsControlling: true USE-CANDIDATE:false.
JVB 2024-03-05 11:58:12.642 INFO: [62] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=244dafa4 stats_id=Darrick-dee local_ufrag=55qgr1ho7473co ufrag=55qgr1ho7473co] ConnectivityCheckClient.processSuccessResponse#727: IsControlling: true USE-CANDIDATE:false.
JVB 2024-03-05 11:58:12.649 INFO: [62] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=244dafa4 stats_id=Darrick-dee local_ufrag=55qgr1ho7473co ufrag=55qgr1ho7473co] ConnectivityCheckClient.processSuccessResponse#649: Pair succeeded: MYPUBLICIP:10000/udp/srflx -> MYOWN_IP:53932/udp/prflx (stream-244dafa4.RTP).
JVB 2024-03-05 11:58:12.651 INFO: [62] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=244dafa4 stats_id=Darrick-dee local_ufrag=55qgr1ho7473co ufrag=55qgr1ho7473co] ConnectivityCheckClient.processSuccessResponse#658: Pair validated: MYPUBLICIP:10000/udp/srflx -> MYOWN_IP:53932/udp/prflx (stream-244dafa4.RTP).
JVB 2024-03-05 11:58:12.651 INFO: [62] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=244dafa4 stats_id=Darrick-dee local_ufrag=55qgr1ho7473co ufrag=55qgr1ho7473co] ConnectivityCheckClient.processSuccessResponse#727: IsControlling: true USE-CANDIDATE:true.
JVB 2024-03-05 11:58:12.653 INFO: [62] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=244dafa4 stats_id=Darrick-dee local_ufrag=55qgr1ho7473co ufrag=55qgr1ho7473co] ConnectivityCheckClient.processSuccessResponse#742: Nomination confirmed for pair: MYPUBLICIP:10000/udp/srflx -> MYOWN_IP:53932/udp/prflx (stream-244dafa4.RTP).
JVB 2024-03-05 11:58:12.654 INFO: [62] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=244dafa4 stats_id=Darrick-dee local_ufrag=55qgr1ho7473co ufrag=55qgr1ho7473co name=stream-244dafa4] CheckList.handleNominationConfirmed#406: Selected pair for stream stream-244dafa4.RTP: MYPUBLICIP:10000/udp/srflx -> MYOWN_IP:53932/udp/prflx (stream-244dafa4.RTP)
JVB 2024-03-05 11:58:12.662 INFO: [62] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=244dafa4 stats_id=Darrick-dee local_ufrag=55qgr1ho7473co ufrag=55qgr1ho7473co] Agent.checkListStatesUpdated#1891: CheckList of stream stream-244dafa4 is COMPLETED
JVB 2024-03-05 11:58:12.664 INFO: [62] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=244dafa4 stats_id=Darrick-dee local_ufrag=55qgr1ho7473co ufrag=55qgr1ho7473co] Agent.setState#936: ICE state changed from Running to Completed.
JVB 2024-03-05 11:58:12.664 INFO: [62] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=244dafa4 stats_id=Darrick-dee local_ufrag=55qgr1ho7473co] IceTransport.iceStateChanged#345: ICE state changed old=Running new=Completed
JVB 2024-03-05 11:58:12.665 INFO: [62] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=244dafa4 stats_id=Darrick-dee] Endpoint$setupIceTransport$2.connected#372: ICE connected
JVB 2024-03-05 11:58:12.686 INFO: [54] PartitionedByteBufferPool.<init>#84: Initialized a new PartitionedByteBufferPool with 8 partitions.
JVB 2024-03-05 11:58:12.687 INFO: [54] PartitionedByteBufferPool.<init>#84: Initialized a new PartitionedByteBufferPool with 8 partitions.
JVB 2024-03-05 11:58:12.688 INFO: [54] PartitionedByteBufferPool.<init>#84: Initialized a new PartitionedByteBufferPool with 8 partitions.
JVB 2024-03-05 11:58:12.691 INFO: [63] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=244dafa4 stats_id=Darrick-dee] DtlsTransport.startDtlsHandshake#108: Starting DTLS handshake, role=org.jitsi.nlj.dtls.DtlsServer@2d207893
JVB 2024-03-05 11:58:12.693 INFO: [62] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=244dafa4 stats_id=Darrick-dee local_ufrag=55qgr1ho7473co ufrag=55qgr1ho7473co] Agent.logCandTypes#1999: Harvester used for selected pair for stream-244dafa4.RTP: srflx
JVB 2024-03-05 11:58:12.974 INFO: [63] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=244dafa4 stats_id=Darrick-dee] TlsServerImpl.notifyHandshakeComplete#179: Negotiated DTLS version DTLS 1.2
JVB 2024-03-05 11:58:12.976 INFO: [63] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=244dafa4 stats_id=Darrick-dee] Endpoint$setupDtlsTransport$3.handshakeComplete#418: DTLS handshake complete
JVB 2024-03-05 11:58:13.141 INFO: [63] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=244dafa4 stats_id=Darrick-dee] AllocationSettingsWrapper.setBandwidthAllocationSettings#133: Ignoring assumed-bandwidth-bps, not allowed in config.
JVB 2024-03-05 11:58:13.522 INFO: [64] JitsiOpenSslProvider.<clinit>#52: jitsisrtp successfully loaded for OpenSSL 1.1
JVB 2024-03-05 11:58:13.548 INFO: [64] Aes.createCipher#433: Will employ AES implemented by OpenSSL for AES/GCM/NoPadding.
JVB 2024-03-05 11:58:13.549 INFO: [64] Aes.createCipher#433: Will employ AES implemented by OpenSSL for AES/CTR/NoPadding.
JVB 2024-03-05 11:58:14.295 INFO: [63] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1] Conference.lambda$new$0#234: RECV colibri2 request: <iq xmlns='jabber:client' to='[email protected]/GFHDOiCpyS6e' from='[email protected]/focus' id='anZiQGF1dGgubWVldC5qaXRzaS9HRkhET2lDcHlTNmUAVks0TFctMTMAEu8BA8qJgKE=' type='get'><conference-modify xmlns='jitsi:colibri2' meeting-id='302382c1-fb31-4148-b8de-a79f9e36f60b'><endpoint id='676ad6f5'><transport><transport xmlns='urn:xmpp:jingle:transports:ice-udp:1' pwd='58dpi5r5raubofts8lsphupf0n' ufrag='4166i1ho7473k0'><rtcp-mux/><candidate port='20000' id='1' priority='2130706431' ip='172.19.0.3' network='0' protocol='udp' type='host' foundation='1' generation='0' component='1'/></transport></transport></endpoint></conference-modify></iq>
JVB 2024-03-05 11:58:14.311 INFO: [63] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=676ad6f5 local_ufrag=85h671ho7472jf ufrag=85h671ho7472jf name=stream-676ad6f5 componentId=1] Component.addRemoteCandidate#328: Add remote candidate for stream-676ad6f5.RTP: 172.19.0.3:20000/udp/host
JVB 2024-03-05 11:58:14.311 INFO: [63] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=676ad6f5 local_ufrag=85h671ho7472jf] IceTransport.startConnectivityEstablishment#199: Starting the agent with remote candidates.
JVB 2024-03-05 11:58:14.313 INFO: [63] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=676ad6f5 local_ufrag=85h671ho7472jf ufrag=85h671ho7472jf] Agent.startConnectivityEstablishment#726: Start ICE connectivity establishment.
JVB 2024-03-05 11:58:14.313 INFO: [63] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=676ad6f5 local_ufrag=85h671ho7472jf ufrag=85h671ho7472jf] Agent.initCheckLists#962: Init checklist for stream stream-676ad6f5
JVB 2024-03-05 11:58:14.316 INFO: [63] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=676ad6f5 local_ufrag=85h671ho7472jf ufrag=85h671ho7472jf] Agent.setState#936: ICE state changed from Waiting to Running.
JVB 2024-03-05 11:58:14.317 INFO: [63] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=676ad6f5 local_ufrag=85h671ho7472jf] IceTransport.iceStateChanged#345: ICE state changed old=Waiting new=Running
JVB 2024-03-05 11:58:14.317 INFO: [63] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=676ad6f5 local_ufrag=85h671ho7472jf ufrag=85h671ho7472jf] ConnectivityCheckClient.startChecks#147: Start connectivity checks.
JVB 2024-03-05 11:58:14.318 INFO: [63] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1] Conference.lambda$new$0#249: SENT colibri2 response: <iq xmlns='jabber:client' to='[email protected]/focus' from='[email protected]/GFHDOiCpyS6e' id='anZiQGF1dGgubWVldC5qaXRzaS9HRkhET2lDcHlTNmUAVks0TFctMTMAEu8BA8qJgKE=' type='result'><conference-modified xmlns='jitsi:colibri2'><endpoint xmlns='jitsi:colibri2' id='676ad6f5'/></conference-modified></iq>
JVB 2024-03-05 11:58:14.362 INFO: [62] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=676ad6f5 local_ufrag=85h671ho7472jf ufrag=85h671ho7472jf] Agent.triggerCheck#1727: Add peer CandidatePair with new reflexive address to checkList: CandidatePair (State=Frozen Priority=7998392938176446463):
        LocalCandidate=candidate:1 1 udp 2130706431 172.19.0.5 10000 typ host
        RemoteCandidate=candidate:10001 1 udp 1862270975 172.19.0.1 44043 typ prflx
JVB 2024-03-05 11:58:14.374 INFO: [62] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=676ad6f5 local_ufrag=85h671ho7472jf ufrag=85h671ho7472jf] ConnectivityCheckClient.processSuccessResponse#649: Pair succeeded: 172.19.0.5:10000/udp/host -> 172.19.0.3:20000/udp/host (stream-676ad6f5.RTP).
JVB 2024-03-05 11:58:14.374 INFO: [62] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=676ad6f5 local_ufrag=85h671ho7472jf ufrag=85h671ho7472jf name=stream-676ad6f5 componentId=1] ComponentSocket.addAuthorizedAddress#99: Adding allowed address: 172.19.0.3:20000/udp
JVB 2024-03-05 11:58:14.375 INFO: [62] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=676ad6f5 local_ufrag=85h671ho7472jf ufrag=85h671ho7472jf] ConnectivityCheckClient.processSuccessResponse#658: Pair validated: 172.19.0.5:10000/udp/host -> 172.19.0.3:20000/udp/host (stream-676ad6f5.RTP).
JVB 2024-03-05 11:58:14.375 INFO: [62] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=676ad6f5 local_ufrag=85h671ho7472jf ufrag=85h671ho7472jf] DefaultNominator.strategyNominateFirstHostOrReflexiveValid#268: Nominate (first highest valid): 172.19.0.5:10000/udp/host -> 172.19.0.3:20000/udp/host (stream-676ad6f5.RTP)
JVB 2024-03-05 11:58:14.375 INFO: [62] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=676ad6f5 local_ufrag=85h671ho7472jf ufrag=85h671ho7472jf] Agent.nominate#1800: verify if nominated pair answer again
JVB 2024-03-05 11:58:14.375 INFO: [62] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=676ad6f5 local_ufrag=85h671ho7472jf ufrag=85h671ho7472jf] ConnectivityCheckClient.processSuccessResponse#727: IsControlling: true USE-CANDIDATE:false.
JVB 2024-03-05 11:58:14.380 INFO: [62] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=676ad6f5 local_ufrag=85h671ho7472jf ufrag=85h671ho7472jf] ConnectivityCheckClient.processSuccessResponse#649: Pair succeeded: 172.19.0.5:10000/udp/host -> 172.19.0.3:20000/udp/host (stream-676ad6f5.RTP).
JVB 2024-03-05 11:58:14.380 INFO: [62] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=676ad6f5 local_ufrag=85h671ho7472jf ufrag=85h671ho7472jf] ConnectivityCheckClient.processSuccessResponse#727: IsControlling: true USE-CANDIDATE:false.
JVB 2024-03-05 11:58:14.406 INFO: [62] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=676ad6f5 local_ufrag=85h671ho7472jf ufrag=85h671ho7472jf] ConnectivityCheckClient.processSuccessResponse#610: Receive a peer-reflexive candidate: 172.19.0.1:10000/udp.
JVB 2024-03-05 11:58:14.407 INFO: [62] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=676ad6f5 local_ufrag=85h671ho7472jf ufrag=85h671ho7472jf] ConnectivityCheckClient.processSuccessResponse#649: Pair succeeded: 172.19.0.5:10000/udp/host -> 172.19.0.1:44043/udp/prflx (stream-676ad6f5.RTP).
JVB 2024-03-05 11:58:14.407 INFO: [62] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=676ad6f5 local_ufrag=85h671ho7472jf ufrag=85h671ho7472jf name=stream-676ad6f5 componentId=1] ComponentSocket.addAuthorizedAddress#99: Adding allowed address: 172.19.0.1:44043/udp
JVB 2024-03-05 11:58:14.407 INFO: [62] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=676ad6f5 local_ufrag=85h671ho7472jf ufrag=85h671ho7472jf] ConnectivityCheckClient.processSuccessResponse#658: Pair validated: 172.19.0.1:10000/udp/prflx -> 172.19.0.1:44043/udp/prflx (stream-676ad6f5.RTP).
JVB 2024-03-05 11:58:14.407 INFO: [62] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=676ad6f5 local_ufrag=85h671ho7472jf ufrag=85h671ho7472jf] ConnectivityCheckClient.processSuccessResponse#727: IsControlling: true USE-CANDIDATE:false.
JVB 2024-03-05 11:58:14.423 INFO: [62] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=676ad6f5 local_ufrag=85h671ho7472jf ufrag=85h671ho7472jf] ConnectivityCheckClient.processSuccessResponse#649: Pair succeeded: 172.19.0.5:10000/udp/host -> 172.19.0.3:20000/udp/host (stream-676ad6f5.RTP).
JVB 2024-03-05 11:58:14.423 INFO: [62] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=676ad6f5 local_ufrag=85h671ho7472jf ufrag=85h671ho7472jf] ConnectivityCheckClient.processSuccessResponse#727: IsControlling: true USE-CANDIDATE:true.
JVB 2024-03-05 11:58:14.424 INFO: [62] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=676ad6f5 local_ufrag=85h671ho7472jf ufrag=85h671ho7472jf] ConnectivityCheckClient.processSuccessResponse#742: Nomination confirmed for pair: 172.19.0.5:10000/udp/host -> 172.19.0.3:20000/udp/host (stream-676ad6f5.RTP).
JVB 2024-03-05 11:58:14.424 INFO: [62] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=676ad6f5 local_ufrag=85h671ho7472jf ufrag=85h671ho7472jf name=stream-676ad6f5] CheckList.handleNominationConfirmed#406: Selected pair for stream stream-676ad6f5.RTP: 172.19.0.5:10000/udp/host -> 172.19.0.3:20000/udp/host (stream-676ad6f5.RTP)
JVB 2024-03-05 11:58:14.425 INFO: [62] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=676ad6f5 local_ufrag=85h671ho7472jf ufrag=85h671ho7472jf] Agent.checkListStatesUpdated#1891: CheckList of stream stream-676ad6f5 is COMPLETED
JVB 2024-03-05 11:58:14.425 INFO: [62] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=676ad6f5 local_ufrag=85h671ho7472jf ufrag=85h671ho7472jf] Agent.setState#936: ICE state changed from Running to Completed.
JVB 2024-03-05 11:58:14.425 INFO: [62] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=676ad6f5 local_ufrag=85h671ho7472jf] IceTransport.iceStateChanged#345: ICE state changed old=Running new=Completed
JVB 2024-03-05 11:58:14.425 INFO: [62] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=676ad6f5] Endpoint$setupIceTransport$2.connected#372: ICE connected
JVB 2024-03-05 11:58:14.425 INFO: [51] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=676ad6f5] DtlsTransport.startDtlsHandshake#108: Starting DTLS handshake, role=null
JVB 2024-03-05 11:58:14.425 INFO: [62] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=676ad6f5 local_ufrag=85h671ho7472jf ufrag=85h671ho7472jf] Agent.logCandTypes#1999: Harvester used for selected pair for stream-676ad6f5.RTP: host
JVB 2024-03-05 11:58:14.429 WARNING: [51] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=676ad6f5] DtlsTransport.startDtlsHandshake#110: Starting the DTLS stack before it knows its role
JVB 2024-03-05 11:58:14.554 INFO: [71] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1] Conference.lambda$new$0#234: RECV colibri2 request: <iq xmlns='jabber:client' to='[email protected]/GFHDOiCpyS6e' from='[email protected]/focus' id='anZiQGF1dGgubWVldC5qaXRzaS9HRkhET2lDcHlTNmUAVks0TFctMTQAEu8BA8qJgKE=' type='get'><conference-modify xmlns='jitsi:colibri2' meeting-id='302382c1-fb31-4148-b8de-a79f9e36f60b'><endpoint id='676ad6f5'><transport><transport xmlns='urn:xmpp:jingle:transports:ice-udp:1'><fingerprint xmlns='urn:xmpp:jingle:apps:dtls:0' setup='active' hash='sha-256'>2A:66:10:27:33:89:4C:B8:41:61:89:19:20:08:0A:51:C1:72:44:0B:C6:6A:D9:15:25:20:AF:85:0C:73:4B:1C</fingerprint><rtcp-mux/></transport></transport><sources><media-source id='676ad6f5-a0' type='audio'><source xmlns='urn:xmpp:jingle:apps:rtp:ssma:0' ssrc='3123240540'/></media-source></sources></endpoint></conference-modify></iq>
JVB 2024-03-05 11:58:14.554 INFO: [71] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=676ad6f5] DtlsTransport.setSetupAttribute#126: The remote side is acting as DTLS client, we'll act as server
JVB 2024-03-05 11:58:14.560 INFO: [71] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1] Conference.lambda$new$0#249: SENT colibri2 response: <iq xmlns='jabber:client' to='[email protected]/focus' from='[email protected]/GFHDOiCpyS6e' id='anZiQGF1dGgubWVldC5qaXRzaS9HRkhET2lDcHlTNmUAVks0TFctMTQAEu8BA8qJgKE=' type='result'><conference-modified xmlns='jitsi:colibri2'><endpoint xmlns='jitsi:colibri2' id='676ad6f5'/></conference-modified></iq>
JVB 2024-03-05 11:58:15.659 INFO: [51] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=676ad6f5] TlsServerImpl.notifyHandshakeComplete#179: Negotiated DTLS version DTLS 1.2
JVB 2024-03-05 11:58:15.660 INFO: [51] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=676ad6f5] Endpoint$setupDtlsTransport$3.handshakeComplete#418: DTLS handshake complete
JVB 2024-03-05 11:58:15.693 INFO: [59] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=244dafa4 stats_id=Darrick-dee local_ufrag=55qgr1ho7473co ufrag=55qgr1ho7473co] Agent.setState#936: ICE state changed from Completed to Terminated.
JVB 2024-03-05 11:58:15.693 INFO: [59] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=244dafa4 stats_id=Darrick-dee local_ufrag=55qgr1ho7473co] IceTransport.iceStateChanged#345: ICE state changed old=Completed new=Terminated
JVB 2024-03-05 11:58:17.426 INFO: [59] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=676ad6f5 local_ufrag=85h671ho7472jf ufrag=85h671ho7472jf] Agent.setState#936: ICE state changed from Completed to Terminated.
JVB 2024-03-05 11:58:17.426 INFO: [59] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=676ad6f5 local_ufrag=85h671ho7472jf] IceTransport.iceStateChanged#345: ICE state changed old=Completed new=Terminated
JVB 2024-03-05 11:58:45.563 INFO: [51] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1] Conference.lambda$new$0#234: RECV colibri2 request: <iq xmlns='jabber:client' to='[email protected]/GFHDOiCpyS6e' from='[email protected]/focus' id='anZiQGF1dGgubWVldC5qaXRzaS9HRkhET2lDcHlTNmUAVks0TFctMTUAEu8BA8qJgKE=' type='get'><conference-modify xmlns='jitsi:colibri2' meeting-id='302382c1-fb31-4148-b8de-a79f9e36f60b'><endpoint xmlns='jitsi:colibri2' id='676ad6f5' expire='true'/></conference-modify></iq>
JVB 2024-03-05 11:58:45.563 INFO: [51] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=676ad6f5] AbstractEndpoint.expire#175: Expiring.
JVB 2024-03-05 11:58:45.569 INFO: [51] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=676ad6f5] Endpoint.expire#1081: Spent 0 seconds oversending
JVB 2024-03-05 11:58:45.569 INFO: [51] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=676ad6f5] Transceiver.teardown#364: Tearing down
JVB 2024-03-05 11:58:45.569 INFO: [51] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=676ad6f5] RtpReceiverImpl.tearDown#349: Tearing down
JVB 2024-03-05 11:58:45.578 INFO: [51] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=676ad6f5] RtpSenderImpl.tearDown#320: Tearing down
JVB 2024-03-05 11:58:45.579 INFO: [51] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=676ad6f5] DtlsTransport.stop#185: Stopping
JVB 2024-03-05 11:58:45.579 INFO: [51] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=676ad6f5 local_ufrag=85h671ho7472jf] IceTransport.stop#258: Stopping
JVB 2024-03-05 11:58:45.588 INFO: [68] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=676ad6f5 local_ufrag=85h671ho7472jf ufrag=85h671ho7472jf name=stream-676ad6f5 componentId=1] MergingDatagramSocket$SocketContainer.runInReaderThread#770: Failed to receive: java.net.SocketException: Socket closed
JVB 2024-03-05 11:58:45.589 WARNING: [68] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=676ad6f5 local_ufrag=85h671ho7472jf ufrag=85h671ho7472jf name=stream-676ad6f5 componentId=1] MergingDatagramSocket.doRemove#349: Removing the active socket. Won't be able to send until a new one is elected.
JVB 2024-03-05 11:58:45.593 INFO: [51] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=676ad6f5 local_ufrag=85h671ho7472jf ufrag=85h671ho7472jf name=stream-676ad6f5 componentId=1] MergingDatagramSocket.close#142: Closing.
JVB 2024-03-05 11:58:45.594 INFO: [70] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=676ad6f5 local_ufrag=85h671ho7472jf ufrag=85h671ho7472jf name=stream-676ad6f5 componentId=1] MergingDatagramSocket$SocketContainer.runInReaderThread#770: Failed to receive: java.net.SocketException: Socket closed
JVB 2024-03-05 11:58:45.594 INFO: [63] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=676ad6f5 local_ufrag=85h671ho7472jf] IceTransport.startReadingData#224: Socket closed, stopping reader
JVB 2024-03-05 11:58:45.595 INFO: [63] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=676ad6f5 local_ufrag=85h671ho7472jf] IceTransport.startReadingData#236: No longer running, stopped reading packets
JVB 2024-03-05 11:58:45.595 INFO: [51] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=676ad6f5] Endpoint.expire#1099: Expired.
JVB 2024-03-05 11:58:45.596 INFO: [51] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1] Conference.lambda$new$0#249: SENT colibri2 response: <iq xmlns='jabber:client' to='[email protected]/focus' from='[email protected]/GFHDOiCpyS6e' id='anZiQGF1dGgubWVldC5qaXRzaS9HRkhET2lDcHlTNmUAVks0TFctMTUAEu8BA8qJgKE=' type='result'><conference-modified xmlns='jitsi:colibri2'><endpoint xmlns='jitsi:colibri2' id='676ad6f5' expire='true'/></conference-modified></iq>
JVB 2024-03-05 11:58:52.990 INFO: [51] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1] Conference.lambda$new$0#234: RECV colibri2 request: <iq xmlns='jabber:client' to='[email protected]/GFHDOiCpyS6e' from='[email protected]/focus' id='anZiQGF1dGgubWVldC5qaXRzaS9HRkhET2lDcHlTNmUAVks0TFctMTYAEu8BA8qJgKE=' type='get'><conference-modify xmlns='jitsi:colibri2' meeting-id='302382c1-fb31-4148-b8de-a79f9e36f60b' expire='true'/></iq>
JVB 2024-03-05 11:58:52.990 INFO: [51] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1] Colibri2ConferenceHandler.handleConferenceModifyIQ#73: Received request to expire conference.
JVB 2024-03-05 11:58:52.990 INFO: [51] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1] Conference.lambda$new$0#249: SENT colibri2 response: <iq xmlns='jabber:client' to='[email protected]/focus' from='[email protected]/GFHDOiCpyS6e' id='anZiQGF1dGgubWVldC5qaXRzaS9HRkhET2lDcHlTNmUAVks0TFctMTYAEu8BA8qJgKE=' type='result'><conference-modified xmlns='jitsi:colibri2'/></iq>
JVB 2024-03-05 11:58:52.990 INFO: [51] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1] Conference.expire#595: Expiring.
JVB 2024-03-05 11:58:52.991 INFO: [51] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1] EndpointConnectionStatusMonitor.stop#66: Stopped
JVB 2024-03-05 11:58:52.993 INFO: [51] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=244dafa4 stats_id=Darrick-dee] AbstractEndpoint.expire#175: Expiring.
JVB 2024-03-05 11:58:52.993 INFO: [51] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=244dafa4 stats_id=Darrick-dee] Endpoint.expire#1081: Spent 0 seconds oversending
JVB 2024-03-05 11:58:52.993 INFO: [51] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=244dafa4 stats_id=Darrick-dee] Transceiver.teardown#364: Tearing down
JVB 2024-03-05 11:58:52.993 INFO: [51] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=244dafa4 stats_id=Darrick-dee] RtpReceiverImpl.tearDown#349: Tearing down
JVB 2024-03-05 11:58:52.994 INFO: [51] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=244dafa4 stats_id=Darrick-dee] RtpSenderImpl.tearDown#320: Tearing down
JVB 2024-03-05 11:58:53.003 INFO: [51] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=244dafa4 stats_id=Darrick-dee] EndpointMessageTransport.webSocketClosed#363: Websocket closed, statusCode 1001 ( endpoint closed).
JVB 2024-03-05 11:58:53.004 INFO: [51] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=244dafa4 stats_id=Darrick-dee] DtlsTransport.stop#185: Stopping
JVB 2024-03-05 11:58:53.004 INFO: [51] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=244dafa4 stats_id=Darrick-dee local_ufrag=55qgr1ho7473co] IceTransport.stop#258: Stopping
JVB 2024-03-05 11:58:53.006 INFO: [51] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=244dafa4 stats_id=Darrick-dee local_ufrag=55qgr1ho7473co ufrag=55qgr1ho7473co name=stream-244dafa4 componentId=1] MergingDatagramSocket.close#142: Closing.
JVB 2024-03-05 11:58:53.006 INFO: [57] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=244dafa4 stats_id=Darrick-dee local_ufrag=55qgr1ho7473co ufrag=55qgr1ho7473co name=stream-244dafa4 componentId=1] MergingDatagramSocket$SocketContainer.runInReaderThread#770: Failed to receive: java.net.SocketException: Socket closed
JVB 2024-03-05 11:58:53.006 INFO: [51] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=244dafa4 stats_id=Darrick-dee] Endpoint.expire#1099: Expired.
JVB 2024-03-05 11:58:53.007 INFO: [54] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=244dafa4 stats_id=Darrick-dee local_ufrag=55qgr1ho7473co] IceTransport.startReadingData#224: Socket closed, stopping reader
JVB 2024-03-05 11:58:53.007 INFO: [54] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1 epId=244dafa4 stats_id=Darrick-dee local_ufrag=55qgr1ho7473co] IceTransport.startReadingData#236: No longer running, stopped reading packets
JVB 2024-03-05 11:58:53.012 INFO: [51] [confId=6979ff73d6f83c4f [email protected] meeting_id=302382c1] Conference.updateStatisticsOnExpire#654: expire_conf,duration=42,has_failed=false,has_partially_failed=false

#prosody

user@meeting:~/jitsi-stable-9258$ docker logs jitsi-stable-9258_prosody_1
[s6-init] making user provided files available at /var/run/s6/etc...exited 0.
[s6-init] ensuring user provided files have correct perms...exited 0.
[fix-attrs.d] applying ownership & permissions fixes...
[fix-attrs.d] done.
[cont-init.d] executing container initialization scripts...
[cont-init.d] 01-set-timezone: executing...
[cont-init.d] 01-set-timezone: exited 0.
[cont-init.d] 10-config: executing...
Adding user `prosody' to group `sasl' ...
Adding user prosody to group sasl
Done.
mkdir: cannot create directory '/config/certs': File exists
Prosody normal mode, using default config
The given hostname does not exist in the config
mv: cannot stat '/config/data/*.crt': No such file or directory
mv: cannot stat '/config/data/*.key': No such file or directory
[cont-init.d] 10-config: exited 0.
[cont-init.d] done.
[services.d] starting services
saslauthd[253] :num_procs  : 5
saslauthd[253] :mech_option: /etc/saslauthd.conf
saslauthd[253] :run_path   : /var/run/saslauthd
saslauthd[253] :auth_mech  : ldap
saslauthd[253] :mmaped shared memory segment on file: /var/run/saslauthd/cache.mmap
saslauthd[253] :bucket size: 96 bytes
saslauthd[253] :stats size : 36 bytes
saslauthd[253] :timeout    : 28800 seconds
saslauthd[253] :cache table: 985828 total bytes
saslauthd[253] :cache table: 1711 slots
saslauthd[253] :cache table: 10266 buckets
saslauthd[253] :flock file opened at /var/run/saslauthd/cache.flock
saslauthd[253] :using accept lock file: /var/run/saslauthd/mux.accept
saslauthd[253] :master pid is: 0
saslauthd[253] :listening on socket: /var/run/saslauthd/mux
saslauthd[253] :using process model
saslauthd[253] :forked child: 262
saslauthd[253] :forked child: 264
saslauthd[253] :forked child: 265
saslauthd[253] :forked child: 266
saslauthd[253] :acquired accept lock
[services.d] done.
2024-03-05 11:57:48 startup             info    Hello and welcome to Prosody version 0.12.4
2024-03-05 11:57:48 startup             info    Prosody is using the epoll backend for connection handling
2024-03-05 11:57:48 focus.meet.jitsi:tls  info  Certificates loaded
2024-03-05 11:57:48 internal-muc.meet.jitsi:tls  info   Certificates loaded
2024-03-05 11:57:48 meet.jitsi:tls               info   Certificates loaded
2024-03-05 11:57:48 portmanager                  info   Activated service 'c2s' on [*]:5222
2024-03-05 11:57:48 portmanager                  info   Activated service 'c2s_direct_tls' on no ports
2024-03-05 11:57:48 portmanager                  info   Activated service 'legacy_ssl' on no ports
2024-03-05 11:57:48 portmanager                  info   Activated service 'http' on [*]:5280
2024-03-05 11:57:48 portmanager                  info   Activated service 'https' on no ports
2024-03-05 11:57:48 meet.jitsi:http              info   Serving 'websocket' at http://meet.jitsi:5280/xmpp-websocket
2024-03-05 11:57:48 meet.jitsi:http              info   Serving 'bosh' at http://meet.jitsi:5280/http-bind
2024-03-05 11:57:48 meet.jitsi:room_destroy      info   loaded
2024-03-05 11:57:48 endconference.meet.jitsi:end_conference  info       Starting end_conference for muc.meet.jitsi
2024-03-05 11:57:48 endconference.meet.jitsi:tls             info       Certificates loaded
2024-03-05 11:57:48 metadata.meet.jitsi:room_metadata_component  info   Starting room metadata for muc.meet.jitsi
2024-03-05 11:57:48 metadata.meet.jitsi:tls                      info   Certificates loaded
2024-03-05 11:57:48 lobby.meet.jitsi:tls                         info   Certificates loaded
2024-03-05 11:57:48 meet.jitsi:muc_lobby_rooms                   info   Lobby component loaded lobby.meet.jitsi
2024-03-05 11:57:48 auth.meet.jitsi:tls                          info   Certificates loaded
2024-03-05 11:57:48 metadata.meet.jitsi:room_metadata_component  info   Hook to muc events on breakout.meet.jitsi
2024-03-05 11:57:48 breakout.meet.jitsi:tls                      info   Certificates loaded
2024-03-05 11:57:48 meet.jitsi:muc_breakout_rooms                info   Breakout rooms component created breakout.meet.jitsi
2024-03-05 11:57:48 meet.jitsi:muc_breakout_rooms                info   Hook to muc events on breakout.meet.jitsi
2024-03-05 11:57:48 conferenceduration.meet.jitsi:conference_duration_component  info   Starting conference duration timer for muc.meet.jitsi
2024-03-05 11:57:48 conferenceduration.meet.jitsi:conference_duration_component  info   No muc component found, will listen for it: muc.meet.jitsi
2024-03-05 11:57:48 conferenceduration.meet.jitsi:tls                            info   Certificates loaded
2024-03-05 11:57:48 muc.meet.jitsi:tls                                           info   Certificates loaded
2024-03-05 11:57:48 muc.meet.jitsi:muc_domain_mapper                             info   Loading mod_muc_domain_mapper for host focus.meet.jitsi!
2024-03-05 11:57:48 muc.meet.jitsi:muc_domain_mapper                             info   Loading mod_muc_domain_mapper for host internal-muc.meet.jitsi!
2024-03-05 11:57:48 muc.meet.jitsi:muc_domain_mapper                             info   Loading mod_muc_domain_mapper for host meet.jitsi!
2024-03-05 11:57:48 muc.meet.jitsi:muc_domain_mapper                             info   Loading mod_muc_domain_mapper for host endconference.meet.jitsi!
2024-03-05 11:57:48 muc.meet.jitsi:muc_domain_mapper                             info   Loading mod_muc_domain_mapper for host auth.meet.jitsi!
2024-03-05 11:57:48 muc.meet.jitsi:muc_domain_mapper                             info   Loading mod_muc_domain_mapper for host breakout.meet.jitsi!
2024-03-05 11:57:48 muc.meet.jitsi:muc_domain_mapper                             info   Loading mod_muc_domain_mapper for host lobby.meet.jitsi!
2024-03-05 11:57:48 muc.meet.jitsi:muc_domain_mapper                             info   Loading mod_muc_domain_mapper for host muc.meet.jitsi!
2024-03-05 11:57:48 muc.meet.jitsi:muc_domain_mapper                             info   Loading mod_muc_domain_mapper for host conferenceduration.meet.jitsi!
2024-03-05 11:57:48 muc.meet.jitsi:muc_domain_mapper                             info   Loading mod_muc_domain_mapper for host metadata.meet.jitsi!
2024-03-05 11:57:48 conferenceduration.meet.jitsi:conference_duration_component  info   Hook to muc events on muc.meet.jitsi
2024-03-05 11:57:48 metadata.meet.jitsi:room_metadata_component                  info   Hook to muc events on muc.meet.jitsi
2024-03-05 11:57:48 meet.jitsi:muc_breakout_rooms                                info   Hook to muc events on muc.meet.jitsi
2024-03-05 11:57:48 guest.meet.jitsi:tls                                         info   Certificates loaded
2024-03-05 11:57:48 muc.meet.jitsi:muc_domain_mapper                             info   Loading mod_muc_domain_mapper for host guest.meet.jitsi!
2024-03-05 11:57:48 avmoderation.meet.jitsi:av_moderation_component              info   Starting av_moderation for muc.meet.jitsi
2024-03-05 11:57:48 avmoderation.meet.jitsi:av_moderation_component              info   Hook to muc events on muc.meet.jitsi
2024-03-05 11:57:48 avmoderation.meet.jitsi:tls                                  info   Certificates loaded
2024-03-05 11:57:48 muc.meet.jitsi:muc_domain_mapper                             info   Loading mod_muc_domain_mapper for host avmoderation.meet.jitsi!
2024-03-05 11:57:48 speakerstats.meet.jitsi:speakerstats_component               info   Starting speakerstats for muc.meet.jitsi
2024-03-05 11:57:48 speakerstats.meet.jitsi:speakerstats_component               info   Conference component loaded muc.meet.jitsi
2024-03-05 11:57:48 speakerstats.meet.jitsi:speakerstats_component               info   Hook to muc events on table: 0x55d0865fd220
2024-03-05 11:57:48 speakerstats.meet.jitsi:speakerstats_component               info   Main muc service table: 0x55d086830070
2024-03-05 11:57:48 speakerstats.meet.jitsi:speakerstats_component               info   Breakout component loaded breakout.meet.jitsi
2024-03-05 11:57:48 speakerstats.meet.jitsi:speakerstats_component               info   Hook to muc events on table: 0x55d0866a7530
2024-03-05 11:57:48 speakerstats.meet.jitsi:tls                                  info   Certificates loaded
2024-03-05 11:57:48 muc.meet.jitsi:muc_domain_mapper                             info   Loading mod_muc_domain_mapper for host speakerstats.meet.jitsi!
2024-03-05 11:57:51 c2s55d0869be300                                              info   Client connected
2024-03-05 11:57:51 c2s55d0869be300                                              info   Stream encrypted (TLSv1.3 with TLS_AES_256_GCM_SHA384)
2024-03-05 11:57:51 c2s55d0869be300                                              info   Authenticated as [email protected]
2024-03-05 11:57:51 auth.meet.jitsi:limits_exception                             info   Setting stanza size limits for [email protected] to 10485760
2024-03-05 11:57:52 c2s55d0869de3f0                                              info   Client connected
2024-03-05 11:57:53 c2s55d0869de3f0                                              info   Stream encrypted (TLSv1.3 with TLS_AES_256_GCM_SHA384)
2024-03-05 11:57:53 c2s55d0869de3f0                                              info   Authenticated as [email protected]
2024-03-05 11:57:53 auth.meet.jitsi:limits_exception                             info   Setting stanza size limits for [email protected] to 10485760
2024-03-05 11:57:56 c2s55d086947e90                                              info   Client connected
2024-03-05 11:57:56 c2s55d086947e90                                              info   Authenticated as [email protected]
2024-03-05 11:57:56 c2s55d0869678d0                                              info   Client connected
2024-03-05 11:57:57 c2s55d0869678d0                                              info   Stream encrypted (TLSv1.2 with ECDHE-RSA-AES256-GCM-SHA384)
2024-03-05 11:57:57 c2s55d0869678d0                                              info   Authenticated as [email protected]
2024-03-05 11:58:00 c2s55d086a732f0                                              info   Client connected
2024-03-05 11:58:00 c2s55d086a732f0                                              info   Authenticated as [email protected]
2024-03-05 11:58:00 c2s55d086a732f0                                              info   Client disconnected: connection closed
2024-03-05 11:58:10 c2s55d0869dc170                                              info   Client connected
2024-03-05 11:58:10 c2s55d0869dc170                                              info   Stream encrypted (TLSv1.2 with ECDHE-RSA-AES256-GCM-SHA384)
2024-03-05 11:58:10 c2s55d0869dc170                                              info   Authenticated as [email protected]
2024-03-05 11:58:45 c2s55d0869dc170                                              info   Client disconnected: connection closed
2024-03-05 11:58:52 speakerstats.meet.jitsi:speakerstats_component               warn   A module has been configured that triggers external events.
2024-03-05 11:58:52 speakerstats.meet.jitsi:speakerstats_component               warn   Implement this lib to trigger external events.
2024-03-05 11:58:52 endconference.meet.jitsi:end_conference                      info   Room [email protected] destroyed by occupant [email protected]/8RMPqlSAxBAS
2024-03-05 11:58:56 c2s55d086947e90                                              info   Client disconnected: connection closed
user@meeting:~/jitsi-stable-9258$

#iptables

user@meeting:~/jitsi-stable-9258$ sudo iptables -S
-P INPUT ACCEPT
-P FORWARD ACCEPT
-P OUTPUT ACCEPT
-N DOCKER
-N DOCKER-ISOLATION-STAGE-1
-N DOCKER-ISOLATION-STAGE-2
-N DOCKER-USER
-N LOCAL
-A INPUT -j LOCAL
-A INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT
-A INPUT -p udp -m udp --dport 33434:33523 -j REJECT --reject-with icmp-port-unreachable
-A INPUT -p icmp -m icmp --icmp-type 8 -j ACCEPT
-A INPUT -s MYOWNIP/32 -j ACCEPT
-A INPUT -p tcp -m tcp --dport 22 -j DROP
-A FORWARD -j DOCKER-USER
-A FORWARD -j DOCKER-ISOLATION-STAGE-1
-A FORWARD -o docker0 -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT
-A FORWARD -o docker0 -j DOCKER
-A FORWARD -i docker0 ! -o docker0 -j ACCEPT
-A FORWARD -i docker0 -o docker0 -j ACCEPT
-A FORWARD -o br-a8810964834a -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT
-A FORWARD -o br-a8810964834a -j DOCKER
-A FORWARD -i br-a8810964834a ! -o br-a8810964834a -j ACCEPT
-A FORWARD -i br-a8810964834a -o br-a8810964834a -j ACCEPT
-A FORWARD -o br-844836b17695 -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT
-A FORWARD -o br-844836b17695 -j DOCKER
-A FORWARD -i br-844836b17695 ! -o br-844836b17695 -j ACCEPT
-A FORWARD -i br-844836b17695 -o br-844836b17695 -j ACCEPT
-A OUTPUT -j LOCAL
-A DOCKER -d 172.19.0.3/32 ! -i br-a8810964834a -o br-a8810964834a -p udp -m udp --dport 20050 -j ACCEPT
-A DOCKER -d 172.19.0.3/32 ! -i br-a8810964834a -o br-a8810964834a -p udp -m udp --dport 20049 -j ACCEPT
-A DOCKER -d 172.19.0.4/32 ! -i br-a8810964834a -o br-a8810964834a -p tcp -m tcp --dport 8888 -j ACCEPT
-A DOCKER -d 172.19.0.5/32 ! -i br-a8810964834a -o br-a8810964834a -p udp -m udp --dport 10000 -j ACCEPT
-A DOCKER -d 172.19.0.3/32 ! -i br-a8810964834a -o br-a8810964834a -p udp -m udp --dport 20048 -j ACCEPT
-A DOCKER -d 172.19.0.3/32 ! -i br-a8810964834a -o br-a8810964834a -p udp -m udp --dport 20047 -j ACCEPT
-A DOCKER -d 172.19.0.5/32 ! -i br-a8810964834a -o br-a8810964834a -p tcp -m tcp --dport 8080 -j ACCEPT
-A DOCKER -d 172.19.0.3/32 ! -i br-a8810964834a -o br-a8810964834a -p udp -m udp --dport 20046 -j ACCEPT
-A DOCKER -d 172.19.0.3/32 ! -i br-a8810964834a -o br-a8810964834a -p udp -m udp --dport 20045 -j ACCEPT
-A DOCKER -d 172.19.0.3/32 ! -i br-a8810964834a -o br-a8810964834a -p udp -m udp --dport 20044 -j ACCEPT
-A DOCKER -d 172.19.0.3/32 ! -i br-a8810964834a -o br-a8810964834a -p udp -m udp --dport 20043 -j ACCEPT
-A DOCKER -d 172.19.0.3/32 ! -i br-a8810964834a -o br-a8810964834a -p udp -m udp --dport 20042 -j ACCEPT
-A DOCKER -d 172.19.0.3/32 ! -i br-a8810964834a -o br-a8810964834a -p udp -m udp --dport 20041 -j ACCEPT
-A DOCKER -d 172.19.0.3/32 ! -i br-a8810964834a -o br-a8810964834a -p udp -m udp --dport 20040 -j ACCEPT
-A DOCKER -d 172.19.0.3/32 ! -i br-a8810964834a -o br-a8810964834a -p udp -m udp --dport 20039 -j ACCEPT
-A DOCKER -d 172.19.0.3/32 ! -i br-a8810964834a -o br-a8810964834a -p udp -m udp --dport 20038 -j ACCEPT
-A DOCKER -d 172.19.0.3/32 ! -i br-a8810964834a -o br-a8810964834a -p udp -m udp --dport 20037 -j ACCEPT
-A DOCKER -d 172.19.0.3/32 ! -i br-a8810964834a -o br-a8810964834a -p udp -m udp --dport 20036 -j ACCEPT
-A DOCKER -d 172.19.0.6/32 ! -i br-a8810964834a -o br-a8810964834a -p tcp -m tcp --dport 443 -j ACCEPT
-A DOCKER -d 172.19.0.6/32 ! -i br-a8810964834a -o br-a8810964834a -p tcp -m tcp --dport 80 -j ACCEPT
-A DOCKER -d 172.19.0.3/32 ! -i br-a8810964834a -o br-a8810964834a -p udp -m udp --dport 20035 -j ACCEPT
-A DOCKER -d 172.19.0.3/32 ! -i br-a8810964834a -o br-a8810964834a -p udp -m udp --dport 20034 -j ACCEPT
-A DOCKER -d 172.19.0.3/32 ! -i br-a8810964834a -o br-a8810964834a -p udp -m udp --dport 20033 -j ACCEPT
-A DOCKER -d 172.19.0.3/32 ! -i br-a8810964834a -o br-a8810964834a -p udp -m udp --dport 20032 -j ACCEPT
-A DOCKER -d 172.19.0.3/32 ! -i br-a8810964834a -o br-a8810964834a -p udp -m udp --dport 20031 -j ACCEPT
-A DOCKER -d 172.19.0.3/32 ! -i br-a8810964834a -o br-a8810964834a -p udp -m udp --dport 20030 -j ACCEPT
-A DOCKER -d 172.19.0.3/32 ! -i br-a8810964834a -o br-a8810964834a -p udp -m udp --dport 20029 -j ACCEPT
-A DOCKER -d 172.19.0.3/32 ! -i br-a8810964834a -o br-a8810964834a -p udp -m udp --dport 20028 -j ACCEPT
-A DOCKER -d 172.19.0.3/32 ! -i br-a8810964834a -o br-a8810964834a -p udp -m udp --dport 20027 -j ACCEPT
-A DOCKER -d 172.19.0.3/32 ! -i br-a8810964834a -o br-a8810964834a -p udp -m udp --dport 20026 -j ACCEPT
-A DOCKER -d 172.19.0.3/32 ! -i br-a8810964834a -o br-a8810964834a -p udp -m udp --dport 20025 -j ACCEPT
-A DOCKER -d 172.19.0.3/32 ! -i br-a8810964834a -o br-a8810964834a -p udp -m udp --dport 20024 -j ACCEPT
-A DOCKER -d 172.19.0.3/32 ! -i br-a8810964834a -o br-a8810964834a -p udp -m udp --dport 20023 -j ACCEPT
-A DOCKER -d 172.19.0.3/32 ! -i br-a8810964834a -o br-a8810964834a -p udp -m udp --dport 20022 -j ACCEPT
-A DOCKER -d 172.19.0.3/32 ! -i br-a8810964834a -o br-a8810964834a -p udp -m udp --dport 20021 -j ACCEPT
-A DOCKER -d 172.19.0.3/32 ! -i br-a8810964834a -o br-a8810964834a -p udp -m udp --dport 20020 -j ACCEPT
-A DOCKER -d 172.19.0.3/32 ! -i br-a8810964834a -o br-a8810964834a -p udp -m udp --dport 20019 -j ACCEPT
-A DOCKER -d 172.19.0.3/32 ! -i br-a8810964834a -o br-a8810964834a -p udp -m udp --dport 20018 -j ACCEPT
-A DOCKER -d 172.19.0.3/32 ! -i br-a8810964834a -o br-a8810964834a -p udp -m udp --dport 20017 -j ACCEPT
-A DOCKER -d 172.19.0.3/32 ! -i br-a8810964834a -o br-a8810964834a -p udp -m udp --dport 20016 -j ACCEPT
-A DOCKER -d 172.19.0.3/32 ! -i br-a8810964834a -o br-a8810964834a -p udp -m udp --dport 20015 -j ACCEPT
-A DOCKER -d 172.19.0.3/32 ! -i br-a8810964834a -o br-a8810964834a -p udp -m udp --dport 20014 -j ACCEPT
-A DOCKER -d 172.19.0.3/32 ! -i br-a8810964834a -o br-a8810964834a -p udp -m udp --dport 20013 -j ACCEPT
-A DOCKER -d 172.19.0.3/32 ! -i br-a8810964834a -o br-a8810964834a -p udp -m udp --dport 20012 -j ACCEPT
-A DOCKER -d 172.19.0.3/32 ! -i br-a8810964834a -o br-a8810964834a -p udp -m udp --dport 20011 -j ACCEPT
-A DOCKER -d 172.19.0.3/32 ! -i br-a8810964834a -o br-a8810964834a -p udp -m udp --dport 20010 -j ACCEPT
-A DOCKER -d 172.19.0.3/32 ! -i br-a8810964834a -o br-a8810964834a -p udp -m udp --dport 20009 -j ACCEPT
-A DOCKER -d 172.19.0.3/32 ! -i br-a8810964834a -o br-a8810964834a -p udp -m udp --dport 20008 -j ACCEPT
-A DOCKER -d 172.19.0.3/32 ! -i br-a8810964834a -o br-a8810964834a -p udp -m udp --dport 20007 -j ACCEPT
-A DOCKER -d 172.19.0.3/32 ! -i br-a8810964834a -o br-a8810964834a -p udp -m udp --dport 20006 -j ACCEPT
-A DOCKER -d 172.19.0.3/32 ! -i br-a8810964834a -o br-a8810964834a -p udp -m udp --dport 20005 -j ACCEPT
-A DOCKER -d 172.19.0.3/32 ! -i br-a8810964834a -o br-a8810964834a -p udp -m udp --dport 20004 -j ACCEPT
-A DOCKER -d 172.19.0.3/32 ! -i br-a8810964834a -o br-a8810964834a -p udp -m udp --dport 20003 -j ACCEPT
-A DOCKER -d 172.19.0.3/32 ! -i br-a8810964834a -o br-a8810964834a -p udp -m udp --dport 20002 -j ACCEPT
-A DOCKER -d 172.19.0.3/32 ! -i br-a8810964834a -o br-a8810964834a -p udp -m udp --dport 20001 -j ACCEPT
-A DOCKER -d 172.19.0.3/32 ! -i br-a8810964834a -o br-a8810964834a -p udp -m udp --dport 20000 -j ACCEPT
-A DOCKER-ISOLATION-STAGE-1 -i docker0 ! -o docker0 -j DOCKER-ISOLATION-STAGE-2
-A DOCKER-ISOLATION-STAGE-1 -i br-a8810964834a ! -o br-a8810964834a -j DOCKER-ISOLATION-STAGE-2
-A DOCKER-ISOLATION-STAGE-1 -i br-844836b17695 ! -o br-844836b17695 -j DOCKER-ISOLATION-STAGE-2
-A DOCKER-ISOLATION-STAGE-1 -j RETURN
-A DOCKER-ISOLATION-STAGE-2 -o docker0 -j DROP
-A DOCKER-ISOLATION-STAGE-2 -o br-a8810964834a -j DROP
-A DOCKER-ISOLATION-STAGE-2 -o br-844836b17695 -j DROP
-A DOCKER-ISOLATION-STAGE-2 -j RETURN
-A DOCKER-USER -j RETURN
-A LOCAL -o lo -j ACCEPT
-A LOCAL -i lo -j ACCEPT
user@meeting:~/jitsi-stable-9258$

#ifconfig

user@meeting:~/jitsi-stable-9258$ ifconfig
br-844836b17695: flags=4099<UP,BROADCAST,MULTICAST>  mtu 1500
        inet 172.18.0.1  netmask 255.255.0.0  broadcast 172.18.255.255
        ether 02:42:26:5e:41:87  txqueuelen 0  (Ethernet)
        RX packets 238407  bytes 180051786 (180.0 MB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 256564  bytes 53973017 (53.9 MB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

br-a8810964834a: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet 172.19.0.1  netmask 255.255.0.0  broadcast 172.19.255.255
        ether 02:42:5a:9b:b2:30  txqueuelen 0  (Ethernet)
        RX packets 34787  bytes 60421014 (60.4 MB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 39691  bytes 6589837 (6.5 MB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

docker0: flags=4099<UP,BROADCAST,MULTICAST>  mtu 1500
        inet 172.17.0.1  netmask 255.255.0.0  broadcast 172.17.255.255
        ether 02:42:7a:c0:17:97  txqueuelen 0  (Ethernet)
        RX packets 0  bytes 0 (0.0 B)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 0  bytes 0 (0.0 B)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

ens160: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet MYPUBLICIP  netmask 255.255.255.224  broadcast MYPUBLICIPB
        inet6 fe80::250:56ff:fe9f:d327  prefixlen 64  scopeid 0x20<link>
        ether MYPUBLICIPMAC  txqueuelen 1000  (Ethernet)
        RX packets 20562397  bytes 4193982158 (4.1 GB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 1662009  bytes 380192236 (380.1 MB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

lo: flags=73<UP,LOOPBACK,RUNNING>  mtu 65536
        inet 127.0.0.1  netmask 255.0.0.0
        loop  txqueuelen 1000  (Local Loopback)
        RX packets 105541  bytes 103033723 (103.0 MB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 105541  bytes 103033723 (103.0 MB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

veth04dce52: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        ether e2:32:72:05:37:4a  txqueuelen 0  (Ethernet)
        RX packets 972  bytes 1184078 (1.1 MB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 1018  bytes 1274177 (1.2 MB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

veth6b334a7: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        ether 12:6b:41:e5:bb:1d  txqueuelen 0  (Ethernet)
        RX packets 351  bytes 1253294 (1.2 MB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 356  bytes 77131 (77.1 KB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

veth78e8853: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        ether ee:65:3a:c1:bb:84  txqueuelen 0  (Ethernet)
        RX packets 1678  bytes 2584513 (2.5 MB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 1838  bytes 1311376 (1.3 MB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

vethd79344d: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        ether d2:f6:8f:72:3c:42  txqueuelen 0  (Ethernet)
        RX packets 237  bytes 69896 (69.8 KB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 224  bytes 71672 (71.6 KB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

vethfa0c45d: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        ether 36:a2:3a:b4:84:a0  txqueuelen 0  (Ethernet)
        RX packets 800  bytes 100574 (100.5 KB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 680  bytes 1261250 (1.2 MB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

user@meeting:~/jitsi-stable-9258$

#folder structure / rights

user@meeting:~/jitsi-stable-9258$ ls -l ~/.jitsi-meet-cfg/
total 28
drwxrwxr-x 2 user  user 4096 Mar  4 15:06 jibri
drwxrwxr-x 2 lxd user 4096 Mar  4 15:15 jicofo
drwxrwxr-x 4 user  user 4096 Mar  4 15:26 jigasi
drwxrwxr-x 2 jvb user 4096 Mar  4 15:15 jvb
drwxrwxr-x 4 user  user 4096 Mar  4 15:06 prosody
drwxrwxr-x 2 lxd user 4096 Mar  4 15:06 transcripts
drwxrwxr-x 5 user  user 4096 Mar  4 15:15 web
user@meeting:~/jitsi-stable-9258$

@saghul
Copy link
Member

saghul commented Mar 7, 2024

I suspect NAt traversal settings on your SIP server. Note that when running in Docker Jigasi wioll technically be behind NAT.

@vias79
Copy link
Author

vias79 commented Mar 7, 2024

Thanks for the answer, I asked my server provider and they suggested we try TCP instead of UDP. So I changed to TCP in .env and rebuilt docker. But I get the same problem. So I don't think the problem is there as it worked before jitsi-docker.

Same problem in Jigasi logs:
2024-03-07 14:57:32.607 SEVERE: [131] SipGatewaySession$ExpireMediaStream.run#1387: [ctx=17098198431171251604467] Stopped receiving RTP for Call: id=17098198468381826360863 peers=1

Docker usually fixes it's own iptables, maybe it's something wrong here?

user@meeting:~/jitsi-stable-9258$ sudo iptables -L -t nat
Chain PREROUTING (policy ACCEPT)
target     prot opt source               destination
DOCKER     all  --  anywhere             anywhere             ADDRTYPE match dst-type LOCAL

Chain INPUT (policy ACCEPT)
target     prot opt source               destination

Chain OUTPUT (policy ACCEPT)
target     prot opt source               destination
DOCKER     all  --  anywhere            !localhost/8          ADDRTYPE match dst-type LOCAL

Chain POSTROUTING (policy ACCEPT)
target     prot opt source               destination
MASQUERADE  all  --  172.17.0.0/16        anywhere
MASQUERADE  all  --  172.19.0.0/16        anywhere
MASQUERADE  all  --  172.18.0.0/16        anywhere
MASQUERADE  tcp  --  172.19.0.3           172.19.0.3           tcp dpt:8888
MASQUERADE  udp  --  172.19.0.4           172.19.0.4           udp dpt:10000
MASQUERADE  tcp  --  172.19.0.4           172.19.0.4           tcp dpt:http-alt
MASQUERADE  udp  --  172.19.0.5           172.19.0.5           udp dpt:20050
MASQUERADE  udp  --  172.19.0.5           172.19.0.5           udp dpt:20049
MASQUERADE  udp  --  172.19.0.5           172.19.0.5           udp dpt:20048
MASQUERADE  udp  --  172.19.0.5           172.19.0.5           udp dpt:20047
MASQUERADE  udp  --  172.19.0.5           172.19.0.5           udp dpt:20046
MASQUERADE  udp  --  172.19.0.5           172.19.0.5           udp dpt:20045
MASQUERADE  udp  --  172.19.0.5           172.19.0.5           udp dpt:20044
MASQUERADE  udp  --  172.19.0.5           172.19.0.5           udp dpt:20043
MASQUERADE  udp  --  172.19.0.5           172.19.0.5           udp dpt:20042
MASQUERADE  udp  --  172.19.0.5           172.19.0.5           udp dpt:20041
MASQUERADE  udp  --  172.19.0.5           172.19.0.5           udp dpt:20040
MASQUERADE  tcp  --  172.19.0.6           172.19.0.6           tcp dpt:https
MASQUERADE  tcp  --  172.19.0.6           172.19.0.6           tcp dpt:http
MASQUERADE  udp  --  172.19.0.5           172.19.0.5           udp dpt:20039
MASQUERADE  udp  --  172.19.0.5           172.19.0.5           udp dpt:20038
MASQUERADE  udp  --  172.19.0.5           172.19.0.5           udp dpt:20037
MASQUERADE  udp  --  172.19.0.5           172.19.0.5           udp dpt:20036
MASQUERADE  udp  --  172.19.0.5           172.19.0.5           udp dpt:20035
MASQUERADE  udp  --  172.19.0.5           172.19.0.5           udp dpt:20034
MASQUERADE  udp  --  172.19.0.5           172.19.0.5           udp dpt:20033
MASQUERADE  udp  --  172.19.0.5           172.19.0.5           udp dpt:20032
MASQUERADE  udp  --  172.19.0.5           172.19.0.5           udp dpt:20031
MASQUERADE  udp  --  172.19.0.5           172.19.0.5           udp dpt:20030
MASQUERADE  udp  --  172.19.0.5           172.19.0.5           udp dpt:20029
MASQUERADE  udp  --  172.19.0.5           172.19.0.5           udp dpt:20028
MASQUERADE  udp  --  172.19.0.5           172.19.0.5           udp dpt:20027
MASQUERADE  udp  --  172.19.0.5           172.19.0.5           udp dpt:20026
MASQUERADE  udp  --  172.19.0.5           172.19.0.5           udp dpt:20025
MASQUERADE  udp  --  172.19.0.5           172.19.0.5           udp dpt:20024
MASQUERADE  udp  --  172.19.0.5           172.19.0.5           udp dpt:20023
MASQUERADE  udp  --  172.19.0.5           172.19.0.5           udp dpt:20022
MASQUERADE  udp  --  172.19.0.5           172.19.0.5           udp dpt:20021
MASQUERADE  udp  --  172.19.0.5           172.19.0.5           udp dpt:20020
MASQUERADE  udp  --  172.19.0.5           172.19.0.5           udp dpt:20019
MASQUERADE  udp  --  172.19.0.5           172.19.0.5           udp dpt:20018
MASQUERADE  udp  --  172.19.0.5           172.19.0.5           udp dpt:20017
MASQUERADE  udp  --  172.19.0.5           172.19.0.5           udp dpt:20016
MASQUERADE  udp  --  172.19.0.5           172.19.0.5           udp dpt:20015
MASQUERADE  udp  --  172.19.0.5           172.19.0.5           udp dpt:20014
MASQUERADE  udp  --  172.19.0.5           172.19.0.5           udp dpt:20013
MASQUERADE  udp  --  172.19.0.5           172.19.0.5           udp dpt:20012
MASQUERADE  udp  --  172.19.0.5           172.19.0.5           udp dpt:20011
MASQUERADE  udp  --  172.19.0.5           172.19.0.5           udp dpt:20010
MASQUERADE  udp  --  172.19.0.5           172.19.0.5           udp dpt:20009
MASQUERADE  udp  --  172.19.0.5           172.19.0.5           udp dpt:20008
MASQUERADE  udp  --  172.19.0.5           172.19.0.5           udp dpt:20007
MASQUERADE  udp  --  172.19.0.5           172.19.0.5           udp dpt:20006
MASQUERADE  udp  --  172.19.0.5           172.19.0.5           udp dpt:20005
MASQUERADE  udp  --  172.19.0.5           172.19.0.5           udp dpt:20004
MASQUERADE  udp  --  172.19.0.5           172.19.0.5           udp dpt:20003
MASQUERADE  udp  --  172.19.0.5           172.19.0.5           udp dpt:20002
MASQUERADE  udp  --  172.19.0.5           172.19.0.5           udp dpt:20001
MASQUERADE  udp  --  172.19.0.5           172.19.0.5           udp dpt:20000

Chain DOCKER (2 references)
target     prot opt source               destination
RETURN     all  --  anywhere             anywhere
RETURN     all  --  anywhere             anywhere
RETURN     all  --  anywhere             anywhere
DNAT       tcp  --  anywhere             localhost            tcp dpt:8888 to:172.19.0.3:8888
DNAT       udp  --  anywhere             anywhere             udp dpt:10000 to:172.19.0.4:10000
DNAT       tcp  --  anywhere             localhost            tcp dpt:http-alt to:172.19.0.4:8080
DNAT       udp  --  anywhere             anywhere             udp dpt:20050 to:172.19.0.5:20050
DNAT       udp  --  anywhere             anywhere             udp dpt:20049 to:172.19.0.5:20049
DNAT       udp  --  anywhere             anywhere             udp dpt:20048 to:172.19.0.5:20048
DNAT       udp  --  anywhere             anywhere             udp dpt:20047 to:172.19.0.5:20047
DNAT       udp  --  anywhere             anywhere             udp dpt:20046 to:172.19.0.5:20046
DNAT       udp  --  anywhere             anywhere             udp dpt:20045 to:172.19.0.5:20045
DNAT       udp  --  anywhere             anywhere             udp dpt:20044 to:172.19.0.5:20044
DNAT       udp  --  anywhere             anywhere             udp dpt:20043 to:172.19.0.5:20043
DNAT       udp  --  anywhere             anywhere             udp dpt:20042 to:172.19.0.5:20042
DNAT       udp  --  anywhere             anywhere             udp dpt:20041 to:172.19.0.5:20041
DNAT       udp  --  anywhere             anywhere             udp dpt:20040 to:172.19.0.5:20040
DNAT       tcp  --  anywhere             anywhere             tcp dpt:8443 to:172.19.0.6:443
DNAT       tcp  --  anywhere             anywhere             tcp dpt:8000 to:172.19.0.6:80
DNAT       udp  --  anywhere             anywhere             udp dpt:20039 to:172.19.0.5:20039
DNAT       udp  --  anywhere             anywhere             udp dpt:20038 to:172.19.0.5:20038
DNAT       udp  --  anywhere             anywhere             udp dpt:20037 to:172.19.0.5:20037
DNAT       udp  --  anywhere             anywhere             udp dpt:20036 to:172.19.0.5:20036
DNAT       udp  --  anywhere             anywhere             udp dpt:20035 to:172.19.0.5:20035
DNAT       udp  --  anywhere             anywhere             udp dpt:20034 to:172.19.0.5:20034
DNAT       udp  --  anywhere             anywhere             udp dpt:20033 to:172.19.0.5:20033
DNAT       udp  --  anywhere             anywhere             udp dpt:20032 to:172.19.0.5:20032
DNAT       udp  --  anywhere             anywhere             udp dpt:20031 to:172.19.0.5:20031
DNAT       udp  --  anywhere             anywhere             udp dpt:20030 to:172.19.0.5:20030
DNAT       udp  --  anywhere             anywhere             udp dpt:20029 to:172.19.0.5:20029
DNAT       udp  --  anywhere             anywhere             udp dpt:20028 to:172.19.0.5:20028
DNAT       udp  --  anywhere             anywhere             udp dpt:20027 to:172.19.0.5:20027
DNAT       udp  --  anywhere             anywhere             udp dpt:20026 to:172.19.0.5:20026
DNAT       udp  --  anywhere             anywhere             udp dpt:20025 to:172.19.0.5:20025
DNAT       udp  --  anywhere             anywhere             udp dpt:20024 to:172.19.0.5:20024
DNAT       udp  --  anywhere             anywhere             udp dpt:20023 to:172.19.0.5:20023
DNAT       udp  --  anywhere             anywhere             udp dpt:20022 to:172.19.0.5:20022
DNAT       udp  --  anywhere             anywhere             udp dpt:20021 to:172.19.0.5:20021
DNAT       udp  --  anywhere             anywhere             udp dpt:20020 to:172.19.0.5:20020
DNAT       udp  --  anywhere             anywhere             udp dpt:20019 to:172.19.0.5:20019
DNAT       udp  --  anywhere             anywhere             udp dpt:20018 to:172.19.0.5:20018
DNAT       udp  --  anywhere             anywhere             udp dpt:20017 to:172.19.0.5:20017
DNAT       udp  --  anywhere             anywhere             udp dpt:20016 to:172.19.0.5:20016
DNAT       udp  --  anywhere             anywhere             udp dpt:20015 to:172.19.0.5:20015
DNAT       udp  --  anywhere             anywhere             udp dpt:20014 to:172.19.0.5:20014
DNAT       udp  --  anywhere             anywhere             udp dpt:20013 to:172.19.0.5:20013
DNAT       udp  --  anywhere             anywhere             udp dpt:20012 to:172.19.0.5:20012
DNAT       udp  --  anywhere             anywhere             udp dpt:20011 to:172.19.0.5:20011
DNAT       udp  --  anywhere             anywhere             udp dpt:20010 to:172.19.0.5:20010
DNAT       udp  --  anywhere             anywhere             udp dpt:20009 to:172.19.0.5:20009
DNAT       udp  --  anywhere             anywhere             udp dpt:20008 to:172.19.0.5:20008
DNAT       udp  --  anywhere             anywhere             udp dpt:20007 to:172.19.0.5:20007
DNAT       udp  --  anywhere             anywhere             udp dpt:20006 to:172.19.0.5:20006
DNAT       udp  --  anywhere             anywhere             udp dpt:20005 to:172.19.0.5:20005
DNAT       udp  --  anywhere             anywhere             udp dpt:20004 to:172.19.0.5:20004
DNAT       udp  --  anywhere             anywhere             udp dpt:20003 to:172.19.0.5:20003
DNAT       udp  --  anywhere             anywhere             udp dpt:20002 to:172.19.0.5:20002
DNAT       udp  --  anywhere             anywhere             udp dpt:20001 to:172.19.0.5:20001
DNAT       udp  --  anywhere             anywhere             udp dpt:20000 to:172.19.0.5:20000
user@meeting:~/jitsi-stable-9258$
user@meeting:~/jitsi-stable-9258$ sudo iptables -L -n
Chain INPUT (policy ACCEPT)
target     prot opt source               destination
LOCAL      all  --  0.0.0.0/0            0.0.0.0/0
ACCEPT     all  --  0.0.0.0/0            0.0.0.0/0            state RELATED,ESTABLISHED
REJECT     udp  --  0.0.0.0/0            0.0.0.0/0            udp dpts:33434:33523 reject-with icmp-port-unreachable
ACCEPT     icmp --  0.0.0.0/0            0.0.0.0/0            icmptype 8
ACCEPT     all  --  MYIP         0.0.0.0/0
DROP       tcp  --  0.0.0.0/0            0.0.0.0/0            tcp dpt:22

Chain FORWARD (policy ACCEPT)
target     prot opt source               destination
DOCKER-USER  all  --  0.0.0.0/0            0.0.0.0/0
DOCKER-ISOLATION-STAGE-1  all  --  0.0.0.0/0            0.0.0.0/0
ACCEPT     all  --  0.0.0.0/0            0.0.0.0/0            ctstate RELATED,ESTABLISHED
DOCKER     all  --  0.0.0.0/0            0.0.0.0/0
ACCEPT     all  --  0.0.0.0/0            0.0.0.0/0
ACCEPT     all  --  0.0.0.0/0            0.0.0.0/0
ACCEPT     all  --  0.0.0.0/0            0.0.0.0/0            ctstate RELATED,ESTABLISHED
DOCKER     all  --  0.0.0.0/0            0.0.0.0/0
ACCEPT     all  --  0.0.0.0/0            0.0.0.0/0
ACCEPT     all  --  0.0.0.0/0            0.0.0.0/0
ACCEPT     all  --  0.0.0.0/0            0.0.0.0/0            ctstate RELATED,ESTABLISHED
DOCKER     all  --  0.0.0.0/0            0.0.0.0/0
ACCEPT     all  --  0.0.0.0/0            0.0.0.0/0
ACCEPT     all  --  0.0.0.0/0            0.0.0.0/0

Chain OUTPUT (policy ACCEPT)
target     prot opt source               destination
LOCAL      all  --  0.0.0.0/0            0.0.0.0/0

Chain DOCKER (3 references)
target     prot opt source               destination
ACCEPT     udp  --  0.0.0.0/0            172.19.0.3           udp dpt:10000
ACCEPT     tcp  --  0.0.0.0/0            172.19.0.3           tcp dpt:8080
ACCEPT     tcp  --  0.0.0.0/0            172.19.0.4           tcp dpt:443
ACCEPT     tcp  --  0.0.0.0/0            172.19.0.4           tcp dpt:80
ACCEPT     tcp  --  0.0.0.0/0            172.19.0.5           tcp dpt:8888
ACCEPT     udp  --  0.0.0.0/0            172.19.0.6           udp dpt:20050
ACCEPT     udp  --  0.0.0.0/0            172.19.0.6           udp dpt:20049
ACCEPT     udp  --  0.0.0.0/0            172.19.0.6           udp dpt:20048
ACCEPT     udp  --  0.0.0.0/0            172.19.0.6           udp dpt:20047
ACCEPT     udp  --  0.0.0.0/0            172.19.0.6           udp dpt:20046
ACCEPT     udp  --  0.0.0.0/0            172.19.0.6           udp dpt:20045
ACCEPT     udp  --  0.0.0.0/0            172.19.0.6           udp dpt:20044
ACCEPT     udp  --  0.0.0.0/0            172.19.0.6           udp dpt:20043
ACCEPT     udp  --  0.0.0.0/0            172.19.0.6           udp dpt:20042
ACCEPT     udp  --  0.0.0.0/0            172.19.0.6           udp dpt:20041
ACCEPT     udp  --  0.0.0.0/0            172.19.0.6           udp dpt:20040
ACCEPT     udp  --  0.0.0.0/0            172.19.0.6           udp dpt:20039
ACCEPT     udp  --  0.0.0.0/0            172.19.0.6           udp dpt:20038
ACCEPT     udp  --  0.0.0.0/0            172.19.0.6           udp dpt:20037
ACCEPT     udp  --  0.0.0.0/0            172.19.0.6           udp dpt:20036
ACCEPT     udp  --  0.0.0.0/0            172.19.0.6           udp dpt:20035
ACCEPT     udp  --  0.0.0.0/0            172.19.0.6           udp dpt:20034
ACCEPT     udp  --  0.0.0.0/0            172.19.0.6           udp dpt:20033
ACCEPT     udp  --  0.0.0.0/0            172.19.0.6           udp dpt:20032
ACCEPT     udp  --  0.0.0.0/0            172.19.0.6           udp dpt:20031
ACCEPT     udp  --  0.0.0.0/0            172.19.0.6           udp dpt:20030
ACCEPT     udp  --  0.0.0.0/0            172.19.0.6           udp dpt:20029
ACCEPT     udp  --  0.0.0.0/0            172.19.0.6           udp dpt:20028
ACCEPT     udp  --  0.0.0.0/0            172.19.0.6           udp dpt:20027
ACCEPT     udp  --  0.0.0.0/0            172.19.0.6           udp dpt:20026
ACCEPT     udp  --  0.0.0.0/0            172.19.0.6           udp dpt:20025
ACCEPT     udp  --  0.0.0.0/0            172.19.0.6           udp dpt:20024
ACCEPT     udp  --  0.0.0.0/0            172.19.0.6           udp dpt:20023
ACCEPT     udp  --  0.0.0.0/0            172.19.0.6           udp dpt:20022
ACCEPT     udp  --  0.0.0.0/0            172.19.0.6           udp dpt:20021
ACCEPT     udp  --  0.0.0.0/0            172.19.0.6           udp dpt:20020
ACCEPT     udp  --  0.0.0.0/0            172.19.0.6           udp dpt:20019
ACCEPT     udp  --  0.0.0.0/0            172.19.0.6           udp dpt:20018
ACCEPT     udp  --  0.0.0.0/0            172.19.0.6           udp dpt:20017
ACCEPT     udp  --  0.0.0.0/0            172.19.0.6           udp dpt:20016
ACCEPT     udp  --  0.0.0.0/0            172.19.0.6           udp dpt:20015
ACCEPT     udp  --  0.0.0.0/0            172.19.0.6           udp dpt:20014
ACCEPT     udp  --  0.0.0.0/0            172.19.0.6           udp dpt:20013
ACCEPT     udp  --  0.0.0.0/0            172.19.0.6           udp dpt:20012
ACCEPT     udp  --  0.0.0.0/0            172.19.0.6           udp dpt:20011
ACCEPT     udp  --  0.0.0.0/0            172.19.0.6           udp dpt:20010
ACCEPT     udp  --  0.0.0.0/0            172.19.0.6           udp dpt:20009
ACCEPT     udp  --  0.0.0.0/0            172.19.0.6           udp dpt:20008
ACCEPT     udp  --  0.0.0.0/0            172.19.0.6           udp dpt:20007
ACCEPT     udp  --  0.0.0.0/0            172.19.0.6           udp dpt:20006
ACCEPT     udp  --  0.0.0.0/0            172.19.0.6           udp dpt:20005
ACCEPT     udp  --  0.0.0.0/0            172.19.0.6           udp dpt:20004
ACCEPT     udp  --  0.0.0.0/0            172.19.0.6           udp dpt:20003
ACCEPT     udp  --  0.0.0.0/0            172.19.0.6           udp dpt:20002
ACCEPT     udp  --  0.0.0.0/0            172.19.0.6           udp dpt:20001
ACCEPT     udp  --  0.0.0.0/0            172.19.0.6           udp dpt:20000

Chain DOCKER-ISOLATION-STAGE-1 (1 references)
target     prot opt source               destination
DOCKER-ISOLATION-STAGE-2  all  --  0.0.0.0/0            0.0.0.0/0
DOCKER-ISOLATION-STAGE-2  all  --  0.0.0.0/0            0.0.0.0/0
DOCKER-ISOLATION-STAGE-2  all  --  0.0.0.0/0            0.0.0.0/0
RETURN     all  --  0.0.0.0/0            0.0.0.0/0

Chain DOCKER-ISOLATION-STAGE-2 (3 references)
target     prot opt source               destination
DROP       all  --  0.0.0.0/0            0.0.0.0/0
DROP       all  --  0.0.0.0/0            0.0.0.0/0
DROP       all  --  0.0.0.0/0            0.0.0.0/0
RETURN     all  --  0.0.0.0/0            0.0.0.0/0

Chain DOCKER-USER (1 references)
target     prot opt source               destination
RETURN     all  --  0.0.0.0/0            0.0.0.0/0

Chain LOCAL (2 references)
target     prot opt source               destination
ACCEPT     all  --  0.0.0.0/0            0.0.0.0/0
ACCEPT     all  --  0.0.0.0/0            0.0.0.0/0
user@meeting:~/jitsi-stable-9258$

I even tried forwarding in sysctl.

user@meeting:~/jitsi-stable-9258$ sudo cat /etc/sysctl.conf
net.ipv6.conf.all.disable_ipv6 = 1
net.ipv6.conf.default.disable_ipv6 = 1
net.ipv6.conf.lo.disable_ipv6 = 1
net.ipv4.ip_forward = 1
user@meeting:~/jitsi-stable-9258$

@saghul
Copy link
Member

saghul commented Mar 7, 2024

Is your service provider handling NAT traversal fro you?

@vias79
Copy link
Author

vias79 commented Mar 7, 2024

Unsure what you mean, my server has a public IP with no firewalls in between (only local firewall).

The sip server I contact is also on a public IP, it probably has a local firewall too.

The sip account and sip server I used worked before the docker setup from this server. I just apt removed those packages and followed the setup for docker with jigasi. The call goes through though, but no sound and then disconnect.

I use this command to start:

docker-compose -f docker-compose.yml -f jigasi.yml up -d

@saghul
Copy link
Member

saghul commented Mar 8, 2024

Unsure what you mean, my server has a public IP with no firewalls in between (only local firewall).

But Jigasi is in Docker, which uses NAT for the inter-container network.

The sip account and sip server I used worked before the docker setup from this server. I just apt removed those packages and followed the setup for docker with jigasi. The call goes through though, but no sound and then disconnect.

If you had Jigasi on a public IP server before you might not have needed the NAT traversal support because you were not behind one. You are now.

@humble92
Copy link

humble92 commented Jul 9, 2024

Does NAT really make an issue? With the same network of meet.jitsi and container port mapping, it seems not the reason, doesn't it?

        networks:
            meet.jitsi:

Instead, what kind of configuration have you added or modified to run jigasi on top of default yml file or properties?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants