我正在尝试设置iptable规则,当我使用iptable时,我得到以下错误消息:
iptables v1.4.14: can't initialize iptables table `nat': Table does not exist (do you need to insmod?)
Perhaps iptables or your kernel needs to be upgraded.
我使用的是:
cat /etc/debian_version
7.4
uname -a
Linux myserver 2.6.32-22-pve #1 SMP Mon Jul 15 0
我正在测试我们的一个流媒体应用程序的弹性,以处理丢包问题。在linux机器上,我通常使用iptable随机丢弃数据包,如下所示:
iptables -A INPUT -m statistic --mode random --probability 0.1 -j DROP
我需要在目前运行OSX的服务器上进行测试。有什么想法吗?如何在OSX服务器或Mac电脑上随机丢弃数据包?
/Andy
当我试图在Proxmox OpenVZ vm中运行iptables命令时,我得到了以下错误:
# iptables -t nat -A POSTROUTING -o venet -j MASQUERADE && iptables-save
iptables v1.4.21: can't initialize iptables table `nat': Table does not exist (do you need to insmod?)
Perhaps iptables or your kernel needs to be upgraded.
Proxmox