在 Mac 电脑中 ssh 读取加载 config.d 目录

栏目: 服务器 · 发布时间: 7年前

内容简介:一般情况下,我们ssh 配置都是使用但是如果我们线上所要维护或者要连接的机器比较多,我们怎么分门别类呢?大家请看:

背景

一般情况下,我们ssh 配置都是使用 ~/.ssh/config 里面的配置即可。

但是如果我们线上所要维护或者要连接的机器比较多,我们怎么分门别类呢?

大家请看:

Include
	Include the specified configuration file(s).  Multiple path‐names may be specified and each pathname may contain glob(3) wildcards and, for user configurations, shell-like ‘~’ references to user home directories.  Files without absolute paths are assumed to be in ~/.ssh if included in a user configuration file or /etc/ssh if included from the system configuration file. Include directive may appear inside a Match or Host block to perform conditional inclusion.

注意: Include 必须在 config 配置的 Host 之前的位置,不能夹杂在多个 Host 之间。

涉及到的脚本:

Makefile

install-ssh-config:
	@./install-ssh-config.sh $(identify_file)

install-ssh-config.sh:

identify_file=${1:-""}
if [ ! -z $identify_file ]; then
	identify_file="IdentityFile $identify_file"
fi

...
grep -q -F 'Include ~/.ssh/config.d/*' "$HOME/.ssh/config" || cat -n "$HOME/.ssh/config" |grep -i host |awk '{print $1-1}'|sed -n "1"p |xargs -I LINE sed -i '' -e $'LINE i\\\n''Include ~/.ssh/config.d/*' "$HOME/.ssh/config"

分步分析:

$参数位置
sed -i '' -e $'LINE i\\\n''xxx'

参考资料

  1. What’s wrong with my OpenSSH Include directive?
  2. ssh_config — OpenSSH SSH client configuration files

茶歇驿站

一个可以让你停下来看一看,在茶歇之余给你帮助的小站,这里的内容主要是后端技术,个人管理,团队管理,以及其他个人杂想。

在 Mac 电脑中 ssh 读取加载 config.d 目录


以上所述就是小编给大家介绍的《在 Mac 电脑中 ssh 读取加载 config.d 目录》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

有趣的二进制

有趣的二进制

[ 日] 爱甲健二 / 周自恒 / 人民邮电出版社 / 2015-10 / 39.00元

《有趣的二进制:软件安全与逆向分析》通过逆向工程,揭开人们熟知的软件背后的机器语言的秘密,并教给读者读懂这些二进制代码的方法。理解了这些方法,技术人员就能有效地Debug,防止软件受到恶意攻击和反编译。本书涵盖的技术包括:汇编与反汇编、调试与反调试、缓冲区溢出攻击与底层安全、钩子与注入、Metasploit 等安全工具。 《有趣的二进制:软件安全与逆向分析》适合对计算机原理、底层或计算机安全......一起来看看 《有趣的二进制》 这本书的介绍吧!

HTML 压缩/解压工具
HTML 压缩/解压工具

在线压缩/解压 HTML 代码

随机密码生成器
随机密码生成器

多种字符组合密码

Base64 编码/解码
Base64 编码/解码

Base64 编码/解码