- A+
所属分类:Linux
1、先检查本系统是否有安装xinetd
1 |
[root@localhost ~]# systemctl status xinetd |
(1)如何没有打开则重启下xinetd
(2)没有安装则用dnf(yum的升级版)安装、使用阿里源或者本地源
1 |
[root@localhost ~]# dnf install xinetd |
补充:xinetd即(extended internet daemon),xinetd是新一代的网络守护进程服务程序,又叫超级Internet服务器。经常用来管理多种轻量级Internet服务。xinetd提供类似于inetd+tcp_wrapper的功能,但是更加强大和安全。
2、屏蔽恶意攻击ip--查询访问ip(netstat)
1 |
[root@localhost ~]# vim /etc/hosts.deny #vim(vi)编辑文件 |
在文件后面追加:all:恶意的ip地址
意思就是屏蔽恶意IP的所有连接请求。
1 |
[root@localhost ~]# echo "all:200.200.200.200" >> /etc/hosts.deny |