码迷,mamicode.com
首页 >  
搜索关键字:批量ssh信任 expect ssh-copy-id    ( 1515个结果
Top-Down和Bottom-Up位图的区别
Top-Down vs. Bottom-Up DIBsIf you are new to graphics programming, you might expect that a bitmap would be arranged in memory so that the top row of t...
分类:其他好文   时间:2014-10-15 21:27:41    阅读次数:836
运维工作常用命令
expect+ssh修改主机密码foripin`cat/tmp/myhosts`;do expect-c"spawnssh-p33842$ip;expect*assword*{send\"myoldpasswd\r\"};expectroot@*{send\"echoroot:‘mynewpassword‘|/usr/sbin/chpasswd\r\"};expectroot@*{send\"ipaddr\r\"};expectof";done
分类:其他好文   时间:2014-10-15 04:41:50    阅读次数:204
expect 命令脚本语言实战
一.expect实现自动填入密码1.vissh.exp.201#!/usr/bin/expectspawnssh-p20000oldboy@192.168.1.201/sbin/ifconfigeth0settimeout60expect"*password:"send"abcdef\n"expecteofexit2.chmod700ssh.exp.201#注。要是没有权限执行,也可以直接expect,700权限。防止其它用户查看脚本..
分类:编程语言   时间:2014-10-13 02:03:19    阅读次数:287
scp 在脚本中使用输入密码的解决方法
以前用脚本scp文件时,都是以.ssh打通为基础的。 但是在脚本中使用scp在机器之间拷贝文件,输入密码成为问题。 第一种方法,用到了expect。 脚本如下: #! /usr/bin/expect -f? spawn scp 1 koven@192.168.0.2:...
分类:其他好文   时间:2014-10-11 20:31:36    阅读次数:207
ssh 免密码论证连接
1.生成公钥和私钥 ssh-keygen-tdsa 2.发送公钥 oldboy888@ser200.ssh]$ssh-copy-id-iid_dsa.pub"-p20000oldboy888@192.168.1.201" 10 Theauthenticityofhost‘192.168.1.201(192.168.1.201)‘can‘tbeestablished. RSAkeyfingerprintis0a:13:db:54:60:3e:85:46:b5:ea:d5:b9:c0:5e:..
分类:其他好文   时间:2014-10-11 10:19:45    阅读次数:187
简化ssh登录过程
通过配置 SSH Public key 到 VPS 上,这样下次登录 VPS 将不再需要输入密码,在 Mac 下可以简单的通过 ssh-copy-id 搞定。brew install ssh-copy-idssh-copy-id root@ip_address上面的步骤会提示输入密码,提示成功后,编...
分类:其他好文   时间:2014-10-09 15:38:23    阅读次数:231
linux-kernel之likely和unlikely
在阅读linux源代码的时候,我们经常会发现likely和unlikely,这两个宏语句定义在compiler.h下,#definelikely(x) __builtin_expect(!!(x),1)#defineunlikely(x) __builtin_expect(!!(x),0)这里我们需要先了解__builtin_expect:#define__builtin_expect(x,expected_value)(x)所..
分类:系统相关   时间:2014-09-29 17:40:51    阅读次数:321
linux-kernel之likely和unlikely
在阅读linux源代码的时候,我们经常会发现likely和unlikely,这两个宏语句定义在compiler.h下,#definelikely(x) __builtin_expect(!!(x),1)#defineunlikely(x) __builtin_expect(!!(x),0)这里我们需要先了解__builtin_expect:#define__builtin_expect(x,expected_value)(x)所..
分类:系统相关   时间:2014-09-29 17:24:01    阅读次数:256
shell 自动登录脚本
#!/bin/bash IP=`awk‘{print$1}‘/home/bash/mima.txt` foriin$IP do {port=`grep$i/home/bash/mima.txt|awk‘{print$2}‘` pawd=`grep$i/home/bash/mima.txt|awk‘{print$3}‘` expect<<EOF spawnssh-p$portroot@$i; expect{ "(yes/no)?"{send"yes\r"} "password:"{send"$pa..
分类:其他好文   时间:2014-09-28 18:43:36    阅读次数:133
shell 自动登录 上传 下载
通过在shell脚本中用expect实现远程scp文件:使用expect前,需要先安装两个rpm包:# rpm -ihv CentOS/expect-5.43.0-5.1.i386.rpm # rpm -ihv CentOS/expect-devel-5.43.0-5.1.i386.rpm 或者yu...
分类:其他好文   时间:2014-09-26 18:41:48    阅读次数:315
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!