ECS-Linux加载iptables模块的具体操作
发布日期:2015-12-22 17:12:47
一、具体的异常现象 1、启动或关闭防火墙无任何的提示 [root@ethnicity ~]# /etc/init.d/iptables start [root@ethnicity ~]# /etc/init.d/iptables stop 2、查看防火墙的状态直接提示模块没有加载 [root@ethnicity ~]# /etc/init.d/iptables status iptables: Firewall modules are not loaded. 二、修复的方法 默认的情况下安装防火墙Iptables的Linux服务默认需加载两个模块 [root@ethnicity ~]# lsmod |grep iptable iptable_filter 2173 1 ip_tables 9567 1 iptable_filter 很简单加载这两个模块即可 [root@ethnicity ~]# modprobe ip_tables [root@ethnicity ~]# modprobe iptable_filter [root@ethnicity ~]# lsmod |grep iptable iptable_filter 2173 0 ip_tables 9567 1 iptable_filter 这样就可以了 [root@ethnicity ~]# /etc/init.d/iptables restart iptables: Setting chains to policy ACCEPT: filter [ OK ] iptables: Flushing firewall rules: [ OK ] iptables: Unloading modules: [ OK ] iptables: Applying firewall rules: [ OK ]
|