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

通过sed -i ,通过准备好的sh脚本,来设置linux iptable白名单

时间:2019-06-20 17:15:53      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:pre   set   code   one   input   reject   准备   std   tcp   

通过准备好的sh脚本,来设置linux iptable白名单

特定字符串的行前插入新行

sed -i ‘/特定字符串/i 新行字符串‘ file

 

#!/bin/bash
del_stdin_buf()
{
    read -d ‘ -t 0.1
}
echo "Setting https enabled for remote access...."

https_port=`grep dport 443‘ /etc/sysconfig/iptables | wc -l`
if [ $https_port -eq 0 ]
then 
     sed -i "/-A INPUT -j REJECT --reject-with icmp-host-prohibited/i -A INPUT -m state --state NEW -m tcp -p tcp --dport 443 -j ACCEPT" /etc/sysconfig/iptables
fi
http_port=`grep dport 80‘ /etc/sysconfig/iptables | wc -l`
if [ $http_port -eq 0 ]
then 
     sed -i "/-A INPUT -j REJECT --reject-with icmp-host-prohibited/i -A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT" /etc/sysconfig/iptables
fi
service iptables restart echo
"Done."

 

通过sed -i ,通过准备好的sh脚本,来设置linux iptable白名单

标签:pre   set   code   one   input   reject   准备   std   tcp   

原文地址:https://www.cnblogs.com/xiaoliu66007/p/11059723.html

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