適用環(huán)境和條件:安裝CentOS5或6的任意VPS
升級系統(tǒng)
yum update
升級防火墻策略
#清除現(xiàn)有防火墻規(guī)則
iptables -F
iptables -X
iptables -Z
#允許本機(jī)訪問本機(jī)
iptables -A INPUT -s 127.0.0.1 -d 127.0.0.1 -j ACCEPT
# 允許已建立的或相關(guān)連的通行
iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT/p>
p>
#允許有限的ping功能,每秒10次
iptables -A INPUT -p icmp -m limit --limit 10/sec -j ACCEPT/p>
p>
#允許所有本機(jī)向外的訪問
iptables -A OUTPUT -j ACCEPT/p>
p>
# 允許訪問22端口,默認(rèn)的SSH端口,請先保留,等修改sshd_conf后再進(jìn)行修改
iptables -A INPUT -p tcp --dport 22 -j ACCEPT/p>
p>
#允許訪問80端口
iptables -A INPUT -p tcp --dport 80 -j ACCEPT/p>
p>
#允許其他端口只需要修改端口號即可/p>
p>
#禁止其他未允許的規(guī)則訪問
iptables -A INPUT -j REJECT (注意:如果22端口未加入允許規(guī)則,SSH鏈接會直接斷開。)
iptables -A FORWARD -j REJECT/p>
p>#保持防火墻規(guī)則
service iptables save
#如果保持失敗,是因為缺少policycoreutils,請先安裝
yum -y install policycoreutils
#之后再進(jìn)行保存
#將iptables加入隨機(jī)啟動
chkconfig --level 345 iptables on
刪除不用的應(yīng)用
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
#刪除不安全的服務(wù)
yum remove telnet rsh ftp rcp
#安裝postfix替代sendmail
yum install postfix
#刪除sendmail
yum remove sendmail
#禁用和刪除xinetd服務(wù)
/sbin/service xinetd stop; /sbin/chkconfig xinetd off
rm -rf /etc/xinetd.d
清理不需要的用戶和用戶組
#復(fù)制備份一份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
更新為香港時區(qū)
ln -sf /usr/share/zoneinfo/Hongkong /etc/localtime
支持zip和unzip
yum install zip unzip