修改linux系統防火牆配置需要修改 /etc/sysconfig/iptables 這個檔案
1 vim /etc/sysconfig/iptables
在vim編輯器,會看到下面的內容
1 # firewall configuration written by system-config-firewall2 # manual customization of this file
is not recommended.
3 *filter
4 :input accept [0:0
]5 :forward accept [0:0
]6 :output accept [0:0
]7 -a input -m state --state established,related -j accept
8 -a input -p icmp -j accept
9 -a input -i lo -j accept
10 -a input -m state --state new -m tcp -p tcp --dport 22 -j accept
11 -a input -m state --state new -m tcp -p tcp --dport 8080 -j accept
12 -a input -m state --state new -m tcp -p tcp --dport 3306 -j accept
13 -a input -m state --state new -m tcp -p tcp --dport 2181 -j accept
14 -a input -j reject --reject-with icmp-host-prohibited
15 -a forward -j reject --reject-with icmp-host-prohibited
16 commit
需要開放埠,請在裡面新增一條一下內容即可:
1-a rh-firewall-1-input -m state --state new -m tcp -p tcp --dport 1521 -j accept
其中 1521 是要開放的埠號,然後重新啟動linux的防火牆服務。
linux下停止/啟動防火牆服務的命令(root使用者使用):
1 service iptables stop --停止23 service iptables start --啟動
寫在最後:
1#永久性生效,重啟後不會復原
2chkconfig iptables on #開啟34
chkconfig iptables off #關閉56
#即時生效,重啟後復原
7service iptables start #開啟
89 service iptables stop #關閉
Linux系統修改防火牆配置
修改linux系統防火牆配置需要修改 etc sysconfig iptables 這個檔案 1 vim etc sysconfig iptables在vim編輯器,會看到下面的內容 1 firewall configuration written by system config firewall...
linux關閉防火牆或者修改防火牆配置的命令
開啟 chkconfig iptables on 關閉 chkconfig iptables off 開啟 service iptables start 關閉 service iptables stop vi etc sysconfig iptables a rh firewall 1 input ...
linux 修改防火牆
本人使用的一般是centos 下面是centos6版本的操作 1 修改防火牆 root localhost nexus vi etc sysconfig iptables firewall configuration written by system config firewall manual ...