0

所以我想用我的 macbook pro 使用 SSH 来控制我的香蕉派。这是我第一次使用 ssh。所以我遵循了很多不同的教程,但它仍然不起作用。如果我运行:

pi@172.25.54.12

或者

bananapi@172.25.54.12

或者我尝试的任何名称都会回答我

ssh:连接到主机 172.25.*.*2 端口 22:操作超时

当我尝试

bananapi@localhost

或者

pi@localhost

它回答我:

ssh:连接到主机 localhost 端口 22:连接被拒绝

我发现我的 IP 地址在我的香蕉皮上执行 ifconfig。我的bananapi 使用的是bananian(香蕉派的debian),我的mac 是10.10.3。

当我运行 sshd -T 时,我有:

port 22
protocol 2
addressfamily any
listenaddress 0.0.0.0:22
listenaddress [::]:22
usepam 1
serverkeybits 768
logingracetime 120
keyregenerationinterval 3600
x11displayoffset 10
maxauthtries 6
maxsessions 10
clientaliveinterval 0
clientalivecountmax 3
permitrootlogin yes
ignorerhosts yes
ignoreuserknownhosts no
rhostsrsaauthentication no
hostbasedauthentication no
hostbasedusesnamefrompacketonly no
rsaauthentication yes
pubkeyauthentication yes
kerberosauthentication no
kerberosorlocalpasswd yes
kerberosticketcleanup yes
gssapiauthentication no
gssapikeyexchange no
gssapicleanupcredentials yes
gssapistrictacceptorcheck yes
gssapistorecredentialsonrekey no
passwordauthentication yes
kbdinteractiveauthentication no
challengeresponseauthentication no
printmotd no
printlastlog yes
x11forwarding yes
x11uselocalhost yes
strictmodes yes
tcpkeepalive yes
permitblacklistedkeys no
permitemptypasswords no
permituserenvironment no
uselogin no
compression delayed
gatewayports no
usedns no
allowtcpforwarding yes
useprivilegeseparation yes
pidfile /var/run/sshd.pid
xauthlocation /usr/bin/xauth
ciphers aes256-ctr,aes128-ctr
macs hmac-sha2-512,hmac-sha2-256,hmac-ripemd160
loglevel INFO
syslogfacility AUTH
authorizedkeysfile .ssh/authorized_keys .ssh/authorized_keys2
hostkey /etc/ssh/ssh_host_rsa_key
acceptenv LANG
acceptenv LC_*
subsystem sftp /usr/lib/openssh/sftp-server
maxstartups 10:30:100
permittunnel no
ipqos lowdelay throughput
permitopen any

任何想法?

编辑:所以正如评论中所建议的,我做了一个:

$ ls -al ~/.ssh
total 24  drwx------ 5 ***************** staff 170 12 mai 13:27 . 
drwxr-xr-x 53 **************** staff 1802 12 mai 11:16 .. 
-rw------- 1 ***************** staff 1766 12 mai 11:16 authorized_keys 
-rw------- 1 ***************** staff 1679 12 mai 13:27 id_rsa 
-rw-r--r-- 1 ***************** staff 429 12 mai 13:27 id_rsa.pub –

这就是我得到的答案。所以我在authorized_keys文件中有一个密钥。我必须将它(公钥)发送到我的香蕉派吗?

编辑#2:这里是我的地址少隐藏 172.25.54.12 我现在想要的只是将我的 mac 连接到我的香蕉 pi 并将其作为服务器进行控制。所以我的 Mac 是客户端,我的香蕉派是我的“主机”。当我跑

netstat -an | grep 22

tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      
tcp6       0      0 :::22                   :::*           LISTEN      
udp        0      0 0.0.0.0:32622           0.0.0.0:*      
unix  3      [ ]         STREAM     CONNECTED     4122      
unix  3    [ ]         STREAM     CONNECTED     2922     @/tmp/.X11-unix/X0

基本上我所做的是,我遵循了互联网上的一些教程(比如这个https://www.youtube.com/watch?v=0wn44MbxtZw),但它不起作用。

编辑#3:我尝试使用 PC 和 puTTY,但出现错误:网络错误:网络无法访问。

也许它可以提供帮助。

编辑#4

好的,我理解了我的问题的一部分:我认为可以直接连接我的两台设备而不使用本地网络。我的意思是只用一根以太网电缆将我的香蕉派直接连接到我的 mac。但是我的目标是能够连接到我的香蕉派,即使它没有连接到任何网络(这可能吗?),所以我想使用静态 IP 地址,这是个好主意吗?

4

1 回答 1

0

好的,所以我找到了一种方法来做我想做的事情。这意味着只需使用以太网电缆(跨以太网电缆)将我的 mac 与我的香蕉 pi 直接连接。我编辑了网络接口:

gedit /etc/network/interfaces

然后我以这种方式修改了文件

#interfaces (5) file used by ifup(8° and ifdown(8)
auto lo
iface lo inet loopback

#dhcp configuration
allow-hotplug eth0
#iface eth0 inet dhcp
#static ip configuration
auto eth0
iface eth0 inet static
adress 169.x.y.z
netmask 255.255.255.0
gateway 169.X.Y.*

因此,对于地址,我放置了一个与我的 Mac IP 地址非常相似的 IP(要获取 mac IP 地址,请运行 ipconfig getifaddr en0),对于网关,我放置了我的 mac IP 地址。

然后我用交叉以太网电缆连接了我的两个设备。在我的 mac 终端中,我运行了:

香蕉皮@169.xy*

它奏效了!

谢谢

于 2015-05-13T14:45:48.990 回答