虛擬機器新開端口後,系統內部是顯示開了的,但是外部不能訪問埠。就需要對外開放埠
一些需要用到的命令:
1、firewalld的基本使用
啟動:systemctl start firewalld
檢視狀態:systemctl status firewalld
停止:systemctl disable firewalld
禁用:systemctl stop firewalld
怎麼開啟乙個埠
新增
firewall-cmd --zone=public --add-port=80/tcp --permanent #(--permanent永久生效,沒有此引數重啟後失效)
新增埠後重新載入
firewall-cmd --reload
檢視埠
firewall-cmd --zone=public --query-port=80/tcp
刪除埠
firewall-cmd --zone=public --remove-port=80/tcp --permanent
檢視開啟了哪些服務
firewall-cmd --list-services
檢視開啟了哪些埠
firewall-cmd --list-ports
檢視所有對外開放的埠:
firewall-cmd --zone=public --list-ports
*************************====其他:
檢視埠訪問許可權情況,一般啟動firewall會開啟6379埠
firewall-cmd --query-port=6379/tcp
如果6379沒有開啟,新增埠外部訪問許可權
firewall-cmd --add-port=6379/tcp
*************************==firewall的其他命令操作
systemctl是centos7的服務管理工具中主要的工具,它融合之前service和chkconfig的功能於一體。
啟動: systemctl start firewalld
檢視狀態: systemctl status firewalld
停止: systemctl disable firewalld
禁用: systemctl stop firewalld
啟動服務:systemctl start firewalld.service
關閉服務:systemctl stop firewalld.service
重啟服務:systemctl restart firewalld.service
服務的狀態:systemctl status firewalld.service
在開機時啟用乙個服務:systemctl enable firewalld.service
在開機時禁用乙個服務:systemctl disable firewalld.service
檢視服務是否開機啟動:systemctl is-enabled firewalld.service
檢視已啟動的服務列表:systemctl list-unit-files|grep enabled
檢視啟動失敗的服務列表:systemctl --failed
檢視版本: firewall-cmd --version
檢視幫助: firewall-cmd --help
顯示狀態: firewall-cmd --state
檢視所有開啟的埠: firewall-cmd --zone=public --list-ports
更新防火牆規則: firewall-cmd --reload
檢視區域資訊: firewall-cmd --get-active-zones
檢視指定介面所屬區域: firewall-cmd --get-zone-of-inte***ce=eth0
拒絕所有包:firewall-cmd --panic-on
取消拒絕狀態: firewall-cmd --panic-off
檢視是否拒絕: firewall-cmd --query-panic
CentOS7新增埠訪問
centos公升級到7之後,發現無法使用iptables控制linuxs的埠,google之後發現centos 7使用firewalld代替了原來的iptables。下面記錄如何使用firewalld開放linux埠 開啟埠 firewall cmd zone public add port 80 ...
centOS7 新增IP的方法
複製乙份ip配置檔案 cd etc sysconfig network scripts cp ifcfg eth0 ifcfg eth0 0 nano ifcfg eth0 0device eth0 0 此處新增 0,保持和檔名一致,新增多個ip依次遞增 onboot yes 是否開機啟用 boot...
CentOS 7 上systemctl 的用法
我們對service和chkconfig兩個命令都不陌生,systemctl 是管 務的主要工具,它整合了chkconfig 與 service功能於一體。注 代表某個服務的名字,如http的服務名為httpd 例如在centos 7 上安裝http 啟動服務 等同於service httpd st...