CentOS VPS入手后的基本优化和安全配置分享

8 篇文章 0 订阅
6 篇文章 0 订阅

适用环境和条件:安装CentOS5或6的任意VPS

升级系统

代码如下:
yum update

升级防火墙策略

代码如下:
#清除现有防火墙规则
iptables -F
iptables -X
iptables -Z
#允许本机访问本机
iptables -A INPUT -s 127.0.0.1 -d 127.0.0.1 -j ACCEPT

允许已建立的或相关连的通行

iptables -A INPUT -m state –state ESTABLISHED,RELATED -j ACCEPT


#允许有限的ping功能,每秒10次
iptables -A INPUT -p icmp -m limit –limit 10/sec -j ACCEPT


#允许所有本机向外的访问
iptables -A OUTPUT -j ACCEPT

允许访问22端口,默认的SSH端口,请先保留,等修改sshd_conf后再进行修改

iptables -A INPUT -p tcp –dport 22 -j ACCEPT


#允许访问80端口
iptables -A INPUT -p tcp –dport 80 -j ACCEPT


#允许其他端口只需要修改端口号即可


#禁止其他未允许的规则访问
iptables -A INPUT -j REJECT (注意:如果22端口未加入允许规则,SSH链接会直接断开。)
iptables -A FORWARD -j REJECT

#保持防火墙规则
service iptables save
#如果保持失败,是因为缺少policycoreutils,请先安装
yum -y install policycoreutils
#之后再进行保存
#将iptables加入随机启动
chkconfig –level 345 iptables on

删除不用的应用

代码如下:
yum remove Deployment_Guide-en-US cups-libs cups
bluez-libs desktop-file-utils ppp rp-pppoe wireless-tools irda-utils
nfs-utils nfs-utils-lib rdate fetchmail eject ksh mkbootdisk mtools
syslinux tcsh startup-notification talk apmd rmt dump setserial portmap yp-tools
ypbind
#删除不安全的服务
yum remove telnet rsh ftp rcp
#安装postfix替代sendmail
yum install postfix
#删除sendmail
yum remove sendmail
#禁用和删除xinetd服务
/sbin/service xinetd stop; /sbin/chkconfig xinetd off
rm -rf /etc/xinetd.d

清理不需要的用户和用户组

代码如下:
#复制备份一份passwd和group
cp /etc/passwd /etc/passwd.sav
cp /etc/group /etc/group.sav
#删除没用的用户和用户组
for a in adm lp sync news uucp operator games gopher mailnull nscd rpc;
do /usr/sbin/userdel $a -f; done
for a in lp news uucp games gopher users floopy nscd rpc rpcuser nfsnobody;
do /usr/sbin/groupdel $a -f; done

更新为香港时区

代码如下:
ln -sf /usr/share/zoneinfo/Hongkong /etc/localtime

支持zip和unzip

代码如下:
yum install zip unzip

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值