why i have this error when i try to start my connection with raspberry pi?
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
squall141
el 21 de Nov. de 2014
Respondida: Kazem Gheysari
el 5 de Ag. de 2023
Hello guys, i have installed the Raspberry pi package support for matlab but when i give the command:
mypi = raspi
i obtain this error:
Error using raspi (line 160)
Cannot establish an SSH connection to the board with device address "192.168.1.2".
Caused by:
Error using raspi (line 156)
Error executing command: FATAL ERROR: Network error: Connection refused
During the installation of the package i have set a static ip for the raspberry in this way:
IPv4 Address. . . . . . . . . . . : 192.168.1.2
Subnet Mask . . . . . . . . . . . : 255.255.255.0
Default Gateway . . . . . . . . . : 192.168.1.1
And, if is important for the resolution of my problem, i have connected the raspberry pi to my pc with a ethernet cable, and the pc is connects to internet with a usb key wireless. The router is not phisically connected to the pc.
0 comentarios
Respuesta aceptada
Murat Belge
el 10 de Dic. de 2014
There is no SSH server running on 192.168.1.2 and the target machine is refusing SSH connection request from MATLAB.
1. Login to your Raspberry Pi using a monitor and keyboard and check that the board has the correct IP address. After logging in to Raspberrry Pi, execute the following in a Linux shell window
$ ifconfig eth0
Verify that the "inet addr" displayed as a result of the command above is "192.168.1.2". If not, you need to modify your /etc/network/interfaces file to assign a static IP address.
2. SSH server is running:
$ps -ef | grep sshd
This should return an sshd server running on your Raspberry Pi if you do not see anything reboot your Raspberry Pi
3. Ping your Raspberry Pi from within MATLAB:
>> ! ping 192.168.1.2
This should be successful.
Report what you are getting.
1 comentario
charushila raskar
el 29 de Dic. de 2017
Editada: Walter Roberson
el 29 de Dic. de 2017
Pinging 192.168.1.100 with 32 bytes of data:
Reply from 192.168.1.100: bytes=32 time=1ms TTL=64
Reply from 192.168.1.100: bytes=32 time=2ms TTL=64
Reply from 192.168.1.100: bytes=32 time=2ms TTL=64
Reply from 192.168.1.100: bytes=32 time=1ms TTL=64
Más respuestas (2)
Grissa Mohamed Amine
el 20 de Nov. de 2017
hey, i have installed the Raspberry pi package support for matlab 2017b and i have now this error :[
Error in raspi (line 200) obj.Ssh = matlabshared.internal.ssh2client(obj.IpNode.Hostname, ...
0 comentarios
Kazem Gheysari
el 5 de Ag. de 2023
Hi Guys
I solved this issue by the following tasks:
Resolve the issue of the ssh public key:
- Edit the /etc/ssh/sshd_config file.
- Change PasswordAuthentication and ChallengeResponseAuthentication to yes.
- restart
0 comentarios
Ver también
Categorías
Más información sobre Installation Setup and Configuration en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!