如何关闭 linux 中的指定端口
在 Linux 系统中,我们可以通过防火墙规则来关闭指定端口。常用的防火墙有 UFW、iptables 和 firewalld。
使用 UFW
sudo apt install ufw
sudo ufw deny PORT(替换 PORT 为要关闭的端口号)使用 iptables
sudo iptables -L
添加拒绝规则:
sudo iptables -I INPUT -p tcp --dport PORT -j DROP(TCP 端口)sudo iptables -I INPUT -p udp --dport PORT -j DROP(UDP 端口)使用 firewalld
sudo firewall-cmd --list-all
sudo firewall-cmd --add-port=PORT/protocol --permanent(替换 PORT 和 protocol 为要关闭的端口号和协议)示例
以下命令关闭端口 80:
<code>sudo ufw deny 80 sudo iptables -I INPUT -p tcp --dport 80 -j DROP sudo firewall-cmd --add-port=80/tcp --permanent</code>
注意:
sudo ufw reload、sudo iptables-restore <filename> 或 sudo firewall-cmd --reload)。以上就是linux怎么关闭指定端口的详细内容,更多请关注php中文网其它相关文章!
每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号