ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question
0

How ROS nodes communicate offline?

asked 2017-04-08 00:13:21 -0500

dmngu9 gravatar image

i am able to use ROS nodes to communicate offline without the internet. The thing is isnt that they transfer data using TCP and ros master mange nodes using XMLRPC server.

Can anyone help to clear my understanding please?

edit retag flag offensive close merge delete

Comments

Why you need this? And offline means "local". Ros nodes are already communicating offline with TCP via localhost. If you need specific approaches; Take a look at: Wikipedia - Inter Process Communication

Orhan gravatar image Orhan  ( 2017-04-08 06:41:11 -0500 )edit

1 Answer

Sort by ยป oldest newest most voted
1

answered 2017-04-08 09:39:39 -0500

kramer gravatar image

updated 2017-04-08 09:41:59 -0500

That's a good observation. As pointed out by @Orhan Gazi Hafif, networking (TCP/IP in particular in your question) is one form of IPC. On your computer, ROS relies on your operating system's localhost network interface (i.e., 127.0.0.1) for single-host communication. As a "bonus" , ROS has the (nearly transparent) capability for distributed computing, which isn't possible for other forms of IPC (e.g., shared memory -- although, see nodelets for one way to handle that).

You've found a rather rich topic with a lot of history -- for instance, the (unfortunately confusingly named) ipc package came out of CMU (used in CARMEN robotics software) in the mid-90s. Note that this topic is still relevant -- ROS2 is going to use DDS as its middleware layer.

edit flag offensive delete link more

Question Tools

1 follower

Stats

Asked: 2017-04-08 00:13:21 -0500

Seen: 414 times

Last updated: Apr 08 '17