linux防火牆設定相關

2021-06-18 13:53:52 字數 554 閱讀 4168

yum 不可用也可能是由於防火牆的原因:

1、檢視防火牆埠使用情況:

iptables -nvxl

chkconfig——命令只是檢視和設定服務的自動啟動情況,並不能反映當前服務的狀態

service iptables status——檢視到iptables服務的當前狀態

即使服務執行了,防火牆也不一定起作用,你還得看防火牆規則的設定:

iptables  -l

上述命令的返回值如果顯示沒有防火牆規則,那就是不起作用;反之就是防火牆在起作用.

2、啟動|停止防火牆

service iptables start |stop

3、防火牆中埠

配置檔案在/etc/sysconfig/iptables

用命令修改防火牆對埠的監控後,需修改iptables配置檔案才可以永久起作用

修改iptalbes規則:

增加:iptables -i input 1 -j accept

刪除:iptables -d input 1

注:1表示在位置1

wget

linux防火牆相關

linux 防火牆 selinux設定 sestatus v 檢視selinux執行狀態 semanage fcontext a t httpd sys content t home deploy share portal 設定目錄許可權 nginx403錯誤 restorecon rv home ...

Linux防火牆設定

修改防火牆配置需要修改 etc sysconfig iptables 這個檔案,如果要開放哪個埠,在裡面新增一條 a rh firewall 1 input m state state new m tcp p tcp dport 1521 j accept 就可以了,其中 1521 是要開放的埠號,...

Linux防火牆設定

1 重啟後永久性生效 開啟 chkconfig iptables on 關閉 chkconfig iptables off 2 即時生效,重啟後失效 開啟 service iptables start 關閉 service iptables stop 需要說明的是對於linux下的其它服務都可以用以...