一、安装
安装之前先将服务器的防火墙关掉。
systemctl stop firewalld
systemctl disable firewall
第一步:
安装apr
下载:
wget -c http://mirrors.tuna.tsinghua[……]
一、安装
安装之前先将服务器的防火墙关掉。
systemctl stop firewalld
systemctl disable firewall
第一步:
安装apr
下载:
wget -c http://mirrors.tuna.tsinghua[……]
要封停一个IP,使用下面这条命令:
iptables -I INPUT -s … -j DROP
要解封一个IP,使用下面这条命令:
iptables -D INPUT -s … -j DROP
参数-I是表示Insert(添加),-D表示Delete(删除)。后面跟[……]