Robotics StackExchange | Archived questions

Is there anyway to find out which rosnode is running on which robot?

I am on a master laptop where I can see all the rostopics and rosnodes coming from multiple robots on the ros network. However, is there a way I can check which robot is running which node when there are multiple robots in the system? Just naming the topics according to robots namespace is not helpful with what I'm trying to achieve.

Asked by Bulldog24 on 2022-09-07 14:26:33 UTC

Comments

Answers

Try these two commands

rosnode list -a  
rostopic list --host 

You can use

rosnode list -h
rostopic list -h

to checkout the cmd options.

Asked by tianb03 on 2022-09-08 03:45:09 UTC

Comments