Linux 关闭无用端口

关闭系统不必要的端口,增强系统安全,此处以关闭111端口为例进行说明。

  1. 查看本机正在监听的端口
netstat -tlnup
  1. 查看正在监听的111端口,由哪个服务使用
cat /etc/services | grep -w 111
  1. 查看使用111端口服务的详细信息
systemctl list-unit-files --all |grep portmapper
systemctl list-unit-files --all |grep rpcbind
  1. 关闭正在使用111端口的服务,并设置开机不启动该服务
systemctl stop rpcbind.socket
systemctl disable rpcbind.socket

实际操作截图
在这里插入图片描述

关闭其他端口
在这里插入图片描述

Logo

更多推荐