经常有新购的vps或者旧的vps要重装系统折腾,每次新系统都要进行一些基本的安全设置,次数多了就渐渐没有耐心了。所以就写了这个脚本,求省事。
脚本做的事情:
1.新增一个普通用户,并设置这个用户的密码 2.根据输入的字符修改root密码(没有输入任何字符则不修改)。 3.更新系统,并安装常用软件包:screen zip unzip sendmail lrzsz(可通过xshell客户端直接上传下载文件) 4.关闭selinux 5.修改ssh端口,禁止root登陆ssh。所以一定要记住你新建的用户名和密码。 6.iptables开放新的ssh端口
运行脚本:
wget https://raw.githubusercontent.com/mn-s/server-first-set/master/server-first-set.sh && chmod +x server-first-set.sh && ./server-first-set.sh
1 | wget https://raw.githubusercontent.com/mn-s/server-first-set/master/server-first-set.sh && chmod +x server-first-set.sh && ./server-first-set.sh |
---|
上面是保存在github上的文件。也可以使用:
wget http://sh.335.im/server-first-set.sh && chmod +x server-first-set.sh && ./server-first-set.sh
1 | wget http://sh.335.im/server-first-set.sh && chmod +x server-first-set.sh && ./server-first-set.sh |
---|
另外说明一下,这是本人亲手写的第一个shell脚本,边看教程边写的。项目地址:https://github.com/mn-s/server-first-set