加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 综合聚焦 > 服务器 > Linux > 正文

关闭Linux无用端口

发布时间:2020-12-14 01:09:59 所属栏目:Linux 来源:网络整理
导读:关闭系统不必要的端口,增强系统安全,此处以关闭111端口为例进行说明。 1)、查看本机正在监听的端口: [[email?protected] ~]# netstat -tlnup? Active Internet connections (only servers) Proto Recv-Q Send-Q Local Address Foreign Address State PID

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

1)、查看本机正在监听的端口:

[[email?protected] ~]# netstat -tlnup?

Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
tcp 0 0 0.0.0.0:111 0.0.0.0:* LISTEN 1/systemd
tcp 0 0 192.168.122.1:53 0.0.0.0:* LISTEN 7372/dnsmasq
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 6929/sshd
tcp 0 0 127.0.0.1:631 0.0.0.0:* LISTEN 6934/cupsd
tcp 0 0 127.0.0.1:25 0.0.0.0:* LISTEN 7243/master
tcp6 0 0 :::3306 :::* LISTEN 7189/mysqld
tcp6 0 0 :::111 :::* LISTEN 1/systemd
tcp6 0 0 :::22 :::* LISTEN 6929/sshd
tcp6 0 0 ::1:631 :::* LISTEN 6934/cupsd
tcp6 0 0 ::1:25 :::* LISTEN 7243/master
udp 0 0 192.168.122.1:53 0.0.0.0:* 7372/dnsmasq
udp 0 0 0.0.0.0:67 0.0.0.0:* 7372/dnsmasq
udp 0 0 0.0.0.0:68 0.0.0.0:* 6729/dhclient
udp 0 0 0.0.0.0:111 0.0.0.0:* 1/systemd
udp 0 0 0.0.0.0:5353 0.0.0.0:* 6246/avahi-daemon:
udp 0 0 127.0.0.1:323 0.0.0.0:* 6267/chronyd
udp 0 0 0.0.0.0:45917 0.0.0.0:* 6246/avahi-daemon:
udp6 0 0 :::111 :::* 1/systemd
udp6 0 0 ::1:323 :::* 6267/chronyd

2)、查看正在监听的111端口,由哪个服务使用

[[email?protected] ~]# cat /etc/services | grep -w 111
sunrpc 111/tcp portmapper rpcbind # RPC 4.0 portmapper TCP
sunrpc 111/udp portmapper rpcbind # RPC 4.0 portmapper UDP

3)、查看使用111端口服务的详细状态信息

[[email?protected] ~]# systemctl list-unit-files --all |grep portmapper
[[email?protected] ~]# systemctl list-unit-files --all |grep rpcbind
rpcbind.service disabled
rpcbind.socket enabled
rpcbind.target static

4)、关闭正在使用111端口的服务,并设置开机不启动该服务
[[email?protected] ~]# systemctl stop rpcbind.socket
[[email?protected] ~]# systemctl disable rpcbind.socket
Removed symlink /etc/systemd/system/sockets.target.wants/rpcbind.socket.

?

实际操作截屏

?

关闭其他端口

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读