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

检测sshd端口误封脚本

时间:2016-10-12 23:20:36      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:shell脚本

#!/bin/bash
n=`iptables -nvL |grep ‘tcp dpt:22‘ |egrep -iE ‘DROP|REJECT‘|wc -l`
if [ $n -ge 1 ]
then
    iptables -I INPUT -p tcp --dport 22 -j ACCEPT
fi

本文出自 “IT屌丝” 博客,请务必保留此出处http://68686789.blog.51cto.com/10438688/1861212

检测sshd端口误封脚本

标签:shell脚本

原文地址:http://68686789.blog.51cto.com/10438688/1861212

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