43.3. ssh client

简介:

43.3.1. -o option 参数详解

-o option
             Can be used to give options in the format used in the configuration file.  This is useful for specifying options for which there is no separate command-line flag.  For
             full details of the options listed below, and their possible values, see ssh_config(5).


[root@netkiller tmp]# ssh root@192.168.2.18
The authenticity of host '192.168.2.18 (192.168.2.18)' can't be established.
RSA key fingerprint is 83:e9:fc:a9:98:6b:33:41:0f:b2:44:13:01:f5:af:3c.
Are you sure you want to continue connecting (yes/no)? 

===>这段话的意思是,无法确认host主机的真实性,只知道它的公钥md值,问你还想继续连接吗?

[root@netkiller tmp]# ssh  -o stricthostkeychecking=no root@192.168.2.18
Warning: Permanently added '192.168.2.18' (RSA) to the list of known hosts.
root@192.168.2.18's password: 
	
			




原文出处:Netkiller 系列 手札
本文作者:陈景峯
转载请与作者联系,同时请务必标明文章原始出处和作者信息及本声明。

目录
相关文章
|
安全 网络安全 虚拟化
|
Shell 网络安全 数据安全/隐私保护
|
Java Shell Linux
linux服务器使用SSH Secure Shell Client部署tomcat
版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/hans201507/article/details/51810962 1.
1049 0
|
网络安全
Bitvise SSH Client+SwitchySharp配置
1、http://blog.onlybird.com/getfreessh 获取免费的ssh帐号密码 2、下载SwitchySharp插件 3、下载Bitvise SSH Client客户端 4、配置如下 $(function () { $('pre.prettyprint code').
2668 0
|
Java
jmitm2 is a SSH2 man-in-the-middle-attack program based on the SSH2 client/server implementation J2SSH
  Features   handles as many connections as you want simultaneously (configurable, default is 10...
928 0
|
前端开发 网络安全
在线SSH控制端--Online SSH AJAX client
http://www.serfish.com/console/
726 0
|
1月前
|
监控 Ubuntu Linux
使用VSCode通过SSH远程登录阿里云Linux服务器异常崩溃
通过 VSCode 的 Remote - SSH 插件远程连接阿里云 Ubuntu 22 服务器时,会因高 CPU 使用率导致连接断开。经排查发现,VSCode 连接根目录 ".." 时会频繁调用"rg"(ripgrep)进行文件搜索,导致 CPU 负载过高。解决方法是将连接目录改为"root"(或其他具体的路径),避免不必要的文件检索,从而恢复正常连接。