zoukankan      html  css  js  c++  java
  • 【shell脚本】批量修改主机密码modify_passwd.sh和ssh配置文件sshd.config.sh

    [root@rhel8 shell]# vi modify_passwd.sh
    [root@rhel8 shell]# cat modify_passwd.sh 
    #!/bin/bash
    ##########################################################################
    # modify passwd                                                          #
    # by author tanbaobao 2020/06/22                                         #
    ##########################################################################
    
    # 清空文件
    # >ok.txt
    # >fail.txt
    
    read -p "Please enter a New Password: " NEW_PASS
    
    for ip in `cat ip.txt`
    do
        {
            ping -c1 -W1 $ip &>/dev/null
            if [ $? -eq 0 ];then
                ssh $ip "echo $NEW_PASS | passwd --stdin root"
                if [ $? -eq 0 ];then
                    echo "$ip" >>ok_`date +%F`.txt
                else
                    echo "$ip" >>fail_`date +%F`.txt
                fi
            else
                echo "$ip" >>fail_`date +%F`.txt
            fi
        }&
    done
    
    # 等待后台执行完成再输出后面内容
    wait
    echo "finish..."

    修改sshd配置文件脚本

    [root@rhel8 shell]# cat modify_sshd_config.sh 
    #!/bin/bash
    ##########################################################################
    # modify passwd                                                          #
    # by author tanbaobao 2020/06/22                                         #
    ##########################################################################
    
    for ip in `cat ip.txt`
    do
        {
            ping -c1 -W1 $ip &>/dev/null
            if [ $? -eq 0 ];then
                ssh $ip "sed -ri '/^#UseDNS/cUseDNS no' /etc/ssh/sshd_config"
                ssh $ip "sed -ri '/^GSSAPIAuthentication/cGSSAPIAuthentication yes' /etc/ssh/sshd_con
    fig"            ssh $ip "systemctl stop firewalld;systemctl disable firewalld"
                ssh $ip "sed -ri '/^SELINUX+/cSELINUX=disabled' /etc/sysconfig/selinux"
                ssh $ip "setenforce 0"
            fi
        }&
    done
    
    wait
    
    echo "all ok..."
  • 相关阅读:
    bzoj 3456 城市规划 —— 分治FFT / 多项式求逆 / 指数型生成函数(多项式求ln)
    洛谷 P4721 [模板]分治FFT —— 分治FFT / 多项式求逆
    CF 438 E & bzoj 3625 小朋友和二叉树 —— 多项式开方
    Codeforces 447
    Codeforces 1099
    Codeforces 991
    Codeforces 994
    Codeforces 989
    Codeforces 1084
    xj膜你赛(n-1)
  • 原文地址:https://www.cnblogs.com/HeiDi-BoKe/p/13178591.html
Copyright © 2011-2022 走看看