博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
expect 批量修改服务器用户密码
阅读量:6248 次
发布时间:2019-06-22

本文共 1330 字,大约阅读时间需要 4 分钟。

每个技术人员离职,留下的人 就要修改他的服务器账号密码,很麻烦,故写次脚本偷懒

change.sh 如下

1
2
3
4
5
6
7
8
9
10
#!/bin/bash
for 
in 
`
awk 
'{print $1}' 
account.txt`
do
 
j=`
awk 
-
v 
l=
"$i" 
{
if
(l==$1)print $2} account.txt`
 
a=`
awk 
-
v 
l=
"$i" 
{
if
(l==$1)print $3} account.txt`
 
b=`
awk 
-
v 
l=
"$i" 
{
if
(l==$1)print $4} account.txt`
 
c=`
awk 
-
v 
l=
"$i" 
{
if
(l==$1)print $5} account.txt`
 
d=`
awk 
-
v 
l=
"$i" 
{
if
(l==$1)print $6} account.txt`
expect login.exp $i $j $a $b $c $d
done

login.exp 如下

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/usr/bin/expect -f
set 
ip [lindex $argv 0]
set 
user [lindex $argv 1]
set 
passwd 
[lindex $argv 2]
set 
newpasswd [lindex $argv 3]
set 
rootpasswd [lindex $argv 4]
set 
newrootpasswd [lindex $argv 5]
spawn 
ssh 
$user@$ip
expect {
        
"yes/no" 
{send 
"yes\r"
;exp_continue}
        
"password:"
{send 
"$passwd\r"
}
}
expect 
"]$"
send 
"password $user"
expect {
        
"password" 
{send 
"$newpasswd\r"
;exp_continue}
        
"password" 
{send 
"$newpasswd\r"
}
}
expect 
"]$"
send 
"su root\r"
expect 
"password"
send 
"$rootpasswd\r"
expect 
"]#"
send 
"password root"
expect {
        
"password" 
{send 
"$newrootpasswd\r"
;exp_continue}
        
"passwrod" 
{send 
"$newrootpasswd\r"
}
}
expect 
"]#"
send 
"exit\r"

account.txt 格式如下

1
ip user 
passwd 
newpasswd rootpasswd newrootpasswd
本文转自wks9751CTO博客,原文链接:http://blog.51cto.com/wks97/1619255
 ,如需转载请自行联系原作者
你可能感兴趣的文章
Centos7安装rabbitmq server 3.6.0
查看>>
kali 卸载程序
查看>>
'ascii' codec can't decode byte 0x8b in position 6: ordinal not in range(128)
查看>>
使用阿里云 身份证号正反面拍照图片识别信息
查看>>
光场理论及成像应用
查看>>
mongodb——安装单节点mongodb*
查看>>
正则表达式,grep/egrep工具的使用
查看>>
安装MariaDB和Apache
查看>>
遗传算法入门--连载10
查看>>
NS2:实验五置信区间
查看>>
我的友情链接
查看>>
我的友情链接
查看>>
我的友情链接
查看>>
设计模式 责任链模式
查看>>
java枚举类型
查看>>
我的友情链接
查看>>
RESTful API 设计指南
查看>>
迷渡:免费的编程中文书籍索引
查看>>
PHP常用正则表达式汇总
查看>>
第十二章 类加载器和反射机制
查看>>