ros2 on embedded board without any network connection
A very simple question on ROS2,
Can we use ROS2 on embedded platform/board without any network connection (no internet/no router) means standalone board only ?
I tried running ROS2 without any network connectivity on laptop but it is not able to create any topic, services. (And works well with network connectivity)
Is it like ROS2 always need some router/network connectivity to run ROS nodes? (can't run on standalone board)
please help in understanding ROS2 concepts.
I believe the issue is not "with or without a network connection", it is that some DDS implementations ignore
lo
(ie:localhost
) network interfaces. They should be configurable to enable thelo
interface as well and then everything should work as normal.See ros2/rmw_fastrtps#228, eProsima/Fast-RTPS#167 and eProsima/Fast-RTPS#267 for what I believe are related issues.