标签: iptables yocto
我正在尝试在Linux Yocto设备上设置一些iptables规则,但是这个命令一直给我一个错误:
# iptables -I INPUT -p tcp --dport ssh -j MYCHAIN iptables: No chain/target/match by that name.
有问题的参数是“--dport”,因为以下命令可以正常工作:
# iptables -I INPUT -p tcp -j MYCHAIN
研究,我发现了与缺少内核模块相关的类似问题(match,redirect)。如果这是我的情况,我怎么知道它是哪一个?