码迷,mamicode.com
首页 > 系统相关 > 详细

linux 批量升级openssh8.0

时间:2019-06-13 20:42:04      阅读:743      评论:0      收藏:0      [点我收藏+]

标签:lin   passwords   name   pen   rap   exe   ssl   one   roo   

updateopenssh.sh

explujing=/home/updateopenssh.exp     
username=root                              
password=123456                         
                                     
iplist="
192.167.1.94
192.167.1.95
192.167.1.96
192.167.1.97
"                                    
port=22                             
for ip in $omplist              
do                                   
  $explujing $ip $username $password $port     
                                     
done                                 
#-------------------------------------

 

updateopenssh.exp

#!/usr/bin/expect -f
set date [exec date -d day +‘%Y%m%d‘]
set desthost [lindex $argv 0]
set username [lindex $argv 1]
set password [lindex $argv 2]
set port [lindex $argv 3]

spawn ssh -D $port $username@$desthost
expect "*assword:*"
send "$password\r"
expect {
 "*(yes/no)?"
  {
   send "yes\n"
   expect "*assword:" {send "$password\n"}
  }
   "*assword:"
  {
    send "$password\n"
  }
  }
expect "*#"
send "scp root@192.167.1.74:/root/openssh-8.0p1.tar.gz /root/ \r"
expect {
 "*(yes/no)?"
  {
   send "yes\n"
   expect "*assword:" {send "$password\n"}
  }
   "*assword:"
  {
    send "$password\n"
  }
  }
expect "100%"
send "cd /etc/\r"
expect "*#"
send "rm -rf ssh_bak\r"
expect "*#"
send "cd /etc/init.d/\r"
expect "*#"
send "rm -rf sshd_bak\r"

expect "*#"
send "mv /etc/ssh /etc/ssh_bak\r"
expect "*#"
send "/etc/init.d/sshd /etc/init.d/sshd_bak\r"
expect "*#"
send "cd /root/\r"
expect "*#"
send "tar xfz openssh-8.0p1.tar.gz\r"
sleep 3;
expect "*#"
send "cd /root/openssh-8.0p1/\r"
expect "*#"
send -- "./configure --prefix=/usr --sysconfdir=/etc/ssh --with-md5-passwords--with-pam --with-tcp-wrappers  --with-ssl-dir=/usr/local/ssl --without-hardening\r"
sleep 80;
expect "*#"
send "make\r"
sleep 80;
expect "*#"
send "make install\r"
sleep 80
expect "*#"
send "yes | cp -a opensshd.init  /etc/init.d/sshd\r"
sleep 2;
expect "*#"
send "chmod +x /etc/init.d/sshd\r"
sleep 1;
expect "*#"
send "cat /etc/ssh/sshd_config | grep Per\r"
sleep 1;
expect "*#"
send "echo  \‘PermitRootLogin yes\‘ >> /etc/ssh/sshd_config\r"
sleep 1;
expect "*#"
send "chmod +x /etc/init.d/sshd\r"
sleep 2;
expect "*#"
send "service sshd restart\r"
sleep 2;
expect "*#"
send "service sshd restart\r"
sleep 2;
interact
 
 

linux 批量升级openssh8.0

标签:lin   passwords   name   pen   rap   exe   ssl   one   roo   

原文地址:https://www.cnblogs.com/xl-892694298/p/11018783.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!