美文网首页
Secure Shell Chrome extension re

Secure Shell Chrome extension re

作者: 肆不肆傻 | 来源:发表于2018-11-06 14:12 被阅读0次

Google 提供的Secure Shell 扩展可以很方便地满足跨平台ssh使用,问题是它所提供的功能当然没有其他ssh客户端提供的功能丰富,毕竟只是一个插件。

使用Secure Shell作为ssh客户端时,所有ssh可能遇到的问题这里也能遇到,今天就教大家当使用Secure Shell 遇到已信任设备的 host key 发生变化时如何解决。

Offending ECDSA key in /.ssh/known_hosts:7
ECDSA host key for xxxxxxxxxxxxx.yyy.au has changed and you have requested strict checking.
Host key verification failed.

在打开的Secure Shell拓展页面或者报错的那个页面 ctrl+shift-j打开开发者调试面板,输入以下命令删除冲突的 host key:

## 将INDEX替换成对应的 host key index 如上面报错的 7
term_.command.removeKnownHostByIndex(INDEX)

如果你想要删除所有已经信任的设备,执行这条语句:

term_.command.removeAllKnownHost()

相关文章

  • Secure Shell Chrome extension re

    Google 提供的Secure Shell 扩展可以很方便地满足跨平台ssh使用,问题是它所提供的功能当然没有其...

  • 手摸手教你写一个chrome extension

    什么 chrome extension chrome extension,也就是我们平时所说的浏览器插件,是可以定...

  • 创建Chrome扩展程序

    Creating A Basic Chrome Extension

  • chrome插件

    Chrome 插件是什么 其实,这东西应该叫Chrome扩展(Chrome Extension),Chrome插件...

  • chrome真香插件

    extension备注googleyoutube图标Chrome同步助手[https://chrome.googl...

  • SSH详解以及免密登录配置

    Secure Shell Secure Shell(安全外壳协议,简称SSH)是一种加密的网络传输协议,目的是在不...

  • Linux ssh sftp

    Secure Shell(SSH) Secure Shell(SSH)是一种加密网络协议,用于在不安全的网络上安全...

  • 路由器ssh服务配置

    SSH 为 Secure Shell[https://baike.baidu.com/item/Secure%20...

  • chrome

    报错: The request client is not a secure context and the re...

  • Chrome Extension

    一 简介 chrome 本地插件, 提高iOS开发效率, 弥补Xcode中 CodeSnippet的不足 二 功...

网友评论

      本文标题:Secure Shell Chrome extension re

      本文链接:https://www.haomeiwen.com/subject/hkhuxqtx.html