win 10修改ssh配置文件及其密钥权限为600

问题出现在需要用本地公钥远程登录服务器时,报了如下的错误:Permissions for 'xxx' are too open. It is required that your private key files are NOT accessible by others.意思是说公钥文件权限太宽了
SSH OpenSSH 2023年04月07日 51次浏览

Perl小工具sshfind:根据主机名称关键字查找筛选~/.ssh/config主机配置项

作用读取SSH客户端配置文件~/.ssh/config,根据主机名称筛选对应的主机相关配置项,适用于~/.ssh/config主机信息过多,不便于查找的情况,如本人该文件配置了500+主机;使用方法: sshfind racknerd #根据racknerd作为主机名称关键字进行搜索,模糊匹
cygwin OpenSSH Perl sshfind 2022年12月28日 97次浏览

Linux Bash/Shell查询多个时区的世界时

#!/bin/sh# Code From:https://stackoverflow.com/questions/370075/command-line-world-clock# More Clock:https://www.timeanddate.com/worldclock/CN=`env TZ
Shell OpenSSH Linux 2021年08月02日 261次浏览

Shell脚本:sshproxy,调用autossh连接Linux服务器,自动创建SSH动态端口代理隧道

#!/bin/bashSCRIPTPATH=$(realpath $0)#执行autossh,自动创建SSH动态端口代理隧道display_usage() {echo -e "$SCRIPTPATH\n" echo -e "\t执行autossh,自动创建SSH动
cygwin Shell SSH OpenSSH 2021年08月02日 239次浏览