I am running Isaac Sim 4.5 on Windows 11 and trying to publish ROS2 topics to an external Jetson device running ROS2 Humble.
Topology
Windows PC
└ Isaac Sim 4.5
Jetson (Orin Nano)/ Ubuntu
└ ROS2 Humble
Both machines are on the same LAN.
ROS2 settings
RMW_IMPLEMENTATION=rmw_fastrtps_cpp
ROS_DOMAIN_ID=0
ROS2 Bridge starts successfully and there are no ROS-related errors in the Isaac Sim console.
Action Graph (minimal example)
On Playback Tick
→ ROS2 Publish Clock
→ Isaac Read Simulation Time
topicName: /clock
domain_id: 0
The simulation is running in Play mode.
Problem
On the Jetson machine:
ros2 topic list
does not show the /clock topic.
However, DDS / RTPS traffic can be observed on the network.
For example, using tcpdump on the Jetson machine:
sudo tcpdump -ni any ‘udp portrange 7400-7500’
shows packets such as:
192.168.x.x → 239.255.0.1:7400
192.168.x.x → 192.168.x.x:7412
This suggests DDS discovery traffic exists.
Question
Is communication between Isaac Sim (Windows) and external ROS2 nodes on Linux / Jetson officially supported?
Are there any known limitations or required network settings for FastDDS when using Isaac Sim on Windows?
Any guidance would be appreciated.