Cannot connect to ROS master running on virtual machine

131 次查看(过去 30 天)
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 个评论
Sebastian Castro
Sebastian Castro 2018-4-5
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 2018-4-20

@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.

请先登录,再进行评论。

回答(3 个)

Stefano Dalla Gasperina
@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 2018-4-14
@caesar did you manage to solve the issue? I have the same problem...
  2 个评论
caesar
caesar 2018-10-16
didn't resolve, unfortunately,so I had to install a dual operating system on my machine to workaround this

请先登录,再进行评论。


Chin Wei Chang
Chin Wei Chang 2018-10-10
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.

类别

Help CenterFile Exchange 中查找有关 Network Connection and Exploration 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by