码迷,mamicode.com
首页 > 其他好文 > 详细

批量关闭防火墙安全机制

时间:2020-10-18 09:49:45      阅读:23      评论:0      收藏:0      [点我收藏+]

标签:$?   sshd_conf   div   sshd   for   enforce   linux   stop   dev   

#!/bin/bash
#by wwp 2020-10-14
for ip in `cat ip.list`
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 no‘ /etc/ssh/sshd_config"
                ssh $ip "systemctl stop firewalld ; systemctl disable firewalld"
                ssh $ip "sed -ri ‘7s/enforcing/disabled/‘ /etc/selinux/config"
                ssh $ip "setenforce 0"
        fi
        }&
done
wait
echo "all ok"

  

批量关闭防火墙安全机制

标签:$?   sshd_conf   div   sshd   for   enforce   linux   stop   dev   

原文地址:https://www.cnblogs.com/wwp01/p/13830869.html

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