class="21272">
;
啟動防火牆
1) 重啟後生效
開啟: chkconfig iptables on
關閉: chkconfig iptables off
2) 即時生效,重啟後失效
開啟: service iptables start
關閉: service iptables stop
需要說明的是對於Linux下的其它服務都可以用以上命令執行開啟和關閉操作。
在開啟了防火牆時,做如下設置,開啟相關端口。
修改/etc/sysconfig/iptables 文件,添加以下內容:
-A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT
-A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 22 -j ACCEPT
查看所有進程,包括服務,命令裡ps -aux是netconfig在redhat裡面是字符界面下的網卡配置工具。
chkconfig --list
可以列出sysV和xinet服務在各個runlevel的默認啟動狀態。
service 服務名 參數
查看狀態的參數好像是stat 吧。
自啟動服務
ntsysv