- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是一名 Android 开发人员,我们正在尝试在 Android 设备和 Linux 主机之间建立 ssh 隧道。我正在为这个解决方案使用 dropbear。
这是我的步骤:
1) 我正在通过带有 0 端口的 dbclient 连接到我的主机
dbclient -i "$RSA_KEY" -f -N -R 0:localhost:22 "$HOST" -y &> /sdcard/out
2) 然后我运行 dropbear
dropbear -E -R
3) 现在我可以使用公钥和/sdcard/out 中的端口从我的主机通过 ssh 连接到设备
ssh -i ssh_rsa_key root@localhost -p 50216
这就是它,而且效果很好。对于我的解决方案,我需要自动建立隧道。
我已经在/system/bin/下创建了 bash 脚本(构建带有脚本的 android 镜像)。在 init.rc 中添加了相应的服务来自动运行我的脚本。
service myScript /system/bin/myScript
class core
user root
group root
disabled
该脚本实际上每 5 秒由系统运行一次。但是当我尝试连接到设备时,我收到以下错误消息:
Aiee, segfault! You should probably report this as a bug to the developer
最奇怪的是,当我手动运行我的脚本时,它工作正常,但当系统运行相同脚本时,我收到上面描述的错误消息。
“dmesg”、“logcat”,甚至“ssh ... -vvv”都不会给出任何错误消息。
我认为问题出在“dropbear”本身,因为当系统运行“dbclient”然后我手动运行“dropbear -E -R”时,隧道工作正常。
这是我“ssh ... -v”的输出
OpenSSH_7.6p1, LibreSSL 2.6.2
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 48: Applying options for *
debug1: Connecting to localhost port 50643.
debug1: Connection established.
debug1: key_load_public: No such file or directory
debug1: identity file ssh_rsa_key_to_box type -1
debug1: key_load_public: No such file or directory
debug1: identity file ssh_rsa_key_to_box-cert type -1
debug1: Local version string SSH-2.0-OpenSSH_7.6
debug1: Remote protocol version 2.0, remote software version dropbear_2017.75
debug1: no match: dropbear_2017.75
debug1: Authenticating to localhost:50643 as 'root'
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: algorithm: curve25519-sha256@libssh.org
debug1: kex: host key algorithm: ssh-rsa
debug1: kex: server->client cipher: aes128-ctr MAC: hmac-sha2-256 compression: none
debug1: kex: client->server cipher: aes128-ctr MAC: hmac-sha2-256 compression: none
debug1: expecting SSH2_MSG_KEX_ECDH_REPLY
debug1: Server host key: ssh-rsa SHA256:M1PmvueMNfm4q47UlzVWZMdB6YzxyYBy4I5hden9ctU
debug1: Host '[localhost]:50643' is known and matches the RSA host key.
debug1: Found key in /Users/haykbeglaryan/.ssh/known_hosts:23
debug1: rekey after 4294967296 blocks
debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS
debug1: SSH2_MSG_NEWKEYS received
debug1: rekey after 4294967296 blocks
debug1: SSH2_MSG_SERVICE_ACCEPT received
debug1: Authentications that can continue: publickey
debug1: Next authentication method: publickey
debug1: Trying private key: ssh_rsa_key_to_box
debug1: Authentication succeeded (publickey).
Authenticated to localhost ([::1]:50643).
debug1: channel 0: new [client-session]
debug1: Entering interactive session.
debug1: pledge: network
debug1: Sending environment.
debug1: Sending env LC_CTYPE = UTF-8
debug1: client_input_channel_req: channel 0 rtype exit-status reply 0
Aiee, segfault! You should probably report this as a bug to the developer
debug1: channel 0: free: client-session, nchannels 1
debug1: fd 1 clearing O_NONBLOCK
Connection to localhost closed.
Transferred: sent 2640, received 1816 bytes, in 0.0 seconds
Bytes per second: sent 312354.4, received 214861.9
debug1: Exit status 1
最佳答案
问题出在 dropbear 使用的环境变量“LD_LIBRARY_PATH”中。当我打印它时
$ echo $LD_LIBRARY_PATH
/vendor/lib:/system/lib
但是当 init.rc 试图读取它时,它是空的。我只是在 dropbear 源代码中修改了这一行,现在它可以正常工作了。
关于android - Android 上的 Dropbear ssh 隧道段错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49399446/
有人知道 Dropbear SSH 客户端在哪里寻找配置文件吗?我需要指定一个默认使用的身份文件。例如,我可以设置 dropbear 客户端以便我可以使用 $ dbclient user@host 代
我正在尝试使用 Linux 机器上的 bash 脚本在远程 Linux 机器上自动化一些事情,并有一个工作命令(大括号是 cmd 连接的遗物): (ssh -i /path/to/private_ke
我在可能具有Internet连接或没有Internet连接的系统上运行autossh。我真的不知道它什么时候有连接,但是如果是这样,我想通过以下方法使autossh建立ssh隧道: autossh -
我正在使用基于 Yocto 的嵌入式 Linux 开发嵌入式板 (i.MX6)。到目前为止,我使用 Dropbear 作为 SSH 服务器。但是,Dropbear 不提供我需要的 SFTP 服务器。因
我是一名 Android 开发人员,我们正在尝试在 Android 设备和 Linux 主机之间建立 ssh 隧道。我正在为这个解决方案使用 dropbear。 这是我的步骤: 1) 我正在通过带有
我在带有 Buildroot+Dropbear 的嵌入式系统上运行 Linux。如果重要的话,我正在使用 systemd 进行初始化。 通过 SSH 登录对 root 用户正常,但不能作为普通用户登录
我正在开发一个 Android 应用程序,该应用程序利用 SSH 上的 RSYNC 与网络文件夹同步。但我对 puttygen ssh 提供的 key 有问题:字符串太长。我发现我设备上安装的 ssh
我想在 Android 终端模拟器中使用 ssh 客户端,以便在必要时连接到远程系统。 还有其他几种方法可以做到这一点——使用单独的 Java 应用程序、购买单独的基于 Java 的应用程序等。 实际
美好的一天,我正在尝试弄清楚如何让用户只用一个 key 就可以通过 ssh 进入 openWRT。我遵循了这些说明: https://wiki.openwrt.org/oldwiki/dropbear
我是一名优秀的程序员,十分优秀!