2012年(77)
分类: LINUX
2012-12-18 10:03:36
一:防火墙的启动和关闭:
开启: chkconfig iptables on
关闭: chkconfig iptables off
2、防火墙的临时启动和关闭:
service iptables start 启动防火墙
service iptables stop 关闭防火墙
service iptables restart 重启防火墙
二:chkconfig 命令
chkconfig命令主要用来更新(启动或停止)和查询系统服务的运行级信息。谨记chkconfig不是立即自动禁止或激活一个服务, 它只是简单的改变了符号连接。
chkconfig --list [name]列出当前服务的以及当前状态。
chkconfig --add/del name 删除或者增加一个服务,系统中需要存在。
chkconfig --[level] name on/off/reset 启动或者关闭一个服务(on/off:只对级别3/4/5有效,reset可以重新设置其他 级别有效)