Cannot connect to ROS master running on virtual machine

123 vues (au cours des 30 derniers jours)
caesar
caesar le 3 Avr 2018
Commenté : Adil Farooq le 11 Jan 2023
Matlab cannot connect to ROS master on virtual machine. here are the complete setup :
I am using Matlab 2017B on my host machine, also have Ubuntu 16.04 LTS and ROS kinetic running on Virtual machine (Virtualbox).
the Ifconfig result is :
ethernet address: 10.0.2.15 (on Ubuntu)
on host machine :
ipconfig
130.209.140.237
on Ubuntu
$ echo $ROS_MASTER_URI
http://10.0.2.15:11311
$ echo $ROS_HOSTNAME
10.0.2.15
i had tried many ways to connect to ROS master on Matlab :
1-
rosinit ('10.0.2.15', 'NodeHost', '130.209.140.237')
2-
setenv('ROS_MASTER_URI','http://10.0.2.15:11311')
setenv('ROS_IP','130.209.140.237')
rosinit
and same error message:
Cannot connect to ROS master at http://10.0.2.15:11311. Check the specified address or hostname.
also , i tried to ping the virtual machine but no reply :
ping 10.0.2.15
request time out
one last thing , I have attached an image showing the 'Network' setting for my virtual machine . has anyone faced the same problem before?
thanks in advanced
  2 commentaires
Sebastian Castro
Sebastian Castro le 5 Avr 2018
If you can't even ping the VM, this might be a firewall issue.
Make sure that both programs (MATLAB and VirtualBox) are allowed by the firewall, assuming you have one.
Ameer Hamza
Ameer Hamza le 20 Avr 2018

@caesar I can not find the image you attached to the question, but it appears that you might be using NAT network to interface guest VM with the host. The host cannot reach guest behind NAT network. You either need to use Bridged Network or Host-only Adapter to communicate between both machines.

Connectez-vous pour commenter.

Réponses (3)

Stefano Dalla Gasperina
Stefano Dalla Gasperina le 7 Fév 2019
@caesar, I got the same issue and I was able to solve by setting the "Bridged Adapter" mode in the VirtualBox Network Settings. Actually, by using the "Bridge" mode, your VM will get a ip address on the same subnet as your host, while in default "NAT" mode your host will act as a router (firewall) and your VM will be on a private subnet (e.g. ip 10.0.2.15).
Capture.PNG
After doing this, just type in the terminal of your VM
$ ipconfig
to find the IP address and type in MATLAB:
rosinit('http://ROS_MASTER_URI:11311')
where "http://ROS_MASTER_URI:11311" is exactly what you got from e
$ echo $ROS_MASTER_URI
To check then type on your VM:
$ rosnode list
and you should see the global node from MATLAB.
I believe this will also work with Simulink ROS-Node Deployment.
Hope this will help.
Cheers
Stex
  1 commentaire
Samuel Ayankoso
Samuel Ayankoso le 5 Août 2020
Thank you for the clarity you provided to this problem

Connectez-vous pour commenter.


Moe Jordan
Moe Jordan le 14 Avr 2018
@caesar did you manage to solve the issue? I have the same problem...
  2 commentaires
caesar
caesar le 16 Oct 2018
didn't resolve, unfortunately,so I had to install a dual operating system on my machine to workaround this
Adil Farooq
Adil Farooq le 11 Jan 2023
did you use 2 systems or ran matlab and gazebo on dual boot?

Connectez-vous pour commenter.


Chin Wei Chang
Chin Wei Chang le 10 Oct 2018
1.In the network setting, you have to use Bridge Adapter.
2.Open up a new terminal, and run "roscore".
Then connect to ROS master on Matlab again.
  1 commentaire
caesar
caesar le 16 Oct 2018
tried every possible option in the network setting but didn't work at all.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Network Connection and Exploration dans Help Center et File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by