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

怎么修改ssh远程端口脚本?

时间:2016-09-05 16:44:36      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:

vi  port_change.sh 将下面代码复制粘贴到脚本里,然后bash port_change.sh 后接要修改的端口号

 

#!/bin/bash

##Write By ZaLinux

 

if [ $# != 1 ];then

 

echo "please input new ssh port"

exit

 

else

 

cat /etc/ssh/sshd_config |grep ^Port

if [ $? == 0 ];then

 

port=`cat /etc/ssh/sshd_config |grep ^Port`

oldport=`echo $port|awk {print $2}`

 

sed -i -e "/^Port/s/$port/Port $1/" /etc/ssh/sshd_config

service sshd restart

iptables -D INPUT -p tcp --dport $oldport -j ACCEPT

iptables -I INPUT -p tcp --dport $1 -j ACCEPT

service iptables save

 

else

 

sed -i -e "/^#Port/a\$1" /etc/ssh/sshd_config

service sshd restart

iptables -I INPUT -p tcp --dport $1 -j ACCEPT

fi

fi

交流QQ:2881064157

怎么修改ssh远程端口脚本?

标签:

原文地址:http://www.cnblogs.com/mei2881064157/p/5842462.html

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