ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
I am a bit confused here. Are you trying to run 3 separate roscores?
Although that is possible, I've always used a single roscore and the ROS_MASTER_URI should always point to the same IP address, which is the computer running the roscore.
2 | No.2 Revision |
I am a bit confused here. Are you trying to run 3 separate roscores?
Although that is possible, I've always used a single roscore and the ROS_MASTER_URI should always point to the same IP address, which is the computer running the roscore.
EDIT:
Ok, I think I understand now the that you are pointing the same roscore, through different interfaces, is this correct?
I don't think it is possible to launch a node from a secondary device from your main computer. When you execute a roslaunch it will use the local nodes, it is just the communication that is done through the network.
If you want to centralize the launch of nodes in other devices, all I can think about is creating a script that will SSH in the secondary devices and then execute the roslaunch from there.