Questions tagged «ssh»

SSH(安全外壳)是用于在远程计算机上安全运行命令的协议。使用此标记可解决有关配置,使用SSH客户端和服务器软件以及对其进行故障排除的问题。

10
SSH公钥不会发送到服务器
我已经为此苦苦挣扎了两个小时,因此我们将不胜感激。 我有2台服务器,我都ssh可以使用OSX的公钥,那里根本没有问题,所以我确定一切都很好sshd_config。 我正在尝试配置cron作业rsync以同步两个服务器,并且需要ssh使用公钥将服务器B(备份)复制到服务器A中。 我一生无法解决为什么找不到我的公钥-它们在~/.ssh/(即/root/.ssh)并且所有文件权限在A和B上都是正确的。 这是输出: debug2: we did not send a packet, disable method debug3: authmethod_lookup publickey debug3: remaining preferred: keyboard-interactive,password debug3: authmethod_is_enabled publickey debug1: Next authentication method: publickey debug1: Trying private key: /root/.ssh/identity debug3: no such identity: /root/.ssh/identity debug1: Trying private key: /root/.ssh/id_rsa debug3: no such identity: /root/.ssh/id_rsa debug1: …

9
通过SSH将输入复制到剪贴板吗?
这是我的用例: 我经常通过SSH连接到其他计算机以进行工作,并且我经常需要将文件/文本从服务器复制并粘贴到本地运行的编辑器中,以编写示例和共享文本。 通常,如果文本足够小,我将只复制终端程序(当前为gnome-terminal)的输出并粘贴。 但是,对于整个文档,我的选择非常有限。我可以逐块复制文档,也可以将其复制scp到本地计算机。 有没有办法使用这样的程序,例如xclip允许我将远程复制stdin到本地X服务器的剪贴板的程序?效果: cat myconffile.conf | sed {...} | copy-over-ssh-to-local-clipboard 会很棒。是否存在使之成为可能的东西?
33 ssh  xorg  clipboard 


6
如何将公钥复制到ssh服务器?
这是我尝试过的,但出现错误: $ cat /home/tim/.ssh/id_rsa.pub | ssh tim@just.some.other.server 'cat >> .ssh/authorized_keys' Password: cat: >>: No such file or directory cat: .ssh/authorized_keys: No such file or directory
33 ssh 

7
我的服务器不断受到攻击[关闭]
我对系统管理界来说还很陌生。我最近一直在研究一个应用程序,当我检查应用程序服务器日志时,我不断得到各种IP地址,试图通过蛮力将其SSH到服务器中。这是我的服务器日志的示例: Feb 14 04:07:20 foodwiz3 sshd[1264]: error: Could not load host key: /etc/ssh/ssh_host_ed25519_key Feb 14 04:07:21 foodwiz3 sshd[1264]: reverse mapping checking getaddrinfo for coenamor.columbiansabbatical.com [23.249.167.223] failed - POSSIBLE BREAK-IN ATTEMPT! Feb 14 04:07:21 foodwiz3 sshd[1264]: pam_unix(sshd:auth): authentication failure; logname= uid=0 euid=0 tty=ssh ruser= rhost=23.249.167.223 user=root Feb 14 04:07:23 foodwiz3 sshd[1264]: …
32 ssh  security 


4
ssh无法协商-找不到匹配的密钥交换方法
我正在尝试登录DSL路由器,因为我在处理命令行邮件时遇到了麻烦。我希望能够重新配置路由器。 当我发出ssh命令时,将发生以下情况: $ ssh enduser@10.255.252.1 Unable to negotiate with 10.255.252.1 port 22: no matching key exchange method found. Their offer: diffie-hellman-group1-sha1 因此,我查看了这个stackexchange帖子,并对此进行了修改,但是这次我遇到了另一个问题,即密码。 $ ssh -oKexAlgorithms=+diffie-hellman-group1-sha1 enduser@10.255.252.1 Unable to negotiate with 10.255.252.1 port 22: no matching cipher found. Their offer: 3des-cbc 所以有提供 3des-cbc加密的命令吗?我不确定3des,例如是否要将其永久添加到系统中。 是否有允许3des-cbc密码的命令? 这里有什么问题?它不要求输入密码。
32 ssh 


5
如何为公钥ssh授权而不是密码授权解锁帐户?
ssh不允许我登录,因为帐户已锁定。我想解锁服务器上的用户以通过ssh进行公钥授权,但不启用密码登录。 我试过了: # passwd -u username passwd: unlocking the password would result in a passwordless account. You should set a password with usermod -p to unlock the password of this account. 验证日志条目: Mar 28 00:00:00 vm11111 sshd[11111]: User username not allowed because account is locked Mar 28 00:00:00 vm11111 sshd[11111]: …
32 ssh  password 


13
使用sshfs由对等方重置连接
我使用的是保险丝/ sshfs安装架,到目前为止效果良好。现在,我不得不重新安装服务器系统,突然发现经典read: Connection reset by peer错误。我正在使用公共密钥身份验证,并将我的密钥复制到了新安装的系统中。正常的ssh登录可以正常工作。我将日志更改为调试,但是可惜的是这没有给我任何有用的信息: sshd[2077]: debug1: Forked child 2198. sshd[2198]: Set /proc/self/oom_score_adj to 0 sshd[2198]: debug1: rexec start in 5 out 5 newsock 5 pipe 7 sock 8 sshd[2198]: debug1: inetd sockets after dupping: 3, 3 sshd[2198]: Connection from 192.168.1.6 port 47991 sshd[2198]: debug1: Client protocol version 2.0; …
32 ssh  sshfs 


7
如何通过SSH服务器下载文件?
我在美国有一台服务器(Linux方框B)和家用PC(Linux方框A),我需要从网站C下载文件, 问题是,直接从A下载文件非常慢,因此我登录B并sftp从A获取文件时需要下载文件。 有什么方法可以仅通过一条命令行直接下载文件并将B作为代理使用?
31 ssh  wget 


7
如何从只能通过SSH通过另一台主机进行连接的主机上下载文件?
我想将文件从办公室计算机下载到笔记本电脑。 我可以通过SSH将办公室计算机连接到组织服务器,然后通过SSH从服务器连接到办公室计算机。 组织服务器接受的唯一命令是ssh,ssh1和ssh2。 如何通过服务器从办公室(远程)计算机下载文件到笔记本计算机(本地)?
30 ssh  scp 

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.