SSH 外壳脚本

发布于 2024-11-28 00:17:23 字数 108 浏览 1 评论 0原文

我正在尝试编写一个可以通过 ssh 连接到远程计算机的 shell 脚本

,那么问题是我可以依赖密钥之类的东西。我只想添加主机名、用户并传递并执行一些命令...有人可以指导我走这条路吗?

I am trying to do a shell script that can connect to a remote machine via ssh

then problem is that I can relly on keys and stuff like that. I just want to add the hostname, user and pass and execute some commands... can someone guide me on that path?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

云柯 2024-12-05 00:17:23

查看 Linux 的 expect

该脚本看起来像这样:

#!/usr/bin/expect
spawn ssh root@IPADDRESS /script/on/remote/machine
expect "*?assword:*"
send -- "PASSWORDHERE\r"

Look into expect for linux.

The script would look something like this:

#!/usr/bin/expect
spawn ssh root@IPADDRESS /script/on/remote/machine
expect "*?assword:*"
send -- "PASSWORDHERE\r"
如果没结果 2024-12-05 00:17:23
ssh-keygen -t rsa -b 4096
ssh-copy-id [email protected]
ssh [email protected] 'ls -la ~ ; pwd ; uname -a '
ssh-keygen -t rsa -b 4096
ssh-copy-id [email protected]
ssh [email protected] 'ls -la ~ ; pwd ; uname -a '
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文