V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  ChristopherWu  ›  全部回复第 34 页 / 共 64 页
回复总数  1262
1 ... 30  31  32  33  34  35  36  37  38  39 ... 64  
2018-12-14 15:38:33 +08:00
回复了 ChristopherWu 创建的主题 程序员 洗澡时,我终于跑出来喊出了我的 Eureka
StrictHostKeyChecking 设置为 accept-new 对我有用。

整理一下提到的 ssh 参数:
GlobalKnownHostsFile
Specifies one or more files to use for the global host key database, separated by whitespace. The default is /etc/ssh/ssh_known_hosts, /etc/ssh/ssh_known_hosts2.

UserKnownHostsFile
Specifies one or more files to use for the user host key database, separated by whitespace. The default is ~/.ssh/known_hosts, ~/.ssh/known_hosts2.

StrictHostKeyChecking
If this flag is set to yes, ssh(1) will never automatically add host keys to the ~/.ssh/known_hosts file, and refuses to connect to hosts whose host key has changed. This provides maximum protection against man-in-the-middle (MITM) attacks, though it can be annoying when the /etc/ssh/ssh_known_hosts file is poorly maintained or when connections to new hosts are frequently made. This option forces the user to manually add all new hosts.
If this flag is set to “ accept-new ” then ssh will automatically add new host keys to the user known hosts files, but will not permit connections to hosts with changed host keys. If this flag is set to “ no ” or “ off ”, ssh will automatically add new host keys to the user known hosts files and allow connections to hosts with changed hostkeys to proceed, subject to some restrictions. If this flag is set to ask (the default), new host keys will be added to the user known host files only after the user has confirmed that is what they really want to do, and ssh will refuse to connect to hosts whose host key has changed. The host keys of known hosts will be verified automatically in all cases.
2018-12-14 15:34:28 +08:00
回复了 ChristopherWu 创建的主题 程序员 洗澡时,我终于跑出来喊出了我的 Eureka
@msg7086 @asonyang9

我刚刚想了想,是有用的。我现在过几天就有一台新服务器要连,而我又不会真的去对比公钥,所以他让我输入 yes 那个步骤是没有用的。。
2018-12-14 15:32:33 +08:00
回复了 ChristopherWu 创建的主题 程序员 洗澡时,我终于跑出来喊出了我的 Eureka
@Keyes

文章是这样写的『一般公钥公开到网上, 想发送信息给你的人用公钥加密, 而只有你拥有私钥可以解密, 这样确保了信息的保密。 或者你用私钥加密, 其他所有人都可以用公钥解密你的信息, 这样可以确保信息是由你所发出』

并不是互相推导, 而是 公钥加密的, 可以用私钥来解密出内容。 反之亦然。
2018-12-14 15:25:43 +08:00
回复了 ChristopherWu 创建的主题 程序员 洗澡时,我终于跑出来喊出了我的 Eureka
@jadec0der 那天事情发生后,凌晨三点多仓促而成的文章。。有很多错漏的~
2018-12-14 15:12:18 +08:00
回复了 ChristopherWu 创建的主题 程序员 洗澡时,我终于跑出来喊出了我的 Eureka
@jasonyang9 这操作可以。不过我还是不偷懒了-_-
2018-12-14 14:58:20 +08:00
回复了 ChristopherWu 创建的主题 程序员 洗澡时,我终于跑出来喊出了我的 Eureka
@bestie 感谢你的回复,这里我说的应该是有问题的,我发这文章之前看到有人写过是用到了 SessionKey 做摘要算法,所以在文章里有写到:
『最后对比这个随机字符串时,还用了 SessionKey 来做 md5,还没细查』

我有空查查 RFC 再跟你对对哈~
2018-12-14 14:30:35 +08:00
回复了 ChristopherWu 创建的主题 程序员 洗澡时,我终于跑出来喊出了我的 Eureka
@Keyes 你看我发给你的那个知乎问题里面,第一个回答里可以找到我两年前的评论:😂


『那么我用自己的私钥加密,再用对方的公钥加密;
对方接收后用自己的私钥解密后,再用我的公钥解密;

是不是就做到了 保密以及签名了呢?"』


以及

『是做到了保密以及签名

在局域网不可信的情况下, 这个方法可以对抗被动的搭线攻击,但是不能防御中间人和重放攻击。』
2018-12-14 14:27:30 +08:00
回复了 ChristopherWu 创建的主题 程序员 洗澡时,我终于跑出来喊出了我的 Eureka
@Keyes 这是我一直以来的理解。刚刚我去查了一遍,"私钥加密公钥能解" 这个说法应该是没问题的。请看: https://www.zhihu.com/question/25912483 里面相关讨论内容。

除数字签名外,一般的用法都是公钥加密,私钥解密,反之很少见,所以可能你不太清楚。
2018-12-14 14:16:04 +08:00
回复了 ChristopherWu 创建的主题 程序员 洗澡时,我终于跑出来喊出了我的 Eureka
@likuku 你说的方法,与我这篇文章所说的东西不一样。。
2018-12-14 13:32:29 +08:00
回复了 ChristopherWu 创建的主题 程序员 洗澡时,我终于跑出来喊出了我的 Eureka
@asonyang9 之前没有了解过这些参数,刚刚我查了一下,有什么问题吗~
2018-12-14 13:24:24 +08:00
回复了 ChristopherWu 创建的主题 程序员 洗澡时,我终于跑出来喊出了我的 Eureka
@jadec0der 学而不思则罔
2018-12-14 11:03:21 +08:00
回复了 z0ne 创建的主题 程序员 有没有野路子出身(自学编程)的朋友
我是上过大学的,然而在大学里都没有通过上课学过,都是高中+大学都在自学。
你们都参加过培训班了。。。

这样来看的话,我路子更野🌚
2018-12-06 16:03:28 +08:00
回复了 ackfin01 创建的主题 程序员 学了就忘了怎么办
@fjchen wechat: NjQ1MzEwODI0 (base64),试试看,异步交流
2018-12-06 15:55:38 +08:00
回复了 ackfin01 创建的主题 程序员 学了就忘了怎么办
要不要加我,来个学习分享,微信只探讨当天学过知识点,相互交叉辩解。🌚
巡礼: https://yonghaowu.github.io/
其实兴之所至,自然就会写。

我反而不喜欢故意为写而写没有质量,千篇一律的文章🙊
2018-12-03 21:42:33 +08:00
回复了 ottoducker 创建的主题 程序员 普通码农想进 google, 该怎么做?
1 ... 30  31  32  33  34  35  36  37  38  39 ... 64  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   2759 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 23ms · UTC 15:38 · PVG 23:38 · LAX 07:38 · JFK 10:38
Developed with CodeLauncher
♥ Do have faith in what you're doing.