why i have this error when i try to start my connection with raspberry pi?

23 Ansichten (letzte 30 Tage)
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.

Akzeptierte Antwort

Murat Belge
Murat Belge am 10 Dez. 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 Kommentar
charushila raskar
charushila raskar am 29 Dez. 2017
Bearbeitet: Walter Roberson am 29 Dez. 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

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (2)

Grissa Mohamed Amine
Grissa Mohamed Amine am 20 Nov. 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, ...

Kazem Gheysari
Kazem Gheysari am 5 Aug. 2023
Hi Guys
I solved this issue by the following tasks:
Resolve the issue of the ssh public key:
  1. Edit the /etc/ssh/sshd_config file.
  2. Change PasswordAuthentication and ChallengeResponseAuthentication to yes.
  3. restart

Kategorien

Mehr zu MATLAB Support Package for Raspberry Pi Hardware finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by