這篇文章為大家帶來了關於Linux的相關知識,其中主要介紹了以Centos7.x 為例,怎麼使用命令行方式來增加Linux的安全組端口,下面一起來看一下,希望對大家有幫助。
使用命令列方式增加Linux的安全群組連接埠
我們這裡以Centos7.x 為例
#firewalld
常用指令
服務的名稱是firewalld
#查看firewall防火墙状态 systemctl status firewalld # 等价命令 service firewalld status #开启firewall防火墙 systemctl start firewalld.service # 等价命令 service firewalld start #关闭firewall防火墙 systemctl stop firewalld.service # 等价命令 service firewalld stop #禁止firewall开机启动,此操作尽量不要用 systemctl disable firewalld.service
操作指令是firewall-cmd
firewall-cmd --list-ports #查看firewall防火墙开放端口 firewall -cmd --reload #重新加载防火墙permanent(永久的)的规则配置,覆盖当前运行时配置,在运行时添加的非permanent规则,都将丢失 #开放firewall防火墙端口,需重启防火墙生效service firewalld restart firewall-cmd --zone=public --add-port=8088/tcp --permanent # 移除指定端口 firewall-cmd --permanent --remove-port=8088/tcp
指令參數指令意義:
-zone #作用域 -add-port=80/tcp #添加端口,格式为:端口 / 通讯协议 -permanent #永久生效,没有此参数重启后失效
service 和systemctl 區別請移步這裡:
Linux 下systemctl 指令和service、chkconfig 指令的差異
#推薦學習: 《Linux影片教學》
以上是詳解如何增加Linux安全群組連接埠(命令列方式)的詳細內容。更多資訊請關注PHP中文網其他相關文章!