Cannot connect to ROS master running on virtual machine

129 Ansichten (letzte 30 Tage)
caesar
caesar am 3 Apr. 2018
Kommentiert: Adil Farooq am 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 Kommentare
Sebastian Castro
Sebastian Castro am 5 Apr. 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 am 20 Apr. 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.

Melden Sie sich an, um zu kommentieren.

Antworten (3)

Stefano Dalla Gasperina
Stefano Dalla Gasperina am 7 Feb. 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

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

Melden Sie sich an, um zu kommentieren.


Chin Wei Chang
Chin Wei Chang am 10 Okt. 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 Kommentar
caesar
caesar am 16 Okt. 2018
tried every possible option in the network setting but didn't work at all.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Network Connection and Exploration finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by