Linux 关闭无用端口
关闭系统不必要的端口,增强系统安全,此处以关闭111端口为例进行说明。
- 查看本机正在监听的端口
netstat -tlnup
- 查看正在监听的111端口,由哪个服务使用
cat /etc/services | grep -w 111
- 查看使用111端口服务的详细信息
systemctl list-unit-files --all |grep portmapper
systemctl list-unit-files --all |grep rpcbind
- 关闭正在使用111端口的服务,并设置开机不启动该服务
systemctl stop rpcbind.socket
systemctl disable rpcbind.socket
实际操作截图
文章来源:https://www.toymoban.com/news/detail-730385.html
关闭其他端口
文章来源地址https://www.toymoban.com/news/detail-730385.html
到了这里,关于Linux 关闭无用端口的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!