@mirco.becker Thanks a lot for your feedback.
From your description, I think it might be a bug of mind in your network config.
mindsdk project is open sourced, and from the code on github.com we actually loop all your network interfaces and filter loopback interfaces out with golang's standard libraries. I am not sure why it's not working correctly in your environment.
I think you can try these things for next:
- Try to modify the project by yourself if you like.
- As a workaround you can modify
~/.mind.json
directly to setup ip address and name to skip mind scan
, the format is:
{
"DefaultRobotName": "HEXA",
"Robots": [
{
"Name": "HEXA",
"IP": "192.168.1.148"
},
{
"Name": "Jackie",
"IP": "192.168.1.124"
}
],
"DockerImage": ""
}
We will also keep trying to figure out where's the problem between our program and your network config. Thanks!