第一种
如果说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 的包即可
转载于:https://blog.51cto.com/qidai/1835782