linux怎么关闭指定端口(端口.指定.关闭.linux...)

wufei123 发布于 2024-08-06 阅读(32)

如何关闭 linux 中的指定端口

在 Linux 系统中,我们可以通过防火墙规则来关闭指定端口。常用的防火墙有 UFW、iptables 和 firewalld。

使用 UFW

  1. 安装 UFW:sudo apt install ufw
  2. 拒绝端口:sudo ufw deny PORT(替换 PORT 为要关闭的端口号)

使用 iptables

  1. 查看当前规则:sudo iptables -L
  2. 添加拒绝规则:

    • sudo iptables -I INPUT -p tcp --dport PORT -j DROP(TCP 端口)
    • sudo iptables -I INPUT -p udp --dport PORT -j DROP(UDP 端口)

使用 firewalld

  1. 查看当前规则:sudo firewall-cmd --list-all
  2. 添加拒绝规则:sudo firewall-cmd --add-port=PORT/protocol --permanent(替换 PORT 和 protocol 为要关闭的端口号和协议)

示例

以下命令关闭端口 80:

PHP
sudo ufw deny 80
sudo iptables -I INPUT -p tcp --dport 80 -j DROP
sudo firewall-cmd --add-port=80/tcp --permanent

注意:

  • 根据您的系统和防火墙软件,实际命令可能略有不同。
  • 始终记得在更改防火墙规则后重新加载规则(例如,sudo ufw reload、sudo iptables-restore 或 sudo firewall-cmd --reload)。
  • 如果使用其他防火墙软件,请查阅其文档以了解具体关闭端口的步骤。

以上就是linux怎么关闭指定端口的详细内容,更多请关注知识资源分享宝库其它相关文章!

标签:  端口 指定 关闭 

发表评论:

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。