-A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 1521 -j ACCEPT 字串8
就可以了,其中 1521 是要开放的端口号,然后重新启动linux的防火墙服务。 字串9
停止/启动防火墙服务的命令:
字串2
用root登录后,执行
字串7
service iptables stop --停止
字串5
service iptables start --启动 字串2
(service命令位于/sbin)
字串4
防火墙规则只有在 iptables 服务运行的时候才能被激活。要手工启动服务,使用以下命令:
字串8
/sbin rvice iptables restart
字串6
要确保它在系统引导时启动,使用以下命令: 字串4
/sbin/chkconfig --level 345 iptables on 字串3
ipchains 服务不能和 iptables 服务同时运行。要确定 ipchains 服务被禁用,执行以下命令: 字串5
/sbin/chkconfig --level 345 ipchains off
字串3

