|
防火墙的基本操作命令 1. 查询防火墙状态: [root@localhost ~]# service iptables status2. 开启防火墙: [root@localhost ~]# service iptables start3. 关闭防火墙: [root@localhost ~]# service iptables stop4. 重启防火墙: [root@localhost ~]# service iptables restart5. 永久关闭防火墙: [root@localhost ~]# chkconfig iptables off6. 永久关闭后开启防火墙: [root@localhost ~]# chkconfig iptables on
|
