firewall-cmd --get-zone-of-interface=eth0 Issue the following command to open port 1191 for TCP traffic. firewall-cmd --add-port 1191/tcp Issue the following command to open port 1191 for TCP traffic after reboot. Use this command to make changes persistent. firewall-cmd --permanent --...
51CTO博客已为您找到关于firewall-cmd 开放端口的相关内容,包含IT学习相关文档代码介绍、相关教程视频课程,以及firewall-cmd 开放端口问答内容。更多firewall-cmd 开放端口相关解答可以来51CTO博客参与分享和学习,帮助广大IT技术人实现成长和进步。
cat > /deploy/openip <<EOF firewall-cmd --zone=trusted --add-source=\$1 --permanent EOF cat > /deploy/openport <<EOF firewall-cmd --zone=public --add-port=\$1/tcp --permanent && firewall-cmd --reload EOF cat > /deploy/openippermanet <<EOF firewall-cmd --zone=trusted --add...
firewall-cmd --permanent --zone=public --add-port=8080-8088/tcp#删除端口firewall-cmd --permanent --zone=public --remove-port=8080/tcp firewall-cmd --permanent --zone=public --remove-port=8080-8088/tcp#--permanent模式修改后都需要 --reload 重新加载下才会生效[root@localhost ~]# firewall-...
firewall-cmd --get-zone-of-interface=eth0 Use the following command to open port8098for TCP traffic. This command is not permanent. firewall-cmd --add-port8098/tcp Use the following command to open port8098for TCP traffic after you restart the firewall rules. Use this command to make th...
常用的 firewall-cmd 命令包括: 开启防火墙:systemctl start firewalld 关闭防火墙:systemctl stop firewalld 重启防火墙:systemctl restart firewalld 查看所有开启的端口:firewall-cmd --list-ports 开启端口访问:firewall-cmd --zonepublic --add-port <端口> ...
firewall-cmd --zone=public --add-port=8081-8088/tcp --permanent 上述命令,端口可以连续,例如...
<port protocol="tcp" port="22"/> </zone> 保存并退出。 重新加载防火墙服务: 代码语言:txt 复制 $ sudo firewall-cmd --reload 代码语言:txt 复制 Output: success 现在,重新检查 firewalld 中的可用区域 代码语言:txt 复制 $ sudo firewall-cmd --get-zones ...
通过如下命令禁用指定端口的外部访问:[root@nues ~]# sudo firewall-cmd --add-rich-rule='rule ...
1、firwall-cmd:是Linux提供的操作firewall的一个工具; 2、--permanent:表示设置为持久; 3、--add-port:标识添加的端口; 另外,firewall中有Zone的概念,可以将具体的端口制定到具体的zone配置文件中。 例如:添加8010端口 firewall-cmd --zone=public --permanent --add-port=8010/tcp ...