码迷,mamicode.com
首页 > 其他好文 > 详细

can't initialize iptables table `nat': Table does not exist

时间:2016-08-09 00:49:05      阅读:484      评论:0      收藏:0      [点我收藏+]

标签:modprobe   iptable_nat   iptables   insmod   

第一种

如果说nat名字是大写的NAT 试试iptables -tnat -L

原因是如果使用命令iptables -tNAT -L 是没有NAT表的也会出现这个错误


第二种:
该错误完整应该是这样的:

can‘t initialize iptables table `nat‘: Table does not exist (do you need to insmod?)

Perhaps iptables or your kernel needs to be upgraded.


首先


[root@localhost ~]# modprobe -l|grep iptable_nat

kernel/net/ipv4/netfilter/iptable_nat.ko

[root@localhost ~]#


尝试如下操作


[root@localhost ~]# modinfo iptable_nat

filename:       /lib/modules/2.6.32-431.el6.x86_64/kernel/net/ipv4/netfilter/iptable_nat.ko

alias:          ip_nat

license:        GPL

srcversion:     507BCAD1E3A207FDF875EEC

depends:        ip_tables,nf_conntrack_ipv4,nf_nat,nf_conntrack

vermagic:       2.6.32-431.el6.x86_64 SMP mod_unload modversions 

[root@localhost ~]# insmod /lib/modules/2.6.32-431.el6.x86_64/kernel/net/ipv4/netfilter/iptable_nat.ko

insmod:error inserting ‘iptable_nat.ko‘:-1 unknown symbol in module

[root@localhost ~]# modprobe iptable_nat

[root@localhost ~]# 


即可


第三种情况:

[root@localhost ~]# ll  /lib/modules/

total 4

drwxr-xr-x. 8 root root 4096 Mar  7 11:11 2.6.32-431.el6.x86_64

[root@localhost ~]# 

[root@localhost ~]# uname -r

2.6.32-431.el6.x86_64

[root@localhost ~]# 



是否本地的kernel 的模块和kernel相对应   多出现的原因为 升级过内核。。 但是本地还是老版本的模块  安装当前kernel 的包即可

本文出自 “路的方向。迷茫” 博客,请务必保留此出处http://qidai.blog.51cto.com/6435621/1835782

can't initialize iptables table `nat': Table does not exist

标签:modprobe   iptable_nat   iptables   insmod   

原文地址:http://qidai.blog.51cto.com/6435621/1835782

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!