Isaac Sim Version
4.5.0
4.2.0
4.1.0
4.0.0
4.5.0
2023.1.1
2023.1.0-hotfix.1
Other (please specify):
Operating System
Ubuntu 22.04
Ubuntu 20.04
Windows 11
Windows 10
Other (please specify):
GPU Information
- Model: NVIDIA GeForce RTX 3080
- Driver Version: 570.169
Topic Description
I cannot connect to Isaac Sim WebRTC Streaming Client on my Macbook
Detailed Description
I followed the instructions on “Container Installation” section in the Isaac Sim Documentation page. Successfully installed Isaac Sim in a Docker Container, inside an Ubuntu 20.04 server. Saw “Isaac Sim Full Streaming App is loaded.” message. Successfully connected to the WebRTC app in the server machine (displays on and everything). Successfully connected to the WebRTC app in machines under the same LAN network. However, once I move outside the private network, nothing’s working, the WebRTC just gave me a gray screen. I opened ports TCP/UDP 47995:48012, TCP/UDP 49000:49007, and TCP 49100 on the server’s network, disabled firewall on both server and client (on my Mac I turned off firewall in Settings, in the Ubuntu server I just ufw disable and ufw allow on all above ports just to be sure). I also tried using Tailscale and it still giving the same problem. I tried Tailscale bridge but could not get it to be UP, its kept being DOWN when I ran ‘ip a’. Can anyone help me resolve this, I have been trying to debug for nearly 5 weeks!
Steps to Reproduce
- Install Isaac Sim in a Docker container, inside a Ubuntu server (make sure GPU supports Omniverse Isaac Sim) (link: Container Installation — Isaac Sim Documentation)
- Download Isaac Sim WebRTC Streaming Client in the client machine
- Try connecting to the WebRTC application on the client, make sure to use a different network (if you use 192.168.x.x under the same network as the server, it would still work)
Error Messages
- Logs in the Isaac Sim Docker Container terminal after launching Isaac Sim (when I entered the original IP address or the Tailscale IP address, it gave me this type of warnings):
main: thread_init: already added for thread
main: thread_init: already added for thread
2025-07-23 10:18:54 [1,493,102ms] [Warning] [carb.livestream-rtc.plugin] onClientEventRaised: NVST_CCE_CONNECTED when m_connectionCount 4294967279 != 1
2025-07-23 10:19:06 [1,504,891ms] [Warning] [carb.livestream-rtc.plugin] onClientEventRaised: NVST_CCE_DISCONNECTED when m_connectionCount 4294967280 != 1
(In the server machine, I connected successfully to the WebRTC App, but it also gave me this type of warnings sometimes:
2025-07-24 07:48:42 [414,797ms] [Warning] [carb.livestream-rtc.plugin] onClientEventRaised: NVST_CCE_CONNECTED when m_connectionCount 4294967290 != 0
2025-07-24 07:48:45 [418,326ms] [Warning] [carb.livestream-rtc.plugin] onClientEventRaised: NVST_CCE_DISCONNECTED when m_connectionCount 4294967291 != 1)
- Logs in the debugging console, using devtool:
Screenshots or Videos
Below is the link to a screen record of me trying on both the original IP address and Tailscale IP address:
Me trying using Tailscale bridge and got same problems and errors so…
Additional Information
What I’ve Tried
- I’m pretty sure the problem is the network, the app and the machines works fine.
- I tried 1.1.1.1 VPN, and connecting to the original IP address of the server, but failed (gray screen)
- I tried Tailscale (by adding both the server and the client to the same tailnet), and connecting to the Tailscale IP address of the server, but failed the same (gray screen)
- I tried creating a Tailscale bridge, according to this script:
a. Run on SERVER
#### RUN AS ROOT
sudo su
#### ADD A BRIDGE
nmcli con add type bridge con-name tailscale-br0 ifname tailscale-br0 autoconnect yes
nmcli c mod tailscale-br0 ipv4.addresses 192.168.250.1/24 ipv4.method manual
#### ENABLE IP FORWARDING: https://tailscale.com/kb/1019/subnets#enable-ip-forwarding
echo 'net.ipv4.ip_forward = 1' | sudo tee -a /etc/sysctl.d/99-tailscale.conf
echo 'net.ipv6.conf.all.forwarding = 1' | sudo tee -a /etc/sysctl.d/99-tailscale.conf
sudo sysctl -p /etc/sysctl.d/99-tailscale.conf
#### PERFORMANCE OPTIMIZATION: https://tailscale.com/kb/1320/performance-best-practices#linux-optimizations-for-subnet-routers-and-exit-nodes
NETDEV=$(ip -o route get 8.8.8.8 | cut -f 5 -d " ")
sudo ethtool -K $NETDEV rx-udp-gro-forwarding on rx-gro-list off
printf '#!/bin/sh\n\nethtool -K %s rx-udp-gro-forwarding on rx-gro-list off \n' "$(ip -o route get 8.8.8.8 | cut -f 5 -d " ")" | sudo tee /etc/networkd-dispatcher/routable.d/50-tailscale
sudo chmod 755 /etc/networkd-dispatcher/routable.d/50-tailscale
sudo /etc/networkd-dispatcher/routable.d/50-tailscale
test $? -eq 0 || echo 'An error occurred.'
#### ADVERTISE SUBNET ROUTES
sudo tailscale set --advertise-routes=192.168.250.0/24
b. Accept routes ON TAILSCALE ADMIN CONSOLE
c. Run on CLIENT
tailscale set --shields-up=false
tailscale set --accept-dns=true
tailscale set --accept-routes=true
Connect
Enter IP 192.168.250.1 on the WebRTC interface
And still failed with the same gray screen and the same errors (I chose 192.168.250.1 because no one using that by that time I found).
Related Issues
For the Tailscale bridge IP, I tried entering that on the WebRTC app on the server machine and sometimes it worked (displays on), but sometimes it didn’t. Based on what I observed, when I connect to 127.0.0.1, and then turned it off, and then connect to 192.168.250.1, it worked. But when I connected to 192.168.250.1 consecutively, it did not work in all times after the first connection. This observe is in the server machine, but in the client nothing worked, I have never seen any display passed a gray screen.
Additional Context
The network connection seem to work perfectly fine:
I checked telnet from client to server port 49100, after launching Isaac Sim in the container → successfully connected (for both original IP, Tailscale IP, and Tailscale bridge IP).
I ping between client and server for both original IPs, Tailscale IPs, and Tailscale bridge IP → success.
nmap also success
(other ports in the list above beside 49100 I checked and they’re all closed, somehow… One moment in time I got udp 47998 to be open | filtered but then tried connecting to the original IP address on the Isaac Sim WebRTC and failed, ie gray screen)
Please help me resolve this network/system/connection issue, I asked my teammates, research on the internet, and no one was able to solve this.
Thanks a lot!
